Fix problem with getdate on mingw32 reported by Simon Josefsson
[gnulib.git] / lib / sqrtl.c
1 /* Emulation for sqrtl.
2    Contributed by Paolo Bonzini
3
4    Copyright 2002, 2003, 2007 Free Software Foundation, Inc.
5
6    This file is part of gnulib.
7
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.
12
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.
17
18    You should have received a copy of the GNU General Public License
19    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
20
21 #include <config.h>
22
23 /* Specification.  */
24 #include <math.h>
25
26 #include <float.h>
27 #include "isnanl.h"
28
29 /* A simple Newton-Raphson method. */
30 long double
31 sqrtl(long double x)
32 {
33   long double delta, y;
34   int exponent;
35
36   /* Check for NaN */
37   if (isnanl (x))
38     return x;
39
40   /* Check for negative numbers */
41   if (x < 0.0L)
42     return (long double) sqrt(-1);
43
44   /* Check for zero and infinites */
45   if (x + x == x)
46     return x;
47
48   frexpl (x, &exponent);
49   y = ldexpl (x, -exponent / 2);
50
51   do
52     {
53       delta = y;
54       y = (y + x / y) * 0.5L;
55       delta -= y;
56     }
57   while (delta != 0.0L);
58
59   return y;
60 }