github.com/primecitizens/pcz/std@v0.2.1/core/msan/msan.go (about)

     1  // SPDX-License-Identifier: Apache-2.0
     2  // Copyright 2023 The Prime Citizens
     3  
     4  package msan
     5  
     6  import "unsafe"
     7  
     8  func Read(addr unsafe.Pointer, sz uintptr)  {}
     9  func Write(addr unsafe.Pointer, sz uintptr) {}
    10  func Move(dst, src, sz uintptr)             {}