diff options
Diffstat (limited to 'newlib/libm/mathfp/sf_sqrt.c')
-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 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 */ |