1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-31 17:02:12 +03:00

Changes required so that access/* compiles cleanly...

cleaning up behind myself before *yawn* bed :)
This commit is contained in:
Marc G. Fournier
1996-11-03 12:35:27 +00:00
parent ff36ebc922
commit 302b809793
19 changed files with 80 additions and 551 deletions

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtsearch.c,v 1.5 1996/10/30 06:08:01 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtsearch.c,v 1.6 1996/11/03 12:35:21 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
@@ -48,6 +48,12 @@
#include "access/nbtree.h"
#include "access/genam.h"
#ifndef HAVE_MEMMOVE
# include "regex/utils.h"
#else
# include <string.h>
#endif
#include "fmgr.h"
static BTStack _bt_searchr(Relation rel, int keysz, ScanKey scankey, Buffer *bufP, BTStack stack_in);