//----------------------------------------------------------------------------// // GNU GPL OS/K // // // // Authors: spectral` // // NeoX // // // // Desc: Looking to create some panic? Look no further! // //----------------------------------------------------------------------------// #ifndef _KALKERN_KE_PANIC_H #define _KALKERN_KE_PANIC_H #include "kernel/io/terminal.h" extern const char *panicstr; noreturn void panic(const char *); #endif