changed the library name
[unix-history] / usr / src / lib / libplot / plot / label.c
CommitLineData
0354e493
SL
1#ifndef lint
2static char sccsid[] = "@(#)label.c 4.1 (Berkeley) %G%";
3#endif
4
5#include <stdio.h>
6label(s)
7char *s;
8{
9 int i;
10 putc('t',stdout);
11 for(i=0;s[i];)putc(s[i++],stdout);
12 putc('\n',stdout);
13}