]> git.ipfire.org Git - thirdparty/glibc.git/blame - math/math.h
* elf/dl-lookup.c (_dl_lookup_symbol): Arg NOSELF renamed to NOPLT.
[thirdparty/glibc.git] / math / math.h
CommitLineData
f7eac6eb
RM
1/* Declarations for math functions.
2Copyright (C) 1991, 92, 93, 95, 96 Free Software Foundation, Inc.
28f540f4
RM
3This file is part of the GNU C Library.
4
5The GNU C Library is free software; you can redistribute it and/or
6modify it under the terms of the GNU Library General Public License as
7published by the Free Software Foundation; either version 2 of the
8License, or (at your option) any later version.
9
10The GNU C Library is distributed in the hope that it will be useful,
11but WITHOUT ANY WARRANTY; without even the implied warranty of
12MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13Library General Public License for more details.
14
15You should have received a copy of the GNU Library General Public
16License along with the GNU C Library; see the file COPYING.LIB. If
b0d20a87 17not, write to the Free Software Foundation, Inc., 675 Mass Ave,
28f540f4
RM
18Cambridge, MA 02139, USA. */
19
20/*
21 * ANSI Standard: 4.5 MATHEMATICS <math.h>
22 */
23
24#ifndef _MATH_H
25
26#define _MATH_H 1
27#include <features.h>
28
29__BEGIN_DECLS
30
31#define __need_Emath
32#include <errno.h>
33
f7eac6eb
RM
34/* Get machine-dependent HUGE_VAL value (returned on overflow).
35 On all IEEE754 machines, this is +Infinity. */
28f540f4
RM
36#include <huge_val.h>
37
38/* Get machine-dependent NAN value (returned for some domain errors). */
39#ifdef __USE_GNU
40#include <nan.h>
41#endif
42
43
f7eac6eb
RM
44/* The file <mathcalls.h> contains the prototypes for all the actual
45 math functions. These macros are used for those prototypes, so
46 we can easily declare each function as both `name' and `__name',
47 and can declare the float versions `namef' and `__namef'. */
48
49#define __MATHCALL(function,suffix, args) \
50 __MATHDECL (_Mdouble_, function,suffix, args)
51#define __MATHDECL(type, function,suffix, args) \
52 __MATHDECL_1(type, function,suffix, args); \
53 __MATHDECL_1(type, __##function,suffix, args)
54#define __MATHDECL_1(type, function,suffix, args) \
55 extern type __MATH_PRECNAME(function,suffix) args
56
57#define _Mdouble_ double
58#define __MATH_PRECNAME(name,r) name##r
59#include <mathcalls.h>
60#undef _Mdouble_
61#undef __MATH_PRECNAME
62
63#ifdef __USE_MISC
76060ec0 64
f7eac6eb
RM
65/* Include the file of declarations again, this type using `float'
66 instead of `double' and appending f to each function name. */
67
68#define _Mdouble_ float
69#define __MATH_PRECNAME(name,r) name##f##r
70#include <mathcalls.h>
71#undef _Mdouble_
72#undef __MATH_PRECNAME
76060ec0
RM
73
74/* Include the file of declarations again, this type using `long double'
75 instead of `double' and appending l to each function name. */
76
77#define _Mdouble_ long double
78#define __MATH_PRECNAME(name,r) name##l##r
79#include <mathcalls.h>
80#undef _Mdouble_
81#undef __MATH_PRECNAME
82
83#endif /* Use misc. */
28f540f4 84
28f540f4
RM
85
86#ifdef __USE_MISC
f7eac6eb 87/* Support for various different standard error handling behaviors. */
28f540f4 88
f7eac6eb 89typedef enum { _IEEE_ = -1, _SVID_, _XOPEN_, _POSIX_ } _LIB_VERSION_TYPE;
28f540f4 90
f7eac6eb
RM
91/* This variable can be changed at run-time to any of the values above to
92 affect floating point error handling behavior (it may also be necessary
93 to change the hardware FPU exception settings). */
94extern _LIB_VERSION_TYPE _LIB_VERSION;
28f540f4
RM
95#endif
96
97
f7eac6eb
RM
98#ifdef __USE_SVID
99/* In SVID error handling, `matherr' is called with this description
100 of the exceptional condition. */
101struct exception
102 {
103 int type;
104 char *name;
105 double arg1;
106 double arg2;
107 double retval;
108 };
28f540f4 109
f7eac6eb 110extern int matherr __P ((struct exception *));
28f540f4 111
f7eac6eb 112#define X_TLOSS 1.41484755040568800000e+16
28f540f4 113
f7eac6eb
RM
114/* Types of exceptions in the `type' field. */
115#define DOMAIN 1
116#define SING 2
117#define OVERFLOW 3
118#define UNDERFLOW 4
119#define TLOSS 5
120#define PLOSS 6
28f540f4 121
f7eac6eb
RM
122/* SVID mode specifies returning this large value instead of infinity. */
123#define HUGE FLT_MAX
124#include <float.h> /* Defines FLT_MAX. */
28f540f4 125
28f540f4
RM
126#endif
127
28f540f4 128
28f540f4
RM
129#ifdef __USE_BSD
130/* Some useful constants. */
131#define M_E 2.7182818284590452354 /* e */
132#define M_LOG2E 1.4426950408889634074 /* log 2e */
133#define M_LOG10E 0.43429448190325182765 /* log 10e */
134#define M_LN2 0.69314718055994530942 /* log e2 */
135#define M_LN10 2.30258509299404568402 /* log e10 */
136#define M_PI 3.14159265358979323846 /* pi */
137#define M_PI_2 1.57079632679489661923 /* pi/2 */
138#define M_PI_4 0.78539816339744830962 /* pi/4 */
139#define M_1_PI 0.31830988618379067154 /* 1/pi */
140#define M_2_PI 0.63661977236758134308 /* 2/pi */
141#define M_2_SQRTPI 1.12837916709551257390 /* 2/sqrt(pi) */
142#define M_SQRT2 1.41421356237309504880 /* sqrt(2) */
143#define M_SQRT1_2 0.70710678118654752440 /* 1/sqrt(2) */
144#endif
145
146
4d585333
RM
147/* Get machine-dependent inline versions (if there are any). */
148#if defined (__NO_MATH_INLINES) || defined (__OPTIMIZE__)
149#include <__math.h>
150#endif
151
152
153__END_DECLS
154
155
28f540f4 156#endif /* math.h */