diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-03-12 11:39:22 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-12 11:39:22 (GMT) |
commit | 4dadcd4ed7824c7904add78577e6a05864cfe493 (patch) | |
tree | 3c0034a311afb7d28b74d4db8f7b997c278677da /PC/pyconfig.h | |
parent | 27abb0e533a6f7ad195bd56b064c32164296a56e (diff) | |
download | cpython-4dadcd4ed7824c7904add78577e6a05864cfe493.zip cpython-4dadcd4ed7824c7904add78577e6a05864cfe493.tar.gz cpython-4dadcd4ed7824c7904add78577e6a05864cfe493.tar.bz2 |
bpo-26121: Use C library implementation for math functions erf() and erfc() on Windows. (#632)
Diffstat (limited to 'PC/pyconfig.h')
-rw-r--r-- | PC/pyconfig.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/PC/pyconfig.h b/PC/pyconfig.h index a4df5c4..c96c231 100644 --- a/PC/pyconfig.h +++ b/PC/pyconfig.h @@ -684,4 +684,10 @@ Py_NO_ENABLE_SHARED to find out. Also support MS_NO_COREDLL for b/w compat */ least significant byte first */ #define DOUBLE_IS_LITTLE_ENDIAN_IEEE754 1 +/* Define to 1 if you have the `erf' function. */ +#define HAVE_ERF 1 + +/* Define to 1 if you have the `erfc' function. */ +#define HAVE_ERFC 1 + #endif /* !Py_CONFIG_H */ |