aboutsummaryrefslogtreecommitdiff
path: root/gcc/java/builtins.c
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>2003-01-09 23:16:56 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>2003-01-09 23:16:56 +0000
commitd2097937c57963f4bea75df2d0abe691f74de3fe (patch)
treec01acffab8cc0c484f09b1cdd4401847e024105e /gcc/java/builtins.c
parent30028c85159c12c4e8920af0a9111372e56f1636 (diff)
downloadgcc-d2097937c57963f4bea75df2d0abe691f74de3fe.zip
gcc-d2097937c57963f4bea75df2d0abe691f74de3fe.tar.gz
gcc-d2097937c57963f4bea75df2d0abe691f74de3fe.tar.bz2
* All Files: Remove PARAMS macro.
From-SVN: r61133
Diffstat (limited to 'gcc/java/builtins.c')
-rw-r--r--gcc/java/builtins.c24
1 files changed, 11 insertions, 13 deletions
diff --git a/gcc/java/builtins.c b/gcc/java/builtins.c
index eba6fa5..d2de912 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);