xref: /csrg-svn/old/lib2648/gon.c (revision 19792)
1*19792Sdist /*
2*19792Sdist  * Copyright (c) 1980 Regents of the University of California.
3*19792Sdist  * All rights reserved.  The Berkeley software License Agreement
4*19792Sdist  * specifies the terms and conditions for redistribution.
5*19792Sdist  */
611475Sralph 
7*19792Sdist #ifndef lint
8*19792Sdist static char sccsid[] = "@(#)gon.c	5.1 (Berkeley) 04/30/85";
9*19792Sdist #endif not lint
10*19792Sdist 
1111475Sralph #include "2648.h"
1211475Sralph 
gon()1311475Sralph gon()
1411475Sralph {
1511475Sralph 	sync();
1611475Sralph 	escseq(ESCD);
1711475Sralph 	outchar('c');
1811475Sralph }
1911475Sralph 
goff()2011475Sralph goff()
2111475Sralph {
2211475Sralph 	sync();
2311475Sralph 	escseq(ESCD);
2411475Sralph 	outchar('d');
2511475Sralph }
26