extend stdlib to allow import of more packages (#1099)

* stdlib: extend stdlib to allow import of more packages
This commit is contained in:
Cornel
2020-06-23 12:56:28 +03:00
committed by GitHub
parent de45da5df4
commit 720a54a0fe
16 changed files with 549 additions and 13 deletions
+4
View File
@@ -14,3 +14,7 @@ func (f *Func) Name() string {
func Caller(skip int) (pc uintptr, file string, line int, ok bool) {
return 0, "", 0, false
}
func Stack(buf []byte, all bool) int {
return 0
}