2.9BSD/usr/src/lib/c/stdio/fputc.c

Compare this file to the similar file:
Show the results in this format:

/*	@(#)fputc.c	2.1	SCCS id keyword	*/
#include <stdio.h>

fputc(c, fp)
FILE *fp;
{
	return(putc(c, fp));
}