From af0e9371e96b63ef38b5ad981f86f196f51c46be Mon Sep 17 00:00:00 2001 From: ceriel Date: Fri, 25 Feb 1994 14:01:54 +0000 Subject: [PATCH] call abort() only when NDEBUG is not defined --- util/opt/util.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/util/opt/util.c b/util/opt/util.c index ae412b179..71a56edca 100644 --- a/util/opt/util.c +++ b/util/opt/util.c @@ -29,7 +29,9 @@ error(s,a) char *s,*a; { fprintf(stderr,": "); fprintf(stderr,s,a); fprintf(stderr,"\n"); +#ifndef NDEBUG abort(); +#endif exit(-1); } -- 2.34.1