* arlex.l: Silence compile warnings.

* arsup.h: Likewise. Fix formatting.
This commit is contained in:
Thiemo Seufer 2001-12-04 14:29:11 +00:00
parent 7496292d88
commit 956c53ee28
3 changed files with 27 additions and 32 deletions

View File

@ -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.

View File

@ -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;
%}

View File

@ -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;