From: ceriel Date: Wed, 6 Jun 1990 16:54:30 +0000 (+0000) Subject: use own version of assert (ASSERT) X-Git-Tag: release-5-5~1687 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=020e6311fb622861ad8fe4d457fdf10d395d3247;p=ack.git use own version of assert (ASSERT) --- diff --git a/lang/cem/cemcom/main.c b/lang/cem/cemcom/main.c index eef89f83c..c1e840e3f 100644 --- a/lang/cem/cemcom/main.c +++ b/lang/cem/cemcom/main.c @@ -28,7 +28,7 @@ #include "nocross.h" #include "sizes.h" #include "align.h" -#include +#include "assert.h" #include "macro.h" extern struct tokenname tkidf[], tkother[]; @@ -171,7 +171,7 @@ char *source; fatal("could not open %s", dep_file); } while (p) { - assert(p->id_resmac == K_FILE); + ASSERT(p->id_resmac == K_FILE); dependency(p->id_text, source); p = (struct idf *) (p->id_file); }