xref: /csrg-svn/lib/libplot/bitgraph/label.c (revision 15417)
1*15417Sralph #ifndef lint
2*15417Sralph static char sccsid[] = "@(#)label.c	4.1 (Berkeley) 11/10/83";
3*15417Sralph #endif
4*15417Sralph 
5*15417Sralph label(s)
6*15417Sralph char *s;
7*15417Sralph {
8*15417Sralph 	printf("%s", s);
9*15417Sralph }
10