summaryrefslogtreecommitdiffstats
path: root/Modules/syslogmodule.c
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2020-04-15 01:24:57 (GMT)
committerGitHub <noreply@github.com>2020-04-15 01:24:57 (GMT)
commit361dcdcefc80f5729ed18ac0ef73327794fbf400 (patch)
tree9ec3e27545cbf1f5f082b612ecbeb94b759827f9 /Modules/syslogmodule.c
parentd9ea5cae1d07e1ee8b03540a9367c26205e0e360 (diff)
downloadcpython-361dcdcefc80f5729ed18ac0ef73327794fbf400.zip
cpython-361dcdcefc80f5729ed18ac0ef73327794fbf400.tar.gz
cpython-361dcdcefc80f5729ed18ac0ef73327794fbf400.tar.bz2
bpo-40268: Remove unused osdefs.h includes (GH-19532)
When the include is needed, add required symbol in a comment.
Diffstat (limited to 'Modules/syslogmodule.c')
-rw-r--r--Modules/syslogmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/syslogmodule.c b/Modules/syslogmodule.c
index 2451792..11718e2 100644
--- a/Modules/syslogmodule.c
+++ b/Modules/syslogmodule.c
@@ -50,7 +50,7 @@ Revision history:
/* syslog module */
#include "Python.h"
-#include "osdefs.h"
+#include "osdefs.h" // SEP
#include <syslog.h>