mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-16 10:43:29 +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
|
return nil, nil, ErrNotImplemented
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func Symlink(oldname, newname string) error {
|
||||||
|
return ErrNotImplemented
|
||||||
|
}
|
||||||
|
|
||||||
func Readlink(name string) (string, error) {
|
func Readlink(name string) (string, error) {
|
||||||
return "", ErrNotImplemented
|
return "", ErrNotImplemented
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user