diff options
author | jinjiazhang <jinjiazhang@tencent.com> | 2019-04-13 10:38:34 +0800 |
---|---|---|
committer | jinjiazhang <jinjiazhang@tencent.com> | 2019-04-13 10:38:34 +0800 |
commit | cdb836d5f845d2bf0fbe58671d073869f41a9936 (patch) | |
tree | 1c54c2f3327c67da17bf718eb9dc353cc168bfda /async.c | |
parent | 5aa2397f9ec494380774fb9155446f14ebbf3d1f (diff) |
Fix Compile Error On Windows (Visual Studio)
Diffstat (limited to 'async.c')
-rw-r--r-- | async.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -32,7 +32,12 @@ #include "fmacros.h" #include <stdlib.h> #include <string.h> +#ifndef _WIN32 #include <strings.h> +#else
+#define strcasecmp stricmp
+#define strncasecmp strnicmp +#endif #include <assert.h> #include <ctype.h> #include <errno.h> |