Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 4e70c05

Browse files
author
Bryan Henderson
committed
Add #include <unistd.h> to quiet warning about missing getopt() declaration.
1 parent 0e5ab36 commit 4e70c05

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/bin/pg_dump/pg_dump.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*
2121
*
2222
* IDENTIFICATION
23-
* $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.13 1996/11/08 06:01:03 momjian Exp $
23+
* $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.14 1996/11/10 01:35:39 bryanh Exp $
2424
*
2525
* Modifications - 6/10/96 - dave@bensoft.com - version 1.13.dhb
2626
*
@@ -43,6 +43,7 @@
4343
*/
4444

4545
#include <stdlib.h>
46+
#include <unistd.h> /* for getopt() */
4647
#include <stdio.h>
4748
#include <string.h>
4849
#include <sys/param.h> /* for MAXHOSTNAMELEN on most */

0 commit comments

Comments
 (0)