148525Sbostic /*- 2*61412Sbostic * Copyright (c) 1983, 1993 3*61412Sbostic * The Regents of the University of California. All rights reserved. 448525Sbostic * 548525Sbostic * %sccs.include.proprietary.c% 648525Sbostic */ 748525Sbostic 813367Ssam #ifndef lint 9*61412Sbostic static char sccsid[] = "@(#)label.c 8.1 (Berkeley) 06/04/93"; 1048525Sbostic #endif /* not lint */ 1113367Ssam 1213367Ssam #include "con.h" label(s)1313367Ssamlabel(s) 1413367Ssam char *s; 1513367Ssam { 1613367Ssam int i,c; 1713367Ssam while((c = *s++) != '\0'){ 1813367Ssam xnow += 6; 1913367Ssam spew(c); 2013367Ssam } 2113367Ssam return; 2213367Ssam } 23