4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-19 04:49:25 +08:00

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.
This commit is contained in:
Ranjith Kumaran 2000-03-13 20:41:18 +00:00
parent 22fe0c41ec
commit dc98804b1c
2 changed files with 5 additions and 1 deletions

View 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> Fri Mar 10 16:09:20 2000 Jeff Johnston <jjohnstn@cygnus.com>
* libc/include/string.h: Include <sys/types.h>. * libc/include/string.h: Include <sys/types.h>.

View File

@ -94,7 +94,7 @@ _DEFUN (sqrtf, (float),
double sqrt (double x) double sqrt (double x)
{ {
return (double) sqrt ((float) x); return (double) sqrtf ((float) x);
} }
#endif /* _DOUBLE_IS_32BITS */ #endif /* _DOUBLE_IS_32BITS */