athena/src/osx_largefilewrapper.c
Phillip Stephens d5ccf159f7 * Fix Wii/GC Compiling
* Initial FileInfo/Dir APIs
* Get rid of type punning warnings
2015-05-20 22:35:26 -07:00

17 lines
225 B
C

#ifdef __APPLE__
#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