date and time created 83/06/27 14:19:18 by sam
authorSam Leffler <sam@ucbvax.Berkeley.EDU>
Tue, 28 Jun 1983 05:19:18 +0000 (21:19 -0800)
committerSam Leffler <sam@ucbvax.Berkeley.EDU>
Tue, 28 Jun 1983 05:19:18 +0000 (21:19 -0800)
SCCS-vsn: lib/libplot/t4014/erase.c 4.1

usr/src/lib/libplot/t4014/erase.c [new file with mode: 0644]

diff --git a/usr/src/lib/libplot/t4014/erase.c b/usr/src/lib/libplot/t4014/erase.c
new file mode 100644 (file)
index 0000000..c7855e1
--- /dev/null
@@ -0,0 +1,19 @@
+#ifndef lint
+static char sccsid[] = "@(#)erase.c    4.1 (Berkeley) %G%";
+#endif
+
+extern int ohiy;
+extern int ohix;
+extern int oloy;
+extern int oextra;
+erase(){
+       int i;
+               putch(033);
+               putch(014);
+               ohiy= -1;
+               ohix = -1;
+               oextra = -1;
+               oloy = -1;
+               sleep(2);
+               return;
+}