Sign in
mojo
/
mojo
/
96b05c1cc252cbd1582be4b8c554e72024938f3c
/
.
/
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
);
}