ack/lang/cem/libcc.ansi/stdio/clearerr.c
2018-06-21 22:33:47 +02:00

12 lines
158 B
C

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