machine/param.h is gone
[unix-history] / usr / src / lib / libc / stdio / fputc.c
CommitLineData
b8f253e8
KM
1#ifndef lint
2static char sccsid[] = "@(#)fputc.c 5.1 (Berkeley) %G%";
3#endif not lint
4
ca444779
BJ
5#include <stdio.h>
6
7fputc(c, fp)
41e01b3e 8register FILE *fp;
ca444779
BJ
9{
10 return(putc(c, fp));
11}