diff options
Diffstat (limited to 'libc/sysdeps/linux/common/setresuid.c')
-rw-r--r-- | libc/sysdeps/linux/common/setresuid.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/common/setresuid.c b/libc/sysdeps/linux/common/setresuid.c index 280ddcafc..bbd2b33b1 100644 --- a/libc/sysdeps/linux/common/setresuid.c +++ b/libc/sysdeps/linux/common/setresuid.c @@ -9,6 +9,7 @@ #include "syscalls.h" +#ifdef __NR_setresuid #define __NR___syscall_setresuid __NR_setresuid static inline _syscall3(int, __syscall_setresuid, __kernel_uid_t, rgid, __kernel_uid_t, egid, __kernel_uid_t, sgid); @@ -23,3 +24,4 @@ int setresuid(uid_t ruid, uid_t euid, uid_t suid) } return (__syscall_setresuid(ruid, euid, suid)); } +#endif |