project_files/hwc/rtl/system.c
branchwebgl
changeset 8850 ae8a957c69fd
parent 8053 2e836bebb518
child 10128 0f6878b5395a
--- a/project_files/hwc/rtl/system.c	Thu Apr 04 00:32:57 2013 +0200
+++ b/project_files/hwc/rtl/system.c	Thu Apr 04 01:38:30 2013 +0200
@@ -169,23 +169,21 @@
     // decimal
     return atoi(src);
 }
-void __attribute__((overloadable)) fpcrtl_val__vars(string255 s, LongInt *a,
-        LongInt *c) {
-    *c = 0; // no error
+
+void __attribute__((overloadable)) fpcrtl_val__vars(string255 s, LongInt *a)
+{
     FIX_STRING(s);
     *a = str_to_int(s.str);
 }
 
-void __attribute__((overloadable)) fpcrtl_val__vars(string255 s, Byte *a,
-        LongInt *c) {
-    *c = 0; // no error
+void __attribute__((overloadable)) fpcrtl_val__vars(string255 s, Byte *a)
+{
     FIX_STRING(s);
     *a = str_to_int(s.str);
 }
 
-void __attribute__((overloadable)) fpcrtl_val__vars(string255 s, LongWord *a,
-        LongInt *c) {
-    *c = 0; // no error
+void __attribute__((overloadable)) fpcrtl_val__vars(string255 s, LongWord *a)
+{
     FIX_STRING(s);
     *a = str_to_int(s.str);
 }