Files
llgo/runtime/internal/lib/os/os_wasm.go

11 lines
203 B
Go
Raw Normal View History

2025-04-08 16:50:47 +08:00
package os
// setStickyBit adds ModeSticky to the permission bits of path, non atomic.
func setStickyBit(name string) error {
return nil
}
func Chmod(name string, mode FileMode) error {
return nil
}