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