1*48508Sbostic /*- 2*48508Sbostic * Copyright (c) 1980 The Regents of the University of California. 3*48508Sbostic * All rights reserved. 4*48508Sbostic * 5*48508Sbostic * %sccs.include.proprietary.c% 619974Sdist */ 719974Sdist 815495Sralph #ifndef lint 9*48508Sbostic static char sccsid[] = "@(#)point.c 5.2 (Berkeley) 04/22/91"; 10*48508Sbostic #endif /* not lint */ 1115495Sralph 1215495Sralph #include "gigi.h" 1315495Sralph 1415495Sralph point(xi,yi) 1515495Sralph int xi,yi; 1615495Sralph { 1715495Sralph if(xsc(xi)!=currentx || ysc(yi)!=currenty) 1815495Sralph move(xi,yi); 1915495Sralph printf("V[]"); 2015495Sralph } 21