diff options
Diffstat (limited to 'src/stat/fstat.c')
-rw-r--r-- | src/stat/fstat.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/stat/fstat.c b/src/stat/fstat.c index f6d16522..4f13f4f0 100644 --- a/src/stat/fstat.c +++ b/src/stat/fstat.c @@ -2,7 +2,6 @@ #include <errno.h> #include <fcntl.h> #include "syscall.h" -#include "libc.h" int fstat(int fd, struct stat *st) { @@ -19,4 +18,4 @@ int fstat(int fd, struct stat *st) #endif } -LFS64(fstat); +weak_alias(fstat, fstat64); |