// Code generated by cmd/cgo; DO NOT EDIT.

//line /home/evie/packages/go/go-1.18-0/go/src/runtime/testdata/testprogcgo/threadpanic.go:1:1
// Copyright 2015 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 !plan9
// +build !plan9

package main

// void start(void);
import _ "unsafe"

func init() {
	register("CgoExternalThreadPanic", CgoExternalThreadPanic)
}

func CgoExternalThreadPanic() {
	( /*line :18:2*/_Cfunc_start /*line :18:8*/)()
	select {}
}

//export gopanic
func gopanic() {
	panic("BOOM")
}
