* src/mcs51/peeph.def: added peepholes 182.d (return 0.0), 256 (range check), 257...
[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 }