diff options
Diffstat (limited to 'usr/src/man/man3c/getopt.3c')
-rw-r--r-- | usr/src/man/man3c/getopt.3c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr/src/man/man3c/getopt.3c b/usr/src/man/man3c/getopt.3c index a5f6e50979..83f7b5d350 100644 --- a/usr/src/man/man3c/getopt.3c +++ b/usr/src/man/man3c/getopt.3c @@ -183,7 +183,7 @@ main(int argc, char *argv[ ]) char *ofile; extern char *optarg; extern int optind, optopt; - . . . + ... while ((c = getopt(argc, argv, ":abf:o:")) != -1) { switch(c) { case 'a': @@ -218,12 +218,12 @@ main(int argc, char *argv[ ]) } } if (errflg) { - fprintf(stderr, "usage: . . . "); + fprintf(stderr, "usage: ... "); exit(2); } for ( ; optind < argc; optind++) { if (access(argv[optind], R_OK)) { - . . . + ... } .fi .in -2 |