8 lines
223 B
C
8 lines
223 B
C
#ifndef KERNEL_PANIC_H
|
|
#define KERNEL_PANIC_H
|
|
|
|
#define PANIC(fmt, ...) __panic("[Panic @ %s:%d %s] " fmt, __FILE__, __LINE__, __func__, ##__VA_ARGS__)
|
|
|
|
void __panic(const char *restrict fmt, ...);
|
|
|
|
#endif // KERNEL_PANIC_H
|