allow for % in assembler strings

This commit is contained in:
ceriel 1990-03-07 16:24:06 +00:00
parent e3b48b556d
commit 2f9db198e6

View File

@ -40,6 +40,8 @@ char *str;
str = str + 2;
}
break;
case '%': *b_ptr++ = *str;
/* fall through */
default : *b_ptr++ = *str++;
}
}