home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 June / SIMTEL_0692.cdr / msdos / small_c / sc88.arc / GETCHAR.C < prev    next >
Encoding:
C/C++ Source or Header  |  1987-10-04  |  256 b   |  9 lines

  1. #define NOCCARGC  /* no argument count passing */
  2. #include stdio.h
  3. /*
  4. ** Get next character from standard input. 
  5. */
  6. getchar() {
  7.   return (fgetc(stdin));
  8.   }
  9.