use strindex instead of index

This commit is contained in:
ceriel 1989-08-21 16:56:15 +00:00
parent 8ee1e318a3
commit 4c0ea89fe0

View file

@ -21,7 +21,7 @@ process_operand( str, op)
register char *str;
register struct t_operand *op;
{
char *glob_lbl();
char *glob_lbl(), *strindex();
op->type = 0;
@ -46,7 +46,7 @@ register struct t_operand *op;
op->lbl = NULL;
break;
case '(' : if ( index( str+1, ',') == NULL)
case '(' : if ( strindex( str+1, ',') == NULL)
if ( is_reg( str+1)) {
op->reg = reg_val( str+1);