diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2010-10-30 23:02:32 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2010-10-30 23:02:32 +0000 |
commit | b3cded65e92ba4d9b5e5a33fb95c4d551bda9c1b (patch) | |
tree | 69d40fbef2c0c4ee32fe97b7a28b510f2e3c2dbc /ld/ldver.c | |
parent | 7a815afd9b5121ee0f65dc1e1de1c0de6de97679 (diff) |
Notes
Diffstat (limited to 'ld/ldver.c')
-rw-r--r-- | ld/ldver.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/ld/ldver.c b/ld/ldver.c index 48b914357ef2..776c722a197b 100644 --- a/ld/ldver.c +++ b/ld/ldver.c @@ -1,6 +1,6 @@ /* ldver.c -- Print linker version. Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 2000, 2001, 2002, - 2003 Free Software Foundation, Inc. + 2003, 2007 Free Software Foundation, Inc. This file is part of GLD, the Gnu Linker. @@ -18,10 +18,9 @@ along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */ -#include <stdio.h> +#include "sysdep.h" #include "bfd.h" #include "bfdver.h" -#include "sysdep.h" #include "ld.h" #include "ldver.h" @@ -35,11 +34,11 @@ void ldversion (int noisy) { /* Output for noisy == 2 is intended to follow the GNU standards. */ - fprintf (stdout, _("GNU ld version %s\n"), BFD_VERSION_STRING); + fprintf (stdout, _("GNU ld %s\n"), BFD_VERSION_STRING); if (noisy & 2) { - printf (_("Copyright 2005 Free Software Foundation, Inc.\n")); + printf (_("Copyright 2007 Free Software Foundation, Inc.\n")); printf (_("\ This program is free software; you may redistribute it under the terms of\n\ the GNU General Public License. This program has absolutely no warranty.\n")); |