update 80C517 s0con
[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 }