* .version: bumped version number to 2.4.5
[fw/sdcc] / device / lib / pic16 / libsdcc / float / fs2sint.c
index bcf7703076a98a58b741a6bfb92f39cceef03720..82265249d1462615fc8e0a65c971a91887955511 100644 (file)
@@ -34,8 +34,7 @@
 #include <float.h>
 
 /* convert float to signed int */
-signed int __fs2sint (float f)
-// reentrant
+signed int __fs2sint (float f) _FS_REENTRANT
 {
   signed long sl=__fs2slong(f);
   if (sl>=INT_MAX)