BSD 3 development
[unix-history] / usr / src / libc / stdio / putchar.c
CommitLineData
18e5fa7e
BJ
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}