]> git.gag.com Git - fw/sdcc/blob - device/lib/_uint2fs.c
fixed and cleaned up fp support, optimisation yet to come
[fw/sdcc] / device / lib / _uint2fs.c
1 #include <float.h>
2
3 /* convert unsigned int to float */
4 float __uint2fs (unsigned int ui) {
5   return __ulong2fs(ui);
6 }