2 Copyright © 1995-2003, The AROS Development Team. All rights reserved.
5 ANSI C function clearerr().
8 /*****************************************************************************
19 Clear EOF and error flag in a stream. You must call this for
20 example after you have read the file until EOF, then appended
21 something to it and want to continue reading.
24 stream - The stream to be reset.
40 ******************************************************************************/
42 stream
->flags
&= ~(_STDIO_EOF
| _STDIO_ERROR
);