mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-13 07:23:39 +00:00
os: implement Getwd
This commit is contained in:
committed by
GitHub
parent
98fbf7ff25
commit
b1ec8eb2e0
@@ -0,0 +1,10 @@
|
||||
// +build baremetal wasi 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
|
||||
}
|
||||
Reference in New Issue
Block a user