Bell 32V development
[unix-history] / usr / src / libc / stdio / putchar.c
CommitLineData
1f92ea9c
TL
1/*
2 * A subroutine version of the macro putchar
3 */
4#include <stdio.h>
5
6#undef putchar
7
8putchar(c)
9register c;
10{
11 putc(c, stdout);
12}