diff options
author | Benjamin Peterson <benjamin@python.org> | 2018-07-16 00:48:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-16 00:48:46 (GMT) |
commit | 8487ef61dea9fb0579f0be8f01d74fa20d3b8ed1 (patch) | |
tree | 642c2cec500b5fad180c722be97f36d04dbd8f15 /pyconfig.h.in | |
parent | b2f8aa0c998d331ab2b4c701756a6427c0e91d48 (diff) | |
download | cpython-8487ef61dea9fb0579f0be8f01d74fa20d3b8ed1.zip cpython-8487ef61dea9fb0579f0be8f01d74fa20d3b8ed1.tar.gz cpython-8487ef61dea9fb0579f0be8f01d74fa20d3b8ed1.tar.bz2 |
[3.6] bpo-34121: Fix detection of C11 atomic support on clang. (GH-8290)
(cherry picked from commit 15c7b2abdfb93f8902dd72474818aee2bf97fa66)
Co-authored-by: Benjamin Peterson <benjamin@python.org>
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index 6cef7b3..2fbbb6d 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -944,7 +944,7 @@ /* Define to 1 if you have the <stdlib.h> header file. */ #undef HAVE_STDLIB_H -/* Has stdatomic.h, atomic_int and _Atomic void* types work */ +/* Has stdatomic.h with atomic_int */ #undef HAVE_STD_ATOMIC /* Define to 1 if you have the `strdup' function. */ |