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/unistd/fsync.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/unistd/fsync.c') diff --git a/src/unistd/fsync.c b/src/unistd/fsync.c index 7cfedc98..5991c66b 100644 --- a/src/unistd/fsync.c +++ b/src/unistd/fsync.c @@ -3,6 +3,6 @@ int fsync(int fd) { - //return syscall1(__NR_fsync, fd); + //return syscall(SYS_fsync, fd); return 0; } -- cgit 1.4.1