aboutsummaryrefslogtreecommitdiffhomepage
path: root/main.c
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-08-22 23:28:25 +0900
committernsfisis <nsfisis@gmail.com>2025-08-22 23:28:25 +0900
commit9c202a496e75903fe37e5c19cb97c98eba6e35f2 (patch)
tree52de494a4717a3c30c4bacb9dd9b91980be2a575 /main.c
parent0ac6ac95283735dd70ebf55b26ef78a4c32c31de (diff)
downloadducc-9c202a496e75903fe37e5c19cb97c98eba6e35f2.tar.gz
ducc-9c202a496e75903fe37e5c19cb97c98eba6e35f2.tar.zst
ducc-9c202a496e75903fe37e5c19cb97c98eba6e35f2.zip
chore: move *.c and *.h files to src/
Diffstat (limited to 'main.c')
-rw-r--r--main.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/main.c b/main.c
index 3f9be2e..f34baf1 100644
--- a/main.c
+++ b/main.c
@@ -1,14 +1,14 @@
// Currently the source code depends on the #include order.
// clang-format off
-#include "std.h"
-#include "common.c"
-#include "io.c"
-#include "sys.c"
-#include "preprocess.c"
-#include "tokenize.c"
-#include "ast.c"
-#include "parse.c"
-#include "codegen.c"
+#include "src/std.h"
+#include "src/common.c"
+#include "src/io.c"
+#include "src/sys.c"
+#include "src/preprocess.c"
+#include "src/tokenize.c"
+#include "src/ast.c"
+#include "src/parse.c"
+#include "src/codegen.c"
// clang-format on
int main(int argc, char** argv) {