toaruos/libc/sys/sysfunc.c
2021-05-31 10:54:11 +09:00

11 lines
241 B
C

#include <errno.h>
#include <syscall.h>
#include <syscall_nums.h>
#include <sys/sysfunc.h>
DEFN_SYSCALL2(sysfunc, SYS_SYSFUNC, int, char **);
extern int sysfunc(int command, char ** args) {
__sets_errno(syscall_sysfunc(command, args));
}