Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitd93d3c8

Browse files
committed
-Wall based cleanup of include files, based from acl.h, and everything
that it depends on
1 parent796aca3 commitd93d3c8

File tree

10 files changed

+24
-27
lines changed

10 files changed

+24
-27
lines changed

‎src/include/access/htup.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66
*
77
* Copyright (c) 1994, Regents of the University of California
88
*
9-
* $Id: htup.h,v 1.2 1996/10/19 04:02:39 scrappy Exp $
9+
* $Id: htup.h,v 1.3 1996/11/04 07:18:11 scrappy Exp $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
1313
#ifndefHTUP_H
1414
#defineHTUP_H
1515

16-
#include"storage/itemptr.h"
17-
#include"utils/nabstime.h"
16+
#include<utils/nabstime.h>
17+
#include<storage/itemptr.h>
1818

1919
#defineMinHeapTupleBitmapSize32/* 8 * 4 */
2020

‎src/include/nodes/parsenodes.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66
*
77
* Copyright (c) 1994, Regents of the University of California
88
*
9-
* $Id: parsenodes.h,v 1.5 1996/11/03 12:12:55 scrappy Exp $
9+
* $Id: parsenodes.h,v 1.6 1996/11/04 07:18:17 scrappy Exp $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
1313
#ifndefPARSENODES_H
1414
#definePARSENODES_H
1515

16-
#include"utils/tqual.h"
17-
#include"nodes/primnodes.h"
16+
#include<utils/tqual.h>
17+
#include<nodes/primnodes.h>
1818

1919
/*****************************************************************************
2020
* Query Tree

‎src/include/nodes/pg_list.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
*
77
* Copyright (c) 1994, Regents of the University of California
88
*
9-
* $Id: pg_list.h,v 1.2 1996/10/19 03:58:29 scrappy Exp $
9+
* $Id: pg_list.h,v 1.3 1996/11/04 07:18:19 scrappy Exp $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
1313
#ifndefPG_LIST_H
1414
#definePG_LIST_H
1515

16-
#include"nodes/nodes.h"
16+
#include<nodes/nodes.h>
1717

1818
/* ----------------------------------------------------------------
1919
*node definitions

‎src/include/nodes/primnodes.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@
66
*
77
* Copyright (c) 1994, Regents of the University of California
88
*
9-
* $Id: primnodes.h,v 1.5 1996/11/03 12:12:58 scrappy Exp $
9+
* $Id: primnodes.h,v 1.6 1996/11/04 07:18:21 scrappy Exp $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
1313
#ifndefPRIMNODES_H
1414
#definePRIMNODES_H
1515

16-
#include"nodes/pg_list.h"
17-
#include"access/attnum.h"
18-
#include"utils/fcache.h"
16+
#include<utils/fcache.h>
17+
#include<access/attnum.h>
18+
#include<nodes/pg_list.h>
1919

2020
/* ----------------------------------------------------------------
2121
*node definitions

‎src/include/storage/itemptr.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66
*
77
* Copyright (c) 1994, Regents of the University of California
88
*
9-
* $Id: itemptr.h,v 1.3 1996/11/01 09:19:00 scrappy Exp $
9+
* $Id: itemptr.h,v 1.4 1996/11/04 07:18:29 scrappy Exp $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
1313
#ifndefITEMPTR_H
1414
#defineITEMPTR_H
1515

16-
#include"storage/block.h"
17-
#include"storage/off.h"
16+
#include<storage/off.h>
17+
#include<storage/block.h>
1818

1919
/*
2020
* ItemPointer:

‎src/include/utils/acl.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*
77
* Copyright (c) 1994, Regents of the University of California
88
*
9-
* $Id: acl.h,v 1.2 1996/10/31 09:51:05 scrappy Exp $
9+
* $Id: acl.h,v 1.3 1996/11/04 07:18:36 scrappy Exp $
1010
*
1111
* NOTES
1212
* For backward-compatability purposes we have to allow there
@@ -22,8 +22,8 @@
2222
#ifndefACL_H
2323
#defineACL_H
2424

25-
#include"utils/array.h"
26-
#include"nodes/parsenodes.h"/* for ChangeACLStmt */
25+
#include<nodes/parsenodes.h>
26+
#include<utils/array.h>
2727

2828
/*
2929
* AclIdsystem identifier for the user, group, etc.

‎src/include/utils/array.h

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*
1111
* Copyright (c) 1994, Regents of the University of California
1212
*
13-
* $Id: array.h,v 1.2 1996/11/0404:00:36 momjian Exp $
13+
* $Id: array.h,v 1.3 1996/11/0407:18:39 scrappy Exp $
1414
*
1515
* NOTES
1616
* XXX the data array should be LONGALIGN'd -- notice that the array
@@ -22,8 +22,7 @@
2222
#ifndefARRAY_H
2323
#defineARRAY_H
2424

25-
#include<stdio.h>/* for FILE (XXX should use File) */
26-
#include"utils/memutils.h"
25+
#include<stdio.h>
2726

2827
typedefstruct {
2928
intsize;/* total array size (in bytes) */

‎src/include/utils/fcache.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,13 @@
66
*
77
* Copyright (c) 1994, Regents of the University of California
88
*
9-
* $Id: fcache.h,v 1.1 1996/08/28 01:58:57 scrappy Exp $
9+
* $Id: fcache.h,v 1.2 1996/11/04 07:18:42 scrappy Exp $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
1313
#ifndefFCACHE_H
1414
#defineFCACHE_H
1515

16-
#include"fmgr.h"
1716

1817
typedefstruct
1918
{

‎src/include/utils/nabstime.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*
77
* Copyright (c) 1994, Regents of the University of California
88
*
9-
* $Id: nabstime.h,v 1.3 1996/11/0404:00:50 momjian Exp $
9+
* $Id: nabstime.h,v 1.4 1996/11/0407:18:45 scrappy Exp $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
@@ -43,7 +43,6 @@ typedef TimeIntervalData *TimeInterval;
4343
* these integer constants depending on whether the constant is signed
4444
* or not!
4545
*/
46-
#include<values.h>
4746
/*#define NOSTART_ABSTIME((AbsoluteTime) HIBITI)*//* - 2^31 */
4847
#defineNOSTART_ABSTIME ((AbsoluteTime) INT_MIN)
4948
#else

‎src/include/utils/tqual.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*
77
* Copyright (c) 1994, Regents of the University of California
88
*
9-
* $Id: tqual.h,v 1.4 1996/11/03 08:17:38 scrappy Exp $
9+
* $Id: tqual.h,v 1.5 1996/11/04 07:18:46 scrappy Exp $
1010
*
1111
* NOTE
1212
* It may be desirable to allow time qualifications to indicate
@@ -17,7 +17,7 @@
1717
#ifndefTQUAL_H
1818
#defineTQUAL_H
1919

20-
#include"access/htup.h"
20+
#include<access/htup.h>
2121

2222
typedefstructTimeQualSpace {
2323
chardata[12];

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp