mirror of https://github.com/odrling/Aegisub
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
|
@ -21,6 +21,12 @@
|
|||
#include "stdiostream.h"
|
||||
#include <errno.h>
|
||||
|
||||
#ifdef __UNIX__
|
||||
#define _fseeki64 fseeko
|
||||
#define _ftelli64 ftello
|
||||
#endif
|
||||
|
||||
|
||||
/* StdIoStream methods */
|
||||
|
||||
/* read count bytes into buffer starting at file position pos
|
||||
|
|
Loading…
Reference in New Issue