diff options
Diffstat (limited to 'binutils/arlex.l')
-rw-r--r-- | binutils/arlex.l | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/binutils/arlex.l b/binutils/arlex.l index c1771a55840..ab1ff164e19 100644 --- a/binutils/arlex.l +++ b/binutils/arlex.l @@ -1,7 +1,7 @@ %{ /* arlex.l - Strange script language lexer */ -/* Copyright 1992, 1997, 2000, 2002 Free Software Foundation, Inc. +/* Copyright 1992, 1997, 2000, 2002, 2003 Free Software Foundation, Inc. This file is part of GNU Binutils. @@ -31,7 +31,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #define YY_NO_UNPUT -extern int yylex PARAMS ((void)); +extern int yylex (void); int linenumber; %} @@ -87,5 +87,5 @@ int linenumber; %% #ifndef yywrap /* Needed for lex, though not flex. */ -int yywrap() { return 1; } +int yywrap(void) { return 1; } #endif |