2 Copyright © 1995-2013, The AROS Development Team. All rights reserved.
5 C99 function clearerr().
10 /*****************************************************************************
21 Clear EOF and error flag in a stream. You must call this for
22 example after you have read the file until EOF, then appended
23 something to it and want to continue reading.
26 stream - The stream to be reset.
42 ******************************************************************************/
44 stream
->flags
&= ~(__POSIXC_STDIO_EOF
| __POSIXC_STDIO_ERROR
);