X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fstat%2Ffstatat.c;h=582db44292d9965b6a38532d02d739b4d86bc5bb;hb=d28cd0ad428d63c186003fdf9c02470561650a04;hp=863d5268e880d0c53361af6773859ef4994e8e8e;hpb=400c5e5c8307a2ebe44ef1f203f5a15669f20347;p=musl 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 #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);