diff options
Diffstat (limited to 'kernel/cpu/idt.h')
-rw-r--r-- | kernel/cpu/idt.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/kernel/cpu/idt.h b/kernel/cpu/idt.h index c68ce81..9341887 100644 --- a/kernel/cpu/idt.h +++ b/kernel/cpu/idt.h @@ -5,8 +5,8 @@ typedef struct registers registers_t; #include <cpu/gdt.h> #include <cpu/io.h> #include <log.h> -#include <typedefs.h> #include <stdio.h> +#include <typedefs.h> /* * the type_attribute in the IDT_Entry struct @@ -65,6 +65,5 @@ struct registers { void idt_init(void); __attribute__((no_caller_saved_registers)) void EOI(unsigned char irq); -void install_handler(void (*handler_function)(), u16 type_attribute, - u8 entry); +void install_handler(void (*handler_function)(), u16 type_attribute, u8 entry); #endif |