Skip to content

Commit 1eec109

Browse files
committed
Fix missing pyatomic includes.
1 parent 8390e48 commit 1eec109

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

Parser/pegen.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#include "pycore_pyerrors.h" // PyExc_IncompleteInputError
66
#include "pycore_runtime.h" // _PyRuntime
77
#include "pycore_unicodeobject.h" // _PyUnicode_InternImmortal
8+
#include "pycore_pyatomic_ft_wrappers.h"
89
#include <errcode.h>
910

1011
#include "lexer/lexer.h"

Python/codecs.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Copyright (c) Corporation for National Research Initiatives.
1616
#include "pycore_runtime.h" // _Py_ID()
1717
#include "pycore_ucnhash.h" // _PyUnicode_Name_CAPI
1818
#include "pycore_unicodeobject.h" // _PyUnicode_InternMortal()
19-
19+
#include "pycore_pyatomic_ft_wrappers.h"
2020

2121
static const char *codecs_builtin_error_handlers[] = {
2222
"strict", "ignore", "replace",

0 commit comments

Comments
 (0)