Used Variables instead of Options, in SConstruct
[mcc.git] / errors.h
blob285a2bc9268c640c5e60fe524e0c8754f8fa5319
1 #ifndef MCC_ERRORS_H
2 #define MCC_ERRORS_H
4 #include "cppdefs.h"
5 #include "stddef.h"
7 #define die(...) _die(__func__, __VA_ARGS__)
8 noreturn void _die(const char *func, const char *fmt, ...);
9 void *emalloc(size_t size);
10 char *estrdup(const char *str);
12 #endif