diff options
Diffstat (limited to 'numpy/core/setup_common.py')
-rw-r--r-- | numpy/core/setup_common.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/numpy/core/setup_common.py b/numpy/core/setup_common.py index 0100906d0..0c727a913 100644 --- a/numpy/core/setup_common.py +++ b/numpy/core/setup_common.py @@ -128,6 +128,8 @@ MANDATORY_FUNCS = [ "rint", "trunc", "exp2", "copysign", "nextafter", "strtoll", "strtoull", "cbrt", "log2", "pow", "hypot", "atan2", + "csin", "csinh", "ccos", "ccosh", "ctan", "ctanh", + "creal", "cimag", "conj" ] OPTIONAL_LOCALE_FUNCS = ["strtold_l"] @@ -147,8 +149,7 @@ C99_COMPLEX_TYPES = [ ] C99_COMPLEX_FUNCS = [ "cabs", "cacos", "cacosh", "carg", "casin", "casinh", "catan", - "catanh", "ccos", "ccosh", "cexp", "cimag", "clog", "conj", "cpow", - "cproj", "creal", "csin", "csinh", "csqrt", "ctan", "ctanh" + "catanh", "cexp", "clog", "cpow", "csqrt", ] OPTIONAL_HEADERS = [ |