xref: /csrg-svn/lib/libplot/plot/point.c (revision 48520)
1*48520Sbostic /*-
2*48520Sbostic  * Copyright (c) 1983 The Regents of the University of California.
3*48520Sbostic  * All rights reserved.
4*48520Sbostic  *
5*48520Sbostic  * %sccs.include.proprietary.c%
6*48520Sbostic  */
7*48520Sbostic 
813407Ssam #ifndef lint
9*48520Sbostic static char sccsid[] = "@(#)point.c	4.2 (Berkeley) 04/22/91";
10*48520Sbostic #endif /* not lint */
1113407Ssam 
1213407Ssam #include <stdio.h>
1313407Ssam point(xi,yi){
1413407Ssam 	putc('p',stdout);
1513407Ssam 	putsi(xi);
1613407Ssam 	putsi(yi);
1713407Ssam }
18