athena/include/osx_largefilewrapper.h

17 lines
289 B
C
Raw Normal View History

2015-04-05 00:35:32 +00:00
#ifndef OSX_LARGEFILEWRAPPER_H
#define OSX_LARGEFILEWRAPPER_H
#if defined(__APPLE__)
#include <stdio.h>
#ifdef __cplusplus
extern "C" {
#endif
int fseeko64(FILE* fp, off_t offset, int whence);
off_t ftello64(FILE* fp);
#ifdef __cplusplus
}
#endif
#endif
#endif // OSX_LARGEFILEWRAPPER_H