mirror of
https://github.com/libAthena/athena.git
synced 2025-06-30 18:33:41 +00:00
17 lines
273 B
C
17 lines
273 B
C
#if defined(__APPLE__) || defined(GEKKO) || defined(__FreeBSD__)
|
|
#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
|
|
|
|
|