aboutsummaryrefslogtreecommitdiff
path: root/bootstrap/main.c
diff options
context:
space:
mode:
authorlemon <lsof@mailbox.org>2022-08-05 09:31:06 +0200
committerlemon <lsof@mailbox.org>2022-08-05 09:31:06 +0200
commite0630766450d402455d9c8368087f96d8075c07c (patch)
tree57c6815ff9c4e4264e39f4643e60e4d0be7c192c /bootstrap/main.c
parent9667272414380e2d50113e0a0c6408a02e7c23eb (diff)
headers, import
Diffstat (limited to 'bootstrap/main.c')
-rw-r--r--bootstrap/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/bootstrap/main.c b/bootstrap/main.c
index 4acf913..95759af 100644
--- a/bootstrap/main.c
+++ b/bootstrap/main.c
@@ -3,12 +3,12 @@
int
main(int argc, char **argv) {
struct parser P;
- struct transunit tu = {0};
+ struct comfile cf = {0};
assert(argc > 1);
inittypes();
initparser(&P, argv[1]);
- parse(&tu, &P);
+ parse(&cf, &P);
// dumptransunit(&tu);
- cgen(stdout, &tu);
+ cgen(stdout, &cf);
}