summaryrefslogtreecommitdiffstats
path: root/include/panic.h
blob: 076a425f1fe1b7a1ad7d6debd1345771210ef6d2 (plain) (blame)
1
2
3
4
5
6
7
8
9
#ifndef _JOVE_PANIC_H
#define _JOVE_PANIC_H 1

#include "jove.h"

#define kpanic(...) _kpanic(__FILE__, __LINE__, __VA_ARGS__)
NORETURN void _kpanic(const char *file, int line, const char *fmt, ...);

#endif