panthema / 2006 / SDIOS06 / sdios06 / testapps / heaptest / sdi / panic.h (Download File)
#include <stdio.h>
#include <stdlib.h>

static inline void panic(const char* msg)
{
	printf("PANIC: %s\n", msg);
	exit(1);
}