#ifdef UNSAFE_BUFFERS_BUILD
#pragma allow_unsafe_buffers
#endif
#include "third_party/blink/renderer/platform/wtf/atomic_operations.h"
namespace WTF {
namespace {
template <typename AlignmentType>
void AtomicReadMemcpyImpl(void* to, const void* from, size_t bytes) { … }
template <typename AlignmentType>
void AtomicWriteMemcpyImpl(void* to, const void* from, size_t bytes) { … }
template <typename AlignmentType>
void AtomicMemzeroImpl(void* buf, size_t bytes) { … }
}
void AtomicReadMemcpy(void* to, const void* from, size_t bytes) { … }
void AtomicWriteMemcpy(void* to, const void* from, size_t bytes) { … }
void AtomicMemzero(void* buf, size_t bytes) { … }
}