diff options
Diffstat (limited to 'libc')
| -rw-r--r-- | libc/misc/statfs/fstatfs64.c | 7 | 
1 files changed, 1 insertions, 6 deletions
diff --git a/libc/misc/statfs/fstatfs64.c b/libc/misc/statfs/fstatfs64.c index bb9ca3063..6c2c41822 100644 --- a/libc/misc/statfs/fstatfs64.c +++ b/libc/misc/statfs/fstatfs64.c @@ -25,7 +25,7 @@  #include <sys/syscall.h>  #include <stddef.h> -#if defined __NR_fstatfs +#if !defined __NR_fstatfs64  extern __typeof(fstatfs) __libc_fstatfs;  /* Return information about the filesystem on which FD resides.  */ @@ -55,11 +55,6 @@ int fstatfs64 (int fd, struct statfs64 *buf)      return 0;  }  #else -/* - * Use the fstatfs64 system call if fstatfs is not defined - * This is for backwards compatibility and it should be - * made default in the future - */  int fstatfs64(int fd, struct statfs64 *buf)  {  	/* Signature has 2 arguments but syscalls wants 3 */  | 
