diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2007-09-06 19:55:34 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2007-09-06 19:55:34 +0000 |
commit | e65aa07ac6fda806e128e0f72bd4315ecaa9c9fc (patch) | |
tree | ca2cedf60b28af36353d2e2c8197415b1e46294b /newlib/libc | |
parent | 6494ee837c60fe7507e606a8995d824bb9ed35da (diff) | |
download | cygnal-e65aa07ac6fda806e128e0f72bd4315ecaa9c9fc.tar.gz cygnal-e65aa07ac6fda806e128e0f72bd4315ecaa9c9fc.tar.bz2 cygnal-e65aa07ac6fda806e128e0f72bd4315ecaa9c9fc.zip |
Fix typo in ChangeLog and math.h.
Diffstat (limited to 'newlib/libc')
-rw-r--r-- | newlib/libc/include/math.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/include/math.h b/newlib/libc/include/math.h index dc8fe9c74..2bf35515f 100644 --- a/newlib/libc/include/math.h +++ b/newlib/libc/include/math.h @@ -250,7 +250,7 @@ extern double gamma _PARAMS((double)); extern double lgamma _PARAMS((double)); extern double erf _PARAMS((double)); extern double erfc _PARAMS((double)); -#define log2(x) (log (x) / _M_LOG2_E) +#define log2(x) (log (x) / _M_LOG2E) #ifndef __math_68881 extern double hypot _PARAMS((double, double)); @@ -327,7 +327,7 @@ extern float gammaf _PARAMS((float)); extern float lgammaf _PARAMS((float)); extern float erff _PARAMS((float)); extern float erfcf _PARAMS((float)); -#define log2f(x) (logf (x) / (float) _M_LOG2_E) +#define log2f(x) (logf (x) / (float) _M_LOG2E) extern float hypotf _PARAMS((float, float)); #endif /* ! defined (_REENT_ONLY) */ |