From c06de444da36137cdc9115fe4b2e8c1612553f3d Mon Sep 17 00:00:00 2001 From: fincs Date: Wed, 10 Dec 2014 23:14:19 +0100 Subject: [PATCH] Use strcasecmp on non-Windows --- source/picasso.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source/picasso.h b/source/picasso.h index d7060eb..cea688c 100644 --- a/source/picasso.h +++ b/source/picasso.h @@ -19,6 +19,10 @@ #include "maestro_opcodes.h" +#if !defined(WIN32) && !defined(stricmp) +#define stricmp strcasecmp +#endif + enum { COMP_X = 0,