diff options
author | millert <> | 2002-12-05 21:02:19 +0000 |
---|---|---|
committer | millert <> | 2002-12-05 21:02:19 +0000 |
commit | 2e23f44ecc2454409cc9334d4501be2d9ee88dd4 (patch) | |
tree | 722d1173bfe43ca1b932fae857135933a1dac648 /src/lib | |
parent | 125f2e644410c74d46afb021cca115828c53f63c (diff) | |
download | openbsd-2e23f44ecc2454409cc9334d4501be2d9ee88dd4.tar.gz openbsd-2e23f44ecc2454409cc9334d4501be2d9ee88dd4.tar.bz2 openbsd-2e23f44ecc2454409cc9334d4501be2d9ee88dd4.zip |
make getopt_long and getopt_long_only protos match getopt.h
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libc/stdlib/getopt_long.3 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libc/stdlib/getopt_long.3 b/src/lib/libc/stdlib/getopt_long.3 index cfbe255e6c..d6ce03f684 100644 --- a/src/lib/libc/stdlib/getopt_long.3 +++ b/src/lib/libc/stdlib/getopt_long.3 | |||
@@ -1,4 +1,4 @@ | |||
1 | .\" $OpenBSD: getopt_long.3,v 1.2 2002/12/04 21:42:22 millert Exp $ | 1 | .\" $OpenBSD: getopt_long.3,v 1.3 2002/12/05 21:02:19 millert Exp $ |
2 | .\" $NetBSD: getopt_long.3,v 1.11 2002/10/02 10:54:19 wiz Exp $ | 2 | .\" $NetBSD: getopt_long.3,v 1.11 2002/10/02 10:54:19 wiz Exp $ |
3 | .\" | 3 | .\" |
4 | .\" Copyright (c) 1988, 1991, 1993 | 4 | .\" Copyright (c) 1988, 1991, 1993 |
@@ -49,9 +49,9 @@ | |||
49 | .Vt extern int opterr; | 49 | .Vt extern int opterr; |
50 | .Vt extern int optreset; | 50 | .Vt extern int optreset; |
51 | .Ft int | 51 | .Ft int |
52 | .Fn getopt_long "int argc" "char * const *argv" "const char *optstring" "struct option *long options" "int *index" | 52 | .Fn getopt_long "int argc" "char * const *argv" "const char *optstring" "const struct option *longopts" "int *index" |
53 | .Ft int | 53 | .Ft int |
54 | .Fn getopt_long_only "int argc" "char * const *argv" "const char *optstring" "struct option *long options" "int *index" | 54 | .Fn getopt_long_only "int argc" "char * const *argv" "const char *optstring" "const struct option *longopts" "int *index" |
55 | .Sh DESCRIPTION | 55 | .Sh DESCRIPTION |
56 | The | 56 | The |
57 | .Fn getopt_long | 57 | .Fn getopt_long |