1*19851Sdist /* 2*19851Sdist * Copyright (c) 1980 Regents of the University of California. 3*19851Sdist * All rights reserved. The Berkeley software License Agreement 4*19851Sdist * specifies the terms and conditions for redistribution. 5*19851Sdist */ 6*19851Sdist 715416Sralph #ifndef lint 8*19851Sdist static char sccsid[] = "@(#)erase.c 5.2 (Berkeley) 04/30/85"; 9*19851Sdist #endif not lint 1015416Sralph 11*19851Sdist 1215416Sralph #include "bg.h" 1315416Sralph 1415416Sralph erase() 1515416Sralph { 1615416Sralph putchar( ESC ); 1715416Sralph printf("[H"); 1815416Sralph putchar( ESC ); 1915416Sralph printf("[J"); 2015416Sralph } 21