Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
stage1
panic.h
pretty
plain
permalink
blame
history
•
12 lines
•
187 B
1
#ifndef PANIC_H
2
#define PANIC_H
3
4
#include <stdio.h>
5
#include <stdlib.h>
6
7
static void panic(const char *reason) {
8
fprintf(stderr, "%s\n", reason);
9
abort();
10
}
11
12
#endif /* PANIC_H */