summaryrefslogtreecommitdiffstats
path: root/time/optind.c
blob: 70c1db23e44466b4a2404a709283d381974f9927 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#ifndef lint
#ifndef NOID
static char	elsieid[] = "@(#)optind.c	7.3";
#endif /* !defined NOID */
#endif /* !defined lint */

int	opterr = 1,		/* if error message should be printed */
	optind = 1;		/* index into parent argv vector */
char	*optarg;		/* argument associated with option */
int     optopt;