aboutsummaryrefslogtreecommitdiff
path: root/gcc/ggc-common.c
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>2000-01-17 15:28:05 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>2000-01-17 15:28:05 +0000
commit3fe41456ed2b825719c3f4c5e4bd90c71f1fc677 (patch)
tree7858a169a40f096f95d32ca31da195365adcf856 /gcc/ggc-common.c
parenta94ae8f5dd6e7b921a0169c0471d6a38d49cdca9 (diff)
downloadgcc-3fe41456ed2b825719c3f4c5e4bd90c71f1fc677.zip
gcc-3fe41456ed2b825719c3f4c5e4bd90c71f1fc677.tar.gz
gcc-3fe41456ed2b825719c3f4c5e4bd90c71f1fc677.tar.bz2
ggc-common.c: PROTO -> PARAMS.
* ggc-common.c: PROTO -> PARAMS. * ggc-page.c: Likewise. * ggc-simple.c: Likewise. * ggc.h: Likewise. * global.c: Likewise. * graph.c: Likewise. * gthr-win32.h: Likewise. * haifa-sched.c: Likewise. * halfpic.h: Likewise. * integrate.c: Likewise. * integrate.h: Likewise. * jump.c: Likewise. * lcm.c: Likewise. * local-alloc.c: Likewise. * loop.c: Likewise. * loop.h: Likewise. From-SVN: r31458
Diffstat (limited to 'gcc/ggc-common.c')
-rw-r--r--gcc/ggc-common.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/ggc-common.c b/gcc/ggc-common.c
index 4fd9810..7691926 100644
--- a/gcc/ggc-common.c
+++ b/gcc/ggc-common.c
@@ -51,7 +51,7 @@ struct ggc_root
void *base;
int nelt;
int size;
- void (*cb) PROTO ((void *));
+ void (*cb) PARAMS ((void *));
};
static struct ggc_root *roots;
@@ -117,7 +117,7 @@ void
ggc_add_root (base, nelt, size, cb)
void *base;
int nelt, size;
- void (*cb) PROTO ((void *));
+ void (*cb) PARAMS ((void *));
{
struct ggc_root *x = (struct ggc_root *) xmalloc (sizeof (*x));
@@ -217,7 +217,7 @@ ggc_mark_roots ()
{
char *elt = x->base;
int s = x->size, n = x->nelt;
- void (*cb) PROTO ((void *)) = x->cb;
+ void (*cb) PARAMS ((void *)) = x->cb;
int i;
for (i = 0; i < n; ++i, elt += s)