1: /*
   2:  * A subroutine version of the macro putchar
   3:  */
   4: #include <stdio.h>
   5: 
   6: #undef putchar
   7: 
   8: putchar(c)
   9: register c;
  10: {
  11:     putc(c, stdout);
  12: }

Defined functions

putchar defined in line 8; never used
Last modified: 1979-01-10
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 260
Valid CSS Valid XHTML 1.0 Strict