Commit 5c675134 authored by Tres Seaver's avatar Tres Seaver

- Include cPersistence.h first, as it includes Python.h.

parent 50af91f9
...@@ -13,15 +13,15 @@ ...@@ -13,15 +13,15 @@
static char intSet_module_documentation[] = static char intSet_module_documentation[] =
"" ""
"\n$Id: intSet.c,v 1.24 2003/01/06 17:00:27 chrisw Exp $" "\n$Id: intSet.c,v 1.25 2003/10/19 22:19:39 tseaver Exp $"
; ;
#include "cPersistence.h"
#include <limits.h> #include <limits.h>
#include <stdlib.h> #include <stdlib.h>
#include <stdio.h> #include <stdio.h>
#include <errno.h> #include <errno.h>
#include <time.h> #include <time.h>
#include "cPersistence.h"
#define UNLESS(E) if(!(E)) #define UNLESS(E) if(!(E))
#define RETURN_NONE Py_INCREF(Py_None); return Py_None #define RETURN_NONE Py_INCREF(Py_None); return Py_None
......
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