xref: /csrg-svn/lib/libc/stdio/putchar.c (revision 22140)
1*22140Smckusick #ifndef lint
2*22140Smckusick static char sccsid[] = "@(#)putchar.c	5.1 (Berkeley) 06/05/85";
3*22140Smckusick #endif not lint
4*22140Smckusick 
52026Swnj /*
62026Swnj  * A subroutine version of the macro putchar
72026Swnj  */
82026Swnj #include <stdio.h>
92026Swnj 
102026Swnj #undef putchar
112026Swnj 
122026Swnj putchar(c)
132026Swnj register c;
142026Swnj {
152026Swnj 	putc(c, stdout);
162026Swnj }
17