2 Copyright © 1995-2003, The AROS Development Team. All rights reserved.
5 Change the position in a stream.
10 /*****************************************************************************
22 Change the current position in a stream. This function is eqivalent
23 to fseek() with whence set to SEEK_SET. However, on some systems
24 fpos_t may be a complex structure, so this routine may be the only
25 way to portably reposition a stream.
28 stream - Modify this stream
29 pos - The new position in the stream.
32 0 on success and -1 on error. If an error occurred, the global
33 variable errno is set.
46 ******************************************************************************/
56 retval
= fseek (stream
, *pos
, SEEK_SET
);