]> git.droids-corp.org - dpdk.git/blobdiff - lib/eal/windows/include/rte_os_shim.h
eal/windows: fix interrupt thread ID
[dpdk.git] / lib / eal / windows / include / rte_os_shim.h
index 433fa02c43c2157582aa08638d88c1716570ade2..1b314733b2a568c7c2124c13cc7dfb9a0b959a55 100644 (file)
@@ -20,7 +20,9 @@
 
 #define strdup(str) _strdup(str)
 #define strtok_r(str, delim, saveptr) strtok_s(str, delim, saveptr)
+#ifndef RTE_TOOLCHAIN_GCC
 #define strncasecmp(s1, s2, count) _strnicmp(s1, s2, count)
+#endif
 
 #define open(path, flags, ...) _open(path, flags, ##__VA_ARGS__)
 #define read(fd, buf, n) _read(fd, buf, n)