X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=src%2Fstat%2Ffstatat.c;h=d6b9390ca442cdffe9620f3335232ca50278444d;hp=e39f833bbd37799fa37e7980c383bd3c73b7f306;hb=aa398f56fa398f2202b04e82c67f822f3233786f;hpb=be82e122bf37fdcd1766d1ed220f0300b30ab6a3 diff --git a/src/stat/fstatat.c b/src/stat/fstatat.c index e39f833b..d6b9390c 100644 --- a/src/stat/fstatat.c +++ b/src/stat/fstatat.c @@ -4,7 +4,7 @@ int fstatat(int fd, const char *path, struct stat *buf, int flag) { - return syscall4(__NR_fstatat, fd, (long)path, (long)buf, flag); + return syscall(SYS_fstatat, fd, path, buf, flag); } LFS64(fstatat);