summaryrefslogtreecommitdiff
path: root/Modules/signalmodule.c
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@redhat.com>2018-10-30 15:14:25 +0100
committerGitHub <noreply@github.com>2018-10-30 15:14:25 +0100
commit31368a4f0e531c19affe2a1becd25fc316bc7501 (patch)
tree79627d42611a04288b832799204c77b2688f9872 /Modules/signalmodule.c
parent9204fb8623896cc5f68ae350784ee25e8a7b2184 (diff)
downloadcpython-git-31368a4f0e531c19affe2a1becd25fc316bc7501.tar.gz
bpo-35081: Move Include/pyatomic.c to Include/internal/ (GH-10239)
Add pyatomic.h to the VS project (it wasn't referenced).
Diffstat (limited to 'Modules/signalmodule.c')
-rw-r--r--Modules/signalmodule.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/Modules/signalmodule.c b/Modules/signalmodule.c
index d120948582..a81de6ab64 100644
--- a/Modules/signalmodule.c
+++ b/Modules/signalmodule.c
@@ -4,6 +4,8 @@
/* XXX Signals should be recorded per thread, now we have thread state. */
#include "Python.h"
+#include "internal/pyatomic.h"
+
#ifndef MS_WINDOWS
#include "posixmodule.h"
#endif