summaryrefslogtreecommitdiff
path: root/sys/lib
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>1999-04-14 15:23:27 +0000
committerchristos <christos@NetBSD.org>1999-04-14 15:23:27 +0000
commitd15d073dcf6ee37ae18d005dd2d493f855f13e77 (patch)
tree8afda8b7e3591405af03df8c3700631ef6c24998 /sys/lib
parent30ffed2123f17ba6b86581a651efaa57f6ac0983 (diff)
add getopt prototype, and externs
Diffstat (limited to 'sys/lib')
-rw-r--r--sys/lib/libsa/stand.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/lib/libsa/stand.h b/sys/lib/libsa/stand.h
index f6e5c00db6f..42a51b2eee2 100644
--- a/sys/lib/libsa/stand.h
+++ b/sys/lib/libsa/stand.h
@@ -1,4 +1,4 @@
-/* $NetBSD: stand.h,v 1.31 1999/03/31 01:50:26 cgd Exp $ */
+/* $NetBSD: stand.h,v 1.32 1999/04/14 15:23:27 christos Exp $ */
/*
* Copyright (c) 1999 Christopher G. Demetriou. All rights reserved.
@@ -237,6 +237,10 @@ ssize_t read __P((int, void *, size_t));
ssize_t write __P((int, void *, size_t));
off_t lseek __P((int, off_t, int));
int ioctl __P((int, u_long, char *));
+
+extern int opterr, optind, optopt, optreset;
+extern char *optarg;
+int getopt __P((int, char * const *, const char *));
int nodev __P((void));
int noioctl __P((struct open_file *, u_long, void *));