OSDN Git Service

Mon Mar 13 15:22:00 2000 Sergei Organov <osv@javad.ru>
authorranjith <ranjith>
Mon, 13 Mar 2000 20:41:18 +0000 (20:41 +0000)
committerranjith <ranjith>
Mon, 13 Mar 2000 20:41:18 +0000 (20:41 +0000)
        * libm/mathfp/sf_sqrt.c: Change _DOUBLE_IS_32BITS sqrt call to sqrtf.

newlib/ChangeLog
newlib/libm/mathfp/sf_sqrt.c

index ee61e1b..955bb62 100644 (file)
@@ -1,3 +1,7 @@
+Mon Mar 13 15:22:00 2000  Sergei Organov <osv@javad.ru>
+
+        * libm/mathfp/sf_sqrt.c: Change _DOUBLE_IS_32BITS sqrt call to sqrtf.
+
 Fri Mar 10 16:09:20 2000  Jeff Johnston <jjohnstn@cygnus.com>
 
        * libc/include/string.h: Include <sys/types.h>.
index 04fa07f..5d5410d 100644 (file)
@@ -94,7 +94,7 @@ _DEFUN (sqrtf, (float),
 
 double sqrt (double x)
 {
-  return (double) sqrt ((float) x);
+  return (double) sqrtf ((float) x);
 }
 
 #endif /* _DOUBLE_IS_32BITS */