1*22132Smckusick #ifndef lint 2*22132Smckusick static char sccsid[] = "@(#)fputc.c 5.1 (Berkeley) 06/05/85"; 3*22132Smckusick #endif not lint 4*22132Smckusick 52006Swnj #include <stdio.h> 62006Swnj 72006Swnj fputc(c, fp) 817951Sserge register FILE *fp; 92006Swnj { 102006Swnj return(putc(c, fp)); 112006Swnj } 12