mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-05-25 22:14:37 +00:00
13 lines
203 B
C
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__
|