diff options
Diffstat (limited to 'binutils/arparse.y')
-rw-r--r-- | binutils/arparse.y | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/binutils/arparse.y b/binutils/arparse.y index cf0ece1..d54de24 100644 --- a/binutils/arparse.y +++ b/binutils/arparse.y @@ -1,7 +1,8 @@ %{ /* arparse.y - Stange script language parser */ -/* Copyright 1992, 1993, 1995, 1997, 1999 Free Software Foundation, Inc. +/* Copyright 1992, 1993, 1995, 1997, 1999, 2003 + Free Software Foundation, Inc. This file is part of GNU Binutils. @@ -29,8 +30,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "bucomm.h" #include "arsup.h" extern int verbose; -extern int yylex PARAMS ((void)); -static int yyerror PARAMS ((const char *)); +extern int yylex (void); +static int yyerror (const char *); %} %union { @@ -193,8 +194,7 @@ verbose_command: %% static int -yyerror (x) - const char *x ATTRIBUTE_UNUSED; +yyerror (const char *x ATTRIBUTE_UNUSED) { extern int linenumber; |