Last change
on this file since 26ffad7 was
e16e8f2,
checked in by Edwin Eefting <edwin@datux.nl>, 3 years ago
|
bootstuff
|
-
Property mode set to
100644
|
File size:
268 bytes
|
Rev | Line | |
---|
[e16e8f2] | 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 */ |
---|
Note: See
TracBrowser
for help on using the repository browser.