* device/lib/large/Makefile: fixed parallel execution by replacing `make` by `$(MAKE)`
[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 }