informix.c was violating the coding rule about not including any
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 8 Jan 2008 01:14:52 +0000 (01:14 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Tue, 8 Jan 2008 01:14:52 +0000 (01:14 +0000)
system headers before c.h.  Per report from J6M.

src/interfaces/ecpg/compatlib/informix.c

index 5601a111def6bf08f66bb0f8a4e0d6e263d4288e..211592f272698085f7c8c02a5bedb688f7fce371 100644 (file)
@@ -1,11 +1,12 @@
 /* $PostgreSQL$ */
 
+#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>