Add missing ecpg prototype for newly added functions.

This commit is contained in:
Bruce Momjian 2004-12-23 13:19:17 +00:00
parent f0299325e4
commit f9a134b6e4
1 changed files with 2 additions and 0 deletions

View File

@ -23,6 +23,8 @@ extern int PGTYPEStimestamp_sub(timestamp *, timestamp *, interval *);
extern int PGTYPEStimestamp_fmt_asc(timestamp *, char *, int, char *);
extern void PGTYPEStimestamp_current(timestamp *);
extern int PGTYPEStimestamp_defmt_asc(char *, char *, timestamp *);
extern int PGTYPEStimestamp_add_interval(timestamp *tin, interval *span, timestamp *tout);
extern int PGTYPEStimestamp_sub_interval(timestamp *tin, interval *span, timestamp *tout);
#ifdef __cplusplus
}