]> granicus.if.org Git - postgresql/commitdiff
-Wall based cleanup of include files, based from acl.h, and everything
authorMarc G. Fournier <scrappy@hub.org>
Mon, 4 Nov 1996 07:18:46 +0000 (07:18 +0000)
committerMarc G. Fournier <scrappy@hub.org>
Mon, 4 Nov 1996 07:18:46 +0000 (07:18 +0000)
that it depends on

src/include/access/htup.h
src/include/nodes/parsenodes.h
src/include/nodes/pg_list.h
src/include/nodes/primnodes.h
src/include/storage/itemptr.h
src/include/utils/acl.h
src/include/utils/array.h
src/include/utils/fcache.h
src/include/utils/nabstime.h
src/include/utils/tqual.h

index 97ed8aeea752c76631721aa9681c68d2ff6cc597..2dedd873eaecc99682d04f929e138cf866e26dbf 100644 (file)
@@ -6,15 +6,15 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: htup.h,v 1.2 1996/10/19 04:02:39 scrappy Exp $
+ * $Id: htup.h,v 1.3 1996/11/04 07:18:11 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
 #ifndef        HTUP_H
 #define HTUP_H
 
-#include "storage/itemptr.h"
-#include "utils/nabstime.h"
+#include <utils/nabstime.h>
+#include <storage/itemptr.h>
 
 #define MinHeapTupleBitmapSize 32              /* 8 * 4 */
 
index b46a77ebe3436353fb7047006288e3ac66bfb1e5..9e61aeffbc8ad997f05325445b35efbe0511027c 100644 (file)
@@ -6,15 +6,15 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: parsenodes.h,v 1.5 1996/11/03 12:12:55 scrappy Exp $
+ * $Id: parsenodes.h,v 1.6 1996/11/04 07:18:17 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
 #ifndef        PARSENODES_H
 #define        PARSENODES_H
 
-#include "utils/tqual.h" 
-#include "nodes/primnodes.h" 
+#include <utils/tqual.h>
+#include <nodes/primnodes.h>
 
 /*****************************************************************************
  *  Query Tree 
index 6c4d03b75aadce09c8ec72f50a3727cc08fa2a4c..d3bf7c0de96a058735f613a710085d5966fa48a1 100644 (file)
@@ -6,14 +6,14 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: pg_list.h,v 1.2 1996/10/19 03:58:29 scrappy Exp $
+ * $Id: pg_list.h,v 1.3 1996/11/04 07:18:19 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
 #ifndef        PG_LIST_H
 #define        PG_LIST_H
 
-#include "nodes/nodes.h"
+#include <nodes/nodes.h>
 
 /* ----------------------------------------------------------------
  *                     node definitions
index 41e98fbb5d81f844f575ebe837c8aa2877ea571f..828a9d595abed1f1609f9be6413684d6cafb96af 100644 (file)
@@ -6,16 +6,16 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: primnodes.h,v 1.5 1996/11/03 12:12:58 scrappy Exp $
+ * $Id: primnodes.h,v 1.6 1996/11/04 07:18:21 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
 #ifndef PRIMNODES_H
 #define        PRIMNODES_H
 
-#include "nodes/pg_list.h"
-#include "access/attnum.h"
-#include "utils/fcache.h"
+#include <utils/fcache.h>
+#include <access/attnum.h>
+#include <nodes/pg_list.h>
 
 /* ----------------------------------------------------------------
  *                     node definitions
index ec69153fbf16174a218903ad7a3c9604db3fc6c2..f794141a6e0d87e293f7f19ab9c987ff1345a844 100644 (file)
@@ -6,15 +6,15 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: itemptr.h,v 1.3 1996/11/01 09:19:00 scrappy Exp $
+ * $Id: itemptr.h,v 1.4 1996/11/04 07:18:29 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
 #ifndef        ITEMPTR_H
 #define ITEMPTR_H
 
-#include "storage/block.h"
-#include "storage/off.h"
+#include <storage/off.h>
+#include <storage/block.h>
 
 /*
  * ItemPointer:
index 66ef255fdd56e89fe73977e85bdcddc63c8a6ee2..e6e37af4cdbd5d3d101745f28d9d593a64eec8c8 100644 (file)
@@ -6,7 +6,7 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: acl.h,v 1.2 1996/10/31 09:51:05 scrappy Exp $
+ * $Id: acl.h,v 1.3 1996/11/04 07:18:36 scrappy Exp $
  *
  * NOTES
  *    For backward-compatability purposes we have to allow there
@@ -22,8 +22,8 @@
 #ifndef ACL_H
 #define ACL_H
 
-#include "utils/array.h"
-#include "nodes/parsenodes.h" /* for ChangeACLStmt */
+#include <nodes/parsenodes.h>
+#include <utils/array.h>
 
 /*
  * AclId       system identifier for the user, group, etc.
index 8ab5b1370f8dd01030bcbc890b7e30016c85800a..d27f89691e8b780bd280b5254f5df35173bff61b 100644 (file)
@@ -10,7 +10,7 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: array.h,v 1.2 1996/11/04 04:00:36 momjian Exp $
+ * $Id: array.h,v 1.3 1996/11/04 07:18:39 scrappy Exp $
  *
  * NOTES
  *    XXX the data array should be LONGALIGN'd -- notice that the array
@@ -22,8 +22,7 @@
 #ifndef ARRAY_H
 #define ARRAY_H
 
-#include <stdio.h>     /* for FILE (XXX should use File) */
-#include "utils/memutils.h"
+#include <stdio.h>
 
 typedef struct {
     int        size;           /* total array size (in bytes) */ 
index 9802fdbfce61cfde39d05ddf01c7b16f01b9dab8..9ce6e857e9df8b8f4252fab2a350ed2d030e10a2 100644 (file)
@@ -6,14 +6,13 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: fcache.h,v 1.1 1996/08/28 01:58:57 scrappy Exp $
+ * $Id: fcache.h,v 1.2 1996/11/04 07:18:42 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
 #ifndef        FCACHE_H
 #define        FCACHE_H
 
-#include "fmgr.h"
 
 typedef struct
 {
index 168c6dce423afccffec172a43da98bb432ec52a8..d5d34c8b9c517cc31bb1ac61fc193a62f317ac8c 100644 (file)
@@ -6,7 +6,7 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: nabstime.h,v 1.3 1996/11/04 04:00:50 momjian Exp $
+ * $Id: nabstime.h,v 1.4 1996/11/04 07:18:45 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -43,7 +43,6 @@ typedef TimeIntervalData *TimeInterval;
  * these integer constants depending on whether the constant is signed 
  * or not!
  */
-#include <values.h>
 /*#define NOSTART_ABSTIME      ((AbsoluteTime) HIBITI) */      /* - 2^31 */
 #define NOSTART_ABSTIME      ((AbsoluteTime) INT_MIN)
 #else
index 18586b7a6228358a483b3fe93a8dc205f15912fa..dc8139266d4dd9318db3939adbbd8bd621cc271d 100644 (file)
@@ -6,7 +6,7 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: tqual.h,v 1.4 1996/11/03 08:17:38 scrappy Exp $
+ * $Id: tqual.h,v 1.5 1996/11/04 07:18:46 scrappy Exp $
  *
  * NOTE
  *    It may be desirable to allow time qualifications to indicate
@@ -17,7 +17,7 @@
 #ifndef        TQUAL_H
 #define TQUAL_H
 
-#include "access/htup.h"
+#include <access/htup.h>
 
 typedef struct TimeQualSpace {
     char       data[12];