xref: /csrg-svn/lib/libc/stdio/fputc.c (revision 46081)
1*46081Sbostic /*-
2*46081Sbostic  * Copyright (c) 1990 The Regents of the University of California.
3*46081Sbostic  * All rights reserved.
4*46081Sbostic  *
5*46081Sbostic  * This code is derived from software contributed to Berkeley by
6*46081Sbostic  * Chris Torek.
7*46081Sbostic  *
8*46081Sbostic  * %sccs.include.redist.c%
9*46081Sbostic  */
10*46081Sbostic 
1126649Sdonn #if defined(LIBC_SCCS) && !defined(lint)
12*46081Sbostic static char sccsid[] = "@(#)fputc.c	5.3 (Berkeley) 01/20/91";
13*46081Sbostic #endif /* LIBC_SCCS and not lint */
1422132Smckusick 
152006Swnj #include <stdio.h>
162006Swnj 
172006Swnj fputc(c, fp)
18*46081Sbostic 	int c;
19*46081Sbostic 	register FILE *fp;
202006Swnj {
21*46081Sbostic 	return (putc(c, fp));
222006Swnj }
23