summaryrefslogtreecommitdiff
path: root/Tools/CCode/Source/Common/CommonLib.c
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/CCode/Source/Common/CommonLib.c')
-rw-r--r--Tools/CCode/Source/Common/CommonLib.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/Tools/CCode/Source/Common/CommonLib.c b/Tools/CCode/Source/Common/CommonLib.c
index 4d1663a55a..618abd89bb 100644
--- a/Tools/CCode/Source/Common/CommonLib.c
+++ b/Tools/CCode/Source/Common/CommonLib.c
@@ -495,6 +495,14 @@ Returns:
}
#ifdef __GNUC__
+
+size_t _filelength(FILE *file)
+{
+ struct stat stat_buf;
+ fstat(fileno(file), &stat_buf);
+ return stat_buf.st_size;
+}
+
#ifndef __CYGWIN__
char *strlwr(char *s)
{