diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2016-01-08 13:09:57 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2016-01-08 13:15:59 -0700 |
commit | 52ee0f2ac972522e538d9d66471bf473f00e3ee0 (patch) | |
tree | 21b6a2d7c4d25de77811bba219fd173e5111f55b | |
parent | 8a76291c76aa9b33b18ceb06f6e8f37f990c9e27 (diff) | |
download | numpy-52ee0f2ac972522e538d9d66471bf473f00e3ee0.tar.gz |
BUG: Add more complex trig functions to glibc < 2.16 blacklist.
Added functions are
- cacos
- cacosf
- cacosl
- cacosh
- cacoshf
- cacoshl
Closes #6063.
-rw-r--r-- | numpy/core/src/private/npy_config.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/numpy/core/src/private/npy_config.h b/numpy/core/src/private/npy_config.h index fa20eb4f3..eb9c1e19d 100644 --- a/numpy/core/src/private/npy_config.h +++ b/numpy/core/src/private/npy_config.h @@ -93,6 +93,12 @@ #undef HAVE_CATANH #undef HAVE_CATANHF #undef HAVE_CATANHL +#undef HAVE_CACOS +#undef HAVE_CACOSF +#undef HAVE_CACOSL +#undef HAVE_CACOSH +#undef HAVE_CACOSHF +#undef HAVE_CACOSHL #endif #undef TRIG_OK |