1*48522Sbostic /*- 2*48522Sbostic * Copyright (c) 1983 The Regents of the University of California. 3*48522Sbostic * All rights reserved. 4*48522Sbostic * 5*48522Sbostic * %sccs.include.proprietary.c% 6*48522Sbostic */ 7*48522Sbostic 813331Ssam #ifndef lint 9*48522Sbostic static char sccsid[] = "@(#)erase.c 4.2 (Berkeley) 04/22/91"; 10*48522Sbostic #endif /* not lint */ 1113331Ssam 1213331Ssam #include "con.h" 1313331Ssam erase(){ 1413331Ssam int i; 1513331Ssam for(i=0; i<11*(VERTRESP/VERTRES); i++) 1613331Ssam spew(DOWN); 1713331Ssam return; 1813331Ssam } 19