summaryrefslogtreecommitdiff
path: root/gcc/gengenrtl.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/gengenrtl.c')
-rwxr-xr-xgcc/gengenrtl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/gengenrtl.c b/gcc/gengenrtl.c
index 02cf8d3..21b1cc7 100755
--- a/gcc/gengenrtl.c
+++ b/gcc/gengenrtl.c
@@ -275,11 +275,11 @@ gencode (f)
}
#if defined(USE_C_ALLOCA)
-PTR
+void *
xmalloc (nbytes)
size_t nbytes;
{
- register PTR tmp = (PTR) malloc (nbytes);
+ register void *tmp = malloc (nbytes);
if (!tmp)
{