Retro68/gcc/libgo/go/syscall/msan0.go

20 lines
341 B
Go
Raw Normal View History

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