diff options
Diffstat (limited to 'otherlibs/str/strstubs.c')
-rw-r--r-- | otherlibs/str/strstubs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/otherlibs/str/strstubs.c b/otherlibs/str/strstubs.c index ef8fe96c9..d4427152a 100644 --- a/otherlibs/str/strstubs.c +++ b/otherlibs/str/strstubs.c @@ -209,7 +209,7 @@ value str_replacement_text(value repl, value orig) /* ML */ case '5': case '6': case '7': case '8': case '9': c -= '0'; len = end_regs[c] - start_regs[c]; - bcopy(&Byte(orig, start_regs[c]), q, len); + memmove (q, &Byte(orig, start_regs[c]), len); q += len; break; default: |