xref: /csrg-svn/lib/libc/stdio/fputc.c (revision 17951)
1 /* @(#)fputc.c	4.2 (Berkeley) 02/13/85 */
2 #include <stdio.h>
3 
4 fputc(c, fp)
5 register FILE *fp;
6 {
7 	return(putc(c, fp));
8 }
9