just fixed a poor man's lazyness bug
[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 }