diff options
author | Graham Stott <grahams@gcc.gnu.org> | 2002-01-03 07:50:49 +0000 |
---|---|---|
committer | Graham Stott <grahams@gcc.gnu.org> | 2002-01-03 07:50:49 +0000 |
commit | 37b310124a4d3c1fc26315559688d239bb324c9e (patch) | |
tree | cb7640e42c9974b495b671010286599c46ee23f7 /gcc/java/java-tree.h | |
parent | 8e42ace183a257767b2af6cce4a412f4c14e9f68 (diff) | |
download | gcc-37b310124a4d3c1fc26315559688d239bb324c9e.zip gcc-37b310124a4d3c1fc26315559688d239bb324c9e.tar.gz gcc-37b310124a4d3c1fc26315559688d239bb324c9e.tar.bz2 |
class.c (compile_resource_file): Update copyright date.
* class.c (compile_resource_file): Update copyright date.
Constify filename parameter.
java-tree.h: Update copyright date.
(compile_resource_file): Constify filename parameter.
From-SVN: r48503
Diffstat (limited to 'gcc/java/java-tree.h')
-rw-r--r-- | gcc/java/java-tree.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/java/java-tree.h b/gcc/java/java-tree.h index a96a7f7..0c9fcd7 100644 --- a/gcc/java/java-tree.h +++ b/gcc/java/java-tree.h @@ -1,6 +1,7 @@ /* Definitions for parsing and type checking for the GNU compiler for the Java(TM) language. - Copyright (C) 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc. + Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 + Free Software Foundation, Inc. This file is part of GNU CC. @@ -1056,7 +1057,7 @@ extern tree build_dtable_decl PARAMS ((tree)); extern tree build_internal_class_name PARAMS ((tree)); extern tree build_constants_constructor PARAMS ((void)); extern tree build_ref_from_constant_pool PARAMS ((int)); -void compile_resource_file PARAMS ((char *, char *)); +extern void compile_resource_file PARAMS ((char *, const char *)); extern tree build_utf8_ref PARAMS ((tree)); extern tree ident_subst PARAMS ((const char*, int, const char*, int, int, const char*)); |