30 lines
741 B
C
30 lines
741 B
C
static char sccsid[] = "@(#)10 1.1 src/bos/usr/ccs/lib/libplot/linmod.c, libplot, bos411, 9428A410j 9/30/89 15:33:46";
|
|
/*
|
|
* COMPONENT_NAME: cmdgraf
|
|
*
|
|
* FUNCTIONS: linemod
|
|
*
|
|
* ORIGINS: 4,10,27
|
|
*
|
|
* This module contains IBM CONFIDENTIAL code. -- (IBM
|
|
* Confidential Restricted when combined with the aggregated
|
|
* modules for this product)
|
|
* SOURCE MATERIALS
|
|
* (C) COPYRIGHT International Business Machines Corp. 1985, 1989
|
|
* All Rights Reserved
|
|
*
|
|
* US Government Users Restricted Rights - Use, duplication or
|
|
* disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
|
|
*
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
linemod(s)
|
|
char *s;
|
|
{
|
|
int i;
|
|
putc('f',stdout);
|
|
for(i=0;s[i];)putc(s[i++],stdout);
|
|
putc('\n',stdout);
|
|
}
|