1 /* @(#)fputc.c 4.1 (Berkeley) 12/21/80 */ 2 #include <stdio.h> 3 4 fputc(c, fp) 5 FILE *fp; 6 { 7 return(putc(c, fp)); 8 } 9