diff options
Diffstat (limited to 'sysdeps/generic/statfs64.c')
-rw-r--r-- | sysdeps/generic/statfs64.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/generic/statfs64.c b/sysdeps/generic/statfs64.c index 050c05d..01640e3 100644 --- a/sysdeps/generic/statfs64.c +++ b/sysdeps/generic/statfs64.c @@ -1,5 +1,5 @@ /* Return information about the filesystem on which FILE resides. - Copyright (C) 1996, 1997 Free Software Foundation, Inc. + Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -27,7 +27,7 @@ statfs64 (const char *file, struct statfs64 *buf) { struct statfs buf32; - if (statfs (file, &buf32) < 0) + if (__statfs (file, &buf32) < 0) return -1; buf->f_type = buf32.f_type; |