style cleanups and an ERRQUIT

This commit is contained in:
Aaron Culliney
2013-09-12 20:47:00 -07:00
parent 1f9a1778b9
commit b0236992d2

View File

@@ -41,6 +41,12 @@ static FILE *error_log=0;
fprintf(error_log ? error_log : stderr, "\n"); \
}
#define ERRQUIT(...) \
{ \
ERRLOG(__VA_ARGS__); \
exit(0); \
}
#else // NDEBUG
#if defined(__GNUC__)