xref: /original-bsd/usr.bin/window/wwclreos.c (revision 6219b5e8)
1 #ifndef lint
2 static char sccsid[] = "@(#)wwclreos.c	3.5 04/24/85";
3 #endif
4 
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 
11 #include "ww.h"
12 
13 wwclreos(w, row, col)
14 register struct ww *w;
15 {
16 	register i;
17 
18 	wwclreol(w, row, col);
19 	for (i = row + 1; i < w->ww_b.b; i++)
20 		wwclreol(w, i, w->ww_b.l);
21 }
22