diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2000-01-11 23:27:40 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2000-01-11 23:27:40 +0000 |
commit | 3d994c6bef1ee2f790d5682d57977b2d61096726 (patch) | |
tree | d38469d11e239e057646171b9f1320f4dfe9a82a /gcc/bitmap.c | |
parent | d0af450df245b398eafc4338bc064e94801bde1e (diff) | |
download | gcc-3d994c6bef1ee2f790d5682d57977b2d61096726.zip gcc-3d994c6bef1ee2f790d5682d57977b2d61096726.tar.gz gcc-3d994c6bef1ee2f790d5682d57977b2d61096726.tar.bz2 |
alias.c: PROTO -> PARAMS.
* alias.c: PROTO -> PARAMS.
* basic-block.h: Likewise.
* bitmap.c: Likewise.
* bitmap.h: Likewise.
* builtins.c: Likewise.
* c-aux-info.c: Likewise.
* caller-save.c: Likewise.
* calls.c: Likewise.
From-SVN: r31338
Diffstat (limited to 'gcc/bitmap.c')
-rw-r--r-- | gcc/bitmap.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/bitmap.c b/gcc/bitmap.c index 37815e6..f43965c 100644 --- a/gcc/bitmap.c +++ b/gcc/bitmap.c @@ -1,5 +1,5 @@ /* Functions to support general ended bitmaps. - Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc. + Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation, Inc. This file is part of GNU CC. @@ -42,11 +42,11 @@ static int bitmap_obstack_init = FALSE; bitmap_element bitmap_zero; /* An element of all zero bits. */ bitmap_element *bitmap_free; /* Freelist of bitmap elements. */ -static void bitmap_element_free PROTO((bitmap, bitmap_element *)); -static bitmap_element *bitmap_element_allocate PROTO((void)); -static int bitmap_element_zerop PROTO((bitmap_element *)); -static void bitmap_element_link PROTO((bitmap, bitmap_element *)); -static bitmap_element *bitmap_find_bit PROTO((bitmap, unsigned int)); +static void bitmap_element_free PARAMS ((bitmap, bitmap_element *)); +static bitmap_element *bitmap_element_allocate PARAMS ((void)); +static int bitmap_element_zerop PARAMS ((bitmap_element *)); +static void bitmap_element_link PARAMS ((bitmap, bitmap_element *)); +static bitmap_element *bitmap_find_bit PARAMS ((bitmap, unsigned int)); /* Free a bitmap element */ |