diff options
Diffstat (limited to 'gcc/cppexp.c')
-rwxr-xr-x | gcc/cppexp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cppexp.c b/gcc/cppexp.c index bd8e663..65b9760 100755 --- a/gcc/cppexp.c +++ b/gcc/cppexp.c @@ -994,7 +994,7 @@ cpp_parse_expr (pfile) else { new_stack = (struct operation *) xmalloc (new_size); - bcopy ((char *) stack, (char *) new_stack, old_size); + copy_memory ((char *) stack, (char *) new_stack, old_size); } stack = new_stack; top = (struct operation *) ((char *) new_stack + old_size); |