diff options
Diffstat (limited to 'gas/config/tc-m68kmote.c')
-rw-r--r-- | gas/config/tc-m68kmote.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gas/config/tc-m68kmote.c b/gas/config/tc-m68kmote.c index 53a83c1..8bf73ef 100644 --- a/gas/config/tc-m68kmote.c +++ b/gas/config/tc-m68kmote.c @@ -386,7 +386,7 @@ struct m68k_incant { #define gettwo(x) (((x)->m_opcode)&0xffff) -#ifdef __STDC__ +#if __STDC__ == 1 static char *crack_operand(char *str, struct m68k_op *opP); static int get_num(struct m68k_exp *exp, int ok); @@ -402,7 +402,7 @@ static void s_data2(void); static void s_even(void); static void s_proc(void); -#else /* __STDC__ */ +#else /* not __STDC__ */ static char *crack_operand(); static int get_num(); @@ -418,7 +418,7 @@ static void s_data2(); static void s_even(); static void s_proc(); -#endif /* __STDC__ */ +#endif /* not __STDC__ */ static enum m68k_architecture current_architecture = 0; |