mirror of
https://git.planet-casio.com/Vhex-Kernel-Core/fxlibc.git
synced 2025-06-03 17:35:10 +02:00
@update > CMakeLists.txt | remove casiowin-* target (unused) | remove x86-generic target (unused) | update files location | remove old vhex sources files (deprecated, unused) > src/posix | remove this folder > src/libc | move its content to src/ | remove thread module > src/stdlib/reallocarray | check if the multiplication overflow failed | set appropriate errno value if multiplication failed
7 lines
78 B
C
7 lines
78 B
C
#include <stdio.h>
|
|
|
|
void clearerr(FILE *fp)
|
|
{
|
|
fp->error = 0;
|
|
fp->eof = 0;
|
|
}
|