Commit f07e8f39 authored by Jeremy Hylton's avatar Jeremy Hylton

Remove bogus include.

#include <string.h> is implied by ExtensionClass.h, because it includes
Python.h.  Also, it is an error to include standard headers before
Python.h.
parent 9f050781
...@@ -14,10 +14,9 @@ ...@@ -14,10 +14,9 @@
static char Missing_module_documentation[] = static char Missing_module_documentation[] =
"" ""
"\n$Id: Missing.c,v 1.13 2002/06/10 22:48:46 jeremy Exp $" "\n$Id: Missing.c,v 1.14 2002/11/12 20:06:00 jeremy Exp $"
; ;
#include <string.h>
#include "ExtensionClass.h" #include "ExtensionClass.h"
/* Declarations for objects of type Missing */ /* Declarations for objects of type Missing */
...@@ -303,6 +302,13 @@ initMissing(void) ...@@ -303,6 +302,13 @@ initMissing(void)
Revision Log: Revision Log:
$Log: Missing.c,v $ $Log: Missing.c,v $
Revision 1.14 2002/11/12 20:06:00 jeremy
Remove bogus include.
#include <string.h> is implied by ExtensionClass.h, because it includes
Python.h. Also, it is an error to include standard headers before
Python.h.
Revision 1.13 2002/06/10 22:48:46 jeremy Revision 1.13 2002/06/10 22:48:46 jeremy
Update ExtensionClass to ZPL 2.0. Update ExtensionClass to ZPL 2.0.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment