removed extra tt_col += n in gen_write
[unix-history] / usr / src / usr.bin / window / wwputc.c
CommitLineData
9c6399b1 1#ifndef lint
60de5df9 2static char sccsid[] = "@(#)wwputc.c 3.4 %G%";
9c6399b1
EW
3#endif
4
60de5df9
EW
5/*
6 * Copyright (c) 1983 Regents of the University of California,
7 * All rights reserved. Redistribution permitted subject to
8 * the terms of the Berkeley Software License Agreement.
9 */
10
9c6399b1
EW
11#include "ww.h"
12
13wwputc(c, w)
4711df8b
EW
14char c;
15struct ww *w;
9c6399b1 16{
b1189050 17 (void) wwwrite(w, &c, sizeof c);
9c6399b1 18}