]> granicus.if.org Git - postgresql/commitdiff
More cleanups
authorMarc G. Fournier <scrappy@hub.org>
Tue, 5 Nov 1996 09:53:03 +0000 (09:53 +0000)
committerMarc G. Fournier <scrappy@hub.org>
Tue, 5 Nov 1996 09:53:03 +0000 (09:53 +0000)
src/backend/access/heap/heapam.c
src/backend/access/heap/hio.c
src/backend/access/heap/stats.c

index 28df1af592e9736f302e7ba1a630a817f561288c..a98cb2e1770ef60450f5b9cb07b85d5b6960de76 100644 (file)
@@ -7,7 +7,7 @@
  *
  *
  * IDENTIFICATION
- *    $Header: /cvsroot/pgsql/src/backend/access/heap/heapam.c,v 1.7 1996/11/03 12:34:50 scrappy Exp $
+ *    $Header: /cvsroot/pgsql/src/backend/access/heap/heapam.c,v 1.8 1996/11/05 09:53:01 scrappy Exp $
  *
  *
  * INTERFACE ROUTINES
  *-------------------------------------------------------------------------
  */
 
-#include "postgres.h"
+#include <postgres.h>
 
-#include "access/relscan.h"
-#include "storage/bufpage.h"
+#include <storage/bufpage.h>
+#include <access/heapam.h>
+#include <miscadmin.h>
+#include <utils/relcache.h>
+#include <access/valid.h>
+#include <access/hio.h>
+#include <storage/lmgr.h>
+#include <storage/smgr.h>
+#include <catalog/catalog.h>
+#include <access/transam.h>
+#include <access/xact.h>
+#include <utils/inval.h>
+#include <utils/memutils.h>
 
-#include "access/heapam.h"
-
-#include "miscadmin.h"
-
-#include "utils/relcache.h"
 
 #ifndef HAVE_MEMMOVE
-# include "regex/utils.h"
+# include <regex/utils.h>
 #else
 # include <string.h>
 #endif
 
-#include "access/valid.h"
-
-#include "storage/bufmgr.h"
-
-#include "utils/palloc.h"
-
-#include "access/hio.h"
-
-#include "storage/lmgr.h"
-
-#include "storage/smgr.h"
-
-#include "catalog/catalog.h"
-
-#include "access/transam.h"
-
-#include "access/xact.h"
-
-#include "utils/inval.h"
-
-#include "utils/memutils.h"
-
 static bool    ImmediateInvalidation;
 
 /* ----------------------------------------------------------------
index f5b5ab0975f7ed288b0ce80aab08a0634771deb0..f172a4047082a5cfff970686ea3086cf204f698e 100644 (file)
@@ -7,18 +7,17 @@
  *
  *
  * IDENTIFICATION
- *    $Id: hio.c,v 1.8 1996/11/03 22:57:28 scrappy Exp $
+ *    $Id: hio.c,v 1.9 1996/11/05 09:53:02 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
 
-#include "postgres.h"
+#include <postgres.h>
 
-#include "storage/bufpage.h"
-#include "access/relscan.h"
-#include "access/heapam.h"
-#include "storage/bufmgr.h"
-#include "utils/memutils.h"
+#include <storage/bufpage.h>
+#include <access/heapam.h>
+#include <storage/bufmgr.h>
+#include <utils/memutils.h>
 
 /*
  * amputunique - place tuple at tid
index 7f39559069932eddc76d17ba5f0078f5581791da..c3bf34006e62c1afce06468ca70377c749f69f3b 100644 (file)
@@ -7,7 +7,7 @@
  *
  *
  * IDENTIFICATION
- *    $Header: /cvsroot/pgsql/src/backend/access/heap/Attic/stats.c,v 1.6 1996/11/03 12:34:55 scrappy Exp $
+ *    $Header: /cvsroot/pgsql/src/backend/access/heap/Attic/stats.c,v 1.7 1996/11/05 09:53:03 scrappy Exp $
  *
  * NOTES
  *    initam should be moved someplace else.
  *-------------------------------------------------------------------------
  */
 
-#include <stdio.h>
+#include <postgres.h>
 
-#include "postgres.h"
-
-#include "access/relscan.h"
-
-#include "access/heapam.h"
-
-#include "nodes/memnodes.h"
-
-#include "utils/mcxt.h"
-
-#include "utils/palloc.h"
+#include <access/heapam.h>
+#include <utils/mcxt.h>
 
 #ifndef HAVE_MEMMOVE
-# include "regex/utils.h"
+# include <regex/utils.h>
 #else
 # include <string.h>
 #endif