1// Copyright 2016 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//go:build darwin || linux 6 7package cgo 8 9import _ "unsafe" // for go:linkname 10 11// Calls the traceback function passed to SetCgoTraceback. 12 13//go:cgo_import_static x_cgo_callers 14//go:linkname x_cgo_callers x_cgo_callers 15//go:linkname _cgo_callers _cgo_callers 16var x_cgo_callers byte 17var _cgo_callers = &x_cgo_callers 18