summaryrefslogtreecommitdiff
path: root/numpy/core/setup_common.py
diff options
context:
space:
mode:
authorDavid Cournapeau <cournape@gmail.com>2009-11-04 07:53:33 +0000
committerDavid Cournapeau <cournape@gmail.com>2009-11-04 07:53:33 +0000
commit8b0628179915dfed8dbc8e18b4215df9016d0c72 (patch)
treeccc13d45e2643bc138b1a24ad75e7e7117bac9cb /numpy/core/setup_common.py
parent2c5a4c93e449e85ca29f1df86f71282283f87c4e (diff)
downloadnumpy-8b0628179915dfed8dbc8e18b4215df9016d0c72.tar.gz
Implement stubs for clog, ccos, csin and cpow.
Diffstat (limited to 'numpy/core/setup_common.py')
-rw-r--r--numpy/core/setup_common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/setup_common.py b/numpy/core/setup_common.py
index 6cf00890d..cd804c12e 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', 'csqrt']
+C99_COMPLEX_FUNCS = ['creal', 'cimag', 'cabs', 'cexp', 'csqrt', 'clog', 'ccos', 'csin', 'cpow']
def fname2def(name):
return "HAVE_%s" % name.upper()