old-SuperVM/libvm/getopt.h
2016-06-29 19:18:48 +02:00

9 lines
No EOL
162 B
C

#ifndef GETOPT_H
#define GETOPT_H
extern char *optarg;
extern int opterr, optind, optopt;
int getopt(int nargc, char * const nargv[], const char *ostr);
#endif