V9/libc/stdio/getchar.c

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

/* @(#)getchar.c	4.1 (Berkeley) 12/21/80 */
/*
 * A subroutine version of the macro getchar.
 */
#include <stdio.h>

#undef getchar

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