diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2008-01-08 01:14:52 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2008-01-08 01:14:52 +0000 |
commit | 867ff0727f45d61dbfdd8154a88aeae55e0f4260 (patch) | |
tree | f859ffbca430f79eff44d001c8f1bd361ed20907 /src/interfaces/ecpg/compatlib/informix.c | |
parent | 8c71752ae4a3728c2641587b4b970cab0bf28ba7 (diff) | |
download | postgresql-867ff0727f45d61dbfdd8154a88aeae55e0f4260.tar.gz postgresql-867ff0727f45d61dbfdd8154a88aeae55e0f4260.zip |
informix.c was violating the coding rule about not including any
system headers before c.h. Per report from J6M.
Diffstat (limited to 'src/interfaces/ecpg/compatlib/informix.c')
-rw-r--r-- | src/interfaces/ecpg/compatlib/informix.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/interfaces/ecpg/compatlib/informix.c b/src/interfaces/ecpg/compatlib/informix.c index 77b5656f55d..485c86cf243 100644 --- a/src/interfaces/ecpg/compatlib/informix.c +++ b/src/interfaces/ecpg/compatlib/informix.c @@ -1,11 +1,12 @@ -/* $PostgreSQL: pgsql/src/interfaces/ecpg/compatlib/informix.c,v 1.53 2007/11/15 21:14:45 momjian Exp $ */ +/* $PostgreSQL: pgsql/src/interfaces/ecpg/compatlib/informix.c,v 1.54 2008/01/08 01:14:52 tgl Exp $ */ + +#define POSTGRES_ECPG_INTERNAL +#include "postgres_fe.h" #include <math.h> #include <ctype.h> #include <limits.h> -#define POSTGRES_ECPG_INTERNAL -#include "postgres_fe.h" #include <ecpgtype.h> #include <ecpg_informix.h> #include <pgtypes_error.h> |