From: Thomas G. Lockhart Date: Tue, 6 Nov 2001 16:27:31 +0000 (+0000) Subject: Use PostgreSQL's standard declaration for a 32-bit integer to define X-Git-Tag: REL7_2_BETA2~4 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e160fcd69642588ede2ef03fdb3cbca319253c2d;p=postgresql Use PostgreSQL's standard declaration for a 32-bit integer to define the cash data type. --- diff --git a/src/include/utils/cash.h b/src/include/utils/cash.h index 034a79ac54..02b6c6424d 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);