Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
musl
/
f1abc29bd09dde14edd942f5868446aaba77f73f
/
.
/
src
/
linux
/
module.c
blob: 33f69a0006e85026e2ed572b641206e74d27c03f [
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
);
}