]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - binutils/version.c
bfd/
[thirdparty/binutils-gdb.git] / binutils / version.c
1 /* version.c -- binutils version information
2 Copyright 1991, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
3 2007 Free Software Foundation, Inc.
4
5 This file is part of GNU Binutils.
6
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
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
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.
16
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
19 Foundation, 51 Franklin Street - Fifth Floor, Boston, 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. This
26 implements the --version option for the various programs. */
27
28 void
29 print_version (const char *name)
30 {
31 /* This output is intended to follow the GNU standards document. */
32 /* xgettext:c-format */
33 printf ("GNU %s %s\n", name, BFD_VERSION_STRING);
34 printf (_("Copyright 2007 Free Software Foundation, Inc.\n"));
35 printf (_("\
36 This program is free software; you may redistribute it under the terms of\n\
37 the GNU General Public License. This program has absolutely no warranty.\n"));
38 exit (0);
39 }