zig/stage1/panic.h

13 lines
187 B
C
Raw Normal View History

2022-11-28 08:55:12 +08:00
#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 */