Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 9834913

Browse files
committed
All #include's removed from *.h files, so cleaning up the .c #includes...
First file of, what...1000's?
1 parent 9caf84b commit 9834913

File tree

1 file changed

+23
-15
lines changed

1 file changed

+23
-15
lines changed

src/backend/access/common/heaptuple.c

Lines changed: 23 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -8,34 +8,42 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/access/common/heaptuple.c,v 1.4 1996/09/19 20:00:37 scrappy Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/access/common/heaptuple.c,v 1.5 1996/10/18 19:01:16 scrappy Exp $
1212
*
1313
* NOTES
1414
* The old interface functions have been converted to macros
1515
* and moved to heapam.h
1616
*
1717
*-------------------------------------------------------------------------
1818
*/
19-
#include <string.h>
2019

2120
#include "postgres.h"
2221

22+
#include "catalog/pg_attribute.h"
23+
#include "access/attnum.h"
24+
#include "nodes/nodes.h" /* required for nodes/pg_list.h */
25+
#include "nodes/pg_list.h"
26+
#include "access/tupdesc.h"
27+
28+
#include "storage/block.h" /* required for storage/itemptr.h */
29+
#include "storage/off.h" /* required for storage/itemptr.h */
30+
#include "storage/itemptr.h"
31+
#include "utils/nabstime.h"
2332
#include "access/htup.h"
24-
#include "access/itup.h"
25-
#include "access/tupmacs.h"
26-
#include "access/skey.h"
27-
#include "access/heapam.h"
28-
#include "storage/ipc.h"
33+
2934
#include "storage/buf.h"
30-
#include "storage/bufmgr.h"
31-
#include "access/transam.h"
32-
#include "storage/bufpage.h" /* for MAXTUPLEN */
33-
#include "storage/itemptr.h"
34-
#include "utils/memutils.h"
35-
#include "utils/elog.h"
36-
#include "utils/palloc.h"
35+
36+
#include "storage/itemid.h"
37+
#include "storage/item.h"
38+
#include "storage/bufpage.h"
39+
40+
#include "storage/fd.h"
41+
#include "catalog/pg_am.h"
42+
#include "catalog/pg_class.h"
43+
#include "rewrite/prs2lock.h"
44+
#include "access/skey.h" /* required for access/strat.h */
45+
#include "access/strat.h"
3746
#include "utils/rel.h"
38-
#include "utils/nabstime.h"
3947

4048
/* this is so the sparcstation debugger works */
4149

0 commit comments

Comments
 (0)