mirror of
https://git.planet-casio.com/Vhex-Kernel-Core/fxlibc.git
synced 2025-04-19 17:37:09 +02:00
7 lines
78 B
C
7 lines
78 B
C
#include <stdio.h>
|
|
|
|
void clearerr(FILE *fp)
|
|
{
|
|
fp->error = 0;
|
|
fp->eof = 0;
|
|
}
|