blob: ca2855c97a8e359d0631b0e972f9bc2f29a6e941 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#define SYS_fork 1
#define SYS_exit 2
#define SYS_wait 3
#define SYS_pipe 5
#define SYS_write 6
#define SYS_read 7
#define SYS_close 8
#define SYS_block 9
#define SYS_kill 10
#define SYS_exec 13
#define SYS_open 14
#define SYS_mknod 15
#define SYS_unlink 16
#define SYS_fstat 17
|