home *** CD-ROM | disk | FTP | other *** search
/ The Programmer Disk / The Programmer Disk (Microforum).iso / xpro / c / pro19 / putchar.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. ** Write character to standard output. 
  5. */
  6. putchar(ch) int ch; {
  7.   return (fputc(ch, stdout));
  8.   }
  9.