V9/libc/stdio/fputc.c

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

/* @(#)fputc.c	4.1 (Berkeley) 12/21/80 */
#include <stdio.h>

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