Add copyright
[unix-history] / usr / src / old / lib2648 / curon.c
CommitLineData
a93a47fc
RC
1/* curon.c 4.1 83/03/09 */
2
3#include "2648.h"
4
5curon()
6{
7 if (_cursoron)
8 return;
9 sync();
10 escseq(ESCD);
11 outchar('k');
12 _cursoron = 1;
13}
14
15curoff()
16{
17 if (!_cursoron)
18 return;
19 sync();
20 escseq(ESCD);
21 outchar('l');
22 _cursoron = 0;
23}