home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume5 / smallc / part3 / lib / getchar.c < prev    next >
Encoding:
C/C++ Source or Header  |  1986-11-30  |  56 b   |  5 lines

  1. #include <stdio.h>
  2. getchar() {
  3.     return(fgetc(stdin));
  4. }
  5.