1 2 3 4 5 6 7 8
#ifndef PANIC_H #define PANIC_H #include <stdint.h> void panic(char *message) __attribute__ ((noreturn)); #endif