summaryrefslogtreecommitdiffstats
path: root/otherlibs/labltk/support/cltkMisc.c
diff options
context:
space:
mode:
authorDamien Doligez <damien.doligez-inria.fr>2000-11-23 13:45:03 +0000
committerDamien Doligez <damien.doligez-inria.fr>2000-11-23 13:45:03 +0000
commit9d1cf09c54f25b91ac1521e43054e4a52d698daf (patch)
tree4db16fbf049d7309366334f69e47918216977ab9 /otherlibs/labltk/support/cltkMisc.c
parentcb681720eab307945936188efea5f88e3b06661e (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/labltk/support/cltkMisc.c')
-rw-r--r--otherlibs/labltk/support/cltkMisc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/otherlibs/labltk/support/cltkMisc.c b/otherlibs/labltk/support/cltkMisc.c
index 2640427a7..f16928fb8 100644
--- a/otherlibs/labltk/support/cltkMisc.c
+++ b/otherlibs/labltk/support/cltkMisc.c
@@ -50,7 +50,7 @@ char *string_to_c(value s)
{
int l = string_length(s);
char *res = stat_alloc(l + 1);
- bcopy(String_val(s),res,l);
+ memmove (res, String_val (s), l);
res[l] = '\0';
return res;
}