1*13315Ssam #ifndef lint 2*13315Ssam static char sccsid[] = "@(#)label.c 4.1 (Berkeley) 06/27/83"; 3*13315Ssam #endif 4*13315Ssam 5*13315Ssam #include "con.h" 6*13315Ssam label(s) 7*13315Ssam char *s; 8*13315Ssam { 9*13315Ssam int i,c; 10*13315Ssam while((c = *s++) != '\0'){ 11*13315Ssam xnow += 6; 12*13315Ssam spew(c); 13*13315Ssam } 14*13315Ssam return; 15*13315Ssam } 16