xref: /csrg-svn/lib/libplot/t450/erase.c (revision 48525)
1*48525Sbostic /*-
2*48525Sbostic  * Copyright (c) 1983 The Regents of the University of California.
3*48525Sbostic  * All rights reserved.
4*48525Sbostic  *
5*48525Sbostic  * %sccs.include.proprietary.c%
6*48525Sbostic  */
7*48525Sbostic 
813366Ssam #ifndef lint
9*48525Sbostic static char sccsid[] = "@(#)erase.c	4.2 (Berkeley) 04/22/91";
10*48525Sbostic #endif /* not lint */
1113366Ssam 
1213366Ssam #include "con.h"
1313366Ssam erase(){
1413366Ssam 	int i;
1513366Ssam 		for(i=0; i<11*(VERTRESP/VERTRES); i++)
1613366Ssam 			spew(DOWN);
1713366Ssam 		return;
1813366Ssam }
19