Revision: | 1.1 |
Committed: | Sat Feb 22 02:07:26 2003 UTC (22 years, 2 months ago) by greg |
Content type: | text/plain |
Branch: | MAIN |
CVS Tags: | rad3R5 |
Log Message: | Changes and check-in for 3.5 release Includes new source files and modifications not recorded for many years See ray/doc/notes/ReleaseNotes for notes between 3.1 and 3.5 release |
# | Content |
---|---|
1 | #ifndef lint |
2 | static const char RCSid[] = "$Id$"; |
3 | #endif |
4 | #ifndef lint |
5 | static char sccsid[] = "@(#)erase.c 4.1 (Berkeley) 6/27/83"; |
6 | #endif |
7 | |
8 | #include <stdio.h> |
9 | |
10 | extern int ohiy; |
11 | extern int ohix; |
12 | extern int oloy; |
13 | extern int oextra; |
14 | erase(){ |
15 | putch(033); |
16 | putch(014); |
17 | fflush(stdout); |
18 | ohiy= -1; |
19 | ohix = -1; |
20 | oextra = -1; |
21 | oloy = -1; |
22 | sleep(2); |
23 | } |