16 lines
180 B
C
16 lines
180 B
C
|
|
#ifndef K_EARLY_PANIC_H
|
|
#define K_EARLY_PANIC_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void k_early_panic(const char * msg);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|