From dc98804b1cc232919f6493b741d3d80c56f7a895 Mon Sep 17 00:00:00 2001 From: Ranjith Kumaran Date: Mon, 13 Mar 2000 20:41:18 +0000 Subject: Mon Mar 13 15:22:00 2000 Sergei Organov * libm/mathfp/sf_sqrt.c: Change _DOUBLE_IS_32BITS sqrt call to sqrtf. --- newlib/libm/mathfp/sf_sqrt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'newlib/libm/mathfp/sf_sqrt.c') diff --git a/newlib/libm/mathfp/sf_sqrt.c b/newlib/libm/mathfp/sf_sqrt.c index 04fa07f6a..5d5410dce 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 */ -- cgit v1.2.3