1*19971Sdist /* 2*19971Sdist * Copyright (c) 1980 Regents of the University of California. 3*19971Sdist * All rights reserved. The Berkeley software License Agreement 4*19971Sdist * specifies the terms and conditions for redistribution. 5*19971Sdist */ 6*19971Sdist 715440Sralph #ifndef lint 8*19971Sdist static char sccsid[] = "@(#)point.c 5.1 (Berkeley) 05/07/85"; 9*19971Sdist #endif not lint 1015440Sralph 1115440Sralph #include "dumb.h" 1215440Sralph 1315440Sralph point(x, y) 1415440Sralph int x,y; 1515440Sralph { 1615440Sralph scale(x, y); 1715440Sralph currentx = x; 1815440Sralph currenty = y; 1915440Sralph screenmat[currentx][currenty] = '*'; 2015440Sralph } 21