diff options
author | Marc G. Fournier <scrappy@hub.org> | 1997-03-14 23:34:16 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1997-03-14 23:34:16 +0000 |
commit | 791c075852e1137e6258c07e03281b4d53345c82 (patch) | |
tree | 9e90b137d9db4d5e83bf310074e947dae14b6a94 /src/include/postgres.h | |
parent | 53d8be3bbfc3835ca31a498c2c75b238530107f2 (diff) | |
download | postgresql-791c075852e1137e6258c07e03281b4d53345c82.tar.gz postgresql-791c075852e1137e6258c07e03281b4d53345c82.zip |
Date/Time updates from Thomas...
Diffstat (limited to 'src/include/postgres.h')
-rw-r--r-- | src/include/postgres.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/include/postgres.h b/src/include/postgres.h index a40a28d2548..19426f01238 100644 --- a/src/include/postgres.h +++ b/src/include/postgres.h @@ -6,7 +6,7 @@ * * Copyright (c) 1995, Regents of the University of California * - * $Id: postgres.h,v 1.3 1996/12/10 07:03:40 bryanh Exp $ + * $Id: postgres.h,v 1.4 1997/03/14 23:31:22 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -29,7 +29,7 @@ * 2) varlena and array types * 3) TransactionId and CommandId * 4) genbki macros used by catalog/pg_xxx.h files - * 5) random SIGNBIT, MAXPGPATH, STATUS macros + * 5) random CSIGNBIT, MAXPGPATH, STATUS macros * * ---------------------------------------------------------------- */ @@ -52,7 +52,7 @@ typedef int32 int4; typedef float float4; typedef double float8; -typedef int4 aclitem; +typedef int4 aclitem; #define InvalidOid 0 #define OidIsValid(objectId) ((bool) (objectId != InvalidOid)) @@ -177,15 +177,16 @@ typedef uint16 CommandId; /* ---------------------------------------------------------------- * Section 5: random stuff - * SIGNBIT, MAXPGPATH, STATUS... + * CSIGNBIT, MAXPGPATH, STATUS... * ---------------------------------------------------------------- */ /* msb for int/unsigned */ -#define SIGNBIT (0x8000) +#define ISIGNBIT (0x80000000) +#define WSIGNBIT (0x8000) /* msb for char */ -#define CSIGNBIT (1 << 7) +#define CSIGNBIT (0x80) /* ---------------- * global variables which should probably go someplace else. |