]> gitweb.factorcode.org Git - factor.git/commitdiff
vm: add VM_C_API declaration for factor_memcpy function
authorSlava Pestov <slava@factorcode.org>
Thu, 7 Jan 2010 06:40:20 +0000 (01:40 -0500)
committerSlava Pestov <slava@factorcode.org>
Thu, 7 Jan 2010 06:40:20 +0000 (01:40 -0500)
vm/utilities.hpp

index 94b9de6f483d98cbaf9fd8a66a64e2fbae65d28c..cea70c0c372e755468ae2a5095b75a55ffa7bdb3 100755 (executable)
@@ -27,5 +27,6 @@ inline static void memset_cell(void *dst, cell pattern, size_t size)
 
 vm_char *safe_strdup(const vm_char *str);
 cell read_cell_hex();
+VM_C_API void *factor_memcpy(void *dst, void *src, size_t len);
 
 }