1*19978Sdist /* 2*19978Sdist * Copyright (c) 1980 Regents of the University of California. 3*19978Sdist * All rights reserved. The Berkeley software License Agreement 4*19978Sdist * specifies the terms and conditions for redistribution. 5*19978Sdist */ 6*19978Sdist 715471Sralph #ifndef lint 8*19978Sdist static char sccsid[] = "@(#)label.c 5.1 (Berkeley) 05/07/85"; 9*19978Sdist #endif not lint 1015471Sralph 1115471Sralph #include "hp7221.h" 1215471Sralph 1315471Sralph label(s) 1415471Sralph char *s; 1515471Sralph { 1615471Sralph printf("~'%s", s); 1715471Sralph putchar( ENDOFSTRING ); 1815471Sralph } 19