BSD 3 development
[unix-history] / usr / src / libc / stdio / putchar.c
/*
* A subroutine version of the macro putchar
*/
#include <stdio.h>
#undef putchar
putchar(c)
register c;
{
putc(c, stdout);
}