mirror of
https://git.planet-casio.com/Vhex-Kernel-Core/fxlibc.git
synced 2025-04-19 17:37:09 +02:00
7 lines
84 B
C
7 lines
84 B
C
#include <stdio.h>
|
|
#undef putchar
|
|
|
|
int putchar(int c)
|
|
{
|
|
return fputc(c, stdout);
|
|
}
|