diff options
Diffstat (limited to 'src/bin/pg_resetxlog/pg_resetxlog.c')
-rw-r--r-- | src/bin/pg_resetxlog/pg_resetxlog.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/bin/pg_resetxlog/pg_resetxlog.c b/src/bin/pg_resetxlog/pg_resetxlog.c index a97460975b..9751911a78 100644 --- a/src/bin/pg_resetxlog/pg_resetxlog.c +++ b/src/bin/pg_resetxlog/pg_resetxlog.c @@ -23,7 +23,7 @@ * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Header: /cvsroot/pgsql/src/bin/pg_resetxlog/pg_resetxlog.c,v 1.12 2003/08/04 02:40:09 momjian Exp $ + * $Header: /cvsroot/pgsql/src/bin/pg_resetxlog/pg_resetxlog.c,v 1.12.2.1 2003/09/07 04:37:04 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -41,7 +41,6 @@ #include "catalog/catversion.h" #include "catalog/pg_control.h" - /******************** stuff copied from xlog.c ********************/ /* Increment an xlogid/segment pair */ @@ -81,6 +80,8 @@ static void KillExistingXLOG(void); static void WriteEmptyXLOG(void); static void usage(void); +extern char *optarg; + int |