fxlibc/src/libc/stdio/putchar.c

8 lines
84 B
C

#include <stdio.h>
#undef putchar
int putchar(int c)
{
return fputc(c, stdout);
}