diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-10-20 22:04:49 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-10-20 22:04:49 +0000 |
commit | d458a1c747d80ce5a3627a39ff9c319cfeda550d (patch) | |
tree | 3f082b4d61a9101fa1e57ec92ebcc5c91dfb1831 /src/backend/access/common/heaptuple.c | |
parent | 597a1de90331699f3a862e89aae9751ef2f6496e (diff) | |
download | postgresql-d458a1c747d80ce5a3627a39ff9c319cfeda550d.tar.gz postgresql-d458a1c747d80ce5a3627a39ff9c319cfeda550d.zip |
Other then:
indextuple.c:159: warning: `bp' might be used uninitialized in this function
this directory passes -Wall -Werror under FreeBSD
Diffstat (limited to 'src/backend/access/common/heaptuple.c')
-rw-r--r-- | src/backend/access/common/heaptuple.c | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/src/backend/access/common/heaptuple.c b/src/backend/access/common/heaptuple.c index eb8589a3698..960445ed572 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 <string.h> +#endif + +#include "access/tupmacs.h" + +#include "utils/palloc.h" + +#include <stdio.h> +#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) |