summaryrefslogtreecommitdiff
path: root/exceptions.h
diff options
context:
space:
mode:
Diffstat (limited to 'exceptions.h')
-rw-r--r--exceptions.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/exceptions.h b/exceptions.h
new file mode 100644
index 0000000..6f6e8c4
--- /dev/null
+++ b/exceptions.h
@@ -0,0 +1,13 @@
+#ifndef __EXCEPTIONS_H__
+#define __EXCEPTIONS_H__
+
+#include <stdio.h>
+
+char *Estrdup(char *);
+void *Emalloc(size_t);
+void exception(int, char *);
+void pushcontext(char *);
+void popcontext(void);
+void flushcontext(void);
+
+#endif