aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas G. Lockhart <lockhart@fourpalms.org>2001-11-06 16:27:31 +0000
committerThomas G. Lockhart <lockhart@fourpalms.org>2001-11-06 16:27:31 +0000
commite160fcd69642588ede2ef03fdb3cbca319253c2d (patch)
tree8225b1777e7cfe70b186f019ade4152f7b117b52
parentd980ddb544671551f8393b4ce8af4297ab57d9bb (diff)
downloadpostgresql-e160fcd69642588ede2ef03fdb3cbca319253c2d.tar.gz
postgresql-e160fcd69642588ede2ef03fdb3cbca319253c2d.zip
Use PostgreSQL's standard declaration for a 32-bit integer to define
the cash data type.
-rw-r--r--src/include/utils/cash.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/utils/cash.h b/src/include/utils/cash.h
index 034a79ac54b..02b6c6424d9 100644
--- a/src/include/utils/cash.h
+++ b/src/include/utils/cash.h
@@ -10,7 +10,7 @@
#define CASH_H
/* if we store this as 4 bytes, we better make it int, not long, bjm */
-typedef signed int Cash;
+typedef int32 Cash;
extern Datum cash_in(PG_FUNCTION_ARGS);
extern Datum cash_out(PG_FUNCTION_ARGS);