235960cb25d939a583cd45494cfd387e20a7cfc6
[unix-history] / usr / src / lib / libplot / dumb / cont.c
#ifndef lint
static char sccsid[] = "@(#)cont.c 4.1 (Berkeley) %G%";
#endif
#include "dumb.h"
cont(x, y)
int x,y;
{
int x1, y1;
x1 = x;
y1 = y;
scale(x1, y1);
dda_line('*', currentx, currenty, x, y);
}