use strindex instead of index
authorceriel <none@none>
Mon, 21 Aug 1989 16:56:15 +0000 (16:56 +0000)
committerceriel <none@none>
Mon, 21 Aug 1989 16:56:15 +0000 (16:56 +0000)
mach/sun3/ce/as.c

index ac86991..8a048ab 100644 (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);