diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-01-09 23:16:56 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-01-09 23:16:56 +0000 |
commit | 6852521a239ad1a3c36c1aaf1952c1358853a403 (patch) | |
tree | c01acffab8cc0c484f09b1cdd4401847e024105e /gcc/java/boehm.c | |
parent | 58ada791d3cb97df7eae8ab3db29f9a5d4149e79 (diff) | |
download | gcc-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/boehm.c')
-rw-r--r-- | gcc/java/boehm.c | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/gcc/java/boehm.c b/gcc/java/boehm.c index f38ee78c29d..8bf76502c93 100644 --- a/gcc/java/boehm.c +++ b/gcc/java/boehm.c @@ -34,16 +34,11 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */ #include "parse.h" #include "toplev.h" -static void mark_reference_fields PARAMS ((tree, - unsigned HOST_WIDE_INT *, - unsigned HOST_WIDE_INT *, - unsigned int, - int *, int *, - int *, - HOST_WIDE_INT *)); -static void set_bit PARAMS ((unsigned HOST_WIDE_INT *, - unsigned HOST_WIDE_INT *, - unsigned int)); +static void mark_reference_fields (tree, unsigned HOST_WIDE_INT *, + unsigned HOST_WIDE_INT *, unsigned int, + int *, int *, int *, HOST_WIDE_INT *); +static void set_bit (unsigned HOST_WIDE_INT *, unsigned HOST_WIDE_INT *, + unsigned int); /* Treat two HOST_WIDE_INT's as a contiguous bitmap, with bit 0 being the least significant. This function sets bit N in the bitmap. */ |