mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-05 03:27:48 +00:00
11 lines
205 B
Go
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
|
|
}
|