14 lines
194 B
C
14 lines
194 B
C
|
#ifndef JOS_INC_SYSCALL_H
|
||
|
#define JOS_INC_SYSCALL_H
|
||
|
|
||
|
/* system call numbers */
|
||
|
enum {
|
||
|
SYS_cputs = 0,
|
||
|
SYS_cgetc,
|
||
|
SYS_getenvid,
|
||
|
SYS_env_destroy,
|
||
|
NSYSCALLS
|
||
|
};
|
||
|
|
||
|
#endif /* !JOS_INC_SYSCALL_H */
|