fixed and cleaned up fp support, optimisation yet to come
[fw/sdcc] / device / lib / _uchar2fs.c
1 #include <float.h>
2
3 /* convert unsigned char to float */
4 float __uchar2fs (unsigned char uc) {
5   return __ulong2fs(uc);
6 }