old-mtgos-tools/mtgcompat.h

13 lines
233 B
C
Raw Normal View History

2016-07-16 09:24:10 +00:00
#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