We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
pyatomic.h
1 parent 211f413 commit 4dcec19Copy full SHA for 4dcec19
Include/cpython/pyatomic.h
@@ -574,15 +574,15 @@ static inline void _Py_atomic_fence_release(void);
574
575
#if _Py_USE_GCC_BUILTIN_ATOMICS
576
# define Py_ATOMIC_GCC_H
577
-# include "cpython/pyatomic_gcc.h"
+# include "pyatomic_gcc.h"
578
# undef Py_ATOMIC_GCC_H
579
#elif __STDC_VERSION__ >= 201112L && !defined(__STDC_NO_ATOMICS__)
580
# define Py_ATOMIC_STD_H
581
-# include "cpython/pyatomic_std.h"
+# include "pyatomic_std.h"
582
# undef Py_ATOMIC_STD_H
583
#elif defined(_MSC_VER)
584
# define Py_ATOMIC_MSC_H
585
-# include "cpython/pyatomic_msc.h"
+# include "pyatomic_msc.h"
586
# undef Py_ATOMIC_MSC_H
587
#else
588
# error "no available pyatomic implementation for this platform/compiler"
0 commit comments