Use _stricmp instead of strcasecmp on MSVC.
This commit is contained in:
parent
785c068f91
commit
692da36d76
1 changed files with 4 additions and 0 deletions
|
|
@ -28,6 +28,10 @@
|
|||
#include <stdlib.h>
|
||||
#include <getopt.h>
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#define strcasecmp _stricmp
|
||||
#endif
|
||||
|
||||
#define CLOCK_UNDEFINED 0xFF
|
||||
#define REGISTER_INVALID 32767
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue