move msghdr and cmsghdr out of bits/socket.h
[musl.git] / src / linux / module.c
blob33f69a0006e85026e2ed572b641206e74d27c03f
1 #include "syscall.h"
3 int init_module(void *a, unsigned long b, const char *c)
5 return syscall(SYS_init_module, a, b, c);
8 int delete_module(const char *a, unsigned b)
10 return syscall(SYS_delete_module, a, b);