148525Sbostic /*- 2*61410Sbostic * Copyright (c) 1983, 1993 3*61410Sbostic * The Regents of the University of California. All rights reserved. 448525Sbostic * 548525Sbostic * %sccs.include.proprietary.c% 648525Sbostic */ 748525Sbostic 813366Ssam #ifndef lint 9*61410Sbostic static char sccsid[] = "@(#)erase.c 8.1 (Berkeley) 06/04/93"; 1048525Sbostic #endif /* not lint */ 1113366Ssam 1213366Ssam #include "con.h" erase()1313366Ssamerase(){ 1413366Ssam int i; 1513366Ssam for(i=0; i<11*(VERTRESP/VERTRES); i++) 1613366Ssam spew(DOWN); 1713366Ssam return; 1813366Ssam } 19