wasm,wasi: stub runtime.buffered, runtime.getchar

Этот коммит содержится в:
sago35 2022-07-30 16:17:29 +09:00 коммит произвёл Ayke
родитель 7b1e5f6f99
коммит 25c8d3ec3a

Просмотреть файл

@ -49,6 +49,16 @@ func putchar(c byte) {
} }
} }
func getchar() byte {
// dummy, TODO
return 0
}
func buffered() int {
// dummy, TODO
return 0
}
//go:linkname now time.now //go:linkname now time.now
func now() (sec int64, nsec int32, mono int64) { func now() (sec int64, nsec int32, mono int64) {
mono = nanotime() mono = nanotime()