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