xref: /original-bsd/lib/libc/stdio/getchar.c (revision 6c57d260)
1 /* @(#)getchar.c	4.1 (Berkeley) 12/21/80 */
2 /*
3  * A subroutine version of the macro getchar.
4  */
5 #include <stdio.h>
6 
7 #undef getchar
8 
9 getchar()
10 {
11 	return(getc(stdin));
12 }
13