1570af302Sopenharmony_ci#include "syscall.h"
2570af302Sopenharmony_ci
3570af302Sopenharmony_ciint init_module(void *a, unsigned long b, const char *c)
4570af302Sopenharmony_ci{
5570af302Sopenharmony_ci	return syscall(SYS_init_module, a, b, c);
6570af302Sopenharmony_ci}
7570af302Sopenharmony_ci
8570af302Sopenharmony_ciint delete_module(const char *a, unsigned b)
9570af302Sopenharmony_ci{
10570af302Sopenharmony_ci	return syscall(SYS_delete_module, a, b);
11570af302Sopenharmony_ci}
12