fixed and cleaned up fp support, optimisation yet to come
[fw/sdcc] / device / lib / _schar2fs.c
1 #include <float.h>
2
3 /* convert signed char to float */
4 float __schar2fs (signed char sc) {
5   return __slong2fs(sc);
6 }