mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-05 19:43:44 +00:00
1e13c6d18f
Signed-off-by: deadprogram <ron@hybridgroup.com>
11 lines
234 B
Go
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
|
|
}
|