aboutsummaryrefslogtreecommitdiff
path: root/lib/libstand
diff options
context:
space:
mode:
authorMike Smith <msmith@FreeBSD.org>1999-01-11 06:01:29 +0000
committerMike Smith <msmith@FreeBSD.org>1999-01-11 06:01:29 +0000
commita79658408cb5bd67da5f09224af8011736de2ee3 (patch)
tree633b6338c38c791a498a7459d0d2bbcdd881b4a7 /lib/libstand
parentba536e2ae80a49be51d10b6d0f63ca2a77458b61 (diff)
downloadsrc-a79658408cb5bd67da5f09224af8011736de2ee3.tar.gz
src-a79658408cb5bd67da5f09224af8011736de2ee3.zip
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" <dcs@newsguy.com>
Notes
Notes: svn path=/head/; revision=42511
Diffstat (limited to 'lib/libstand')
-rw-r--r--lib/libstand/stand.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libstand/stand.h b/lib/libstand/stand.h
index c527bf7d5173..74abcd7660b3 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 */