]> git.gag.com Git - fw/sdcc/blob - device/lib/_uchar2fs.c
Opps, update build so printf_tiny is actually part of the library.
[fw/sdcc] / device / lib / _uchar2fs.c
1 #include <float.h>
2
3 /* convert unsigned char to float */
4 float __uchar2fs (unsigned char uc) {
5   return __ulong2fs(uc);
6 }