Skip to content

Commit c74c086

Browse files
committed
secp256k1-sys: Add memmove to the wasm-sysroot header
WASM build is currently failing because we don't include `memmove` in our custom WASM header.
1 parent 5e622c3 commit c74c086

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

secp256k1-sys/wasm/wasm-sysroot/string.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
void *memset(void *s, int c, size_t n);
33
void *memcpy(void *dest, const void *src, size_t n);
44
int memcmp(const void *s1, const void *s2, size_t n);
5+
void *memmove(void *dest_str, const void *src_str, size_t numBytes);

0 commit comments

Comments
 (0)