xref: /csrg-svn/lib/libc/stdio/fputc.c (revision 61180)
146081Sbostic /*-
2*61180Sbostic  * Copyright (c) 1990, 1993
3*61180Sbostic  *	The Regents of the University of California.  All rights reserved.
446081Sbostic  *
546081Sbostic  * This code is derived from software contributed to Berkeley by
646081Sbostic  * Chris Torek.
746081Sbostic  *
846081Sbostic  * %sccs.include.redist.c%
946081Sbostic  */
1046081Sbostic 
1126649Sdonn #if defined(LIBC_SCCS) && !defined(lint)
12*61180Sbostic static char sccsid[] = "@(#)fputc.c	8.1 (Berkeley) 06/04/93";
1346081Sbostic #endif /* LIBC_SCCS and not lint */
1422132Smckusick 
152006Swnj #include <stdio.h>
162006Swnj 
fputc(c,fp)172006Swnj fputc(c, fp)
1846081Sbostic 	int c;
1946081Sbostic 	register FILE *fp;
202006Swnj {
2146081Sbostic 	return (putc(c, fp));
222006Swnj }
23