1 2 3 4 5 6 7 8 9
#ifndef ERROR_H #define ERROR_H typedef struct error { const char* traceback; const char* cause; } error; #endif /* ERROR_H */