]> git.gag.com Git - fw/sdcc/blob - device/lib/_uint2fs.c
restructuring fp support
[fw/sdcc] / device / lib / _uint2fs.c
1 #include <_float.h>
2
3 /* convert unsigned int to float */
4 float __uchar2fs (unsigned char ui) {
5   unsigned long ul=ui;
6   return __ulong2fs(ul);
7 }