diff options
author | 2005-07-26 04:14:58 +0000 | |
---|---|---|
committer | 2005-07-26 04:14:58 +0000 | |
commit | 060d64bcd46caa66f151767d6f5a833c4521d830 (patch) | |
tree | 79d741bef6a29d9838b21fc09006b7daa3fed262 /lib/libc/stdlib/getopt.3 | |
parent | note when these first appeared; ok jmc (diff) | |
download | wireguard-openbsd-060d64bcd46caa66f151767d6f5a833c4521d830.tar.xz wireguard-openbsd-060d64bcd46caa66f151767d6f5a833c4521d830.zip |
provide a description of the EXAMPLE; ok jmc
Diffstat (limited to 'lib/libc/stdlib/getopt.3')
-rw-r--r-- | lib/libc/stdlib/getopt.3 | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/lib/libc/stdlib/getopt.3 b/lib/libc/stdlib/getopt.3 index c721bbcff9a..ed4456f52ff 100644 --- a/lib/libc/stdlib/getopt.3 +++ b/lib/libc/stdlib/getopt.3 @@ -25,7 +25,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $OpenBSD: getopt.3,v 1.33 2005/07/01 05:18:57 jmc Exp $ +.\" $OpenBSD: getopt.3,v 1.34 2005/07/26 04:14:58 jaredy Exp $ .\" .Dd December 17, 2002 .Dt GETOPT 3 @@ -166,7 +166,16 @@ in is ignored. .El .Sh EXAMPLES -.Bd -literal -compact +The following code accepts the options +.Fl b +and +.Fl f Ar argument +and adjusts +.Va argc +and +.Va argv +after option argument processing has completed. +.Bd -literal -offset indent extern char *optarg; extern int optind; int bflag, ch, fd; |