From: Bryan Henderson Date: Sun, 10 Nov 1996 01:35:39 +0000 (+0000) Subject: Add #include to quiet warning about missing getopt() declaration. X-Git-Tag: REL2_0~176 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=4e70c059799c4be784190cfaa6f9ae02b54206f0;p=users%2Fc2main%2Fpostgres.git Add #include to quiet warning about missing getopt() declaration. --- diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c index 0c35d51093..e8bffdafff 100644 --- a/src/bin/pg_dump/pg_dump.c +++ b/src/bin/pg_dump/pg_dump.c @@ -20,7 +20,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.13 1996/11/08 06:01:03 momjian Exp $ + * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.14 1996/11/10 01:35:39 bryanh Exp $ * * Modifications - 6/10/96 - dave@bensoft.com - version 1.13.dhb * @@ -43,6 +43,7 @@ */ #include +#include /* for getopt() */ #include #include #include /* for MAXHOSTNAMELEN on most */