win32 fix for large file support

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1589 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
csoler 2009-09-03 20:43:18 +00:00
parent c398ea4ef1
commit be59ccf135

View File

@ -6,6 +6,10 @@
#include <unistd.h>
#define sleep(x) Sleep(1000 * x)
// For win32 systems (tested on MingW+Ubuntu)
#define stat64 _stati64
#endif