diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-12-05 21:02:20 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-12-05 21:02:20 +0000 |
commit | 5ef46eb79d8c949d1defbb793bf4191376db6efc (patch) | |
tree | 7e5740899647a5c8b4e1c9fce93d075fab9725eb | |
parent | f3c6dcfb6ba13099e99051ee556897c4a552d17c (diff) |
make getopt_long and getopt_long_only protos match getopt.h
-rw-r--r-- | lib/libc/stdlib/getopt_long.3 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/stdlib/getopt_long.3 b/lib/libc/stdlib/getopt_long.3 index cfbe255e6c1..d6ce03f684a 100644 --- a/lib/libc/stdlib/getopt_long.3 +++ b/lib/libc/stdlib/getopt_long.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: getopt_long.3,v 1.2 2002/12/04 21:42:22 millert Exp $ +.\" $OpenBSD: getopt_long.3,v 1.3 2002/12/05 21:02:19 millert Exp $ .\" $NetBSD: getopt_long.3,v 1.11 2002/10/02 10:54:19 wiz Exp $ .\" .\" Copyright (c) 1988, 1991, 1993 @@ -49,9 +49,9 @@ .Vt extern int opterr; .Vt extern int optreset; .Ft int -.Fn getopt_long "int argc" "char * const *argv" "const char *optstring" "struct option *long options" "int *index" +.Fn getopt_long "int argc" "char * const *argv" "const char *optstring" "const struct option *longopts" "int *index" .Ft int -.Fn getopt_long_only "int argc" "char * const *argv" "const char *optstring" "struct option *long options" "int *index" +.Fn getopt_long_only "int argc" "char * const *argv" "const char *optstring" "const struct option *longopts" "int *index" .Sh DESCRIPTION The .Fn getopt_long |