diff options
author | Joe Conway <mail@joeconway.com> | 2004-08-05 03:10:29 +0000 |
---|---|---|
committer | Joe Conway <mail@joeconway.com> | 2004-08-05 03:10:29 +0000 |
commit | ab6ee1f9fc7039b1e8d8ebf939da3fd55e73efad (patch) | |
tree | 64f0929d953b24c89b8c2205cd22ed6c13ad49b7 /src | |
parent | a128926e89c6f4beca1b2daf0e36b647574511bc (diff) | |
download | postgresql-ab6ee1f9fc7039b1e8d8ebf939da3fd55e73efad.tar.gz postgresql-ab6ee1f9fc7039b1e8d8ebf939da3fd55e73efad.zip |
Move include for Python.h above postgres.h to eliminate compiler warning.
Diffstat (limited to 'src')
-rw-r--r-- | src/pl/plpython/plpython.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pl/plpython/plpython.c b/src/pl/plpython/plpython.c index 76ea03107b9..07eed862477 100644 --- a/src/pl/plpython/plpython.c +++ b/src/pl/plpython/plpython.c @@ -29,11 +29,12 @@ * 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> |