xref: /csrg-svn/old/lib2648/aon.c (revision 18799)
1*18799Sdist /*
2*18799Sdist  * Copyright (c) 1980 Regents of the University of California.
3*18799Sdist  * All rights reserved.  The Berkeley software License Agreement
4*18799Sdist  * specifies the terms and conditions for redistribution.
5*18799Sdist  */
611460Sralph 
7*18799Sdist #ifndef lint
8*18799Sdist static char sccsid[] = "@(#)aon.c	5.1 (Berkeley) 04/26/85";
9*18799Sdist #endif not lint
10*18799Sdist 
1111460Sralph #include "2648.h"
1211460Sralph 
aon()1311460Sralph aon()
1411460Sralph {
1511460Sralph 	sync();
1611460Sralph 	escseq(ESCD);
1711460Sralph 	outchar('e');
1811460Sralph }
1911460Sralph 
aoff()2011460Sralph aoff()
2111460Sralph {
2211460Sralph 	sync();
2311460Sralph 	escseq(ESCD);
2411460Sralph 	outchar('f');
2511460Sralph }
26