4.4BSD snapshot (revision 8.1); add 1993 to copyright
[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
14a0061d 9static char sccsid[] = "@(#)putchar.c 5.6 (Berkeley) %G%";
73286151 10#endif /* not lint */
87c6fcf8 11
73286151 12#include <curses.h>
87c6fcf8 13
73286151
KB
14void
15__cputchar(ch)
16 int ch;
17{
3ef0345a 18
3ef0345a 19#ifdef DEBUG
14a0061d 20 __CTRACE("__cputchar: %s\n", unctrl(ch));
3ef0345a 21#endif
73286151 22 (void)putchar(ch);
3ef0345a 23}