xref: /csrg-svn/lib/libc/stdio/fputc.c (revision 26649)
1*26649Sdonn #if defined(LIBC_SCCS) && !defined(lint)
2*26649Sdonn static char sccsid[] = "@(#)fputc.c	5.2 (Berkeley) 03/09/86";
3*26649Sdonn #endif LIBC_SCCS and not lint
422132Smckusick 
52006Swnj #include <stdio.h>
62006Swnj 
72006Swnj fputc(c, fp)
817951Sserge register FILE *fp;
92006Swnj {
102006Swnj 	return(putc(c, fp));
112006Swnj }
12