summaryrefslogtreecommitdiffstats
path: root/gcc/ggc-common.c
diff options
context:
space:
mode:
authorghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>2000-01-17 15:28:05 +0000
committerghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>2000-01-17 15:28:05 +0000
commit38b9004f47abbfee75df3dba53f7a644203fdbf6 (patch)
tree7858a169a40f096f95d32ca31da195365adcf856 /gcc/ggc-common.c
parent929efc7f759e1f5725c3e6349f92c28193d8f432 (diff)
downloadppe42-gcc-38b9004f47abbfee75df3dba53f7a644203fdbf6.tar.gz
ppe42-gcc-38b9004f47abbfee75df3dba53f7a644203fdbf6.zip
* 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31458 138bc75d-0d04-0410-961f-82ee72b054a4
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 4fd9810e633..7691926d43e 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)
OpenPOWER on IntegriCloud