don't use EXIT_… cpp defines

This commit is contained in:
Markus Teich
2015-11-07 23:52:35 +01:00
parent 0dc8cb9dab
commit 3ce84e7170
2 changed files with 2 additions and 2 deletions

2
util.c
View File

@ -12,6 +12,6 @@ die(const char *errstr, ...) {
va_start(ap, errstr);
vfprintf(stderr, errstr, ap);
va_end(ap);
exit(EXIT_FAILURE);
exit(1);
}