14 lines
227 B
C
14 lines
227 B
C
#ifndef lint
|
|
static char sccsid[] = "@(#)label.c 1.1 94/10/31 SMI"; /* from UCB 4.1 6/27/83 */
|
|
#endif
|
|
|
|
#include <stdio.h>
|
|
label(s)
|
|
char *s;
|
|
{
|
|
int i;
|
|
putc('t',stdout);
|
|
for(i=0;s[i];)putc(s[i++],stdout);
|
|
putc('\n',stdout);
|
|
}
|