aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVadim B. Mikheev <vadim4o@yahoo.com>1997-04-18 02:55:54 +0000
committerVadim B. Mikheev <vadim4o@yahoo.com>1997-04-18 02:55:54 +0000
commit949ab57c7a36c641deb557b96c04e418e4456993 (patch)
tree9afd1a695805b54d748d54f20922c9316cee39da
parentd3dfc664d0fe5fc014ec8e7f5dae1b1b62c40fdb (diff)
downloadpostgresql-949ab57c7a36c641deb557b96c04e418e4456993.tar.gz
postgresql-949ab57c7a36c641deb557b96c04e418e4456993.zip
Declaration
static const char *num_word(Cash value); moved here from cash.h
-rw-r--r--src/backend/utils/adt/cash.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/backend/utils/adt/cash.c b/src/backend/utils/adt/cash.c
index 7f6323a7ae7..05d79cbe1c3 100644
--- a/src/backend/utils/adt/cash.c
+++ b/src/backend/utils/adt/cash.c
@@ -9,7 +9,7 @@
* workings can be found in the book "Software Solutions in C" by
* Dale Schumacher, Academic Press, ISBN: 0-12-632360-7.
*
- * $Header: /cvsroot/pgsql/src/backend/utils/adt/cash.c,v 1.4 1997/04/15 17:39:44 scrappy Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/adt/cash.c,v 1.5 1997/04/18 02:55:54 vadim Exp $
*/
#include <stdio.h>
@@ -23,6 +23,8 @@
#include "utils/builtins.h"
#include "utils/cash.h"
+static const char *num_word(Cash value);
+
/* when we go to 64 bit values we will have to modify this */
#define CASH_BUFSZ 24