* .version: bumped version number to 2.4.5
[fw/sdcc] / device / lib / pic16 / libsdcc / float / fs2uint.c
index ac4742d11b8cb62d79de4a71a84d340bee6f18c9..0313c68d7c14a1cf6a2b4c04d6c2712f98515b2f 100644 (file)
@@ -34,8 +34,7 @@
 unsigned long __fs2ulong (float a1);
 
 /* convert float to unsigned int */
-unsigned int __fs2uint (float f)
-// reentrant
+unsigned int __fs2uint (float f) _FS_REENTRANT
 {
   unsigned long ul=__fs2ulong(f);
   if (ul>=UINT_MAX) return UINT_MAX;