Files
tinygo/src/syscall/file_emulated.go
T
2024-03-02 20:49:56 +01:00

11 lines
234 B
Go

//go:build baremetal || (wasm && !wasip1) || wasm_unknown
// This file emulates some file-related functions that are only available
// under a real operating system.
package syscall
func Getwd() (string, error) {
return "", nil
}