diff options
author | Bruce Momjian | 2005-04-29 14:30:11 +0000 |
---|---|---|
committer | Bruce Momjian | 2005-04-29 14:30:11 +0000 |
commit | 32d3b47e6f05c7137debddb68730a25fe1bb0cd6 (patch) | |
tree | 88ba3c77c8b1625cc2946be6261b1da4375449bd /src | |
parent | 930dd70992b8b124687719e6592d7901af192a31 (diff) |
Remove extern from optreset that was just added.
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/psql/startup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/startup.c b/src/bin/psql/startup.c index 2fa43930bee..f9a534f3c23 100644 --- a/src/bin/psql/startup.c +++ b/src/bin/psql/startup.c @@ -3,7 +3,7 @@ * * Copyright (c) 2000-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/startup.c,v 1.114 2005/04/29 13:42:20 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/psql/startup.c,v 1.115 2005/04/29 14:30:11 momjian Exp $ */ #include "postgres_fe.h" @@ -19,7 +19,7 @@ #include "getopt_long.h" #ifndef HAVE_INT_OPTRESET -extern int optreset; +int optreset; #endif #include <locale.h> |