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.
This commit is contained in:
Adhemerval Zanella 2021-02-11 17:42:14 -03:00
parent 7eb3000f9f
commit 4458eb1257

View File

@ -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)