V7/usr/src/libc/stdio/getchar.c

Find at most related files.
including files from this version of Unix.

/*
 * A subroutine version of the macro getchar.
 */
#include <stdio.h>

#undef getchar

getchar()
{
	return(getc(stdin));
}