date and time created 80/12/21 16:50:30 by wnj
[unix-history] / usr / src / lib / libc / stdio / getchar.c
/* @(#)getchar.c 4.1 (Berkeley) %G% */
/*
* A subroutine version of the macro getchar.
*/
#include <stdio.h>
#undef getchar
getchar()
{
return(getc(stdin));
}