* support/regression/tests/bug-477927.c: Added.
[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 }