diff options
Diffstat (limited to 'src/interfaces/ecpg/include/ecpg_informix.h')
-rw-r--r-- | src/interfaces/ecpg/include/ecpg_informix.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/interfaces/ecpg/include/ecpg_informix.h b/src/interfaces/ecpg/include/ecpg_informix.h index ccf4dd1123f..2a17202010e 100644 --- a/src/interfaces/ecpg/include/ecpg_informix.h +++ b/src/interfaces/ecpg/include/ecpg_informix.h @@ -1,7 +1,7 @@ /* * This file contains stuff needed to be as compatible to Informix as possible. * - * $PostgreSQL: pgsql/src/interfaces/ecpg/include/ecpg_informix.h,v 1.14 2003/12/18 18:55:09 petere Exp $ + * $PostgreSQL: pgsql/src/interfaces/ecpg/include/ecpg_informix.h,v 1.15 2004/05/10 13:46:06 meskes Exp $ */ #ifndef _ECPG_INFORMIX_H #define _ECPG_INFORMIX_H @@ -29,6 +29,11 @@ #define ECPG_INFORMIX_BAD_DATE -1218 #define ECPG_INFORMIX_EXTRA_CHARS -1264 +#ifdef __cplusplus +extern "C" +{ +#endif + extern int rdatestr(date, char *); extern void rtoday(date *); extern int rjulmdy(date, short *); @@ -78,4 +83,8 @@ extern int dttofmtasc(timestamp *, char *, int, char *); extern int intoasc(interval *, char *); extern int dtcvfmtasc(char *, char *, timestamp *); +#ifdef __cplusplus +} +#endif + #endif /* ndef _ECPG_INFORMIX_H */ |