From 192ad366a1277ebc36c037b0a2b9b7bb1ea780c0 Mon Sep 17 00:00:00 2001 From: msmith Date: Mon, 11 Jan 1999 06:01:29 +0000 Subject: POSIX introduced optreset to deal with multiple invocations of getopt (as in, multiple input lines :). This is documented in the man page and is used in the code, but unistd.h and stand.h do not declare it. Incidentally, it prevents me fixing a bug in loader's code... :-) PR: misc/9373 Submitted by: "Daniel C. Sobral" --- lib/libstand/stand.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/libstand/stand.h') diff --git a/lib/libstand/stand.h b/lib/libstand/stand.h index c527bf7..74abcd7 100644 --- a/lib/libstand/stand.h +++ b/lib/libstand/stand.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: stand.h,v 1.11 1998/11/04 07:04:00 msmith Exp $ + * $Id: stand.h,v 1.12 1998/11/04 07:39:53 msmith Exp $ * From $NetBSD: stand.h,v 1.22 1997/06/26 19:17:40 drochner Exp $ */ @@ -220,7 +220,7 @@ extern u_long random(void); extern long strtol(const char *, char **, int); extern char * strerror(int err); extern char *optarg; /* getopt(3) external variables */ -extern int optind, opterr, optopt; +extern int optind, opterr, optopt, optreset; extern int getopt(int, char * const [], const char *); /* pager.c */ -- cgit v1.1