Fix C90 conversion
[deliverable/binutils-gdb.git] / binutils / version.c
CommitLineData
252b5132 1/* version.c -- binutils version information
2da42df6 2 Copyright 1991, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
8c2bc687 3 Free Software Foundation, Inc.
252b5132
RH
4
5This file is part of GNU Binutils.
6
7This program is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 2, or (at your option)
10any later version.
11
12This program is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with this program; if not, write to the Free Software
19Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
20
21#include <stdio.h>
22#include "bfd.h"
6e1a7e9a 23#include "bfdver.h"
252b5132
RH
24#include "bucomm.h"
25
252b5132
RH
26/* Print the version number and copyright information, and exit. This
27 implements the --version option for the various programs. */
28
29void
2da42df6 30print_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);
2da42df6 35 printf (_("Copyright 2003 Free Software Foundation, Inc.\n"));
252b5132
RH
36 printf (_("\
37This program is free software; you may redistribute it under the terms of\n\
38the GNU General Public License. This program has absolutely no warranty.\n"));
39 exit (0);
40}
This page took 0.163935 seconds and 4 git commands to generate.