-Wall based cleanup of include files, based from acl.h, and everything

that it depends on
This commit is contained in:
Marc G. Fournier 1996-11-04 07:18:46 +00:00
parent 796aca3916
commit d93d3c843a
10 changed files with 24 additions and 27 deletions

View 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 */

View 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

View 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

View 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

View 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:

View 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.

View 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) */

View 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
{

View 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

View 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];