Fixed up extra static
[fw/sdcc] / support / regression / tests / bug-435214.c
index a8887caa22f5e4212911bfaabda18c68b5cf6f32..ae4f2441c3320adfdc1b2f8ea28cfcde3b1aa1c7 100644 (file)
@@ -2,14 +2,13 @@
  */
 #include <testfwk.h>
 
-static 
 unsigned long divide(long a)
 {
     return a/512ul;
 }
 
-static void
-testDivide()
+void
+testDivide(void)
 {
   ASSERT(divide(1300) == 2);
   ASSERT(divide(0x12345678) == 0x91A2B);