mirror of
https://github.com/octoleo/restic.git
synced 2024-11-27 07:16:40 +00:00
13 lines
153 B
Go
13 lines
153 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package fs
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
func lchown(name string, uid, gid int) error {
|
|
return os.Lchown(name, uid, gid)
|
|
}
|