date and time created 83/03/09 16:22:51 by ralph
[unix-history] / usr / src / old / lib2648 / kon.c
CommitLineData
9d9fd6f1
RC
1/* kon.c 4.1 83/03/09 */
2/*
3 * Turn on keypad, so it sends codes instead of doing them in local.
4 */
5
6#include "2648.h"
7
8kon()
9{
10 escseq(NONE);
11 outstr("\33&s1A");
12}
13
14koff()
15{
16 escseq(NONE);
17 outstr("\33&s0A");
18}