home *** CD-ROM | disk | FTP | other *** search
/ minnie.tuhs.org / unixen.tar / unixen / PDP-11 / Trees / V7 / usr / src / libc / stdio / getchar.c < prev    next >
Encoding:
C/C++ Source or Header  |  1979-01-10  |  125 b   |  12 lines

  1. /*
  2.  * A subroutine version of the macro getchar.
  3.  */
  4. #include <stdio.h>
  5.  
  6. #undef getchar
  7.  
  8. getchar()
  9. {
  10.     return(getc(stdin));
  11. }
  12.