athena/src/osx_largefilewrapper.c

17 lines
225 B
C
Raw Normal View History

#ifdef __APPLE__
2015-04-05 00:35:32 +00:00
#include "osx_largefilewrapper.h"
#include <stdio.h>
int fseeko64(FILE* fp, off_t offset, int whence)
{
return fseeko(fp, offset, whence);
}
off_t ftello64(FILE* fp)
{
return ftello(fp);
}
#endif
2015-04-05 00:35:32 +00:00