natkernel / syscall_stub.c
Nanny7's picture
v3.0: real shell, filesystem, scheduler, crypto, 37 modules, N=7
8ad4ba9
Raw
History Blame Contribute Delete
152 Bytes
#include "../kernel.h"
void sys_init(void) {}
u64 syscall_dispatch(u64 num, u64 a1, u64 a2, u64 a3) { (void)num;(void)a1;(void)a2;(void)a3; return 0; }