Sign in
mojo
/
mojo-tools
/
c07399d071c59658a5c2bed81dee6e9ed9142442
/
.
/
fusl
/
src
/
linux
/
module.c
blob: f738352f5b11518a36a75145cb1f87ed5bf36d94 [
file
] [
log
] [
blame
]
#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
);
}