mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-03 02:27:48 +00:00
14 lines
218 B
Go
14 lines
218 B
Go
package machine
|
|
|
|
import (
|
|
_ "unsafe"
|
|
)
|
|
|
|
//
|
|
// This file provides access to runtime package that would not otherwise
|
|
// be permitted due to linker dependencies.
|
|
//
|
|
|
|
//go:linkname gosched runtime.Gosched
|
|
func gosched()
|