diff options
author | David Cournapeau <cournape@gmail.com> | 2009-11-04 07:52:54 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-11-04 07:52:54 +0000 |
commit | f0521e39691e4a6afb3786c555f56c7dd4bce4f3 (patch) | |
tree | d9a399bc422bf077c1f84dbf00c55aec83b185ad /numpy/core/setup_common.py | |
parent | 0d73a33cb64a861c7378a4b9dfa6ea312ba87c76 (diff) | |
download | numpy-f0521e39691e4a6afb3786c555f56c7dd4bce4f3.tar.gz |
Add cexp function.
Diffstat (limited to 'numpy/core/setup_common.py')
-rw-r--r-- | numpy/core/setup_common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/setup_common.py b/numpy/core/setup_common.py index 2eaf48657..4a2247072 100644 --- a/numpy/core/setup_common.py +++ b/numpy/core/setup_common.py @@ -105,7 +105,7 @@ C99_FUNCS = ["sin", "cos", "tan", "sinh", "cosh", "tanh", "fabs", "floor", C99_FUNCS_SINGLE = [f + 'f' for f in C99_FUNCS] C99_FUNCS_EXTENDED = [f + 'l' for f in C99_FUNCS] -C99_COMPLEX_FUNCS = ['creal', 'cimag', 'cabs'] +C99_COMPLEX_FUNCS = ['creal', 'cimag', 'cabs', 'cexp'] def fname2def(name): return "HAVE_%s" % name.upper() |