diff options
author | Ben Elliston <bje@au.ibm.com> | 2005-06-23 11:40:29 +0000 |
---|---|---|
committer | Ben Elliston <bje@au.ibm.com> | 2005-06-23 11:40:29 +0000 |
commit | 8f738565e336b98121168403f9bf2a3820e68d65 (patch) | |
tree | 73506ceca932df6fee59971c096307fe8dbcc67c /gas/config/m68k-parse.y | |
parent | aa20706882383a626fa7d191086d36430ce24bd5 (diff) | |
download | gdb-8f738565e336b98121168403f9bf2a3820e68d65.zip gdb-8f738565e336b98121168403f9bf2a3820e68d65.tar.gz gdb-8f738565e336b98121168403f9bf2a3820e68d65.tar.bz2 |
* config/m68k-parse.h: Use ISO C90.
* config/m68k-parse.y: Likewise.
* config/tc-m68k.h: Likewise.
Diffstat (limited to 'gas/config/m68k-parse.y')
-rw-r--r-- | gas/config/m68k-parse.y | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gas/config/m68k-parse.y b/gas/config/m68k-parse.y index 4dc9e0b..2140dda 100644 --- a/gas/config/m68k-parse.y +++ b/gas/config/m68k-parse.y @@ -1,5 +1,5 @@ /* m68k.y -- bison grammar for m68k operand parsing - Copyright 1995, 1996, 1997, 1998, 2001, 2003, 2004 + Copyright 1995, 1996, 1997, 1998, 2001, 2003, 2004, 2005 Free Software Foundation, Inc. Written by Ken Raeburn and Ian Lance Taylor, Cygnus Support @@ -83,9 +83,9 @@ /* Internal functions. */ -static enum m68k_register m68k_reg_parse PARAMS ((char **)); -static int yylex PARAMS ((void)); -static void yyerror PARAMS ((const char *)); +static enum m68k_register m68k_reg_parse (char **); +static int yylex (void); +static void yyerror (const char *); /* The parser sets fields pointed to by this global variable. */ static struct m68k_op *op; |