xref: /csrg-svn/lib/libplot/dumb/move.c (revision 15438)
1*15438Sralph #ifndef lint
2*15438Sralph static char sccsid[] = "@(#)move.c	4.1 (Berkeley) 11/10/83";
3*15438Sralph #endif
4*15438Sralph 
5*15438Sralph #include "dumb.h"
6*15438Sralph 
7*15438Sralph move(x,y)
8*15438Sralph int x,y;
9*15438Sralph {
10*15438Sralph 	scale(x, y);
11*15438Sralph 	currentx = x;
12*15438Sralph 	currenty = y;
13*15438Sralph }
14