summaryrefslogtreecommitdiff
path: root/gcc/java/builtins.c
diff options
context:
space:
mode:
authorghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>2003-01-09 23:16:56 +0000
committerghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>2003-01-09 23:16:56 +0000
commit6852521a239ad1a3c36c1aaf1952c1358853a403 (patch)
treec01acffab8cc0c484f09b1cdd4401847e024105e /gcc/java/builtins.c
parent58ada791d3cb97df7eae8ab3db29f9a5d4149e79 (diff)
downloadgcc-6852521a239ad1a3c36c1aaf1952c1358853a403.tar.gz
* All Files: Remove PARAMS macro.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@61133 138bc75d-0d04-0410-961f-82ee72b054a4
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 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);