gbdk-releases/sdcc/device/lib/_uint2fs.c
2015-01-10 16:25:09 +01:00

6 lines
122 B
C

/* convert unsigned int to float */
float __uint2fs (unsigned int ui) {
unsigned long ul=ui;
return __ulong2fs(ul);
}