20 lines
341 B
Go
Raw Normal View History

// Copyright 2015 The Go Authors. All rights reserved.
2012-03-28 01:13:14 +02:00
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
2017-04-10 13:32:00 +02:00
// +build !msan
2015-08-28 17:33:40 +02:00
package syscall
2017-04-10 13:32:00 +02:00
import (
"unsafe"
)
const msanenabled = false
func msanRead(addr unsafe.Pointer, len int) {
}
func msanWrite(addr unsafe.Pointer, len int) {
}