Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git] / sdcc / device / lib / tanhf.c
blobe2e18f35cc675e53667290d7500b29f25cdb5faa
1 /*-------------------------------------------------------------------------
2 tanhf.c - Computes tanh(x) where x is a 32-bit float as outlined in [1].
4 Copyright (C) 2001, 2002, Jesus Calvino-Fraga, jesusc@ieee.org
6 This library is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published by the
8 Free Software Foundation; either version 2, or (at your option) any
9 later version.
11 This library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this library; see the file COPYING. If not, write to the
18 Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston,
19 MA 02110-1301, USA.
21 As a special exception, if you link this library with other files,
22 some of which are compiled with SDCC, to produce an executable,
23 this library does not by itself cause the resulting executable to
24 be covered by the GNU General Public License. This exception does
25 not however invalidate any other reasons why the executable file
26 might be covered by the GNU General Public License.
27 -------------------------------------------------------------------------*/
29 /* [1] William James Cody and W. M. Waite. _Software manual for the
30 elementary functions_, Englewood Cliffs, N.J.:Prentice-Hall, 1980. */
32 /* Version 1.0 - Initial release */
34 #include <math.h>
35 #include <errno.h>
37 #define P0 -0.8237728127E+0
38 #define P1 -0.3831010665E-2
39 #define Q0 0.2471319654E+1
40 #define Q1 0.1000000000E+1
42 /* ln(3)/2 */
43 #define K1 0.5493061443E+0
44 /* SBIG=[ln(2)+(t+1)*ln(B)]/2 */
45 #define SBIG 9.01091
47 #define P(g) ((P1*g+P0)*g)
48 #define Q(g) (Q1*g+Q0)
50 float tanhf(float x) _FLOAT_FUNC_REENTRANT
52 float f, g, r;
54 f=fabsf(x);
55 if(f>SBIG) r=1.0;
56 else if(f>K1)
58 r=0.5-1.0/(expf(f+f)+1.0);
59 r+=r;
61 else if(f<EPS) r=f;
62 else
64 g=f*f;
65 r=f+f*(P(g)/Q(g));
67 if(x<0.0) r=-r;
68 return r;