module.c\linux\src - musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/linux/module.c
blob: 33f69a0006e85026e2ed572b641206e74d27c03f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#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);
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月11日 18:52:10 +0000

AltStyle によって変換されたページ (->オリジナル) /