musl-tcc/src/linux/module.c
2022-03-20 16:48:53 +08:00

12 lines
218 B
C

#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);
}