+ else if ( next->stringInit.two == 2 )
+ {
+ dt_data *dp = (dt_data *)next->stringInit.data;
+ bcopy( (void *)(uintptr_t)next->stringInit.name, (void *)out, 32);
+ out += 32;
+ size = dp->length;
+ *(long *)out = size;
+ out += sizeof(long);
+ source = (char *)dp->address;
+ size = (size + 3) & (-4);
+ }