SysIII/usr/src/lib/libc/pdp11/stdio/putchar.c

Compare this file to the similar file:
Show the results in this format:

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

#undef putchar

int putchar(c)
register char c;
{
	return putc(c, stdout);
}