mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-24 11:45:27 +01:00
11 lines
151 B
C
11 lines
151 B
C
#ifndef __PANIC_H__
|
|
#define __PANIC_H__
|
|
|
|
extern bool stop_at_panic;
|
|
extern bool i_have_panicked;
|
|
|
|
void panic(void);
|
|
void panic(const char* s);
|
|
|
|
#endif
|