[GRMBL]: Fix build on *niks.

svn path=/trunk/; revision=68256
This commit is contained in:
Hermès Bélusca-Maïto 2015-06-24 20:00:23 +00:00
parent f4c0c8f78c
commit 406e3ca53b

View file

@ -8,6 +8,13 @@
#include <stdio.h>
#ifdef _WIN32
#include <string.h> // Required for _stricmp()
#else
#include <strings.h> // Required for strcasecmp()
#define _stricmp strcasecmp
#endif
static size_t dumpHex(FILE* inFile, FILE* outCFile, char nullTerminate)
{
size_t bufLen = 0;