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/fstat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/stat/fstat.c') diff --git a/src/stat/fstat.c b/src/stat/fstat.c index 88ac6f3c..10228f75 100644 --- a/src/stat/fstat.c +++ b/src/stat/fstat.c @@ -4,7 +4,7 @@ int fstat(int fd, struct stat *buf) { - return syscall2(__NR_fstat, fd, (long)buf); + return syscall(SYS_fstat, fd, buf); } LFS64(fstat); -- cgit v1.2.1