diff options
author | Victor Stinner <vstinner@python.org> | 2020-04-15 03:24:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-15 03:24:57 +0200 |
commit | 361dcdcefc80f5729ed18ac0ef73327794fbf400 (patch) | |
tree | 9ec3e27545cbf1f5f082b612ecbeb94b759827f9 /Modules/getpath.c | |
parent | bpo-40268: Remove unused pycore_pymem.h includes (GH-19531) (diff) | |
download | cpython-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.c | 2 |
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> |