aboutsummaryrefslogtreecommitdiff
path: root/src/linux/module.c
blob: d4ccda834056491b0580bf44373c3006323e835a (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 init_module(void *a, unsigned long b, const char *c)
{
	return syscall(SYS_init_module, a, b, c);
}

int delete_module(const char *a, unsigned b)
{
	return syscall(SYS_delete_module, a, b);
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif