handle exponents greater than 2 digits
[unix-history] / usr / src / lib / libc / stdio / putchar.c
CommitLineData
2ce81398
DS
1#if defined(LIBC_SCCS) && !defined(lint)
2static char sccsid[] = "@(#)putchar.c 5.2 (Berkeley) %G%";
3#endif LIBC_SCCS and not lint
b8f253e8 4
7d0f8a82
BJ
5/*
6 * A subroutine version of the macro putchar
7 */
8#include <stdio.h>
9
10#undef putchar
11
12putchar(c)
13register c;
14{
15 putc(c, stdout);
16}