putchar.c (85B)
1 2 #include <stdio.h> 3 #undef putchar 4 5 int 6 putchar(int ch) 7 { 8 return putc(ch, stdin); 9 }