aboutsummaryrefslogtreecommitdiff
path: root/src/lib/libkogata/debug.c
blob: 27c9e28308650c14c42401c6ee54ab66b9bdb2ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdbool.h>

#include <debug.h>

void panic(const char* msg, const char* file, int line) {
	// TODO
	while(true);
}

void panic_assert(const char* assert, const char* file, int line) {
	// TODO
	while(true);
}