diff options
Diffstat (limited to 'include/exceptions.h')
-rw-r--r-- | include/exceptions.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/exceptions.h b/include/exceptions.h new file mode 100644 index 0000000..efc02f7 --- /dev/null +++ b/include/exceptions.h @@ -0,0 +1,10 @@ +#ifndef __EXCEPTIONS_H__ +#define __EXCEPTIONS_H__ + +#include <stdio.h> + +char * Estrdup(char *); +void * Emalloc(size_t); +void exception(int, char *); + +#endif |