Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit ab6ee1f

Browse files
committed
Move include for Python.h above postgres.h to eliminate compiler warning.
1 parent a128926 commit ab6ee1f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pl/plpython/plpython.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,12 @@
2929
* MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
3030
*
3131
* IDENTIFICATION
32-
* $PostgreSQL: pgsql/src/pl/plpython/plpython.c,v 1.52 2004/08/04 21:34:29 tgl Exp $
32+
* $PostgreSQL: pgsql/src/pl/plpython/plpython.c,v 1.53 2004/08/05 03:10:29 joe Exp $
3333
*
3434
*********************************************************************
3535
*/
3636

37+
#include <Python.h>
3738
#include "postgres.h"
3839

3940
/* system stuff */
@@ -54,7 +55,6 @@
5455
#include "utils/syscache.h"
5556
#include "utils/typcache.h"
5657

57-
#include <Python.h>
5858
#include <compile.h>
5959
#include <eval.h>
6060

0 commit comments

Comments
 (0)