diff options
author | Tom Tromey <tromey@redhat.com> | 2014-01-05 19:49:29 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-01-07 09:17:04 -0700 |
commit | b51f1626f645f272f19105c42cdb436381ee6357 (patch) | |
tree | 3fb8691e121400e93cafaefb89d44bba2393ff09 /binutils/nlmheader.y | |
parent | 3cea37c40cf9219b2842298ed1b37d11389bc1ea (diff) | |
download | gdb-b51f1626f645f272f19105c42cdb436381ee6357.zip gdb-b51f1626f645f272f19105c42cdb436381ee6357.tar.gz gdb-b51f1626f645f272f19105c42cdb436381ee6357.tar.bz2 |
remove uses of PARAMS from binutils
This removes the last uses of PARAMS from binutils.
The two changes in binutils were tested by rebuilding.
I didn't rebuild the gas change but I think it is obviously correct.
2014-01-07 Tom Tromey <tromey@redhat.com>
* coffgrok.h (coff_ofile): Don't use PARAMS.
* nlmheader.y (strerror): Don't use PARAMS.
2014-01-07 Tom Tromey <tromey@redhat.com>
* config/tc-microblaze.h (parse_cons_expression_microblaze): Don't
use PARAMS.
Diffstat (limited to 'binutils/nlmheader.y')
-rw-r--r-- | binutils/nlmheader.y | 4 |
1 files changed, 2 insertions, 2 deletions
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 |