1: /*	@(#)putchar.c	2.1	SCCS id keyword	*/
   2: /*
   3:  * A subroutine version of the macro putchar
   4:  */
   5: #include <stdio.h>
   6: 
   7: #undef putchar
   8: 
   9: putchar(c)
  10: register c;
  11: {
  12:     putc(c, stdout);
  13: }
Last modified: 1981-07-10
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 590
Valid CSS Valid XHTML 1.0 Strict