diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-03-19 20:53:54 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-03-19 20:53:54 +0000 |
commit | e7a1ee4f067e584be66d1c18a87a20ff64ac988e (patch) | |
tree | 388fd2c126f689c4c9a0bf22ffeaa9470010eba8 /libc/sysdeps/linux/common/getresuid.c | |
parent | 33d1ef86d171d0fbf058d664a3cb53842b08f2ae (diff) |
Per patch from Stefan Holst, do not try to compile these
syscalls if they are not supported.
Diffstat (limited to 'libc/sysdeps/linux/common/getresuid.c')
-rw-r--r-- | libc/sysdeps/linux/common/getresuid.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/common/getresuid.c b/libc/sysdeps/linux/common/getresuid.c index ec7d6ebb1..635d2981d 100644 --- a/libc/sysdeps/linux/common/getresuid.c +++ b/libc/sysdeps/linux/common/getresuid.c @@ -9,6 +9,7 @@ #include "syscalls.h" +#ifdef __NR_getresuid #define __NR___syscall_getresuid __NR_getresuid static inline _syscall3(int, __syscall_getresuid, __kernel_uid_t *, ruid, __kernel_uid_t *, euid, __kernel_uid_t *, suid); @@ -26,3 +27,4 @@ int getresuid(uid_t * ruid, uid_t * euid, uid_t * suid) } return result; } +#endif |