blob: 7a8fc5f45071a4e904b30eef3787a92c8be702f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef PANIC_H
#define PANIC_H
#include <stdio.h>
#include <stdlib.h>
static void panic(const char *reason) {
fprintf(stderr, "%s\n", reason);
abort();
}
#endif /* PANIC_H */
|