home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / enterprs / cpm / utils / s / smc21lib.lzh / GETCHAR.C < prev    next >
Encoding:
C/C++ Source or Header  |  1993-03-25  |  256 b   |  12 lines

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