diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2003-04-06 22:45:23 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2003-04-06 22:45:23 +0000 |
commit | cb1d036acb2cb58881e27dc568cb1e539271470d (patch) | |
tree | be9879ce0291f84609a3c3303f3e7afdd2f4f579 /src/include/postgres.h | |
parent | d7c333eb9ad3a8ca04d863263f44e79a1bc265dc (diff) | |
download | postgresql-cb1d036acb2cb58881e27dc568cb1e539271470d.tar.gz postgresql-cb1d036acb2cb58881e27dc568cb1e539271470d.zip |
Generate pg_config.h.in by autoheader. Separate out manually editable
parts. Standardize spelling of comments in pg_config.h.
Diffstat (limited to 'src/include/postgres.h')
-rw-r--r-- | src/include/postgres.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/postgres.h b/src/include/postgres.h index 9d7ad9bbec3..3d2da911d27 100644 --- a/src/include/postgres.h +++ b/src/include/postgres.h @@ -10,7 +10,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1995, Regents of the University of California * - * $Id: postgres.h,v 1.62 2002/10/18 20:33:57 tgl Exp $ + * $Id: postgres.h,v 1.63 2003/04/06 22:45:23 petere Exp $ * *------------------------------------------------------------------------- */ @@ -130,6 +130,7 @@ typedef struct varattrib */ typedef unsigned long Datum; /* XXX sizeof(long) >= sizeof(void *) */ +#define SIZEOF_DATUM SIZEOF_UNSIGNED_LONG typedef Datum *DatumPtr; #define GET_1_BYTE(datum) (((Datum) (datum)) & 0x000000ff) |