summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/getresgid.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/sysdeps/linux/common/getresgid.c')
-rw-r--r--libc/sysdeps/linux/common/getresgid.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/common/getresgid.c b/libc/sysdeps/linux/common/getresgid.c
index c16d5384c..1c52cf8c0 100644
--- a/libc/sysdeps/linux/common/getresgid.c
+++ b/libc/sysdeps/linux/common/getresgid.c
@@ -9,6 +9,7 @@
#include "syscalls.h"
+#ifdef __NR_getresgid
#define __NR___syscall_getresgid __NR_getresgid
static inline _syscall3(int, __syscall_getresgid, __kernel_gid_t *, egid,
__kernel_gid_t *, rgid, __kernel_gid_t *, sgid);
@@ -26,3 +27,4 @@ int getresgid(gid_t * rgid, gid_t * egid, gid_t * sgid)
}
return result;
}
+#endif