You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
331 B
23 lines
331 B
/*************
|
|
* 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
|