diff options
author | Neil Conway <neilc@samurai.com> | 2005-06-24 01:10:11 +0000 |
---|---|---|
committer | Neil Conway <neilc@samurai.com> | 2005-06-24 01:10:11 +0000 |
commit | 76aa6d29cfcead2da93446e083d179814736a827 (patch) | |
tree | 434551091c996874320df28a53fb8042229ab1db /src/backend/utils/adt/formatting.c | |
parent | f2b6edeab82f4cb9782bbe1ec7f46126dc309452 (diff) | |
download | postgresql-76aa6d29cfcead2da93446e083d179814736a827.tar.gz postgresql-76aa6d29cfcead2da93446e083d179814736a827.zip |
Code cleanup: remove 3 duplicate static function declarations.
Diffstat (limited to 'src/backend/utils/adt/formatting.c')
-rw-r--r-- | src/backend/utils/adt/formatting.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/backend/utils/adt/formatting.c b/src/backend/utils/adt/formatting.c index 9b64dab8ea0..a4850f1f71b 100644 --- a/src/backend/utils/adt/formatting.c +++ b/src/backend/utils/adt/formatting.c @@ -1,7 +1,7 @@ /* ----------------------------------------------------------------------- * formatting.c * - * $PostgreSQL: pgsql/src/backend/utils/adt/formatting.c,v 1.89 2005/06/22 01:43:05 neilc Exp $ + * $PostgreSQL: pgsql/src/backend/utils/adt/formatting.c,v 1.90 2005/06/24 01:10:11 neilc Exp $ * * * Portions Copyright (c) 1999-2005, PostgreSQL Global Development Group @@ -898,9 +898,6 @@ static char *str_tolower(char *buff); /* static int is_acdc(char *str, int *len); */ static int seq_search(char *name, char **array, int type, int max, int *len); -static int dch_global(int arg, char *inout, int suf, int flag, FormatNode *node, void *data); -static int dch_time(int arg, char *inout, int suf, int flag, FormatNode *node, void *data); -static int dch_date(int arg, char *inout, int suf, int flag, FormatNode *node, void *data); static void do_to_timestamp(text *date_txt, text *fmt, struct pg_tm * tm, fsec_t *fsec); static char *fill_str(char *str, int c, int max); |