diff options
author | Damien Doligez <damien.doligez-inria.fr> | 2000-11-23 13:45:03 +0000 |
---|---|---|
committer | Damien Doligez <damien.doligez-inria.fr> | 2000-11-23 13:45:03 +0000 |
commit | 9d1cf09c54f25b91ac1521e43054e4a52d698daf (patch) | |
tree | 4db16fbf049d7309366334f69e47918216977ab9 /otherlibs/str/strstubs.c | |
parent | cb681720eab307945936188efea5f88e3b06661e (diff) |
bcopy -> memmove dans otherlibs
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@3341 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
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: |