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

  1. #include <stdio.h>
  2. putchar(c) char c; {
  3.     return fputc(c, stdout);
  4. }
  5.