Files
llgo/runtime/internal/lib/os/os_wasm.go
2025-04-11 16:28:44 +08:00

11 lines
203 B
Go

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
}