Blame missing/getopt.h

Packit Service c0f7c7
/*
Packit Service c0f7c7
 * Header for the getopt() we supply if the platform doesn't supply it.
Packit Service c0f7c7
 */
Packit Service c0f7c7
extern char *optarg;			/* getopt(3) external variables */
Packit Service c0f7c7
extern int optind, opterr, optreset, optopt;
Packit Service c0f7c7
Packit Service c0f7c7
extern int getopt(int nargc, char * const *nargv, const char *ostr);