diff options
author | Thiemo Seufer <ths@networkno.de> | 2001-12-04 14:29:11 +0000 |
---|---|---|
committer | Thiemo Seufer <ths@networkno.de> | 2001-12-04 14:29:11 +0000 |
commit | 956c53ee2897f62a5108ebc8833bd280ab73b68e (patch) | |
tree | a7834c272290a9ec04e5ebde4636e3e5fe18fa15 /binutils | |
parent | 7496292d882a21b67db64b9969107586d6970002 (diff) | |
download | gdb-956c53ee2897f62a5108ebc8833bd280ab73b68e.zip gdb-956c53ee2897f62a5108ebc8833bd280ab73b68e.tar.gz gdb-956c53ee2897f62a5108ebc8833bd280ab73b68e.tar.bz2 |
* arlex.l: Silence compile warnings.
* arsup.h: Likewise. Fix formatting.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 5 | ||||
-rw-r--r-- | binutils/arlex.l | 4 | ||||
-rw-r--r-- | binutils/arsup.h | 50 |
3 files changed, 27 insertions, 32 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 8548ec3..64d5ef4 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2001-12-04 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de> + + * arlex.l: Silence compile warnings. + * arsup.h: Likewise. Fix formatting. + 2001-12-04 Jakub Jelinek <jakub@redhat.com> * strings.c: Include config.h before bfd.h. diff --git a/binutils/arlex.l b/binutils/arlex.l index 4e2895c..381b177 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 26538be..e875cbf 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; |