arudradey's picture
download
raw
804 Bytes
#include "emscripten_internal.h" // for emscripten_memset_big
#if defined(__has_feature) && __has_feature(address_sanitizer)
// build an uninstrumented version of memset
__attribute__((no_sanitize("address"))) void *__musl_memset(void *str, int c, size_t n);
__attribute__((no_sanitize("address"))) void *__memset(void *str, int c, size_t n);
#endif
__attribute__((__weak__)) void *__musl_memset(void *str, int c, size_t n);
__attribute__((__weak__)) void *__memset(void *str, int c, size_t n);
#if defined(EMSCRIPTEN_OPTIMIZE_FOR_OZ)
void *__memset(void *str, int c, size_t n) {
return _emscripten_memset_bulkmem(str, c, n);
}
#else
#define memset __memset
#include "musl/src/string/memset.c"
#undef memset
#endif
weak_alias(__memset, emscripten_builtin_memset);
weak_alias(__memset, memset);

Xet Storage Details

Size:
804 Bytes
·
Xet hash:
6bb614a476a7272dca52a785908b3b349a961e26ab86163f97afb0a0ce4cc8bc

Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.