svn -> git Migration

This commit is contained in:
KimLS
2013-02-16 16:14:39 -08:00
parent 88c9715fb0
commit da7347f76f
1174 changed files with 445622 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
#ifndef WIN_GETOPT_H
#define WIN_GETOPT_H
#ifdef WIN32
#ifdef __cplusplus
extern "C" {
#endif
extern int opterr, /* if error message should be printed */
optind, /* index into parent argv vector */
optopt, /* character checked for validity */
optreset; /* reset getopt */
extern char *optarg; /* argument associated with option */
extern int getopt(int nargc, char * const *nargv, const char *ostr);
#ifdef __cplusplus
};
#endif
#endif
#endif