]> git.sur5r.net Git - cc65/blobdiff - test/val/compare5.c
added makefile and common include
[cc65] / test / val / compare5.c
index b5dd93f01a0f29041e1d9600f7e7622975476785..b0a9f1649057943eb7d1029064da065685e6aa18 100644 (file)
@@ -4,6 +4,8 @@
   !!LICENCE!!     GPL, read COPYING.GPL
 */
 
+#include "common.h"
+
 #include <stdio.h>
 #include <limits.h>
 
@@ -291,19 +293,16 @@ void c_minus1(void)
   printf("(long0 != -1)\n");
   if(long0 != -1)
   {
-       LOG_ERROR(1);
        failures++;
   }
   printf("(long0 > 0)\n");
   if(long0 > 0)
   {
-       LOG_ERROR(1);
        failures++;
   }
   printf("(long1 < 0)\n");
   if(long1 < 0)
   {
-       LOG_ERROR(1);
        failures++;
   }
 /*