xref: /csrg-svn/lib/libm/common_source/math.h (revision 24583)
1*24583Szliu /* math.h 1.1 (ELEFUNT) 09/06/85 */
2*24583Szliu 
3*24583Szliu extern double asinh(), acosh(), atanh();
4*24583Szliu extern double erf(), erfc();
5*24583Szliu extern double exp(), expm1(), log(), log10(), log1p(), pow();
6*24583Szliu extern double fabs(), floor(), ceil(), rint();
7*24583Szliu extern double lgama();
8*24583Szliu extern double hypot(), cabs();
9*24583Szliu extern double copysign(), drem(), logb(), scalb();
10*24583Szliu extern int finite();
11*24583Szliu #ifdef vax
12*24583Szliu extern double infnan();
13*24583Szliu #endif
14*24583Szliu extern double j0(), j1(), jn(), y0(), y1(), yn();
15*24583Szliu extern double sin(), cos(), tan(), asin(), acos(), atan(), atan2();
16*24583Szliu extern double sinh(), cosh(), tanh();
17*24583Szliu extern double cbrt(), sqrt();
18*24583Szliu extern double modf(), ldexp(), frexp(), atof();
19*24583Szliu 
20*24583Szliu #define HUGE	1.701411733192644270e38
21