1 2 3 4 5 6 7 8 9
#ifndef HALT_H #define HALT_H #include "def.h" [[noreturn]] void freeze(); [[noreturn]] void panic(str msg); #endif