diff options
Diffstat (limited to 'numpy/core/setup_common.py')
-rw-r--r-- | numpy/core/setup_common.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/core/setup_common.py b/numpy/core/setup_common.py index cd804c12e..f009ef472 100644 --- a/numpy/core/setup_common.py +++ b/numpy/core/setup_common.py @@ -105,7 +105,8 @@ 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', 'clog', 'ccos', 'csin', 'cpow'] +C99_COMPLEX_FUNCS = ['creal', 'cimag', 'cabs', 'carg', 'cexp', 'csqrt', 'clog', + 'ccos', 'csin', 'cpow'] def fname2def(name): return "HAVE_%s" % name.upper() |