* src/pic/gen.h: Q&D solution for the bug, found by Jim Paris
[fw/sdcc] / src / regression / compare6.c
index c613df03b264a40960a8f58d9e427eed697d7750..f189ba82467ea46ad1d1e5f7d89a539f0c2fb21a 100644 (file)
@@ -22,7 +22,8 @@ done()
   PASSED();
 }
 
-void c_char(void)
+void
+c_char(void)
 {
 
   if(char0 || char1)
@@ -66,7 +67,8 @@ void c_char(void)
 }
 
 
-void c_int(void)
+void
+c_int(void)
 {
 
   if(int0 || int1)
@@ -110,7 +112,8 @@ void c_int(void)
 }
 
 
-void c_long(void)
+void
+c_long(void)
 {
 
   if(long0 || long1)
@@ -153,7 +156,8 @@ void c_long(void)
 
 }
 
-void c_uminus(void)
+void
+c_uminus(void)
 {
 
   int1 = -int0;
@@ -177,3 +181,4 @@ main (void)
   success = failures;
   done ();
 }
+