/* * A subroutine version of the macro putchar */ #include #undef putchar putchar(c) register c; { putc(c, stdout); }