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

Commit 59779c8

Browse files
committed
Add missing #include <getopt.h>.
1 parent 83b0682 commit 59779c8

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

contrib/pg_dumplo/main.c

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* -------------------------------------------------------------------------
22
* pg_dumplo
33
*
4-
* $Header: /cvsroot/pgsql/contrib/pg_dumplo/Attic/main.c,v 1.14 2003/01/07 21:42:38 tgl Exp $
4+
* $Header: /cvsroot/pgsql/contrib/pg_dumplo/Attic/main.c,v 1.15 2003/01/09 18:27:39 tgl Exp $
55
*
66
* Karel Zak 1999-2000
77
* -------------------------------------------------------------------------
@@ -11,6 +11,9 @@
1111

1212
#include <errno.h>
1313
#include <unistd.h>
14+
#ifdef HAVE_GETOPT_H
15+
#include <getopt.h>
16+
#endif
1417

1518
#include "libpq-fe.h"
1619
#include "libpq/libpq-fs.h"

0 commit comments

Comments
 (0)