From: Thiemo Seufer Date: Tue, 4 Dec 2001 14:29:11 +0000 (+0000) Subject: * arlex.l: Silence compile warnings. X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=83a123fb1f35cbc0d5368a45fea6d4a959520743;p=pf3gnuchains%2Fpf3gnuchains3x.git * arlex.l: Silence compile warnings. * arsup.h: Likewise. Fix formatting. --- diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 8548ec3b71..64d5ef4a8d 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2001-12-04 Thiemo Seufer + + * arlex.l: Silence compile warnings. + * arsup.h: Likewise. Fix formatting. + 2001-12-04 Jakub Jelinek * strings.c: Include config.h before bfd.h. diff --git a/binutils/arlex.l b/binutils/arlex.l index 4e2895cdc9..381b177cc0 100644 --- a/binutils/arlex.l +++ b/binutils/arlex.l @@ -29,6 +29,10 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "libiberty.h" #include "arparse.h" +#define YY_NO_UNPUT + +extern int yylex PARAMS ((void)); + int linenumber; %} diff --git a/binutils/arsup.h b/binutils/arsup.h index 26538beaf9..e875cbf6f3 100644 --- a/binutils/arsup.h +++ b/binutils/arsup.h @@ -22,54 +22,40 @@ struct list { struct list *next; }; -void -maybequit PARAMS ((void)); +void maybequit PARAMS ((void)); -void -prompt PARAMS ((void)); +void prompt PARAMS ((void)); -void -ar_clear PARAMS ((void)); +void ar_clear PARAMS ((void)); -void -ar_replace PARAMS ((struct list *)); +void ar_replace PARAMS ((struct list *)); -void -ar_delete PARAMS ((struct list *)); +void ar_delete PARAMS ((struct list *)); -void -ar_save PARAMS ((void)); +void ar_save PARAMS ((void)); -void -ar_list PARAMS ((void)); +void ar_list PARAMS ((void)); -void -ar_open PARAMS ((char *, int)); +void ar_open PARAMS ((char *, int)); -void -ar_directory PARAMS ((char *, struct list *, char *)); +void ar_directory PARAMS ((char *, struct list *, char *)); -void -ar_addmod PARAMS ((struct list *)); +void ar_addmod PARAMS ((struct list *)); -void -ar_addlib PARAMS ((char *, struct list *)); +void ar_addlib PARAMS ((char *, struct list *)); -void -ar_end PARAMS ((void)); +void ar_end PARAMS ((void)); -void -ar_extract PARAMS ((struct list *)); +void ar_extract PARAMS ((struct list *)); -bfd * -open_inarch PARAMS ((const char *archive_filename, const char *)); +bfd *open_inarch PARAMS ((const char *archive_filename, const char *)); -int -yyparse PARAMS ((void)); +extern int yylex PARAMS ((void)); + +int yyparse PARAMS ((void)); /* Functions from ar.c */ -void -extract_file PARAMS ((bfd * abfd)); +void extract_file PARAMS ((bfd * abfd)); extern int interactive;