summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorPixel <>2001-04-01 12:36:50 +0000
committerPixel <>2001-04-01 12:36:50 +0000
commit8212d25ba09a7fdf1938a1992022a0143d29e05b (patch)
treebedd5f49afe9d2a74cdb7436ac1bce1151fe6d0e /include
parent4837528241a8f05ce2ca1fcdf35ea60b27728fb3 (diff)
Exceptions
Diffstat (limited to 'include')
-rw-r--r--include/assembler.h7
-rw-r--r--include/exceptions.h (renamed from include/global.h)6
-rw-r--r--include/meta.h1
3 files changed, 11 insertions, 3 deletions
diff --git a/include/assembler.h b/include/assembler.h
index e69de29..0213f15 100644
--- a/include/assembler.h
+++ b/include/assembler.h
@@ -0,0 +1,7 @@
+#ifndef __ASSEMBLER_H__
+#define __ASSEMBLER_H__
+
+int assembler_init(void);
+void assembler_flush(void);
+
+#endif
diff --git a/include/global.h b/include/exceptions.h
index 21d412d..efc02f7 100644
--- a/include/global.h
+++ b/include/exceptions.h
@@ -1,10 +1,10 @@
-#ifndef __GLOBAL_H__
-#define __GLOBAL_H__
+#ifndef __EXCEPTIONS_H__
+#define __EXCEPTIONS_H__
#include <stdio.h>
-void exception(int, char *);
char * Estrdup(char *);
void * Emalloc(size_t);
+void exception(int, char *);
#endif
diff --git a/include/meta.h b/include/meta.h
index 7e456a5..471710d 100644
--- a/include/meta.h
+++ b/include/meta.h
@@ -53,4 +53,5 @@ extern instruct_t *instructs;
void meta_parse_line(char *);
int meta_init(void);
void meta_flush(void);
+int meta_load(char *);
#endif