don't call setbuf, use optimal size.
[unix-history] / usr / src / old / lib2648 / agoto.c
CommitLineData
eefd1e40
RC
1/* agoto.c 4.1 83/03/09 */
2/*
3 * position the alphanumeric cursor to (x, y).
4 */
5
6#include "2648.h"
7
8agoto(x, y)
9int x, y;
10{
11 char mes[20];
12 sprintf(mes, "\33*dE\33&a%dr%dC", x, y);
13 outstr(mes);
14}
15
16/*
17 * lower left corner of screen.
18 */
19lowleft()
20{
21 outstr("\33F");
22}