From b19ce451853a91e3aaafbc3978332f785f789d0f 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 | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/interfaces/ecpg/compatlib/informix.c b/src/interfaces/ecpg/compatlib/informix.c index 5601a111de..211592f272 100644 --- a/src/interfaces/ecpg/compatlib/informix.c +++ b/src/interfaces/ecpg/compatlib/informix.c @@ -1,11 +1,12 @@ /* $PostgreSQL$ */ +#define POSTGRES_ECPG_INTERNAL +#include "postgres_fe.h" + #include #include #include -#define POSTGRES_ECPG_INTERNAL -#include "postgres_fe.h" #include #include #include -- 2.39.5