]> granicus.if.org Git - postgresql/commitdiff
-Wall'd
authorMarc G. Fournier <scrappy@hub.org>
Mon, 21 Oct 1996 05:59:49 +0000 (05:59 +0000)
committerMarc G. Fournier <scrappy@hub.org>
Mon, 21 Oct 1996 05:59:49 +0000 (05:59 +0000)
src/backend/access/heap/heapam.c
src/backend/access/heap/hio.c
src/backend/access/heap/stats.c

index c4ce2dbb5114debb4c040dce84de33a66eac7265..25e6693d4ff1f10446b690990a3c6f50c353b016 100644 (file)
@@ -7,7 +7,7 @@
  *
  *
  * IDENTIFICATION
- *    $Header: /cvsroot/pgsql/src/backend/access/heap/heapam.c,v 1.4 1996/10/20 08:31:57 scrappy Exp $
+ *    $Header: /cvsroot/pgsql/src/backend/access/heap/heapam.c,v 1.5 1996/10/21 05:59:44 scrappy Exp $
  *
  *
  * INTERFACE ROUTINES
 #include "access/valid.h"
 #include "utils/relcache.h"
 
+#ifndef HAVE_MEMMOVE
+# include "regex/utils.h"
+#else
+# include <string.h>
+#endif
+
+#include <stdio.h>
+#include "storage/ipc.h" 
+#include "storage/bufmgr.h"
+
+#include "utils/palloc.h"
+
+#include "access/hio.h"
+
+#include "storage/spin.h"
+#include "utils/hsearch.h"
+#include "storage/shmem.h"
+#include "storage/lock.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 03d1c918e29ec111294abad454737369e0136f3f..fd80c0da21dad30e71e304c527660705c69405e5 100644 (file)
@@ -7,7 +7,7 @@
  *
  *
  * IDENTIFICATION
- *    $Id: hio.c,v 1.4 1996/10/20 08:31:59 scrappy Exp $
+ *    $Id: hio.c,v 1.5 1996/10/21 05:59:46 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -38,7 +38,6 @@
 
 #include "storage/itemid.h"
 #include "storage/item.h"
-#include "storage/buf.h"
 #include "storage/off.h"
 #include "storage/bufpage.h"
 
 
 #include "access/heapam.h"
 
+#include <stdio.h>
+#include "storage/ipc.h"
 #include "storage/bufmgr.h"
 
+#include "utils/memutils.h"
+
 /*
  * amputunique - place tuple at tid
  *   Currently on errors, calls elog.  Perhaps should return -1?
index 1ec4b8bfc9fd78f7a51c96827fa71ab23e60cb4b..f85af5f7d161837fde0372fd7f8e920d44c94eb4 100644 (file)
@@ -7,7 +7,7 @@
  *
  *
  * IDENTIFICATION
- *    $Header: /cvsroot/pgsql/src/backend/access/heap/Attic/stats.c,v 1.3 1996/10/20 08:32:01 scrappy Exp $
+ *    $Header: /cvsroot/pgsql/src/backend/access/heap/Attic/stats.c,v 1.4 1996/10/21 05:59:49 scrappy Exp $
  *
  * NOTES
  *    initam should be moved someplace else.
 
 #include "utils/mcxt.h"
 
+#include "utils/palloc.h"
+
+#ifndef HAVE_MEMMOVE
+# include "regex/utils.h"
+#else
+# include <string.h>
+#endif
+
+#include <stdio.h>
+
 /* ----------------
  *      InitHeapAccessStatistics
  * ----------------