@node clearerr, stdio @subheading Syntax @example #include void clearerr(FILE *stream); @end example @subheading Description This function clears the EOF and error indicators for the file @var{stream}. @subheading Return Value None. @subheading Portability @portability ansi, posix @subheading Example @example clearerr(stdout); @end example