1 #ifndef lint 2 static char sccsid[] = "@(#)fputc.c 5.1 (Berkeley) 06/05/85"; 3 #endif not lint 4 5 #include <stdio.h> 6 7 fputc(c, fp) 8 register FILE *fp; 9 { 10 return(putc(c, fp)); 11 } 12