aboutsummaryrefslogtreecommitdiff
path: root/src/linux/cap.c
blob: 6ef735271067dea97c02c6b704f1da1e945c06b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#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