10 lines
188 B
C
10 lines
188 B
C
|
|
#ifndef _KERNEL_PLATFORM_X86_ISR_HANDLER_H
|
||
|
|
#define _KERNEL_PLATFORM_X86_ISR_HANDLER_H
|
||
|
|
|
||
|
|
#include <libkern/types.h>
|
||
|
|
#include <platform/x86/idt.h>
|
||
|
|
|
||
|
|
void isr_handler(trapframe_t* tf);
|
||
|
|
|
||
|
|
#endif
|