date and time created 83/11/10 14:44:31 by ralph
[unix-history] / usr / src / lib / libplot / dumb / point.c
#ifndef lint
static char sccsid[] = "@(#)point.c 4.1 (Berkeley) %G%";
#endif
#include "dumb.h"
point(x, y)
int x,y;
{
scale(x, y);
currentx = x;
currenty = y;
screenmat[currentx][currenty] = '*';
}