summaryrefslogtreecommitdiff
path: root/include/exceptions.h
blob: ab578a76c6878643a6d9f5e314ab2d30de7ade06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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);

extern int global_error;

#endif