11 lines
203 B
Go
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
|
|
}
|