diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-02-11 17:42:14 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-02-11 17:45:24 -0300 |
commit | 4458eb12573d6f210760d670f0fbc1467393c466 (patch) | |
tree | 739f195dde4636683d135ba554505589371fc715 /sysdeps | |
parent | 7eb3000f9f8fffd29126a5e5bb6d13cabd63a0f3 (diff) | |
download | glibc-4458eb12573d6f210760d670f0fbc1467393c466.tar.gz glibc-4458eb12573d6f210760d670f0fbc1467393c466.tar.xz glibc-4458eb12573d6f210760d670f0fbc1467393c466.zip |
hurd: Fix fstatfs build failure
It was added by 1bfbaf7130 where it added a libc_hidden_proto for __fstatfs but it didn't update the Hurd version as well. Checked with a build for i686-gnu.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/mach/hurd/fstatfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/mach/hurd/fstatfs.c b/sysdeps/mach/hurd/fstatfs.c index 105683c8e8..0cef626f88 100644 --- a/sysdeps/mach/hurd/fstatfs.c +++ b/sysdeps/mach/hurd/fstatfs.c @@ -27,5 +27,5 @@ __fstatfs (int fd, struct statfs *buf) struct statfs64 buf64; return __fstatfs64 (fd, &buf64) ?: statfs64_conv (buf, &buf64); } - +libc_hidden_def (__fstatfs) weak_alias (__fstatfs, fstatfs) |