#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);
}
#ifdef TEST
int
main(void) {
return 0;
}
#endif
![]() |
index : grovel | |
| Unnamed repository; edit this file 'description' to name the repository. | External SSH Git service user |
| aboutsummaryrefslogtreecommitdiff |
#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);
}
#ifdef TEST
int
main(void) {
return 0;
}
#endif