/src/binutils-gdb/binutils/version.c
Line | Count | Source (jump to first uncovered line) |
1 | | /* version.c -- binutils version information |
2 | | Copyright (C) 1991-2023 Free Software Foundation, Inc. |
3 | | |
4 | | This file is part of GNU Binutils. |
5 | | |
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 |
8 | | the Free Software Foundation; either version 3, or (at your option) |
9 | | any later version. |
10 | | |
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. |
15 | | |
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 |
18 | | Foundation, 51 Franklin Street - Fifth Floor, Boston, |
19 | | MA 02110-1301, USA. */ |
20 | | |
21 | | #include "sysdep.h" |
22 | | #include "bfd.h" |
23 | | #include "bucomm.h" |
24 | | |
25 | | /* Print the version number and copyright information, and exit. |
26 | | This implements the --version option for the various programs. */ |
27 | | |
28 | | void |
29 | | print_version (const char *name) |
30 | 0 | { |
31 | | /* This output is intended to follow the GNU standards document. */ |
32 | | /* xgettext:c-format */ |
33 | 0 | printf ("GNU %s %s\n", name, BFD_VERSION_STRING); |
34 | 0 | printf (_("Copyright (C) 2023 Free Software Foundation, Inc.\n")); |
35 | 0 | printf (_("\ |
36 | 0 | This program is free software; you may redistribute it under the terms of\n\ |
37 | 0 | the GNU General Public License version 3 or (at your option) any later version.\n\ |
38 | 0 | This program has absolutely no warranty.\n")); |
39 | 0 | exit (0); |
40 | 0 | } |