BSD 3 development
[unix-history] / usr / src / libc / stdio / getchar.c
/*
* A subroutine version of the macro getchar.
*/
#include <stdio.h>
#undef getchar
getchar()
{
return(getc(stdin));
}