Files
tinygo/src/syscall/errno_other.go
T
Ayke van Laethem 0087d4c6bf syscall: use wasi-libc tables for wasm/js target
Instead of using fake tables for errno and others, use the ones that
correspond to wasi-libc.
2024-11-19 07:51:58 +01:00

6 lines
109 B
Go

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