fxlibc/src/libc/stdio/putchar.c
2022-01-05 21:26:06 +01:00

7 lines
84 B
C

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