diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-11-03 06:54:38 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-11-03 06:54:38 +0000 |
commit | c9002ecb21a0dc64fc81a308a375c1c2b4001bfd (patch) | |
tree | 6ae104dcab3013e01850f8cee2f16e5af3fff336 /src/backend/utils/adt/acl.c | |
parent | 3cf53c1d8ae6aaa27c46b323d2b97aecd241e2f4 (diff) | |
download | postgresql-c9002ecb21a0dc64fc81a308a375c1c2b4001bfd.tar.gz postgresql-c9002ecb21a0dc64fc81a308a375c1c2b4001bfd.zip |
Produce a clean compile of backend...
Diffstat (limited to 'src/backend/utils/adt/acl.c')
-rw-r--r-- | src/backend/utils/adt/acl.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/backend/utils/adt/acl.c b/src/backend/utils/adt/acl.c index 7e625987fe7..97f9c6e47f2 100644 --- a/src/backend/utils/adt/acl.c +++ b/src/backend/utils/adt/acl.c @@ -7,23 +7,19 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/adt/acl.c,v 1.2 1996/08/27 07:32:25 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/adt/acl.c,v 1.3 1996/11/03 06:53:01 scrappy Exp $ * *------------------------------------------------------------------------- */ - -#include "config.h" - #include <ctype.h> #include <string.h> #include "postgres.h" -#include "c.h" #include "utils/acl.h" #include "access/htup.h" #include "catalog/pg_user.h" #include "utils/syscache.h" -#include "utils/elog.h" #include "utils/palloc.h" +#include "miscadmin.h" static char *getid(char *s, char *n); static int32 aclitemeq(AclItem *a1, AclItem *a2); |