1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-04 20:11:56 +03:00

More cleanups

This commit is contained in:
Marc G. Fournier
1996-11-05 10:02:06 +00:00
parent 466f5fd729
commit 4fa90e38d5
4 changed files with 28 additions and 52 deletions

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/index/genam.c,v 1.5 1996/11/03 12:35:02 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/access/index/genam.c,v 1.6 1996/11/05 10:02:02 scrappy Exp $
*
* NOTES
* many of the old access method routines have been turned into
@@ -44,26 +44,18 @@
* ----------------------------------------------------------------
*/
#include "postgres.h"
#include <postgres.h>
#include "access/relscan.h"
#include "access/itup.h"
#include "access/sdir.h"
#include "utils/catcache.h"
#include "access/genam.h"
#include "utils/palloc.h"
#include <utils/catcache.h>
#include <access/genam.h>
#include <storage/bufmgr.h>
#ifndef HAVE_MEMMOVE
# include "regex/utils.h"
# include <regex/utils.h>
#else
# include <string.h>
#endif
#include "storage/bufmgr.h"
/* ----------------------------------------------------------------
* general access method routines
*