diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-05-11 19:51:31 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-05-11 19:51:31 +0000 |
commit | 0d863ccb78ec9f4a71c72491f2f0c59290346df2 (patch) | |
tree | a3e45d1ced8b5f54812d7a39ad35072bbecfa0b4 /libc/sysdeps/linux/common | |
parent | 3901d1d358e56d186848f16b15f90c261892e454 (diff) |
Bring powerpc back into line so it compiles again.
Diffstat (limited to 'libc/sysdeps/linux/common')
-rw-r--r-- | libc/sysdeps/linux/common/syscalls.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/common/syscalls.c b/libc/sysdeps/linux/common/syscalls.c index ee6de0d89..6b5261afb 100644 --- a/libc/sysdeps/linux/common/syscalls.c +++ b/libc/sysdeps/linux/common/syscalls.c @@ -660,13 +660,13 @@ _syscall3(int, fchown, int, fd, uid_t, owner, gid_t, group); //#define __NR_getpriority 96 #ifdef L_getpriority #include <sys/resource.h> -_syscall2(int, getpriority, int, which, int, who); +_syscall2(int, getpriority, __priority_which_t, which, id_t, who); #endif //#define __NR_setpriority 97 #ifdef L_setpriority #include <sys/resource.h> -_syscall3(int, setpriority, int, which, int, who, int, prio); +_syscall3(int, setpriority, __priority_which_t, which, id_t, who, int, prio); #endif //#define __NR_profil 98 |