summaryrefslogtreecommitdiff
path: root/arch/i386/boot/syscall.h
blob: 376fb7c2d21f8aa8625c99dc03128332c4ce4691 (plain)
1
2
3
4
5
6
7
8
9
#ifndef I386_SYSCALL_H
#define I386_SYSCALL_H

#include <kernel/isr.h>

void syscall_dispatch(struct isr_frame *frame);
void register_syscall(void *handler(struct isr_frame*), int num);

#endif