repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix return value of ungetc when argument is outside unsigned char range
[musl.git]
/
src
/
linux
/
setgroups.c
blob
1248fdbfdc83c10c9fea5a3a51d5be0edb905869
1
#define _GNU_SOURCE
2
#include <unistd.h>
3
#include
"syscall.h"
4
5
int
setgroups
(
size_t
count
,
const
gid_t list
[])
6
{
7
return
syscall
(
SYS_setgroups
,
count
,
list
);
8
}