mirror of
https://github.com/fluencelabs/musl
synced 2025-06-20 10:16:47 +00:00
10 lines
218 B
C
10 lines
218 B
C
#include <unistd.h>
|
|
#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);
|
|
}
|