1*18781Sdist /* 2*18781Sdist * Copyright (c) 1980 Regents of the University of California. 3*18781Sdist * All rights reserved. The Berkeley software License Agreement 4*18781Sdist * specifies the terms and conditions for redistribution. 5*18781Sdist */ 611489Sralph 7*18781Sdist #ifndef lint 8*18781Sdist static char sccsid[] = "@(#)rbon.c 5.1 (Berkeley) 04/26/85"; 9*18781Sdist #endif not lint 10*18781Sdist 1111489Sralph #include "2648.h" 1211489Sralph rbon()1311489Sralphrbon() 1411489Sralph { 1511489Sralph setset(); 1611489Sralph sync(); 1711489Sralph escseq(ESCD); 1811489Sralph outchar('m'); 1911489Sralph } 2011489Sralph rboff()2111489Sralphrboff() 2211489Sralph { 2311489Sralph sync(); 2411489Sralph escseq(ESCD); 2511489Sralph outchar('n'); 2611489Sralph } 27