don't use reverse video for command line when <= 2400 baud
[unix-history] / usr / src / usr.bin / window / wwclreos.c
CommitLineData
5b020a1b 1#ifndef lint
60de5df9 2static char sccsid[] = "@(#)wwclreos.c 3.5 %G%";
5b020a1b
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
5b020a1b
EW
11#include "ww.h"
12
f2a77fe1 13wwclreos(w, row, col)
5b020a1b
EW
14register struct ww *w;
15{
14f251df
EW
16 register i;
17
f2a77fe1
EW
18 wwclreol(w, row, col);
19 for (i = row + 1; i < w->ww_b.b; i++)
20 wwclreol(w, i, w->ww_b.l);
5b020a1b 21}