xref: /csrg-svn/lib/libplot/t4013/erase.c (revision 48523)
1*48523Sbostic /*-
2*48523Sbostic  * Copyright (c) 1985 The Regents of the University of California.
3*48523Sbostic  * All rights reserved.
4*48523Sbostic  *
5*48523Sbostic  * %sccs.include.proprietary.c%
622617Sdist  */
722617Sdist 
817614Sjak #ifndef lint
9*48523Sbostic static char sccsid[] = "@(#)erase.c	5.2 (Berkeley) 04/22/91";
10*48523Sbostic #endif /* not lint */
1117614Sjak 
1217614Sjak extern int ohiy;
1317614Sjak extern int ohix;
1417614Sjak extern int oloy;
1517614Sjak erase(){
1617614Sjak 	int i;
1717614Sjak 		putch(033);
1817614Sjak 		putch(014);
1917614Sjak 		ohiy= -1;
2017614Sjak 		ohix = -1;
2117614Sjak 		oloy = -1;
2217614Sjak 		return;
2317614Sjak }
24