source: bootcd/isolinux/syslinux-6.03/com32/include/math.h

Last change on this file was e16e8f2, checked in by Edwin Eefting <edwin@datux.nl>, 3 years ago

bootstuff

  • Property mode set to 100644
File size: 268 bytes
Line 
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
11double pow(double, double);
12double fabs(double);
13double strtod(const char *, char **);
14
15#endif /* _MATH_H */
Note: See TracBrowser for help on using the repository browser.