X-Git-Url: https://git.distorted.org.uk/~mdw/anag/blobdiff_plain/a29e0def776d0857020a25648fc1a1949db20b6f..94ed9b3061c85d2dcee290c0e207a5c7fc7c8371:/util.c diff --git a/util.c b/util.c index d35f4af..2adb4a9 100644 --- a/util.c +++ b/util.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: util.c,v 1.2 2004/04/08 01:36:19 mdw Exp $ + * $Id$ * * Various useful utilities, stolen from mLib * @@ -126,7 +126,7 @@ void die(const char *f, ...) vfprintf(stderr, f, ap); va_end(ap); putc('\n', stderr); - exit(EXIT_FAILURE); + exit(EX_FAIL); } /*----- Memory allocation -------------------------------------------------*/