From 360caa08bb3ff5f00a48e9f68362afb9ce2ac37a Mon Sep 17 00:00:00 2001 From: ceriel Date: Mon, 21 Aug 1989 17:03:05 +0000 Subject: [PATCH] use strindex instead of index --- mach/m68020/ce/as.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mach/m68020/ce/as.c b/mach/m68020/ce/as.c index ac869915b..8a048abef 100644 --- a/mach/m68020/ce/as.c +++ b/mach/m68020/ce/as.c @@ -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); -- 2.34.1