diff options
author | Bruce Momjian <bruce@momjian.us> | 2004-12-23 13:19:17 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2004-12-23 13:19:17 +0000 |
commit | f9a134b6e4a6c8fc94e377a8f3af1761645a4569 (patch) | |
tree | fe44d86d2dffbabe24d988936dd5d2e6ae8c7e36 | |
parent | f0299325e4edc8089e30ea09e2cca6455a55d18d (diff) | |
download | postgresql-f9a134b6e4a6c8fc94e377a8f3af1761645a4569.tar.gz postgresql-f9a134b6e4a6c8fc94e377a8f3af1761645a4569.zip |
Add missing ecpg prototype for newly added functions.
-rw-r--r-- | src/interfaces/ecpg/include/pgtypes_timestamp.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/interfaces/ecpg/include/pgtypes_timestamp.h b/src/interfaces/ecpg/include/pgtypes_timestamp.h index b6f1745a5e0..8b3bf941e73 100644 --- a/src/interfaces/ecpg/include/pgtypes_timestamp.h +++ b/src/interfaces/ecpg/include/pgtypes_timestamp.h @@ -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 } |