date and time created 83/11/10 14:43:23 by ralph
[unix-history] / usr / src / lib / libplot / dumb / move.c
CommitLineData
f9616018
RC
1#ifndef lint
2static char sccsid[] = "@(#)move.c 4.1 (Berkeley) %G%";
3#endif
4
5#include "dumb.h"
6
7move(x,y)
8int x,y;
9{
10 scale(x, y);
11 currentx = x;
12 currenty = y;
13}