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/utils/acl.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/utils/acl.h')
-rw-r--r-- | src/include/utils/acl.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/include/utils/acl.h b/src/include/utils/acl.h index 60765fc68ef..ac86a86855d 100644 --- a/src/include/utils/acl.h +++ b/src/include/utils/acl.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: acl.h,v 1.49 2002/12/05 04:04:51 momjian Exp $ + * $Id: acl.h,v 1.50 2003/01/09 18:00:24 tgl Exp $ * * NOTES * For backward-compatibility purposes we have to allow there @@ -22,11 +22,12 @@ #ifndef ACL_H #define ACL_H -#include "miscadmin.h" #include "nodes/parsenodes.h" #include "utils/array.h" +/* typedef AclId is declared in c.h */ + #define ACL_ID_WORLD 0 /* placeholder for id in a WORLD acl item */ /* |