Files
tinygo/src/syscall/errno_other.go
T
Ayke van Laethem a545f17d2e wasm: add support for GOOS=wasip1
This adds true GOOS=wasip1 support in addition to our existing
-target=wasi support. The old support for WASI isn't removed, but should
be treated as deprecated and will likely be removed eventually to reduce
the test burden.
2023-08-17 18:16:54 +02:00

6 lines
111 B
Go

//go:build !wasi && !wasip1 && !darwin
package syscall
func (e Errno) Is(target error) bool { return false }