summaryrefslogtreecommitdiff
path: root/src/backend/commands/user.c
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1999-08-02 05:57:07 +0000
committerMarc G. Fournier <scrappy@hub.org>1999-08-02 05:57:07 +0000
commit10ace1fac8d9f2aa887a1095340e218430928fce (patch)
tree9d6bb091bfbf0b16bb7ad29e5c042de12ee4b678 /src/backend/commands/user.c
parent9a8aeb23a19ee6833480d4c12719d9fd26ad8571 (diff)
Another mass of them... just #include file changes and/or DOUBLEALIGN->MAXALIGN
Diffstat (limited to 'src/backend/commands/user.c')
-rw-r--r--src/backend/commands/user.c32
1 files changed, 13 insertions, 19 deletions
diff --git a/src/backend/commands/user.c b/src/backend/commands/user.c
index 57ac35fb1f4..a452a0c5864 100644
--- a/src/backend/commands/user.c
+++ b/src/backend/commands/user.c
@@ -5,33 +5,27 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: user.c,v 1.28 1999/05/25 16:08:27 momjian Exp $
+ * $Id: user.c,v 1.28.2.1 1999/08/02 05:56:59 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
-#include <stdio.h>
-#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
-#include <postgres.h>
-
-#include <miscadmin.h>
-#include <catalog/catname.h>
-#include <catalog/pg_database.h>
-#include <catalog/pg_shadow.h>
-#include <libpq/crypt.h>
-#include <access/heapam.h>
-#include <access/xact.h>
-#include <storage/bufmgr.h>
-#include <storage/lmgr.h>
-#include <tcop/tcopprot.h>
-#include <utils/acl.h>
-#include <utils/rel.h>
-#include <utils/syscache.h>
-#include <commands/user.h>
+#include "postgres.h"
+
+#include "access/heapam.h"
+#include "catalog/catname.h"
+#include "catalog/pg_database.h"
+#include "catalog/pg_shadow.h"
+#include "commands/user.h"
+#include "libpq/crypt.h"
+#include "miscadmin.h"
+#include "tcop/tcopprot.h"
+#include "utils/acl.h"
+#include "utils/syscache.h"
static void CheckPgUserAclNotNull(void);