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