clearerr is now also a macro

This commit is contained in:
ceriel 1991-01-03 14:23:54 +00:00
parent 589f3a3e35
commit c4c7787acc

View file

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