Fix function signature for memmove to prevent errors when compiling C++ while targeting wasm (#5996)

This commit is contained in:
jimhub
2025-12-09 09:28:32 -07:00
committed by GitHub
parent a3f189e896
commit effdacd13b

View File

@@ -8,7 +8,7 @@ extern "C" {
void *memcpy(void *, const void *, size_t);
void *memset(void *, int, size_t);
void *memmove(void *, void *, size_t);
void *memmove(void *, const void *, size_t);
int memcmp(const void *, const void *, size_t);
void *memchr(const void *, int, size_t);