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 813404Ssam #ifndef lint 9*48520Sbostic static char sccsid[] = "@(#)linmod.c 4.2 (Berkeley) 04/22/91"; 10*48520Sbostic #endif /* not lint */ 1113404Ssam 1213404Ssam #include <stdio.h> 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