summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib/libc/stdlib/getopt.34
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libc/stdlib/getopt.3 b/src/lib/libc/stdlib/getopt.3
index 57a660a230..c83cede88b 100644
--- a/src/lib/libc/stdlib/getopt.3
+++ b/src/lib/libc/stdlib/getopt.3
@@ -29,7 +29,7 @@
29.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30.\" SUCH DAMAGE. 30.\" SUCH DAMAGE.
31.\" 31.\"
32.\" $OpenBSD: getopt.3,v 1.10 1999/09/07 16:04:54 espie Exp $ 32.\" $OpenBSD: getopt.3,v 1.11 2000/01/25 23:28:55 deraadt Exp $
33.\" 33.\"
34.Dd April 19, 1994 34.Dd April 19, 1994
35.Dt GETOPT 3 35.Dt GETOPT 3
@@ -248,7 +248,7 @@ The following code fragment works in most cases.
248int length; 248int length;
249char *p; 249char *p;
250 250
251while ((c = getopt(argc, argv, "0123456789")) != -1) 251while ((c = getopt(argc, argv, "0123456789")) != -1) {
252 switch (c) { 252 switch (c) {
253 case '0': case '1': case '2': case '3': case '4': 253 case '0': case '1': case '2': case '3': case '4':
254 case '5': case '6': case '7': case '8': case '9': 254 case '5': case '6': case '7': case '8': case '9':