* src/port.h: made reset_regparms prototype void parameter explicit.
[fw/sdcc] / device / lib / _uint2fs.c
index dcb459942c858a43f57bf20575e0e44f0608a03b..9b443fa9c70107f83adf5a1b3ffe92eb3f4cf2c7 100644 (file)
@@ -1,7 +1,6 @@
-#include <_float.h>
+#include <float.h>
 
 /* convert unsigned int to float */
-float __uchar2fs (unsigned char ui) {
-  unsigned long ul=ui;
-  return __ulong2fs(ul);
+float __uint2fs (unsigned int ui) {
+  return __ulong2fs(ui);
 }