diff options
Diffstat (limited to 'trap.c')
-rw-r--r-- | trap.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -7,7 +7,7 @@ #include "traps.h" #include "syscall.h" -struct Gatedesc idt[256]; +struct gatedesc idt[256]; extern uint vectors[]; /* vectors.S, array of 256 entry point addresses */ extern void trapenter(void); @@ -31,7 +31,7 @@ idtinit(void) } void -trap(struct Trapframe *tf) +trap(struct trapframe *tf) { int v = tf->trapno; |