#ifndef lint static char sccsid[] = "@(#)putchar.c 5.1 (Berkeley) 06/05/85"; #endif not lint /* * A subroutine version of the macro putchar */ #include #undef putchar putchar(c) register c; { putc(c, stdout); }