home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_100 / 163_01 / getchar.c < prev    next >
Text File  |  1988-01-31  |  256b  |  9 lines

  1. /*
  2. ** get a character from "stdin"
  3. */
  4. extern int *stdin, fgetc();
  5.  
  6. getchar() {
  7.   return fgetc(stdin);
  8.   }
  9.