xref: /original-bsd/old/lib2648/kon.c (revision 59e5e773)
1*59e5e773Sdist /*
2*59e5e773Sdist  * Copyright (c) 1980 Regents of the University of California.
3*59e5e773Sdist  * All rights reserved.  The Berkeley software License Agreement
4*59e5e773Sdist  * specifies the terms and conditions for redistribution.
5*59e5e773Sdist  */
6*59e5e773Sdist 
7*59e5e773Sdist #ifndef lint
8*59e5e773Sdist static char sccsid[] = "@(#)kon.c	5.1 (Berkeley) 04/30/85";
9*59e5e773Sdist #endif not lint
10*59e5e773Sdist 
1101cdaf5fSralph /*
1201cdaf5fSralph  * Turn on keypad, so it sends codes instead of doing them in local.
1301cdaf5fSralph  */
1401cdaf5fSralph 
1501cdaf5fSralph #include "2648.h"
1601cdaf5fSralph 
kon()1701cdaf5fSralph kon()
1801cdaf5fSralph {
1901cdaf5fSralph 	escseq(NONE);
2001cdaf5fSralph 	outstr("\33&s1A");
2101cdaf5fSralph }
2201cdaf5fSralph 
koff()2301cdaf5fSralph koff()
2401cdaf5fSralph {
2501cdaf5fSralph 	escseq(NONE);
2601cdaf5fSralph 	outstr("\33&s0A");
2701cdaf5fSralph }
28