BSD 3 release
[unix-history] / usr / src / libc / stdio / fputc.c
#include <stdio.h>
fputc(c, fp)
FILE *fp;
{
return(putc(c, fp));
}