From d458a1c747d80ce5a3627a39ff9c319cfeda550d Mon Sep 17 00:00:00 2001 From: "Marc G. Fournier" Date: Sun, 20 Oct 1996 22:04:49 +0000 Subject: Other then: indextuple.c:159: warning: `bp' might be used uninitialized in this function this directory passes -Wall -Werror under FreeBSD --- src/backend/access/common/heaptuple.c | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) (limited to 'src/backend/access/common/heaptuple.c') diff --git a/src/backend/access/common/heaptuple.c b/src/backend/access/common/heaptuple.c index eb8589a369..960445ed57 100644 --- a/src/backend/access/common/heaptuple.c +++ b/src/backend/access/common/heaptuple.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/common/heaptuple.c,v 1.7 1996/10/20 08:31:26 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/common/heaptuple.c,v 1.8 1996/10/20 22:04:36 scrappy Exp $ * * NOTES * The old interface functions have been converted to macros @@ -45,6 +45,23 @@ #include "access/strat.h" #include "utils/rel.h" +#include "utils/memutils.h" + +#ifndef HAVE_MEMMOVE +# include "regex/utils.h" +#else +# include +#endif + +#include "access/tupmacs.h" + +#include "utils/palloc.h" + +#include +#include "storage/ipc.h" +#include "storage/bufmgr.h" +#include "access/transam.h" + /* this is so the sparcstation debugger works */ #if !defined(NO_ASSERT_CHECKING) && defined(sparc) -- cgit v1.2.1