]> granicus.if.org Git - postgresql/commitdiff
Move include for Python.h above postgres.h to eliminate compiler warning.
authorJoe Conway <mail@joeconway.com>
Thu, 5 Aug 2004 03:10:29 +0000 (03:10 +0000)
committerJoe Conway <mail@joeconway.com>
Thu, 5 Aug 2004 03:10:29 +0000 (03:10 +0000)
src/pl/plpython/plpython.c

index 76ea03107b9abc8f8c67931fc6ae13c426b3596f..07eed862477bd83c1d067c47cf62002462aa95ad 100644 (file)
  * MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
  *
  * IDENTIFICATION
- *     $PostgreSQL: pgsql/src/pl/plpython/plpython.c,v 1.52 2004/08/04 21:34:29 tgl Exp $
+ *     $PostgreSQL: pgsql/src/pl/plpython/plpython.c,v 1.53 2004/08/05 03:10:29 joe Exp $
  *
  *********************************************************************
  */
 
+#include <Python.h>
 #include "postgres.h"
 
 /* system stuff */
@@ -54,7 +55,6 @@
 #include "utils/syscache.h"
 #include "utils/typcache.h"
 
-#include <Python.h>
 #include <compile.h>
 #include <eval.h>