/************* * Header file for missing_math.c * 1999 E. Rouat ************/ #ifndef MISSING_MATH_H_INCLUDED #define MISSING_MATH_H_INCLUDED #ifndef HAVE_ERFC double erfc(double); #endif #ifndef HAVE_LOGB double logb(double); #endif #ifndef HAVE_SCALB # ifndef HAVE_SCALBN double scalb(double, int); #endif #endif #endif