blob: 0304d949a823a5f6fa4b3deeb68c07d4432bdfc6 [file] [log] [blame]
// Copyright 2018 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.
// +build linux,!386,!amd64,!arm,!arm64 !linux,!fuchsia
package runtime
// A dummy version of inVDSO for targets that don't use a VDSO.
func inVDSO(pc uintptr) bool {
return false
}