restructuring fp support
[fw/sdcc] / device / lib / _sint2fs.c
1 #include <_float.h>
2
3 /* convert signed int to float */
4 float __sint2fs (signed int si) {
5   signed long sl=si;
6   return __slong2fs(sl);
7 }