This is the mail archive of the newlib@sourceware.cygnus.com mailing list for the newlib project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Mistake in 'mathfp/sf_sqrt.c'.


Hello,

Here is the diff that fixes simple mistake:

--- mathfp/sf_sqrt.c.old        Thu Feb 17 22:39:52 2000
+++ mathfp/sf_sqrt.c    Mon Mar 13 15:11:56 2000
@@ -94,7 +94,7 @@
 
 double sqrt (double x)
 {
-  return (double) sqrt ((float) x);
+  return (double) sqrtf ((float) x);
 }
 
 #endif /* _DOUBLE_IS_32BITS */


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]