summaryrefslogtreecommitdiff
path: root/Tools/CCode/Source/Common/CommonLib.h
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/CCode/Source/Common/CommonLib.h')
-rw-r--r--Tools/CCode/Source/Common/CommonLib.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/Tools/CCode/Source/Common/CommonLib.h b/Tools/CCode/Source/Common/CommonLib.h
index 46f0cbace5..f6c29ef8a8 100644
--- a/Tools/CCode/Source/Common/CommonLib.h
+++ b/Tools/CCode/Source/Common/CommonLib.h
@@ -124,9 +124,13 @@ PrintGuidToBuffer (
#define ASSERT(x) assert(x)
#ifdef __GNUC__
+#include <stdio.h>
+#include <sys/stat.h>
#define stricmp strcasecmp
+#define _stricmp strcasecmp
#define strnicmp strncasecmp
#define strcmpi strcasecmp
+size_t _filelength(FILE *file);
#ifndef __CYGWIN__
char *strlwr(char *s);
#endif