17 lines
169 B
C
17 lines
169 B
C
#ifndef _SYSCALL_H
|
|
#define _SYSCALL_H
|
|
|
|
#define SYS_exit 0
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
void __syscall0(int sys_num);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif |