Deleted Added
full compact
version.c (78828) version.c (89857)
1/* version.c -- binutils version information
1/* version.c -- binutils version information
2 Copyright 1991, 1996, 1997, 1998, 1999, 2000, 2001
2 Copyright 1991, 1996, 1997, 1998, 1999, 2000, 2001, 2002
3 Free Software Foundation, Inc.
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.

--- 6 unchanged lines hidden (view full) ---

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"
23#include "bucomm.h"
24
3 Free Software Foundation, Inc.
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.

--- 6 unchanged lines hidden (view full) ---

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"
23#include "bucomm.h"
24
25/* This is the version numbers for the binutils. They all change in
26 lockstep -- it's easier that way. */
27
28const char *program_version = VERSION;
29
30/* Print the version number and copyright information, and exit. This
31 implements the --version option for the various programs. */
32
33void
34print_version (name)
35 const char *name;
36{
37 /* This output is intended to follow the GNU standards document. */
38 /* xgettext:c-format */
25/* Print the version number and copyright information, and exit. This
26 implements the --version option for the various programs. */
27
28void
29print_version (name)
30 const char *name;
31{
32 /* This output is intended to follow the GNU standards document. */
33 /* xgettext:c-format */
39 printf ("GNU %s %s\n", name, program_version);
40 printf (_("Copyright 1997, 98, 99, 2000, 2001 Free Software Foundation, Inc.\n"));
34 printf ("GNU %s %s\n", name, BFD_VERSION_STRING);
35 printf (_("Copyright 2002 Free Software Foundation, Inc.\n"));
41 printf (_("\
42This program is free software; you may redistribute it under the terms of\n\
43the GNU General Public License. This program has absolutely no warranty.\n"));
44 exit (0);
45}
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}