ack/lang/cem/libcc.ansi/core/stdio/clearerr.c
David Given 3131dc9915 Partially working port of stdio to CP/M. I'm not sure this will work; it's
getting way too complicated (stdio is horribly subtle). I think I need to
rethink things.
2019-06-15 22:22:01 +02:00

16 lines
190 B
C

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