]> git.gag.com Git - fw/sdcc/blob - device/lib/_uint2fs.c
fill with notes
[fw/sdcc] / device / lib / _uint2fs.c
1 /* convert unsigned int to float */
2 float __uint2fs (unsigned int ui) {
3   unsigned long ul=ui;
4   return __ulong2fs(ul);
5 }