diff options
Diffstat (limited to 'src/stat/stat.c')
-rw-r--r-- | src/stat/stat.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/stat/stat.c b/src/stat/stat.c index b4433a0a..0bec9d6f 100644 --- a/src/stat/stat.c +++ b/src/stat/stat.c @@ -1,7 +1,6 @@ #include <sys/stat.h> #include <fcntl.h> #include "syscall.h" -#include "libc.h" int stat(const char *restrict path, struct stat *restrict buf) { @@ -12,4 +11,4 @@ int stat(const char *restrict path, struct stat *restrict buf) #endif } -LFS64(stat); +weak_alias(stat, stat64); |