diff options
author | Roland McGrath <roland@gnu.org> | 2002-10-25 19:45:27 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-10-25 19:45:27 +0000 |
commit | 57c1c9ed7c3fae556ebee9ff21f7c40595d029ba (patch) | |
tree | 63e7ef6d6135ab22b24026a6cf87731d3cb5512f /math/math.h | |
parent | 5580f1544d434997f1ddfbb4785a7a447f75e605 (diff) | |
download | glibc-57c1c9ed7c3fae556ebee9ff21f7c40595d029ba.tar.gz |
* math/math.h (M_LOG2El): Correct the value.
From Stephen L Moshier <steve@moshier.net>.
Diffstat (limited to 'math/math.h')
-rw-r--r-- | math/math.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/math/math.h b/math/math.h index 28e5937c56..7d311462d9 100644 --- a/math/math.h +++ b/math/math.h @@ -335,7 +335,7 @@ extern int matherr (struct exception *__exc); GNU extension. Provide enough digits for the 128-bit IEEE quad. */ #ifdef __USE_GNU # define M_El 2.7182818284590452353602874713526625L /* e */ -# define M_LOG2El 1.4426950408889634073599246810018922L /* log_2 e */ +# define M_LOG2El 1.4426950408889634073599246810018921L /* log_2 e */ # define M_LOG10El 0.4342944819032518276511289189166051L /* log_10 e */ # define M_LN2l 0.6931471805599453094172321214581766L /* log_e 2 */ # define M_LN10l 2.3025850929940456840179914546843642L /* log_e 10 */ |