manual page distributed with 4.2BSD
[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));
}