mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-05-28 15:34:31 +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__
|