mirror of
https://git.planet-casio.com/Vhex-Kernel-Core/fxlibc.git
synced 2025-05-31 07:55:12 +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
84 B
C
7 lines
84 B
C
#include <stdio.h>
|
|
#undef putc
|
|
|
|
int putc(int c, FILE *fp)
|
|
{
|
|
return fputc(c, fp);
|
|
}
|