KNF
[unix-history] / usr / src / lib / libcurses / putchar.c
CommitLineData
3ef0345a 1/*
2f14f200
KB
2 * Copyright (c) 1981 Regents of the University of California.
3 * All rights reserved.
4 *
e21c485a 5 * %sccs.include.redist.c%
3ef0345a 6 */
87c6fcf8
DF
7
8#ifndef lint
1e126f74 9static char sccsid[] = "@(#)putchar.c 5.5 (Berkeley) %G%";
2f14f200 10#endif /* not lint */
87c6fcf8
DF
11
12# include "curses.ext"
13
3ef0345a
JB
14char
15_putchar(c)
16reg char c; {
17
18 putchar(c);
19#ifdef DEBUG
20 fprintf(outf, "_PUTCHAR(%s)\n", unctrl(c));
21#endif
22}