diff options
author | Benjamin Peterson <benjamin@python.org> | 2018-07-16 00:01:42 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-16 00:01:42 (GMT) |
commit | 15c7b2abdfb93f8902dd72474818aee2bf97fa66 (patch) | |
tree | d3f11c73e2d4aaee2ed08a05e642547fb1bfff0a /pyconfig.h.in | |
parent | 16dfca4d829e45f36e71bf43f83226659ce49315 (diff) | |
download | cpython-15c7b2abdfb93f8902dd72474818aee2bf97fa66.zip cpython-15c7b2abdfb93f8902dd72474818aee2bf97fa66.tar.gz cpython-15c7b2abdfb93f8902dd72474818aee2bf97fa66.tar.bz2 |
bpo-34121: Fix detection of C11 atomic support on clang. (GH-8288)
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 e8ad150..d80ddc0 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -963,7 +963,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. */ |