]> git.gag.com Git - fw/sdcc/blob - device/lib/_uchar2fs.c
* src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
[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 }