mirror of
https://github.com/reactos/reactos.git
synced 2025-05-18 16:51:18 +00:00
[GRMBL]: Fix build on *niks.
svn path=/trunk/; revision=68256
This commit is contained in:
parent
f4c0c8f78c
commit
406e3ca53b
1 changed files with 7 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue