aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/codegen.h
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-09-04 22:49:54 +0900
committernsfisis <nsfisis@gmail.com>2025-09-04 22:49:54 +0900
commite342992a135e68d10716d9da920cb3af62a7d750 (patch)
tree49a1a94a87204c672a9f57890ec9d9c23989e2f6 /src/codegen.h
parent17809b0571a038ec9eba3fc3620ba77a38c98afd (diff)
downloadducc-e342992a135e68d10716d9da920cb3af62a7d750.tar.gz
ducc-e342992a135e68d10716d9da920cb3af62a7d750.tar.zst
ducc-e342992a135e68d10716d9da920cb3af62a7d750.zip
feat: use <stdio.h> in ducc sources
Diffstat (limited to 'src/codegen.h')
-rw-r--r--src/codegen.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/codegen.h b/src/codegen.h
index 95ec069..6a75179 100644
--- a/src/codegen.h
+++ b/src/codegen.h
@@ -1,6 +1,7 @@
#ifndef DUCC_CODEGEN_H
#define DUCC_CODEGEN_H
+#include <stdio.h>
#include "ast.h"
void codegen(Program* prog, FILE* out);