mirror of
https://github.com/libAthena/athena.git
synced 2025-12-09 21:47:52 +00:00
Added OS X filesystem-support
This commit is contained in:
16
include/osx_largefilewrapper.h
Normal file
16
include/osx_largefilewrapper.h
Normal file
@@ -0,0 +1,16 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user