xref: /csrg-svn/lib/libplot/t300/erase.c (revision 48521)
1*48521Sbostic /*-
2*48521Sbostic  * Copyright (c) 1983 The Regents of the University of California.
3*48521Sbostic  * All rights reserved.
4*48521Sbostic  *
5*48521Sbostic  * %sccs.include.proprietary.c%
6*48521Sbostic  */
7*48521Sbostic 
813314Ssam #ifndef lint
9*48521Sbostic static char sccsid[] = "@(#)erase.c	4.2 (Berkeley) 04/22/91";
10*48521Sbostic #endif /* not lint */
1113314Ssam 
1213314Ssam #include "con.h"
1313314Ssam erase(){
1413314Ssam 	int i;
1513314Ssam 		for(i=0; i<11*(VERTRESP/VERTRES); i++)
1613314Ssam 			spew(DOWN);
1713314Ssam 		return;
1813314Ssam }
19