xref: /original-bsd/lib/libplot/t4013/erase.c (revision cfa2a17a)
1 /*-
2  * Copyright (c) 1985 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.proprietary.c%
6  */
7 
8 #ifndef lint
9 static char sccsid[] = "@(#)erase.c	5.2 (Berkeley) 04/22/91";
10 #endif /* not lint */
11 
12 extern int ohiy;
13 extern int ohix;
14 extern int oloy;
15 erase(){
16 	int i;
17 		putch(033);
18 		putch(014);
19 		ohiy= -1;
20 		ohix = -1;
21 		oloy = -1;
22 		return;
23 }
24