1*24707Selefunt /* math.h 4.6 9/11/85; 1.2 (ucb.elefunt) 09/11/85 */ 224583Szliu 324583Szliu extern double asinh(), acosh(), atanh(); 424583Szliu extern double erf(), erfc(); 524583Szliu extern double exp(), expm1(), log(), log10(), log1p(), pow(); 624583Szliu extern double fabs(), floor(), ceil(), rint(); 7*24707Selefunt extern double lgamma(); 824583Szliu extern double hypot(), cabs(); 924583Szliu extern double copysign(), drem(), logb(), scalb(); 1024583Szliu extern int finite(); 1124583Szliu #ifdef vax 1224583Szliu extern double infnan(); 1324583Szliu #endif 1424583Szliu extern double j0(), j1(), jn(), y0(), y1(), yn(); 1524583Szliu extern double sin(), cos(), tan(), asin(), acos(), atan(), atan2(); 1624583Szliu extern double sinh(), cosh(), tanh(); 1724583Szliu extern double cbrt(), sqrt(); 1824583Szliu extern double modf(), ldexp(), frexp(), atof(); 1924583Szliu 2024583Szliu #define HUGE 1.701411733192644270e38 21