From 72295139434d26c6da565faee2f50cb6fa900d43 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Sat, 24 Jan 1998 22:50:57 +0000 Subject: Fix prototypes so they don't look like function definitions. --- src/include/access/gist.h | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'src/include/access/gist.h') diff --git a/src/include/access/gist.h b/src/include/access/gist.h index 15294ce06c..4c665aeaec 100644 --- a/src/include/access/gist.h +++ b/src/include/access/gist.h @@ -188,21 +188,18 @@ typedef struct intrange int flag; } INTRANGE; -extern void -gistbuild(Relation heap, +extern void gistbuild(Relation heap, Relation index, int natts, AttrNumber *attnum, IndexStrategy istrat, uint16 pint, Datum *params, FuncIndexInfo *finfo, PredInfo *predInfo); -extern InsertIndexResult -gistinsert(Relation r, Datum *datum, +extern InsertIndexResult gistinsert(Relation r, Datum *datum, char *nulls, ItemPointer ht_ctid, Relation heapRel); extern void _gistdump(Relation r); extern void gistfreestack(GISTSTACK *s); extern void initGISTstate(GISTSTATE *giststate, Relation index); -extern void -gistdentryinit(GISTSTATE *giststate, GISTENTRY *e, char *pr, +extern void gistdentryinit(GISTSTATE *giststate, GISTENTRY *e, char *pr, Relation r, Page pg, OffsetNumber o, int b, bool l); extern StrategyNumber RelationGetGISTStrategy(Relation, AttrNumber, RegProcedure); -- cgit v1.2.1