1*48524Sbostic /*- 2*48524Sbostic * Copyright (c) 1983 The Regents of the University of California. 3*48524Sbostic * All rights reserved. 4*48524Sbostic * 5*48524Sbostic * %sccs.include.proprietary.c% 6*48524Sbostic */ 7*48524Sbostic 813347Ssam #ifndef lint 9*48524Sbostic static char sccsid[] = "@(#)erase.c 4.3 (Berkeley) 04/22/91"; 10*48524Sbostic #endif /* not lint */ 1113347Ssam 1213347Ssam extern int ohiy; 1313347Ssam extern int ohix; 1413347Ssam extern int oloy; 1513347Ssam extern int oextra; 1613347Ssam erase(){ 1713347Ssam int i; 1813347Ssam putch(033); 1913347Ssam putch(014); 2013347Ssam ohiy= -1; 2113347Ssam ohix = -1; 2213347Ssam oextra = -1; 2313347Ssam oloy = -1; 2413347Ssam return; 2513347Ssam } 26