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/nice.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/unistd/nice.c') diff --git a/src/unistd/nice.c b/src/unistd/nice.c index 34f7c7f9..da569967 100644 --- a/src/unistd/nice.c +++ b/src/unistd/nice.c @@ -4,7 +4,7 @@ int nice(int inc) { -#ifdef __NR_nice +#ifdef SYS_nice return syscall(SYS_nice, inc); #else return setpriority(PRIO_PROCESS, 0, getpriority(PRIO_PROCESS, 0)+inc); -- cgit v1.2.1