ccdcbb1a590be24e3289621f4694b61ee0c5abae
[fw/sdcc] / device / lib / _uint2fs.c
1 #include <_float.h>
2
3 /* convert unsigned int to float */
4 float __uint2fs (unsigned int ui) {
5   unsigned long ul=ui;
6   return __ulong2fs(ul);
7 }