1 2 3 4 5 6 7 8 9 10
#ifndef PANIC_H #define PANIC_H #include <types.h> extern uint64_t panic_rsp; __attribute__((noreturn)) void panic(const char *error, ...); #endif