aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/preprocess.h
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-08-31 00:28:00 +0900
committernsfisis <nsfisis@gmail.com>2025-08-31 12:04:19 +0900
commitda65f1e21a24f0a173ee5ae08f00db91cba5ffda (patch)
tree3ec802f40d7cd0bd9e162ea5b3e50b76f319a884 /src/preprocess.h
parenta5ee9d944edf665c814bbfeded2849f2bb980ed8 (diff)
downloadducc-da65f1e21a24f0a173ee5ae08f00db91cba5ffda.tar.gz
ducc-da65f1e21a24f0a173ee5ae08f00db91cba5ffda.tar.zst
ducc-da65f1e21a24f0a173ee5ae08f00db91cba5ffda.zip
feat: support -MMD flag
Diffstat (limited to 'src/preprocess.h')
-rw-r--r--src/preprocess.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/preprocess.h b/src/preprocess.h
index b43ec4c..81007c3 100644
--- a/src/preprocess.h
+++ b/src/preprocess.h
@@ -1,9 +1,10 @@
#ifndef DUCC_PREPROCESS_H
#define DUCC_PREPROCESS_H
+#include "common.h"
#include "io.h"
#include "token.h"
-TokenArray* preprocess(InFile* src);
+TokenArray* preprocess(InFile* src, StrArray* included_files);
#endif