hack for visualc
authorClaus Gittinger <cg@exept.de>
Mon, 04 Feb 2013 12:13:04 +0100
changeset 14741 4a898f7517d5
parent 14740 609c0c77a4c9
child 14742 afc7517c76cc
hack for visualc
ShortFloat.st
--- a/ShortFloat.st	Mon Feb 04 11:02:05 2013 +0100
+++ b/ShortFloat.st	Mon Feb 04 12:13:04 2013 +0100
@@ -1659,7 +1659,9 @@
 #ifdef NO_MODFF
     double dFrac, dTrunc;
 #else
+# ifndef __VISUALC__
     float modff(float, float *);
+# endif
 #endif
     float frac, trunc;
 
@@ -1863,10 +1865,9 @@
 !ShortFloat class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ShortFloat.st,v 1.116 2013-01-29 09:54:03 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ShortFloat.st,v 1.117 2013-02-04 11:13:04 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/ShortFloat.st,v 1.116 2013-01-29 09:54:03 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ShortFloat.st,v 1.117 2013-02-04 11:13:04 cg Exp $'
 ! !
-