Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 867ff07

Browse files
committed
informix.c was violating the coding rule about not including any
system headers before c.h. Per report from J6M.
1 parent 8c71752 commit 867ff07

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/interfaces/ecpg/compatlib/informix.c

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
/* $PostgreSQL: pgsql/src/interfaces/ecpg/compatlib/informix.c,v 1.53 2007/11/15 21:14:45 momjian Exp $ */
1+
/* $PostgreSQL: pgsql/src/interfaces/ecpg/compatlib/informix.c,v 1.54 2008/01/08 01:14:52 tgl Exp $ */
2+
3+
#define POSTGRES_ECPG_INTERNAL
4+
#include "postgres_fe.h"
25

36
#include <math.h>
47
#include <ctype.h>
58
#include <limits.h>
69

7-
#define POSTGRES_ECPG_INTERNAL
8-
#include "postgres_fe.h"
910
#include <ecpgtype.h>
1011
#include <ecpg_informix.h>
1112
#include <pgtypes_error.h>

0 commit comments

Comments
 (0)