fix "printf("%4.1f\n", (double)0.0);"
[unix-history] / usr / src / lib / libc / stdio / fputc.c
CommitLineData
2ce81398
DS
1#if defined(LIBC_SCCS) && !defined(lint)
2static char sccsid[] = "@(#)fputc.c 5.2 (Berkeley) %G%";
3#endif LIBC_SCCS and not lint
b8f253e8 4
ca444779
BJ
5#include <stdio.h>
6
7fputc(c, fp)
41e01b3e 8register FILE *fp;
ca444779
BJ
9{
10 return(putc(c, fp));
11}