#ifndef I386_SYSCALL_H #define I386_SYSCALL_H #include void syscall_dispatch(struct isr_frame *frame); void register_syscall(void *handler(struct isr_frame*), int num); #endif