From 63d690e94cb30fdd4d694887b69ae60e6d7dc91b Mon Sep 17 00:00:00 2001 From: Soren Jorvang Date: Fri, 3 Dec 2010 14:56:55 +0000 Subject: [PATCH] 4.4BSD derived OS'es always have 64-bit file sizes. XXX This should probably be in CommonFuncs.h or something. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6512 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/Common/Src/FileUtil.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Core/Common/Src/FileUtil.cpp b/Source/Core/Common/Src/FileUtil.cpp index d1c49cb067..2813eb6203 100644 --- a/Source/Core/Common/Src/FileUtil.cpp +++ b/Source/Core/Common/Src/FileUtil.cpp @@ -50,6 +50,7 @@ #ifdef BSD4_4 #define stat64 stat // XXX +#define fstat64 fstat // XXX #endif // This namespace has various generic functions related to files and paths.