mirror of
https://github.com/Leonmmcoset/cleonos.git
synced 2026-04-21 18:44:01 +00:00
10 lines
249 B
C
10 lines
249 B
C
#ifndef CLKS_PANIC_H
|
|
#define CLKS_PANIC_H
|
|
|
|
#include <clks/compiler.h>
|
|
#include <clks/types.h>
|
|
|
|
CLKS_NORETURN void clks_panic(const char *reason);
|
|
CLKS_NORETURN void clks_panic_exception(const char *name, u64 vector, u64 error_code, u64 rip);
|
|
|
|
#endif |