diff options
author | Bryan Henderson <bryanh@giraffe.netgate.net> | 1996-11-26 07:39:11 +0000 |
---|---|---|
committer | Bryan Henderson <bryanh@giraffe.netgate.net> | 1996-11-26 07:39:11 +0000 |
commit | 93f722536f1269fc327968f28329e3f64e172ed0 (patch) | |
tree | 6a2dd07b25d174b09321825f1d25bfa08cdd9d6c /src/bin/pg_dump/common.c | |
parent | c118543186db298df529cec7a0f922796302d00b (diff) |
Whoops, redo Ultrix patch so the other ports still compile.
Diffstat (limited to 'src/bin/pg_dump/common.c')
-rw-r--r-- | src/bin/pg_dump/common.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/bin/pg_dump/common.c b/src/bin/pg_dump/common.c index c5c750f0d7b..47272f6f113 100644 --- a/src/bin/pg_dump/common.c +++ b/src/bin/pg_dump/common.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/bin/pg_dump/common.c,v 1.8 1996/11/26 03:19:40 bryanh Exp $ + * $Header: /cvsroot/pgsql/src/bin/pg_dump/common.c,v 1.9 1996/11/26 07:38:18 bryanh Exp $ * * Modifications - 6/12/96 - dave@bensoft.com - version 1.13.dhb.2 * @@ -29,7 +29,9 @@ #include "postgres.h" #include "libpq-fe.h" -#include <port-protos.h> /* for strdup() */ +#ifdef NEED_STRDUP +#include "strdup.h" +#endif #include "pg_dump.h" |