1*26658Sdonn #if defined(LIBC_SCCS) && !defined(lint) 2*26658Sdonn static char sccsid[] = "@(#)putchar.c 5.2 (Berkeley) 03/09/86"; 3*26658Sdonn #endif LIBC_SCCS and not lint 422140Smckusick 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