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/setresuid.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/unistd/setresuid.c') diff --git a/src/unistd/setresuid.c b/src/unistd/setresuid.c index 7fa6bc38..497f7592 100644 --- a/src/unistd/setresuid.c +++ b/src/unistd/setresuid.c @@ -5,5 +5,5 @@ int setresuid(uid_t ruid, uid_t euid, uid_t suid) { - return __rsyscall(__NR_setresuid, ruid, euid, suid, 0, 0, 0); + return __rsyscall(SYS_setresuid, ruid, euid, suid, 0, 0, 0); } -- cgit v1.2.1