binutils-gdb/binutils/version.c

42 lines
1.6 KiB
C
Raw Normal View History

1999-05-03 09:29:11 +02:00
/* version.c -- binutils version information
Copyright 1991, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
2007 Free Software Foundation, Inc.
1999-05-03 09:29:11 +02:00
2004-01-20 14:08:47 +01:00
This file is part of GNU Binutils.
1999-05-03 09:29:11 +02:00
2004-01-20 14:08:47 +01:00
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
2007-07-05 18:54:46 +02:00
the Free Software Foundation; either version 3, or (at your option)
2004-01-20 14:08:47 +01:00
any later version.
1999-05-03 09:29:11 +02:00
2004-01-20 14:08:47 +01:00
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
1999-05-03 09:29:11 +02:00
2004-01-20 14:08:47 +01:00
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
2007-07-05 18:54:46 +02:00
Foundation, 51 Franklin Street - Fifth Floor, Boston,
MA 02110-1301, USA. */
1999-05-03 09:29:11 +02:00
#include "sysdep.h"
1999-05-03 09:29:11 +02:00
#include "bfd.h"
#include "bucomm.h"
2007-07-05 18:54:46 +02:00
/* Print the version number and copyright information, and exit.
This implements the --version option for the various programs. */
1999-05-03 09:29:11 +02:00
void
print_version (const char *name)
1999-05-03 09:29:11 +02:00
{
/* This output is intended to follow the GNU standards document. */
/* xgettext:c-format */
printf ("GNU %s %s\n", name, BFD_VERSION_STRING);
printf (_("Copyright 2007 Free Software Foundation, Inc.\n"));
1999-05-03 09:29:11 +02:00
printf (_("\
This program is free software; you may redistribute it under the terms of\n\
2007-07-05 18:54:46 +02:00
the GNU General Public License version 3 or (at your option) any later version.\n\
This program has absolutely no warranty.\n"));
1999-05-03 09:29:11 +02:00
exit (0);
}