summaryrefslogtreecommitdiff
path: root/include/math.h
blob: 1dd1a1454a875f79e92caa679b35781c97f25d86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#ifndef	_MATH_H

#include <math/math.h>

/* Now define the internal interfaces.  */
extern int __matherr (struct exception *__exc);

extern int __finite_internal (double __value)
     __attribute__ ((__const__)) attribute_hidden;
extern int __finitef_internal (float __value)
     __attribute__ ((__const__)) attribute_hidden;

extern int __isinf_internal (double __value)
     __attribute__ ((__const__)) attribute_hidden;
extern int __isnan_internal (double __value)
     __attribute__ ((__const__)) attribute_hidden;

#ifndef __NO_LONG_DOUBLE_MATH
extern int __finitel_internal (long double __value)
     __attribute__ ((__const__)) attribute_hidden;

extern int __isinfl_internal (long double __value)
     __attribute__ ((__const__)) attribute_hidden;
extern int __isnanl_internal (long double __value)
     __attribute__ ((__const__)) attribute_hidden;
#endif

#if !defined NOT_IN_libc || defined IS_IN_libm
# undef isfinite
# ifdef __NO_LONG_DOUBLE_MATH
#  define isfinite(x) \
     (sizeof (x) == sizeof (float)					      \
      ? INTUSE(__finitef) (x) : INTUSE(__finite) (x))
# else
#  define isfinite(x) \
     (sizeof (x) == sizeof (float)					      \
      ? INTUSE(__finitef) (x)						      \
      : sizeof (x) == sizeof (double)					      \
      ? INTUSE(__finite) (x) : INTUSE(__finitel) (x))
# endif
#endif


#endif