diff options
author | David Carlier <dcarlier@afilias.info> | 2019-05-23 04:32:44 (GMT) |
---|---|---|
committer | Inada Naoki <songofacandy@gmail.com> | 2019-05-23 04:32:44 (GMT) |
commit | 51aa35e9e17eef60d04add9619fe2a7eb938358c (patch) | |
tree | 87251bf2800e940f6872fa45d84342bb1dc455ec /pyconfig.h.in | |
parent | 20e1e2582e5e69e43af88ff58699c8883d146acb (diff) | |
download | cpython-51aa35e9e17eef60d04add9619fe2a7eb938358c.zip cpython-51aa35e9e17eef60d04add9619fe2a7eb938358c.tar.gz cpython-51aa35e9e17eef60d04add9619fe2a7eb938358c.tar.bz2 |
bpo-33164: update blake2 implementation (GH-6286)
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index 1cafb9a..dd5f2e3 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -302,6 +302,12 @@ /* Define to 1 if you have the `execv' function. */ #undef HAVE_EXECV +/* Define to 1 if you have the `explicit_bzero' function. */ +#undef HAVE_EXPLICIT_BZERO + +/* Define to 1 if you have the `explicit_memset' function. */ +#undef HAVE_EXPLICIT_MEMSET + /* Define to 1 if you have the `expm1' function. */ #undef HAVE_EXPM1 @@ -664,6 +670,9 @@ /* Define to 1 if you have the `memrchr' function. */ #undef HAVE_MEMRCHR +/* Define to 1 if you have the `memset_s' function. */ +#undef HAVE_MEMSET_S + /* Define to 1 if you have the `mkdirat' function. */ #undef HAVE_MKDIRAT |