xref: /csrg-svn/lib/libcurses/putchar.c (revision 67082)
122680Sdist /*
2*67082Sbostic  * Copyright (c) 1981, 1993, 1994
361272Sbostic  *	The Regents of the University of California.  All rights reserved.
434677Sbostic  *
542655Sbostic  * %sccs.include.redist.c%
622680Sdist  */
722680Sdist 
822680Sdist #ifndef lint
9*67082Sbostic static char sccsid[] = "@(#)putchar.c	8.2 (Berkeley) 05/04/94";
1055975Sbostic #endif	/* not lint */
1122680Sdist 
12*67082Sbostic #include "curses.h"
1319892Sbloom 
1455975Sbostic void
__cputchar(ch)1555975Sbostic __cputchar(ch)
1655975Sbostic 	int ch;
1755975Sbostic {
1819892Sbloom 
1919892Sbloom #ifdef DEBUG
2060058Sbostic 	__CTRACE("__cputchar: %s\n", unctrl(ch));
2119892Sbloom #endif
2255975Sbostic 	(void)putchar(ch);
2319892Sbloom }
24