From 99e0c3eeaaf9ce4ecfe69a330a201e887ba1e03f Mon Sep 17 00:00:00 2001 From: null Date: Wed, 15 May 2019 19:43:56 -0400 Subject: [PATCH] include to fix compiling on linux --- source/src/main.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/source/src/main.cpp b/source/src/main.cpp index 21b8f9c..65ac0cd 100644 --- a/source/src/main.cpp +++ b/source/src/main.cpp @@ -24,6 +24,10 @@ #define ftell _ftelli64 #endif +#ifdef __linux +#include +#endif + #define _LARGEFILE64_SOURCE #define _FILE_OFFSET_BITS 64 @@ -1779,4 +1783,4 @@ if((strstr(argv[1], ".rap")) || (strstr(argv[1], ".RAP"))) getchar(); getchar(); return -1; -} \ No newline at end of file +}