Sign in
mojo
/
mojo-tools
/
ed4bdf2b045dcf76699eb5095f037df4b8750a28
/
.
/
fusl
/
src
/
linux
/
cap.c
blob: 8d035e07a4c97896e4fbadfd76ba79a40e1a8ea0 [
file
] [
log
] [
blame
]
#include
"syscall.h"
int
capset
(
void
*
a
,
void
*
b
)
{
return
syscall
(
SYS_capset
,
a
,
b
);
}
int
capget
(
void
*
a
,
void
*
b
)
{
return
syscall
(
SYS_capget
,
a
,
b
);
}