github.com/primecitizens/pcz/std@v0.2.1/runtime/export.go (about) 1 // SPDX-License-Identifier: Apache-2.0 2 // Copyright 2023 The Prime Citizens 3 4 //go:build pcz 5 6 package runtime 7 8 import ( 9 _ "unsafe" // for go:linkname 10 11 stdgo "github.com/primecitizens/pcz/std/builtin/go" 12 ) 13 14 //go:linkname _getg 15 //go:nosplit 16 func _getg() *stdgo.GHead { 17 return getg() 18 }