]> git.gag.com Git - fw/sdcc/blob - device/lib/_slong2fs.c
Removed _float.h and all references to it
[fw/sdcc] / device / lib / _slong2fs.c
1 /* convert signed long to float */
2 float __slong2fs (signed long sl) {
3   if (sl<0) 
4     return -__ulong2fs(-sl);
5   else 
6     return __ulong2fs(sl);
7 }