diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2003-01-09 18:00:24 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2003-01-09 18:00:24 +0000 |
commit | 83b06823f63aefa40736c1797890d13c043f352d (patch) | |
tree | 0fa78d87d8f12cd9218c3982dab5eea7563846e2 /src/include/c.h | |
parent | 9df2c440326cf5ebfe485af4e76938c12faa220d (diff) | |
download | postgresql-83b06823f63aefa40736c1797890d13c043f352d.tar.gz postgresql-83b06823f63aefa40736c1797890d13c043f352d.zip |
Move new typedef AclId into c.h, so as to avoid cluttering namespace
by having to include miscadmin.h into other header files.
Diffstat (limited to 'src/include/c.h')
-rw-r--r-- | src/include/c.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/include/c.h b/src/include/c.h index 040a211a8f1..724bbb50b84 100644 --- a/src/include/c.h +++ b/src/include/c.h @@ -12,7 +12,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: c.h,v 1.134 2002/12/16 16:22:46 tgl Exp $ + * $Id: c.h,v 1.135 2003/01/09 18:00:24 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -358,7 +358,7 @@ typedef float float4; typedef double float8; /* - * Oid, RegProcedure, TransactionId, CommandId + * Oid, RegProcedure, TransactionId, CommandId, AclId */ /* typedef Oid is in postgres_ext.h */ @@ -376,6 +376,8 @@ typedef uint32 CommandId; #define FirstCommandId ((CommandId) 0) +typedef int32 AclId; /* user and group identifiers */ + /* * Array indexing support */ |