summaryrefslogtreecommitdiff
path: root/src/unistd/getgroups.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unistd/getgroups.c')
-rw-r--r--src/unistd/getgroups.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/unistd/getgroups.c b/src/unistd/getgroups.c
index 6f19870e..37619b9a 100644
--- a/src/unistd/getgroups.c
+++ b/src/unistd/getgroups.c
@@ -3,6 +3,5 @@
int getgroups(int count, gid_t list[])
{
- /* this depends on our gid_t being 32bit */
- return syscall2(__NR_getgroups32, count, (long)list);
+ return syscall2(__NR_getgroups, count, (long)list);
}