diff options
author | David Cournapeau <cournape@gmail.com> | 2009-06-17 02:51:03 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-06-17 02:51:03 +0000 |
commit | aed9ab98d922aa8f5bd76a5bffd71ebfab908c02 (patch) | |
tree | 58a304806c1f50a65bbb98c685769948173dd3e6 | |
parent | 8621c77897f9335bc7656ac31c9a7c25ecf523db (diff) | |
download | numpy-aed9ab98d922aa8f5bd76a5bffd71ebfab908c02.tar.gz |
Fix typo in definition of Euler constant.
-rw-r--r-- | numpy/core/include/numpy/npy_math.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/include/numpy/npy_math.h b/numpy/core/include/numpy/npy_math.h index 4e2f444b8..b3588d1de 100644 --- a/numpy/core/include/numpy/npy_math.h +++ b/numpy/core/include/numpy/npy_math.h @@ -86,7 +86,7 @@ NPY_INLINE static float __npy_nzerof(void) #define NPY_PI_4l 0.7853981633974483096156608458198757L /* pi/4 */ #define NPY_1_PIl 0.3183098861837906715377675267450287L /* 1/pi */ #define NPY_2_PIl 0.6366197723675813430755350534900574L /* 2/pi */ -#define NPY_EULERf 0.5772156649015328606065120900824024L /* Euler constant */ +#define NPY_EULERl 0.5772156649015328606065120900824024L /* Euler constant */ /* * C99 double math funcs |