diff options
Diffstat (limited to 'src/syscall/asan0.go')
-rw-r--r-- | src/syscall/asan0.go | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/syscall/asan0.go b/src/syscall/asan0.go new file mode 100644 index 0000000..08bc44d --- /dev/null +++ b/src/syscall/asan0.go @@ -0,0 +1,19 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +//go:build !asan + +package syscall + +import ( + "unsafe" +) + +const asanenabled = false + +func asanRead(addr unsafe.Pointer, len int) { +} + +func asanWrite(addr unsafe.Pointer, len int) { +} |