diff options
-rw-r--r-- | src/linux/module.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/linux/module.c b/src/linux/module.c new file mode 100644 index 00000000..33f69a00 --- /dev/null +++ b/src/linux/module.c @@ -0,0 +1,11 @@ +#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); +} |