date and time created 83/11/11 15:12:23 by ralph
[unix-history] / usr / src / lib / libplot / dumb / point.c
CommitLineData
88d651a2
RC
1#ifndef lint
2static char sccsid[] = "@(#)point.c 4.1 (Berkeley) %G%";
3#endif
4
5#include "dumb.h"
6
7point(x, y)
8 int x,y;
9{
10 scale(x, y);
11 currentx = x;
12 currenty = y;
13 screenmat[currentx][currenty] = '*';
14}