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/printtup.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/printtup.c')
-rw-r--r-- | src/backend/access/common/printtup.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/backend/access/common/printtup.c b/src/backend/access/common/printtup.c index 99bc5c25c52..af1e43beb20 100644 --- a/src/backend/access/common/printtup.c +++ b/src/backend/access/common/printtup.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/common/printtup.c,v 1.4 1996/10/20 08:31:32 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/common/printtup.c,v 1.5 1996/10/20 22:04:45 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -43,6 +43,16 @@ #include "access/heaptuple.h" /* Prototypes */ #include "fmgr.h" /* Prototypes */ +#include <stdio.h> +#include <sys/types.h> +#include <netinet/in.h> +#include "libpq/pqcomm.h" +#include "libpq/libpq.h" + +#include <stdio.h> + +#include "utils/palloc.h" + /* ---------------------------------------------------------------- * printtup / debugtup support * ---------------------------------------------------------------- |