diff options
author | Ranjith Kumaran <ranjith@cygnus.com> | 2000-03-13 20:41:18 +0000 |
---|---|---|
committer | Ranjith Kumaran <ranjith@cygnus.com> | 2000-03-13 20:41:18 +0000 |
commit | dc98804b1cc232919f6493b741d3d80c56f7a895 (patch) | |
tree | 7c9117fdb9946f8a8b322337b4d95aa59070cd14 /newlib/libm | |
parent | 22fe0c41ec53663fee0537874a4506c5575b1d9a (diff) | |
download | newlib-dc98804b1cc232919f6493b741d3d80c56f7a895.zip newlib-dc98804b1cc232919f6493b741d3d80c56f7a895.tar.gz newlib-dc98804b1cc232919f6493b741d3d80c56f7a895.tar.bz2 |
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.
Diffstat (limited to 'newlib/libm')
-rw-r--r-- | newlib/libm/mathfp/sf_sqrt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libm/mathfp/sf_sqrt.c b/newlib/libm/mathfp/sf_sqrt.c index 04fa07f..5d5410d 100644 --- a/newlib/libm/mathfp/sf_sqrt.c +++ b/newlib/libm/mathfp/sf_sqrt.c @@ -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 */ |