From 867ff0727f45d61dbfdd8154a88aeae55e0f4260 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Tue, 8 Jan 2008 01:14:52 +0000 Subject: [PATCH] informix.c was violating the coding rule about not including any system headers before c.h. Per report from J6M. --- src/interfaces/ecpg/compatlib/informix.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/interfaces/ecpg/compatlib/informix.c b/src/interfaces/ecpg/compatlib/informix.c index 77b5656f55..485c86cf24 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 #include #include -#define POSTGRES_ECPG_INTERNAL -#include "postgres_fe.h" #include #include #include -- 2.40.0