From aa398f56fa398f2202b04e82c67f822f3233786f Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sun, 20 Mar 2011 00:16:43 -0400 Subject: global cleanup to use the new syscall interface --- src/stat/fstatat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/stat/fstatat.c') 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); -- cgit v1.2.1