From 83b06823f63aefa40736c1797890d13c043f352d Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Thu, 9 Jan 2003 18:00:24 +0000 Subject: Move new typedef AclId into c.h, so as to avoid cluttering namespace by having to include miscadmin.h into other header files. --- src/include/c.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/include/c.h') 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 */ -- cgit v1.2.3