https://github.com/python/cpython
Raw File
Tip revision: ad056f03aee8000a1564a1d17f655f8713c48e48 authored by Thomas Wouters on 13 October 2023, 08:50:46 UTC
Python 3.13.0a1
Tip revision: ad056f0
pyatomic.h
#ifndef Py_ATOMIC_H
#define Py_ATOMIC_H
#ifdef __cplusplus
extern "C" {
#endif

#ifndef Py_LIMITED_API
#  define Py_CPYTHON_ATOMIC_H
#  include "cpython/pyatomic.h"
#  undef Py_CPYTHON_ATOMIC_H
#endif

#ifdef __cplusplus
}
#endif
#endif  /* !Py_ATOMIC_H */
back to top