Add fseeko/ftello defines that got missed during the first-pass.
Originally committed to SVN as r2628.
This commit is contained in:
parent
d5fe9e331f
commit
bf671135e9
1 changed files with 6 additions and 0 deletions
|
@ -21,6 +21,12 @@
|
||||||
#include "stdiostream.h"
|
#include "stdiostream.h"
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
|
||||||
|
#ifdef __UNIX__
|
||||||
|
#define _fseeki64 fseeko
|
||||||
|
#define _ftelli64 ftello
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
/* StdIoStream methods */
|
/* StdIoStream methods */
|
||||||
|
|
||||||
/* read count bytes into buffer starting at file position pos
|
/* read count bytes into buffer starting at file position pos
|
||||||
|
|
Loading…
Reference in a new issue