clearerr is now also a macro

This commit is contained in:
ceriel 1991-01-03 14:23:54 +00:00
parent 177b2f0744
commit d5593e5f80

View File

@ -6,7 +6,7 @@
#include <stdio.h>
void
clearerr(FILE *stream)
(clearerr)(FILE *stream)
{
stream->_flags &= ~(_IOERR|_IOEOF);
clearerr(stream);
}