2020-03-09 02:12:24 +01:00
|
|
|
#ifndef __PANIC_H__
|
|
|
|
#define __PANIC_H__
|
|
|
|
|
2020-03-11 15:23:58 +01:00
|
|
|
extern bool stop_at_panic;
|
|
|
|
extern bool i_have_panicked;
|
|
|
|
|
2020-03-09 02:12:24 +01:00
|
|
|
void panic(void);
|
2020-03-11 15:23:58 +01:00
|
|
|
void panic(const char* s);
|
2020-03-09 02:12:24 +01:00
|
|
|
|
|
|
|
#endif
|