date and time created 86/07/02 16:23:39 by sam
[unix-history] / usr / src / lib / libcurses / putchar.c
CommitLineData
3ef0345a 1/*
87c6fcf8
DF
2 * Copyright (c) 1980 Regents of the University of California.
3 * All rights reserved. The Berkeley software License Agreement
4 * specifies the terms and conditions for redistribution.
3ef0345a 5 */
87c6fcf8
DF
6
7#ifndef lint
8static char sccsid[] = "@(#)putchar.c 5.1 (Berkeley) %G%";
9#endif not lint
10
11# include "curses.ext"
12
3ef0345a
JB
13char
14_putchar(c)
15reg char c; {
16
17 putchar(c);
18#ifdef DEBUG
19 fprintf(outf, "_PUTCHAR(%s)\n", unctrl(c));
20#endif
21}