aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/syscall/file_emulated.go
blob: 7b50d4f7e8f02d2942b52779b334e75f0fec505c (plain)
1
2
3
4
5
6
7
8
9
10
//go:build baremetal || (wasm && !wasip1 && !wasip2) || 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
}