use zig-wasm2c for bootstrapping

This commit is contained in:
Jacob Young
2022-11-27 19:55:12 -05:00
committed by Andrew Kelley
parent a63305bc50
commit 1263346774
8 changed files with 4202 additions and 4581 deletions

12
stage1/panic.h Normal file
View File

@@ -0,0 +1,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 */