new copyright; att/bsd/shared
[unix-history] / usr / src / lib / libplot / gigi / cont.c
CommitLineData
a78d00dd
KB
1/*-
2 * Copyright (c) 1980 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * %sccs.include.proprietary.c%
dca25f5a
DF
6 */
7
0530172d 8#ifndef lint
a78d00dd
KB
9static char sccsid[] = "@(#)cont.c 5.2 (Berkeley) %G%";
10#endif /* not lint */
0530172d
RC
11
12#include "gigi.h"
13
14cont(xi,yi)
15int xi,yi;
16{
17 currentx = xsc(xi);
18 currenty = ysc(yi);
19 printf("V[%d,%d]",currentx, currenty);
20}