summaryrefslogtreecommitdiff
path: root/src/linux/setgroups.c
blob: 9758940af2c57eaa4a836d8e34cc34ea073bba3c (plain) (blame)
1
2
3
4
5
6
7
#include <unistd.h>
#include "syscall.h"

int setgroups(size_t count, const gid_t list[])
{
	return syscall(SYS_setgroups, count, list);
}