diff options
author | David Cournapeau <cournape@gmail.com> | 2009-11-04 07:53:14 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-11-04 07:53:14 +0000 |
commit | 2c5a4c93e449e85ca29f1df86f71282283f87c4e (patch) | |
tree | 40c393a4ff360a1c6de2f9704eeed7c0245c4f22 /numpy/core/setup_common.py | |
parent | f0521e39691e4a6afb3786c555f56c7dd4bce4f3 (diff) | |
download | numpy-2c5a4c93e449e85ca29f1df86f71282283f87c4e.tar.gz |
Implement csqrt.
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 4a2247072..6cf00890d 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', 'cexp'] +C99_COMPLEX_FUNCS = ['creal', 'cimag', 'cabs', 'cexp', 'csqrt'] def fname2def(name): return "HAVE_%s" % name.upper() |