corn/include/panic.h

12 lines
344 B
C
Raw Normal View History

2024-01-29 21:27:03 +00:00
#pragma once
#define _PANIC_STR(x) _PANIC_STR2(x)
#define _PANIC_STR2(x) #x
#define panic(msg) _panic_impl(_PANIC_STR(__LINE__), __FILE__, msg)
2024-02-01 21:53:07 +00:00
#define kassert(val, msg) do { if (!(val)) { panic(msg); } } while(0)
2024-01-29 21:27:03 +00:00
_Noreturn void _panic_impl(char *line, char *file, char *msg);
2024-01-30 15:19:33 +00:00
_Noreturn void panic_interrupt(void *ip, void *bp, char *msg);