From c2cd25bff89c3581780e7eb267262cb8c4da0d38 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Wed, 6 Apr 2011 20:32:53 -0400 Subject: consistency: change all remaining syscalls to use SYS_ rather than __NR_ prefix --- src/unistd/setuid.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/unistd/setuid.c') diff --git a/src/unistd/setuid.c b/src/unistd/setuid.c index da6816de..e778c7f3 100644 --- a/src/unistd/setuid.c +++ b/src/unistd/setuid.c @@ -4,5 +4,5 @@ int setuid(uid_t uid) { - return __rsyscall(__NR_setuid, uid, 0, 0, 0, 0, 0); + return __rsyscall(SYS_setuid, uid, 0, 0, 0, 0, 0); } -- cgit 1.4.1