diff options
author | Guido van Rossum <guido@python.org> | 1995-01-10 20:56:29 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-01-10 20:56:29 (GMT) |
commit | a597dde3f1959127c33296a77f76331b59449c01 (patch) | |
tree | 1b41173d59525e5c16ea772aaa60dc0c123dc409 /Modules/syslogmodule.c | |
parent | 6c1874fc2bd0e0d2e30de78fe1f1fe8bcf8a20be (diff) | |
download | cpython-a597dde3f1959127c33296a77f76331b59449c01.zip cpython-a597dde3f1959127c33296a77f76331b59449c01.tar.gz cpython-a597dde3f1959127c33296a77f76331b59449c01.tar.bz2 |
cosmetic changes so these modules will work with the strict new naming scheme
Diffstat (limited to 'Modules/syslogmodule.c')
-rw-r--r-- | Modules/syslogmodule.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Modules/syslogmodule.c b/Modules/syslogmodule.c index eea33aa..aca6746 100644 --- a/Modules/syslogmodule.c +++ b/Modules/syslogmodule.c @@ -24,13 +24,10 @@ WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. /* syslog module */ -#include "allobjects.h" -#include "modsupport.h" +#include "Python.h" #include <syslog.h> -#include "rename1.h" - static PyObject * syslog_openlog(self, args) PyObject * self; |