]>
Commit | Line | Data |
---|---|---|
252b5132 | 1 | /* version.c -- binutils version information |
066c2a57 | 2 | Copyright 1991, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, |
aa820537 | 3 | 2006, 2007, 2008, 2009 Free Software Foundation, Inc. |
252b5132 | 4 | |
d99e9f4d | 5 | This file is part of GNU Binutils. |
252b5132 | 6 | |
d99e9f4d NC |
7 | This program is free software; you can redistribute it and/or modify |
8 | it under the terms of the GNU General Public License as published by | |
32866df7 | 9 | the Free Software Foundation; either version 3, or (at your option) |
d99e9f4d | 10 | any later version. |
252b5132 | 11 | |
d99e9f4d NC |
12 | This program is distributed in the hope that it will be useful, |
13 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 | GNU General Public License for more details. | |
252b5132 | 16 | |
d99e9f4d NC |
17 | You should have received a copy of the GNU General Public License |
18 | along with this program; if not, write to the Free Software | |
32866df7 NC |
19 | Foundation, 51 Franklin Street - Fifth Floor, Boston, |
20 | MA 02110-1301, USA. */ | |
252b5132 | 21 | |
3db64b00 | 22 | #include "sysdep.h" |
252b5132 RH |
23 | #include "bfd.h" |
24 | #include "bucomm.h" | |
25 | ||
32866df7 NC |
26 | /* Print the version number and copyright information, and exit. |
27 | This implements the --version option for the various programs. */ | |
252b5132 RH |
28 | |
29 | void | |
2da42df6 | 30 | print_version (const char *name) |
252b5132 RH |
31 | { |
32 | /* This output is intended to follow the GNU standards document. */ | |
33 | /* xgettext:c-format */ | |
6a8c2b0d | 34 | printf ("GNU %s %s\n", name, BFD_VERSION_STRING); |
43123e98 | 35 | printf (_("Copyright 2009 Free Software Foundation, Inc.\n")); |
252b5132 RH |
36 | printf (_("\ |
37 | This program is free software; you may redistribute it under the terms of\n\ | |
32866df7 NC |
38 | the GNU General Public License version 3 or (at your option) any later version.\n\ |
39 | This program has absolutely no warranty.\n")); | |
252b5132 RH |
40 | exit (0); |
41 | } |