BSD 4_3 release
[unix-history] / usr / src / usr.lib / libplot / hp7221 / move.c
CommitLineData
dca25f5a
DF
1/*
2 * Copyright (c) 1980 Regents of the University of California.
3 * All rights reserved. The Berkeley software License Agreement
4 * specifies the terms and conditions for redistribution.
5 */
6
be30e50d 7#ifndef lint
95f51977 8static char sccsid[] = "@(#)move.c 5.1 (Berkeley) 5/7/85";
dca25f5a 9#endif not lint
be30e50d
RC
10
11#include "hp7221.h"
12
13move(xi,yi)
14int xi,yi;
15{
16 currentx = scaleX(xi);
17 currenty = scaleY(yi);
18 putchar( 'p' );
19 putMBP( currentx, currenty );
20}