putc.c (77B)
1 2 #include <stdio.h> 3 4 #undef putc 5 int putc(int c, FILE *f) 6 { 7 fputc(c, f); 8 } 9