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: #define USE_STDIO_MACROS
   9: #include <stdio.h>
  10: 
  11: #undef putchar
  12: 
  13: putchar(c)
  14: register c;
  15: {
  16:     putc(c, stdout);
  17: }

Defined functions

putchar defined in line 13; used 119 times

Defined variables

sccsid defined in line 2; never used

Defined macros

USE_STDIO_MACROS defined in line 8; never used
Last modified: 1987-02-24
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 2168
Valid CSS Valid XHTML 1.0 Strict