1 #ifndef JOS_KERN_SYSCALL_H
2 #define JOS_KERN_SYSCALL_H
4 # error "This is a JOS kernel header; user programs should not #include it"
7 #include <inc/syscall.h>
9 int32_t syscall(uint32_t num
, uint32_t a1
, uint32_t a2
, uint32_t a3
, uint32_t a4
, uint32_t a5
);
11 #endif /* !JOS_KERN_SYSCALL_H */