SysIII/usr/src/lib/libc/pdp11/stdio/getchar.c

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

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

#undef getchar

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