minix/lib/stdio/clearerr.c
2005-04-21 14:53:53 +00:00

13 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);
}