13 lines
163 B
C
13 lines
163 B
C
|
/*
|
||
|
* clearerr.c - clear error and end-of-file indicators of a stream
|
||
|
*/
|
||
|
/* $Header$ */
|
||
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
void
|
||
|
(clearerr)(FILE *stream)
|
||
|
{
|
||
|
clearerr(stream);
|
||
|
}
|