diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/assembler.h | 7 | ||||
-rw-r--r-- | include/exceptions.h (renamed from include/global.h) | 6 | ||||
-rw-r--r-- | include/meta.h | 1 |
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 |