148521Sbostic /*- 2*61399Sbostic * Copyright (c) 1983, 1993 3*61399Sbostic * The Regents of the University of California. All rights reserved. 448521Sbostic * 548521Sbostic * %sccs.include.proprietary.c% 648521Sbostic */ 748521Sbostic 813314Ssam #ifndef lint 9*61399Sbostic static char sccsid[] = "@(#)erase.c 8.1 (Berkeley) 06/04/93"; 1048521Sbostic #endif /* not lint */ 1113314Ssam 1213314Ssam #include "con.h" erase()1313314Ssamerase(){ 1413314Ssam int i; 1513314Ssam for(i=0; i<11*(VERTRESP/VERTRES); i++) 1613314Ssam spew(DOWN); 1713314Ssam return; 1813314Ssam } 19