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