blob: 1dd33a087242ae69e40abaee8da91251a43fb5ec (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#ifndef KNOB_PANIC_H
#define KNOB_PANIC_H
#include <stdint.h>
#define PANIC(msg) panic(__FILE__, __LINE__, msg)
void panic(const char *filename, uint32_t line, const char *message) __attribute__ ((noreturn));
#endif
|