xref: /csrg-svn/lib/libplot/plot/linmod.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 
813404Ssam #ifndef lint
9*61399Sbostic static char sccsid[] = "@(#)linmod.c	8.1 (Berkeley) 06/04/93";
1048520Sbostic #endif /* not lint */
1113404Ssam 
1213404Ssam #include <stdio.h>
linemod(s)1313404Ssam linemod(s)
1413404Ssam char *s;
1513404Ssam {
1613404Ssam 	int i;
1713404Ssam 	putc('f',stdout);
1813404Ssam 	for(i=0;s[i];)putc(s[i++],stdout);
1913404Ssam 	putc('\n',stdout);
2013404Ssam }
21