/* * Copyright (c) 1981 Regents of the University of California. * All rights reserved. * * %sccs.include.redist.c% */ #ifndef lint static char sccsid[] = "@(#)putchar.c 5.5 (Berkeley) 08/23/92"; #endif /* not lint */ #include void __cputchar(ch) int ch; { #ifdef DEBUG __TRACE("__cputchar: %s\n", unctrl(ch)); #endif (void)putchar(ch); }