aboutsummaryrefslogtreecommitdiff
path: root/gcc/java/jcf-dump.c
diff options
context:
space:
mode:
authorJoseph Myers <jsm28@cam.ac.uk>2002-01-31 19:36:28 +0000
committerJoseph Myers <jsm28@gcc.gnu.org>2002-01-31 19:36:28 +0000
commit8512bbd75204223137ec839744ac3a1b8f4a0a90 (patch)
treeb33f399f7505440e425c660bf1c7aa2b6023128d /gcc/java/jcf-dump.c
parent46af757b0625e7365e791ec910609206de7d8b07 (diff)
downloadgcc-8512bbd75204223137ec839744ac3a1b8f4a0a90.zip
gcc-8512bbd75204223137ec839744ac3a1b8f4a0a90.tar.gz
gcc-8512bbd75204223137ec839744ac3a1b8f4a0a90.tar.bz2
gccbug.in: Follow GNU Coding Standards for --version.
gcc: * gccbug.in: Follow GNU Coding Standards for --version. Use GCC version rather than GNATS version in --version output. gcc/f: * g77spec.c (lang_specific_driver): Follow GNU Coding Standards for --version. gcc/java: * gjavah.c (version), jcf-dump.c (version), jv-scan.c (version): Follow GNU Coding Standards for --version. libjava: * gnu/gcj/convert/Convert.java: Only include one copyright year in --version output. From-SVN: r49372
Diffstat (limited to 'gcc/java/jcf-dump.c')
-rw-r--r--gcc/java/jcf-dump.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/java/jcf-dump.c b/gcc/java/jcf-dump.c
index 16fce90..fefee03 100644
--- a/gcc/java/jcf-dump.c
+++ b/gcc/java/jcf-dump.c
@@ -1,7 +1,7 @@
/* Program to dump out a Java(TM) .class file.
Functionally similar to Sun's javap.
- Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
+ Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
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
@@ -822,8 +822,8 @@ help ()
static void
version ()
{
- printf ("jcf-dump (%s)\n\n", version_string);
- printf ("Copyright (C) 2001 Free Software Foundation, Inc.\n");
+ printf ("jcf-dump (GCC) %s\n\n", version_string);
+ printf ("Copyright (C) 2002 Free Software Foundation, Inc.\n");
printf ("This is free software; see the source for copying conditions. There is NO\n");
printf ("warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n");
exit (0);