From 406e3ca53b6df78e80aa9eb2f59a03cdc6297325 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herm=C3=A8s=20B=C3=A9lusca-Ma=C3=AFto?= Date: Wed, 24 Jun 2015 20:00:23 +0000 Subject: [PATCH] [GRMBL]: Fix build on *niks. svn path=/trunk/; revision=68256 --- reactos/tools/bin2c.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/reactos/tools/bin2c.c b/reactos/tools/bin2c.c index 33b7d8cbdf2..69764604e69 100644 --- a/reactos/tools/bin2c.c +++ b/reactos/tools/bin2c.c @@ -8,6 +8,13 @@ #include +#ifdef _WIN32 +#include // Required for _stricmp() +#else +#include // Required for strcasecmp() +#define _stricmp strcasecmp +#endif + static size_t dumpHex(FILE* inFile, FILE* outCFile, char nullTerminate) { size_t bufLen = 0;