mirror of
https://github.com/libAthena/athena.git
synced 2025-08-27 14:05:51 +00:00
14 lines
200 B
C
14 lines
200 B
C
#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);
|
|
}
|
|
|