diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2000-11-21 21:16:06 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2000-11-21 21:16:06 +0000 |
commit | a70e74b060ab2769523ad831f571cb80122121d3 (patch) | |
tree | 95e04cfd344db47857c4aecc3308092d5df01f3d /src/backend/access/gist/gist.c | |
parent | 040bb787bcf840e5a1fc49fccff185a8274bccae (diff) | |
download | postgresql-a70e74b060ab2769523ad831f571cb80122121d3.tar.gz postgresql-a70e74b060ab2769523ad831f571cb80122121d3.zip |
Put external declarations into header files.
Diffstat (limited to 'src/backend/access/gist/gist.c')
-rw-r--r-- | src/backend/access/gist/gist.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/backend/access/gist/gist.c b/src/backend/access/gist/gist.c index d8e9005e933..ce1b067d52b 100644 --- a/src/backend/access/gist/gist.c +++ b/src/backend/access/gist/gist.c @@ -6,7 +6,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/gist/gist.c,v 1.65 2000/11/16 22:30:15 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/gist/gist.c,v 1.66 2000/11/21 21:15:53 petere Exp $ * *------------------------------------------------------------------------- */ @@ -25,9 +25,6 @@ #ifdef XLOG #include "access/xlogutils.h" -void gist_redo(XLogRecPtr lsn, XLogRecord *record); -void gist_undo(XLogRecPtr lsn, XLogRecord *record); -void gist_desc(char *buf, uint8 xl_info, char* rec); #endif /* non-export function prototypes */ |