fxlibc/src/libc/stdio/putchar.c

8 lines
84 B
C
Raw Normal View History

2022-01-05 21:25:41 +01:00
#include <stdio.h>
#undef putchar
int putchar(int c)
{
return fputc(c, stdout);
}