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