aboutsummaryrefslogtreecommitdiff
path: root/src/lib/libkogata/debug.c
blob: 9688877d861d69a686744bb46667cb69d5192111 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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);
}

/* vim: set ts=4 sw=4 tw=0 noet :*/