SysIII/usr/src/lib/libc/pdp11/stdio/fputc.c

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

/*LINTLIBRARY*/
#include <stdio.h>

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