diff options
Diffstat (limited to 'src/include/utils/builtins.h')
-rw-r--r-- | src/include/utils/builtins.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/include/utils/builtins.h b/src/include/utils/builtins.h index 0e87267980e..680566d6a38 100644 --- a/src/include/utils/builtins.h +++ b/src/include/utils/builtins.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: builtins.h,v 1.12 1997/03/14 23:33:18 scrappy Exp $ + * $Id: builtins.h,v 1.13 1997/03/25 09:25:33 scrappy Exp $ * * NOTES * This should normally only be included by fmgr.h. @@ -407,15 +407,15 @@ extern ItemPointer tidin(char *str); extern char *tidout(ItemPointer itemPtr); /* timestamp.c */ -extern int4 timestamp_in(char *timestamp_str); -extern char *timestamp_out(int4 timestamp); -extern int4 now(void); -int4 timestampeq(int4 t1, int4 t2); -int4 timestampne(int4 t1, int4 t2); -int4 timestamplt(int4 t1, int4 t2); -int4 timestampgt(int4 t1, int4 t2); -int4 timestample(int4 t1, int4 t2); -int4 timestampge(int4 t1, int4 t2); +extern time_t timestamp_in(const char *timestamp_str); +extern char *timestamp_out(time_t timestamp); +extern time_t now(void); +bool timestampeq(time_t t1, time_t t2); +bool timestampne(time_t t1, time_t t2); +bool timestamplt(time_t t1, time_t t2); +bool timestampgt(time_t t1, time_t t2); +bool timestample(time_t t1, time_t t2); +bool timestampge(time_t t1, time_t t2); /* varchar.c */ extern char *bpcharin(char *s, int dummy, int typlen); |