1// Copyright 2024 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5// Package asan contains helper functions for manually instrumenting
6// code for the address sanitizer.
7// The runtime package intentionally exports these functions only in the
8// asan build; this package exports them unconditionally but without the
9// "asan" build tag they are no-ops.
10package asan
11