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