From e7a1ee4f067e584be66d1c18a87a20ff64ac988e Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Fri, 19 Mar 2004 20:53:54 +0000 Subject: Per patch from Stefan Holst, do not try to compile these syscalls if they are not supported. --- libc/sysdeps/linux/common/setresgid.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libc/sysdeps/linux/common/setresgid.c') diff --git a/libc/sysdeps/linux/common/setresgid.c b/libc/sysdeps/linux/common/setresgid.c index 56e66a102..a9754ce27 100644 --- a/libc/sysdeps/linux/common/setresgid.c +++ b/libc/sysdeps/linux/common/setresgid.c @@ -9,6 +9,7 @@ #include "syscalls.h" +#ifdef __NR_setresgid #define __NR___syscall_setresgid __NR_setresgid static inline _syscall3(int, __syscall_setresgid, __kernel_gid_t, rgid, __kernel_gid_t, egid, __kernel_gid_t, sgid); @@ -23,3 +24,4 @@ int setresgid(gid_t rgid, gid_t egid, gid_t sgid) } return (__syscall_setresgid(rgid, egid, sgid)); } +#endif -- cgit v1.2.3