fxlibc/src/libc/stdio/clearerr.c

8 lines
78 B
C

#include <stdio.h>
void clearerr(FILE *fp)
{
fp->error = 0;
fp->eof = 0;
}