2 Copyright © 1995-2012, The AROS Development Team. All rights reserved.
9 /*****************************************************************************
21 Change the current position in a stream. This function is eqivalent
22 to fseek() with whence set to SEEK_SET. However, on some systems
23 fpos_t may be a complex structure, so this routine may be the only
24 way to portably reposition a stream.
27 stream - Modify this stream
28 pos - The new position in the stream.
31 0 on success and -1 on error. If an error occurred, the global
32 variable errno is set.
45 ******************************************************************************/
53 return fseek (stream
, *pos
, SEEK_SET
);