1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-12 05:01:15 +03:00

First pass at fixing my own mistakes

Mainly...fix up the includes I removed, as well as prototypes

Pointed out by D'Arcy
This commit is contained in:
Marc G. Fournier
1996-10-20 08:32:11 +00:00
parent dd007d4c39
commit 5a0b450c78
22 changed files with 583 additions and 19 deletions

View File

@@ -7,15 +7,26 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/common/Attic/indexvalid.c,v 1.3 1996/10/19 04:51:39 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/access/common/Attic/indexvalid.c,v 1.4 1996/10/20 08:31:31 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
#include "postgres.h"
#include "storage/block.h"
#include "storage/off.h"
#include "storage/itemptr.h"
#include "catalog/pg_attribute.h"
#include "access/attnum.h"
#include "nodes/pg_list.h"
#include "access/tupdesc.h"
#include "access/itup.h"
#include "access/skey.h"
#include <time.h>
#include "utils/nabstime.h"
#include "access/htup.h"
/* ----------------------------------------------------------------