date and time created 83/06/27 14:43:18 by sam
[unix-history] / usr / src / lib / libplot / plot / label.c
#ifndef lint
static char sccsid[] = "@(#)label.c 4.1 (Berkeley) %G%";
#endif
#include <stdio.h>
label(s)
char *s;
{
int i;
putc('t',stdout);
for(i=0;s[i];)putc(s[i++],stdout);
putc('\n',stdout);
}