aboutsummaryrefslogtreecommitdiffhomepage
path: root/obj.h
diff options
context:
space:
mode:
Diffstat (limited to 'obj.h')
-rw-r--r--obj.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/obj.h b/obj.h
new file mode 100644
index 0000000..0258119
--- /dev/null
+++ b/obj.h
@@ -0,0 +1,12 @@
+#include "common.h"
+
+extern struct objfile {
+ const char *file;
+ uchar *textbegin, *textend;
+ uchar *code;
+} objout;
+
+void objini(const char *);
+void objfini(void);
+
+/* vim:set ts=3 sw=3 expandtab: */