xref: /csrg-svn/lib/libplot/t4014/erase.c (revision 13347)
1*13347Ssam #ifndef lint
2*13347Ssam static char sccsid[] = "@(#)erase.c	4.1 (Berkeley) 06/27/83";
3*13347Ssam #endif
4*13347Ssam 
5*13347Ssam extern int ohiy;
6*13347Ssam extern int ohix;
7*13347Ssam extern int oloy;
8*13347Ssam extern int oextra;
9*13347Ssam erase(){
10*13347Ssam 	int i;
11*13347Ssam 		putch(033);
12*13347Ssam 		putch(014);
13*13347Ssam 		ohiy= -1;
14*13347Ssam 		ohix = -1;
15*13347Ssam 		oextra = -1;
16*13347Ssam 		oloy = -1;
17*13347Ssam 		sleep(2);
18*13347Ssam 		return;
19*13347Ssam }
20