BSD 3 development
[unix-history] / usr / src / libc / stdio / getchar.c
CommitLineData
18e5fa7e
BJ
1/*
2 * A subroutine version of the macro getchar.
3 */
4#include <stdio.h>
5
6#undef getchar
7
8getchar()
9{
10 return(getc(stdin));
11}