10 lines
141 B
C++
10 lines
141 B
C++
#ifndef _SYSCALL_HH_
|
|
#define _SYSCALL_HH_
|
|
|
|
#define SYSCALL_EXIT 0
|
|
#define SYSCALL_YIELD 1
|
|
|
|
extern "C" void syscall_handler(int num);
|
|
|
|
#endif
|