ack/lang/cem/libcc.ansi/stdio/clearerr.c
1994-06-24 14:02:31 +00:00

13 lines
159 B
C

/*
* clearerr.c - clear error and end-of-file indicators of a stream
*/
/* $Id$ */
#include <stdio.h>
void
(clearerr)(FILE *stream)
{
clearerr(stream);
}