use own version of assert (ASSERT)
authorceriel <none@none>
Wed, 6 Jun 1990 16:54:30 +0000 (16:54 +0000)
committerceriel <none@none>
Wed, 6 Jun 1990 16:54:30 +0000 (16:54 +0000)
lang/cem/cemcom/main.c

index eef89f8..c1e840e 100644 (file)
@@ -28,7 +28,7 @@
 #include       "nocross.h"
 #include       "sizes.h"
 #include       "align.h"
-#include       <assert.h>
+#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);
     }