X-Git-Url: https://git.distorted.org.uk/~mdw/anag/blobdiff_plain/6e4032210ea6c167fcf14c70ae6b18661c011310..dc553c0afbd256198d1fde65acf42ba3e10ddcce:/util.c diff --git a/util.c b/util.c index 13171e3..2adb4a9 100644 --- a/util.c +++ b/util.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: util.c,v 1.1 2001/02/04 17:14:42 mdw Exp $ + * $Id$ * * Various useful utilities, stolen from mLib * @@ -26,14 +26,6 @@ * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/*----- Revision history --------------------------------------------------* - * - * $Log: util.c,v $ - * Revision 1.1 2001/02/04 17:14:42 mdw - * Initial checkin - * - */ - /*----- Header files ------------------------------------------------------*/ #include "anag.h" @@ -134,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 -------------------------------------------------*/