* .version: bumped version number to 2.4.5
[fw/sdcc] / device / lib / pic16 / libsdcc / float / slong2fs.c
index 11d38920dd0b420c33f552027e58349bebb9da93..fb9a8ab63e347ed6f285abbc6c76cbdd172db601 100644 (file)
@@ -32,8 +32,7 @@
 #include <float.h>
 
 /* convert signed long to float */
-float __slong2fs (signed long sl)
-//reentrant
+float __slong2fs (signed long sl) _FS_REENTRANT
 {
   if (sl<0) 
     return -__ulong2fs(-sl);