/*- * Copyright (c) 1983 The Regents of the University of California. * All rights reserved. * * %sccs.include.proprietary.c% */ #ifndef lint static char sccsid[] = "@(#)linmod.c 4.2 (Berkeley) 04/22/91"; #endif /* not lint */ #include linemod(s) char *s; { int i; putc('f',stdout); for(i=0;s[i];)putc(s[i++],stdout); putc('\n',stdout); }