0b1e2259da4920cc36896a9185763c5c161c877f
[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 }