diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/Makefile.am | 2 | ||||
-rw-r--r-- | include/exceptions.h | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/include/Makefile.am b/include/Makefile.am index f451c35..44298ee 100644 --- a/include/Makefile.am +++ b/include/Makefile.am @@ -1 +1 @@ -include_HEADERS = hash.h assembler.h meta.h parser.h numbers.h global.h +include_HEADERS = hash.h assembler.h meta.h parser.h numbers.h exceptions.h diff --git a/include/exceptions.h b/include/exceptions.h index efc02f7..5ce9f60 100644 --- a/include/exceptions.h +++ b/include/exceptions.h @@ -7,4 +7,8 @@ char * Estrdup(char *); void * Emalloc(size_t); void exception(int, char *); +void pushcontext(char *); +void popcontext(void); +void flushcontext(void); + #endif |