1*18805Sdist /* 2*18805Sdist * Copyright (c) 1980 Regents of the University of California. 3*18805Sdist * All rights reserved. The Berkeley software License Agreement 4*18805Sdist * specifies the terms and conditions for redistribution. 5*18805Sdist */ 611465Sralph 7*18805Sdist #ifndef lint 8*18805Sdist static char sccsid[] = "@(#)clearg.c 5.1 (Berkeley) 04/26/85"; 9*18805Sdist #endif not lint 10*18805Sdist 1111465Sralph #include "2648.h" 1211465Sralph clearg()1311465Sralphclearg() 1411465Sralph { 1511465Sralph sync(); 1611465Sralph escseq(ESCD); 1711465Sralph outchar((_video==INVERSE) ? 'b' : 'a'); 1811465Sralph } 19