Fixed up extra static
authormichaelh <michaelh@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Wed, 28 Nov 2001 01:58:43 +0000 (01:58 +0000)
committermichaelh <michaelh@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Wed, 28 Nov 2001 01:58:43 +0000 (01:58 +0000)
git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@1651 4a8a32a2-be11-0410-ad9d-d568d2c75423

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);