2.9BSD/usr/src/lib/c/stdio/getchar.c

Compare this file to the similar file:
Show the results in this format:

/*	@(#)getchar.c	2.1	SCCS id keyword	*/
/*
 * A subroutine version of the macro getchar.
 */
#include <stdio.h>

#undef getchar

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