1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-07 00:36:50 +03:00

Cosmetic changes to ordering of #include files

This commit is contained in:
Marc G. Fournier
1996-10-21 11:49:41 +00:00
parent 9a7fda57ee
commit 82b83f6f71
7 changed files with 154 additions and 167 deletions

View File

@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/common/heaptuple.c,v 1.8 1996/10/20 22:04:36 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/access/common/heaptuple.c,v 1.9 1996/10/21 11:49:35 scrappy Exp $
*
* NOTES
* The old interface functions have been converted to macros
@ -17,35 +17,42 @@
*-------------------------------------------------------------------------
*/
#include "postgres.h"
#include "storage/block.h"
#include "storage/off.h"
#include "storage/itemptr.h"
#include <stdio.h>
#include <time.h>
#include "utils/nabstime.h"
#include "access/htup.h"
#include "storage/buf.h"
#include "storage/itemid.h"
#include "storage/item.h"
#include "storage/bufpage.h"
#include "catalog/pg_attribute.h"
#include "postgres.h"
#include "access/attnum.h"
#include "nodes/pg_list.h"
#include "access/tupdesc.h"
#include "storage/fd.h"
#include "access/tupmacs.h"
#include "catalog/pg_am.h"
#include "catalog/pg_attribute.h"
#include "catalog/pg_class.h"
#include "nodes/nodes.h"
#include "rewrite/prs2lock.h"
#include "nodes/pg_list.h"
#include "storage/block.h"
#include "storage/buf.h"
#include "storage/fd.h"
#include "storage/ipc.h"
#include "storage/item.h"
#include "storage/itemid.h"
#include "storage/off.h"
#include "utils/memutils.h"
#include "utils/nabstime.h"
#include "utils/palloc.h"
#include "access/skey.h"
#include "access/tupdesc.h"
#include "rewrite/prs2lock.h"
#include "storage/bufpage.h"
#include "storage/itemptr.h"
#include "access/strat.h"
#include "access/htup.h"
#include "utils/rel.h"
#include "utils/memutils.h"
#include "storage/bufmgr.h"
#include "access/transam.h"
#ifndef HAVE_MEMMOVE
# include "regex/utils.h"
@ -53,14 +60,6 @@
# include <string.h>
#endif
#include "access/tupmacs.h"
#include "utils/palloc.h"
#include <stdio.h>
#include "storage/ipc.h"
#include "storage/bufmgr.h"
#include "access/transam.h"
/* this is so the sparcstation debugger works */