148522Sbostic /*- 2*61403Sbostic * Copyright (c) 1983, 1993 3*61403Sbostic * The Regents of the University of California. All rights reserved. 448522Sbostic * 548522Sbostic * %sccs.include.proprietary.c% 648522Sbostic */ 748522Sbostic 813331Ssam #ifndef lint 9*61403Sbostic static char sccsid[] = "@(#)erase.c 8.1 (Berkeley) 06/04/93"; 1048522Sbostic #endif /* not lint */ 1113331Ssam 1213331Ssam #include "con.h" erase()1313331Ssamerase(){ 1413331Ssam int i; 1513331Ssam for(i=0; i<11*(VERTRESP/VERTRES); i++) 1613331Ssam spew(DOWN); 1713331Ssam return; 1813331Ssam } 19