opnsense-src/contrib/libpcap/missing/getopt.h

8 lines
242 B
C
Raw Normal View History

2017-02-12 02:04:44 -05:00
/*
* Header for the getopt() we supply if the platform doesn't supply it.
*/
extern char *optarg; /* getopt(3) external variables */
extern int optind, opterr, optopt;
extern int getopt(int nargc, char * const *nargv, const char *ostr);