Home | History | Annotate | Download | only in include
      1 #ifndef _MATH_H
      2 #define _MATH_H
      3 
      4 #ifndef __DBL_MIN_EXP__
      5 # define __DBL_MIN_EXP__ (-1021)
      6 #endif
      7 #ifndef __DBL_MAX_EXP__
      8 # define __DBL_MAX_EXP__ 1024
      9 #endif
     10 
     11 double pow(double, double);
     12 double fabs(double);
     13 double strtod(const char *, char **);
     14 
     15 #endif /* _MATH_H */
     16