1 #ifndef lint 2 static char sccsid[] = "@(#)point.c 4.1 (Berkeley) 11/10/83"; 3 #endif 4 5 #include "dumb.h" 6 7 point(x, y) 8 int x,y; 9 { 10 scale(x, y); 11 currentx = x; 12 currenty = y; 13 screenmat[currentx][currenty] = '*'; 14 } 15