1*18793Sdist /* 2*18793Sdist * Copyright (c) 1980 Regents of the University of California. 3*18793Sdist * All rights reserved. The Berkeley software License Agreement 4*18793Sdist * specifies the terms and conditions for redistribution. 5*18793Sdist */ 611501Sralph 7*18793Sdist #ifndef lint 8*18793Sdist static char sccsid[] = "@(#)zoomon.c 5.1 (Berkeley) 04/26/85"; 9*18793Sdist #endif not lint 10*18793Sdist 1111501Sralph #include "2648.h" 1211501Sralph zoomon()1311501Sralphzoomon() 1411501Sralph { 1511501Sralph escseq(ESCD); 1611501Sralph outchar('g'); 1711501Sralph } 1811501Sralph zoomoff()1911501Sralphzoomoff() 2011501Sralph { 2111501Sralph escseq(ESCD); 2211501Sralph outchar('h'); 2311501Sralph } 24