#ifndef lint static char sccsid[] = "@(#)fputc.c 5.1 (Berkeley) 06/05/85"; #endif not lint #include fputc(c, fp) register FILE *fp; { return(putc(c, fp)); }