aboutsummaryrefslogtreecommitdiff
path: root/cc.h
diff options
context:
space:
mode:
Diffstat (limited to 'cc.h')
-rw-r--r--cc.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/cc.h b/cc.h
index 1f021fa..8978d89 100644
--- a/cc.h
+++ b/cc.h
@@ -406,6 +406,16 @@ extern struct type typellong, typeullong;
extern struct type typefloat, typedouble, typeldouble;
extern struct type typevalist, typevalistptr;
+/* targ */
+
+struct target {
+ const char *name;
+};
+
+extern struct target *targ;
+
+void targinit(const char *);
+
/* decl */
struct decl *mkdecl(enum declkind, struct type *, enum typequal, enum linkage);