amiga-libnix3/stdio/clearerr.c

5 lines
85 B
C

#include <stdio.h>
void clearerr(FILE *stream)
{ stream->flags&=~(__SERR|__SEOF); }