aboutsummaryrefslogtreecommitdiff
path: root/PC
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2020-04-15 02:35:41 +0200
committerGitHub <noreply@github.com>2020-04-15 02:35:41 +0200
commit4a21e57fe55076c77b0ee454e1994ca544d09dc0 (patch)
tree1c9ed1c1a467357a470cd37b98e20aa5b9878cf9 /PC
parentbpo-40268: Remove explicit pythread.h includes (#19529) (diff)
downloadcpython-4a21e57fe55076c77b0ee454e1994ca544d09dc0.tar.gz
cpython-4a21e57fe55076c77b0ee454e1994ca544d09dc0.tar.bz2
cpython-4a21e57fe55076c77b0ee454e1994ca544d09dc0.zip
bpo-40268: Remove unused structmember.h includes (GH-19530)
If only offsetof() is needed: include stddef.h instead. When structmember.h is used, add a comment explaining that PyMemberDef is used.
Diffstat (limited to 'PC')
-rw-r--r--PC/winreg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/PC/winreg.c b/PC/winreg.c
index ec2f607d4a8..3e13e75826f 100644
--- a/PC/winreg.c
+++ b/PC/winreg.c
@@ -14,8 +14,8 @@
#define PY_SSIZE_T_CLEAN
#include "Python.h"
-#include "structmember.h"
-#include "windows.h"
+#include "structmember.h" // PyMemberDef
+#include <windows.h>
static BOOL PyHKEY_AsHKEY(PyObject *ob, HKEY *pRes, BOOL bNoneOK);
static BOOL clinic_HKEY_converter(PyObject *ob, void *p);