Add fseeko function

This commit is contained in:
Erik van der Kouwe
2010-08-16 17:06:08 +00:00
parent 66b8f17a29
commit a3e4dcafe0
3 changed files with 23 additions and 5 deletions

View File

@@ -117,6 +117,7 @@ _PROTOTYPE( size_t fwrite,
(const void *_ptr, size_t _size, size_t _nmemb, FILE *_stream) );
_PROTOTYPE( int fgetpos, (FILE *_stream, fpos_t *_pos) );
_PROTOTYPE( int fseek, (FILE *_stream, long _offset, int _whence) );
_PROTOTYPE( int fseeko, (FILE *_stream, off_t _offset, int _whence) );
_PROTOTYPE( int fsetpos, (FILE *_stream, fpos_t *_pos) );
_PROTOTYPE( long ftell, (FILE *_stream) );
_PROTOTYPE( void rewind, (FILE *_stream) );