Kernel/syscalls.h

13 lines
203 B
C

#ifndef __FENNIX_KERNEL_SYSCALLS_LIST_H__
#define __FENNIX_KERNEL_SYSCALLS_LIST_H__
#include <types.h>
enum NativeSyscalls
{
_exit = 0,
_print,
};
#endif // !__FENNIX_KERNEL_SYSCALLS_LIST_H__