1 #ifndef lint 2 static char sccsid[] = "@(#)erase.c 4.1 (Berkeley) 11/10/83"; 3 #endif 4 5 #include "bg.h" 6 7 erase() 8 { 9 putchar( ESC ); 10 printf("[H"); 11 putchar( ESC ); 12 printf("[J"); 13 } 14