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 setgroups behavior in multithreaded process
[musl.git]
/
src
/
linux
/
cap.c
blob
8d035e07a4c97896e4fbadfd76ba79a40e1a8ea0
1
#include
"syscall.h"
2
3
int
capset
(
void
*
a
,
void
*
b
)
4
{
5
return
syscall
(
SYS_capset
,
a
,
b
);
6
}
7
8
int
capget
(
void
*
a
,
void
*
b
)
9
{
10
return
syscall
(
SYS_capget
,
a
,
b
);
11
}