blob: 50927bd917c49dd934232138b6120639464f1b78 (
plain)
1
2
3
4
5
6
7
8
9
10
|
extern int optind, optopt;
extern char *optarg;
/* We do the following naming side-step to permit testing
our local getopt() on systems which include getopt()
and declare it incompatibly in stdio.h or stdlib.h. */
extern int Getopt(int nargc, char *nargv[], char *ostr);
#define getopt(a, b, c) Getopt(a, b, c)
|