about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAdhemerval Zanella <adhemerval.zanella@linaro.org>2021-02-11 17:42:14 -0300
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>2021-02-11 17:45:24 -0300
commit4458eb12573d6f210760d670f0fbc1467393c466 (patch)
tree739f195dde4636683d135ba554505589371fc715
parent7eb3000f9f8fffd29126a5e5bb6d13cabd63a0f3 (diff)
downloadglibc-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.
-rw-r--r--sysdeps/mach/hurd/fstatfs.c2
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)