1
0
Fork 0
mirror of https://github.com/tailix/kernel.git synced 2026-05-30 02:44:12 -04:00
kernel/arch/hwint.h

8 lines
185 B
C

#ifndef KERNELMQ_INCLUDED_HWINT
#define KERNELMQ_INCLUDED_HWINT 1
typedef void(*hwint_handler_t)();
void hwint_register_handler(unsigned int int_no, hwint_handler_t handler);
#endif