]> git.gag.com Git - fw/sdcc/blob - device/lib/_uchar2fs.c
Removed _float.h and all references to it
[fw/sdcc] / device / lib / _uchar2fs.c
1 /* convert unsigned char to float */
2 float __uchar2fs (unsigned char uc) {
3   unsigned long ul=uc;
4   return __ulong2fs(ul);
5 }