xref: /csrg-svn/lib/libplot/t4014/erase.c (revision 61408)
148524Sbostic /*-
2*61408Sbostic  * Copyright (c) 1983, 1993
3*61408Sbostic  *	The Regents of the University of California.  All rights reserved.
448524Sbostic  *
548524Sbostic  * %sccs.include.proprietary.c%
648524Sbostic  */
748524Sbostic 
813347Ssam #ifndef lint
9*61408Sbostic static char sccsid[] = "@(#)erase.c	8.1 (Berkeley) 06/04/93";
1048524Sbostic #endif /* not lint */
1113347Ssam 
1213347Ssam extern int ohiy;
1313347Ssam extern int ohix;
1413347Ssam extern int oloy;
1513347Ssam extern int oextra;
erase()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