1 /* Emulation for sqrtl.
2 Contributed by Paolo Bonzini
4 Copyright 2002-2003, 2007, 2009-2019 Free Software Foundation, Inc.
6 This file is part of gnulib.
8 This program is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <https://www.gnu.org/licenses/>. */
26 #if HAVE_SAME_LONG_DOUBLE_AS_DOUBLE
38 /* A simple Newton-Raphson method. */
49 /* Check for negative numbers */
51 return (long double) sqrt (-1);
53 /* Check for zero and infinites */
57 frexpl (x
, &exponent
);
58 y
= ldexpl (x
, -exponent
/ 2);
63 y
= (y
+ x
/ y
) * 0.5L;
66 while (delta
!= 0.0L);