475253016026ebb3a66a659fa44e0c0433d664df
[fw/sdcc] / device / lib / _uchar2fs.c
1 float __ulong2fs (unsigned long a );
2
3 /* convert unsigned char to float */
4 float __uchar2fs (unsigned char uc) {
5   unsigned long ul=uc;
6   return __ulong2fs(ul);
7 }