blob: 59953f1ceed0e3e6f2bd0e9df02cda684c080dcc [file] [log] [blame]
Brad Fitzpatrick51947442016-03-01 22:57:46 +00001// Copyright 2011 The Go Authors. All rights reserved.
Russ Coxc81a0ed2014-09-08 14:05:23 -04002// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5package runtime
6
Keith Randallcd5b1442015-03-11 12:58:47 -07007// These functions are called from C code via cgo/callbacks.go.
Russ Coxc81a0ed2014-09-08 14:05:23 -04008
Russ Coxc81a0ed2014-09-08 14:05:23 -04009// Panic.
10
11func _cgo_panic_internal(p *byte) {
12 panic(gostringnocopy(p))
13}