summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorPixel <>2001-04-02 01:00:37 +0000
committerPixel <>2001-04-02 01:00:37 +0000
commitce176d3637caebac401e634b40abe8bc48505327 (patch)
tree6176a1d949974cb887773177727c2894945b56e8 /include
parent8212d25ba09a7fdf1938a1992022a0143d29e05b (diff)
Exceptions.
Diffstat (limited to 'include')
-rw-r--r--include/Makefile.am2
-rw-r--r--include/exceptions.h4
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