diff options
Diffstat (limited to 'gcc/java/builtins.c')
-rw-r--r-- | gcc/java/builtins.c | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/gcc/java/builtins.c b/gcc/java/builtins.c index eba6fa5a50b..d2de9124809 100644 --- a/gcc/java/builtins.c +++ b/gcc/java/builtins.c @@ -61,19 +61,17 @@ enum builtin_type BT_LAST }; -static tree max_builtin PARAMS ((tree, tree)); -static tree min_builtin PARAMS ((tree, tree)); -static tree abs_builtin PARAMS ((tree, tree)); -static tree cos_builtin PARAMS ((tree, tree)); -static tree sin_builtin PARAMS ((tree, tree)); -static tree sqrt_builtin PARAMS ((tree, tree)); - -static tree build_function_call_expr PARAMS ((tree, tree)); -static void define_builtin PARAMS ((enum built_in_function, - const char *, - enum built_in_class, - tree, int)); -static tree define_builtin_type PARAMS ((int, int, int, int, int)); +static tree max_builtin (tree, tree); +static tree min_builtin (tree, tree); +static tree abs_builtin (tree, tree); +static tree cos_builtin (tree, tree); +static tree sin_builtin (tree, tree); +static tree sqrt_builtin (tree, tree); + +static tree build_function_call_expr (tree, tree); +static void define_builtin (enum built_in_function, const char *, + enum built_in_class, tree, int); +static tree define_builtin_type (int, int, int, int, int); |