Browse Source

make getopt_long and getopt_long_only protos match getopt.h

OPENBSD_3_3
millert 21 years ago
parent
commit
671dc74fb7
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      src/lib/libc/stdlib/getopt_long.3

+ 3
- 3
src/lib/libc/stdlib/getopt_long.3 View File

@ -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


Loading…
Cancel
Save