diff options
author | Tom Tromey <tromey@redhat.com> | 2003-01-23 02:38:57 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2003-01-23 02:38:57 +0000 |
commit | 850ccfaeaacb41b54c5896b72ed696cd0094a1c1 (patch) | |
tree | e879c6c9a8a2bf18d7383035f84623099296e8eb /gcc/java/java-tree.h | |
parent | bab0b43b1bec1065aa04b62f1657e1fa22c6f091 (diff) | |
download | gcc-850ccfaeaacb41b54c5896b72ed696cd0094a1c1.zip gcc-850ccfaeaacb41b54c5896b72ed696cd0094a1c1.tar.gz gcc-850ccfaeaacb41b54c5896b72ed696cd0094a1c1.tar.bz2 |
java-tree.h: Don't use PARAMS.
* java-tree.h: Don't use PARAMS.
* resource.c: Add prototypes for all functions.
(write_resource_constructor): Use `const char *' to avoid
warning.
From-SVN: r61640
Diffstat (limited to 'gcc/java/java-tree.h')
-rw-r--r-- | gcc/java/java-tree.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gcc/java/java-tree.h b/gcc/java/java-tree.h index ccedb9a..e541e2d 100644 --- a/gcc/java/java-tree.h +++ b/gcc/java/java-tree.h @@ -1299,11 +1299,10 @@ struct rtx_def * java_expand_expr (tree, rtx, enum machine_mode, int); extern void java_inlining_merge_static_initializers (tree, void *); extern void java_inlining_map_static_initializers (tree, void *); -extern void compile_resource_data PARAMS ((char *name, const char *buffer, - int length)); -extern void write_resource_constructor PARAMS ((void)); -extern void compile_resource_file PARAMS ((char *name, const char *filename)); -extern void init_resource_processing PARAMS ((void)); +extern void compile_resource_data (char *name, const char *buffer, int length); +extern void write_resource_constructor (void); +extern void compile_resource_file (char *name, const char *filename); +extern void init_resource_processing (void); #define DECL_FINAL(DECL) DECL_LANG_FLAG_3 (DECL) |