* device/include/pic16/stdio.h, device/lib/pic16/libc/stdio/streams.c,
[fw/sdcc] / support / regression / tests / storage.c
index b3e8a2048771fb3bd62b7a46bceee67423b57b1c..7b4c4fa7772bd593ceba1e2bc8bc5d92a2b66a5e 100644 (file)
@@ -2,19 +2,19 @@
 
     source_storage: static, register,
     dest_storage: static, register, 
-    type: char, int
+    type: char, int, long
  */
 #include <testfwk.h>
 
 /** Simple function that spoils sdcc's optimiser by hiding an assign.
  */
-static {type}
+{type}
 spoilAssign({type} in)
 {
     return in;
 }
 
-static void
+void
 testStorageTypes(void)
 {
     {source_storage} {type} source;