diff options
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 5 | ||||
-rw-r--r-- | binutils/coffgrok.h | 4 | ||||
-rw-r--r-- | binutils/nlmheader.y | 4 |
3 files changed, 9 insertions, 4 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 541de44..8afc4a2 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2014-01-07 Tom Tromey <tromey@redhat.com> + + * coffgrok.h (coff_ofile): Don't use PARAMS. + * nlmheader.y (strerror): Don't use PARAMS. + 2013-12-31 Nick Clifton <nickc@redhat.com> * objcopy.c (dump_sections): New list. diff --git a/binutils/coffgrok.h b/binutils/coffgrok.h index 44a49e2..fd4a952 100644 --- a/binutils/coffgrok.h +++ b/binutils/coffgrok.h @@ -1,5 +1,5 @@ /* coffgrok.h - Copyright 2001, 2002, 2003, 2005, 2007 Free Software Foundation, Inc. + Copyright 2001, 2002, 2003, 2005, 2007, 2014 Free Software Foundation, Inc. This file is part of GNU Binutils. @@ -223,4 +223,4 @@ struct coff_sfile struct coff_sfile *sfile; }; -struct coff_ofile *coff_grok PARAMS ((bfd *)); +struct coff_ofile *coff_grok (bfd *); diff --git a/binutils/nlmheader.y b/binutils/nlmheader.y index 86744c4..9550fe5 100644 --- a/binutils/nlmheader.y +++ b/binutils/nlmheader.y @@ -1,6 +1,6 @@ %{/* nlmheader.y - parse NLM header specification keywords. Copyright 1993, 1994, 1995, 1997, 1998, 2001, 2002, 2003, 2005, 2007, - 2010 Free Software Foundation, Inc. + 2010, 2014 Free Software Foundation, Inc. This file is part of GNU Binutils. @@ -494,7 +494,7 @@ string_list: /* If strerror is just a macro, we want to use the one from libiberty since it will handle undefined values. */ #undef strerror -extern char *strerror PARAMS ((int)); +extern char *strerror (int); /* The lexer is simple, too simple for flex. Keywords are only recognized at the start of lines. Everything else must be an |