old-mtgos-tools/mtgcompat.h
2016-07-16 11:24:10 +02:00

13 lines
No EOL
233 B
C

#ifndef MTGCOMPAT_H
#define MTGCOMPAT_H
#ifdef __cplusplus
extern "C" {
#endif
extern char *optarg;
extern int opterr, optind, optopt;
int getopt(int nargc, char * const nargv[], const char *ostr);
#ifdef __cplusplus
}
#endif
#endif