xref: /csrg-svn/lib/libplot/imagen/move.c (revision 24998)
1*24998Ssam /*
2*24998Ssam  * Copyright (c) 1985 Regents of the University of California.
3*24998Ssam  * All rights reserved.  The Berkeley software License Agreement
4*24998Ssam  * specifies the terms and conditions for redistribution.
5*24998Ssam  */
6*24998Ssam 
7*24998Ssam #ifndef lint
8*24998Ssam static char sccsid[] = "@(#)move.c	5.1 (Berkeley) 09/21/85";
9*24998Ssam #endif not lint
10*24998Ssam 
11*24998Ssam #include "imp.h"
12*24998Ssam move(xi,yi){
13*24998Ssam         imPx = xi;
14*24998Ssam         imPy = yi;
15*24998Ssam }
16