aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2020-04-15 03:24:57 +0200
committerGitHub <noreply@github.com>2020-04-15 03:24:57 +0200
commit361dcdcefc80f5729ed18ac0ef73327794fbf400 (patch)
tree9ec3e27545cbf1f5f082b612ecbeb94b759827f9 /Modules/getpath.c
parentbpo-40268: Remove unused pycore_pymem.h includes (GH-19531) (diff)
downloadcpython-361dcdcefc80f5729ed18ac0ef73327794fbf400.tar.gz
cpython-361dcdcefc80f5729ed18ac0ef73327794fbf400.tar.bz2
cpython-361dcdcefc80f5729ed18ac0ef73327794fbf400.zip
bpo-40268: Remove unused osdefs.h includes (GH-19532)
When the include is needed, add required symbol in a comment.
Diffstat (limited to 'Modules/getpath.c')
-rw-r--r--Modules/getpath.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/getpath.c b/Modules/getpath.c
index 1dd8dd0134e..94e06b3e3e8 100644
--- a/Modules/getpath.c
+++ b/Modules/getpath.c
@@ -4,7 +4,7 @@
#include "pycore_fileutils.h"
#include "pycore_initconfig.h"
#include "pycore_pathconfig.h"
-#include "osdefs.h"
+#include "osdefs.h" // DELIM
#include <sys/types.h>
#include <string.h>