Files
tinygo/src/syscall/file_emulated.go
T
2022-12-19 23:20:11 +01:00

11 lines
205 B
Go

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