athena/src/win32_largefilewrapper.c

15 lines
255 B
C
Raw Normal View History

2014-05-15 05:42:20 +00:00
#include "win32_largefilewrapper.h"
#include <stdio.h>
2014-06-03 03:09:40 +00:00
#if defined(_WIN32) && defined(_MSC_VER)
2014-05-15 05:42:20 +00:00
int fseeko64(FILE* fp, off64_t offset, int whence)
{
return _fseeki64(fp, offset, whence);
}
int ftello64(FILE* fp)
{
return _ftelli64(fp);
}
#endif