dbuf update to version 1.1.1 - re-added C++ stuff to make it still more portable
[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 }