fixed bug #690781
[fw/sdcc] / device / lib / _uchar2fs.c
index 6232ec61712044743eb8b2d5fa10d273334ad3ec..3e9198820efbe08e82d57d25169101acae23ab91 100644 (file)
@@ -1,7 +1,6 @@
-#include <_float.h>
+#include <float.h>
 
 /* convert unsigned char to float */
 float __uchar2fs (unsigned char uc) {
-  unsigned long ul=uc;
-  return __ulong2fs(ul);
+  return __ulong2fs(uc);
 }