xref: /original-bsd/lib/libplot/hp7221/label.c (revision 39c8fdd5)
1 #ifndef lint
2 static char sccsid[] = "@(#)label.c	4.1 (Berkeley) 11/10/83";
3 #endif
4 
5 #include "hp7221.h"
6 
7 label(s)
8 char *s;
9 {
10 	printf("~'%s", s);
11 	putchar( ENDOFSTRING );
12 }
13