summaryrefslogtreecommitdiff
path: root/gcc/cpphash.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/cpphash.c')
-rwxr-xr-xgcc/cpphash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cpphash.c b/gcc/cpphash.c
index 2ce8a3c..2ae3ad6 100755
--- a/gcc/cpphash.c
+++ b/gcc/cpphash.c
@@ -182,7 +182,7 @@ install (name, len, type, ivalue, value, hash)
else
hp->value.cpval = value;
hp->name = ((U_CHAR *) hp) + sizeof (HASHNODE);
- bcopy (name, hp->name, len);
+ copy_memory (name, hp->name, len);
hp->name[len] = 0;
return hp;
}