diff options
Diffstat (limited to 'src/stat/fstatat.c')
-rw-r--r-- | src/stat/fstatat.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/stat/fstatat.c b/src/stat/fstatat.c index 863d5268..582db442 100644 --- a/src/stat/fstatat.c +++ b/src/stat/fstatat.c @@ -1,10 +1,9 @@ #include <sys/stat.h> #include "syscall.h" -#include "libc.h" int fstatat(int fd, const char *restrict path, struct stat *restrict buf, int flag) { return syscall(SYS_fstatat, fd, path, buf, flag); } -LFS64(fstatat); +weak_alias(fstatat, fstatat64); |