1: #if defined(LIBC_SCCS) && !defined(lint)
   2: static char sccsid[] = "@(#)putchar.c	5.2 (Berkeley) 3/9/86";
   3: #endif LIBC_SCCS and not lint
   4: 
   5: /*
   6:  * A subroutine version of the macro putchar
   7:  */
   8: #include <stdio.h>
   9: 
  10: #undef putchar
  11: 
  12: putchar(c)
  13: register c;
  14: {
  15:     putc(c, stdout);
  16: }

Defined functions

putchar defined in line 12; used 164 times

Defined variables

sccsid defined in line 2; never used
Last modified: 1986-03-10
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 841
Valid CSS Valid XHTML 1.0 Strict