V7/usr/src/libc/stdio/putchar.c

Find at most related files.
including files from this version of Unix.

/*
 * A subroutine version of the macro putchar
 */
#include <stdio.h>

#undef putchar

putchar(c)
register c;
{
	putc(c, stdout);
}