mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-04 19:17:47 +00:00
os: add stub Symlink for wasm
This doesn't do anything, but it makes tests work.
This commit is contained in:
committed by
Ron Evans
parent
6c9074772c
commit
5a09084c73
@@ -134,6 +134,10 @@ func Pipe() (r *File, w *File, err error) {
|
||||
return nil, nil, ErrNotImplemented
|
||||
}
|
||||
|
||||
func Symlink(oldname, newname string) error {
|
||||
return ErrNotImplemented
|
||||
}
|
||||
|
||||
func Readlink(name string) (string, error) {
|
||||
return "", ErrNotImplemented
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user