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