This version handles out-of-band data, abort output, and
[unix-history] / usr / src / lib / libplot / t4014 / erase.c
CommitLineData
93d84bc2 1#ifndef lint
fe2659cb 2static char sccsid[] = "@(#)erase.c 4.2 (Berkeley) %G%";
93d84bc2
SL
3#endif
4
5extern int ohiy;
6extern int ohix;
7extern int oloy;
8extern int oextra;
9erase(){
10 int i;
11 putch(033);
12 putch(014);
13 ohiy= -1;
14 ohix = -1;
15 oextra = -1;
16 oloy = -1;
93d84bc2
SL
17 return;
18}