Fixed up support for the gbz80 such that it will at least run (and fail badly) the...
[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 }