diff options
author | Magnus Hagander <magnus@hagander.net> | 2007-10-03 12:34:29 +0000 |
---|---|---|
committer | Magnus Hagander <magnus@hagander.net> | 2007-10-03 12:34:29 +0000 |
commit | f83e44aecd60e1720ac2ccd2486a8589228a0282 (patch) | |
tree | 8ad7a09420c4d1c75a495f0c9443fdd938c5d0de /src/interfaces/ecpg/compatlib/informix.c | |
parent | 7b4453e5c1db384c9feadb8f44a6378f3f7135e7 (diff) | |
download | postgresql-f83e44aecd60e1720ac2ccd2486a8589228a0282.tar.gz postgresql-f83e44aecd60e1720ac2ccd2486a8589228a0282.zip |
Use snprintf from libpgport in ecpg compatlib. Required since
we restricted exports from ecpglib.
Diffstat (limited to 'src/interfaces/ecpg/compatlib/informix.c')
-rw-r--r-- | src/interfaces/ecpg/compatlib/informix.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/interfaces/ecpg/compatlib/informix.c b/src/interfaces/ecpg/compatlib/informix.c index b1f78aebafe..807277efa3f 100644 --- a/src/interfaces/ecpg/compatlib/informix.c +++ b/src/interfaces/ecpg/compatlib/informix.c @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/src/interfaces/ecpg/compatlib/informix.c,v 1.50 2007/10/03 11:11:11 meskes Exp $ */ +/* $PostgreSQL: pgsql/src/interfaces/ecpg/compatlib/informix.c,v 1.51 2007/10/03 12:34:29 mha Exp $ */ #include <stdlib.h> #include <string.h> @@ -8,6 +8,7 @@ #include <limits.h> #define POSTGRES_ECPG_INTERNAL +#include <postgres_fe.h> #include <ecpgtype.h> #include <ecpg_informix.h> #include <pgtypes_error.h> |