xref: /csrg-svn/lib/libplot/plot/cont.c (revision 61399)
148520Sbostic /*-
2*61399Sbostic  * Copyright (c) 1983, 1993
3*61399Sbostic  *	The Regents of the University of California.  All rights reserved.
448520Sbostic  *
548520Sbostic  * %sccs.include.proprietary.c%
648520Sbostic  */
748520Sbostic 
813399Ssam #ifndef lint
9*61399Sbostic static char sccsid[] = "@(#)cont.c	8.1 (Berkeley) 06/04/93";
1048520Sbostic #endif /* not lint */
1113399Ssam 
1213399Ssam #include <stdio.h>
cont(xi,yi)1313399Ssam cont(xi,yi){
1413399Ssam 	putc('n',stdout);
1513399Ssam 	putsi(xi);
1613399Ssam 	putsi(yi);
1713399Ssam }
18