]> granicus.if.org Git - postgresql/commitdiff
Add externs for optarg/optind where apparently needed. Per Magnus.
authorTom Lane <tgl@sss.pgh.pa.us>
Thu, 19 Oct 2006 20:38:48 +0000 (20:38 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Thu, 19 Oct 2006 20:38:48 +0000 (20:38 +0000)
contrib/oid2name/oid2name.c
src/timezone/zic.c

index 98d106701e30e8ac2ab86bac8a960deb50ba4fb7..79df423b55d9acf94bf7b60381fd414b772df4d1 100644 (file)
@@ -4,7 +4,7 @@
  *
  * Originally by
  * B. Palmer, bpalmer@crimelabs.net 1-17-2001
- * $PostgreSQL: pgsql/contrib/oid2name/oid2name.c,v 1.29 2006/03/11 04:38:30 momjian Exp $
+ * $PostgreSQL: pgsql/contrib/oid2name/oid2name.c,v 1.30 2006/10/19 20:38:48 tgl Exp $
  */
 #include "postgres_fe.h"
 
@@ -13,6 +13,8 @@
 #include <getopt.h>
 #endif
 
+extern char *optarg;
+
 #include "libpq-fe.h"
 
 /* an extensible array to keep track of elements to show */
index 039f6f73e077d34dcf222eee755edfc68c310235..f949f0878429ee7f6b498ec2561ee0be9ecedef4 100644 (file)
@@ -3,7 +3,7 @@
  * 1996-06-05 by Arthur David Olson (arthur_david_olson@nih.gov).
  *
  * IDENTIFICATION
- *       $PostgreSQL: pgsql/src/timezone/zic.c,v 1.17 2006/10/16 19:58:27 tgl Exp $
+ *       $PostgreSQL: pgsql/src/timezone/zic.c,v 1.18 2006/10/19 20:38:48 tgl Exp $
  */
 
 #include "postgres.h"
@@ -14,6 +14,9 @@
 #include <limits.h>
 #include <locale.h>
 
+extern int     optind;
+extern char *optarg;
+
 #include "private.h"
 #include "pgtz.h"
 #include "tzfile.h"