getopt.c (7a19d1bbb9f8fe580d509ad1caf8343e876fa045) getopt.c (b268886863c48b66e5af50362872591ba4d9506f)
1/* $FreeBSD$ */
2
3#include <stdio.h>
4#include <stdlib.h>
5#include <unistd.h>
6
1/* $FreeBSD$ */
2
3#include <stdio.h>
4#include <stdlib.h>
5#include <unistd.h>
6
7int
7main(argc, argv)
8int argc;
9char *argv[];
10{
11 int c;
12 int status = 0;
13
14 optind = 2; /* Past the program name and the option letters. */

--- 18 unchanged lines hidden ---
8main(argc, argv)
9int argc;
10char *argv[];
11{
12 int c;
13 int status = 0;
14
15 optind = 2; /* Past the program name and the option letters. */

--- 18 unchanged lines hidden ---