Restore use of strnicmp for strncasecmp on Windows

This commit is contained in:
Martin Kroeker
2026-05-05 00:00:47 +02:00
committed by GitHub
parent 8bc50c45ac
commit 7324f370bf

View File

@@ -38,7 +38,13 @@
/*********************************************************************/
#include "common.h"
#ifndef _MSC_VER
#include <strings.h>
#else
#define strncasecmp _strnicmp
#endif
#if (defined OS_LINUX || defined OS_ANDROID)
#include <asm/hwcap.h>
#include <sys/auxv.h>