From 2cdfb7ca26f46f151afbc23d5d94fc68597137f5 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sun, 13 Feb 2011 22:45:42 -0500 Subject: cleaning up syscalls in preparation for x86_64 port - hide all the legacy xxxxxx32 name cruft in syscall.h so the actual source files can be clean and uniform across all archs. - cleanup llseek/lseek and mmap2/mmap handling for 32/64 bit systems - alternate implementation for nice if the target lacks nice syscall --- src/linux/setgroups.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/linux') diff --git a/src/linux/setgroups.c b/src/linux/setgroups.c index 2368aa0d..4d578013 100644 --- a/src/linux/setgroups.c +++ b/src/linux/setgroups.c @@ -1,9 +1,7 @@ #include -#define SYSCALL_STANDALONE #include "syscall.h" int setgroups(int count, const gid_t list[]) { - /* this depends on our gid_t being 32bit */ - return syscall2(__NR_setgroups32, count, (long)list); + return syscall2(__NR_setgroups, count, (long)list); } -- cgit v1.2.1