date and time created 83/11/10 16:04:16 by ralph
[unix-history] / usr / src / lib / libc / stdio / putchar.c
/* @(#)putchar.c 4.1 (Berkeley) %G% */
/*
* A subroutine version of the macro putchar
*/
#include <stdio.h>
#undef putchar
putchar(c)
register c;
{
putc(c, stdout);
}