aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/runtime/extern.go
blob: f4e7c002c4a0849687ddd6ca1abf12031edcb5d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package runtime

func Callers(skip int, pc []uintptr) int {
	return 0
}

// buildVersion is the Tinygo tree's version string at build time.
//
// This is set by the linker.
var buildVersion string

// Version returns the Tinygo tree's version string.
// It is the same as goenv.Version().
func Version() string {
	return buildVersion
}