summaryrefslogtreecommitdiff
path: root/compiler_and_linker/unsorted/CCompiler.c
diff options
context:
space:
mode:
authorAsh Wolf <ninji@wuffs.org>2022-11-07 03:06:21 +0000
committerAsh Wolf <ninji@wuffs.org>2022-11-07 03:06:21 +0000
commit9a46dd0e2e80790d9848c0bbd718932a27c23269 (patch)
treee7a8e976c7138d50a69ff4778c4e8572efd94452 /compiler_and_linker/unsorted/CCompiler.c
parentd0b9848c54e6f85ab713f059dcd1ddef7e57caa6 (diff)
downloadMWCC-9a46dd0e2e80790d9848c0bbd718932a27c23269.tar.gz
MWCC-9a46dd0e2e80790d9848c0bbd718932a27c23269.zip
honk
Diffstat (limited to 'compiler_and_linker/unsorted/CCompiler.c')
-rw-r--r--compiler_and_linker/unsorted/CCompiler.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/compiler_and_linker/unsorted/CCompiler.c b/compiler_and_linker/unsorted/CCompiler.c
index d496389..8339cf6 100644
--- a/compiler_and_linker/unsorted/CCompiler.c
+++ b/compiler_and_linker/unsorted/CCompiler.c
@@ -3,6 +3,7 @@
#include "compiler/types.h"
#include "pref_structs.h"
#include "compiler/CompilerTools.h"
+#include "compiler/CPrep.h"
Boolean systemHandles;
@@ -11,14 +12,6 @@ Boolean crippled;
SInt32 license_cookie;
CParams cparams;
-// TODO move me to CParser.c, or maybe CMachine.c?
-Type sttemplexpr = {TYPETEMPLDEPEXPR, 0};
-Type stillegal = {TYPEILLEGAL, 1};
-Type stvoid = {TYPEVOID, 0};
-TypePointer void_ptr = {TYPEPOINTER, 0, &stvoid, 0};
-TypeFunc rt_func = {TYPEFUNC, 0, NULL, NULL, &stvoid, 0, 0};
-// TODO move me to CParser.c
-
static void get_extension(ConstStringPtr src, char *dst) {
int ep;