mirror of
https://github.com/restic/restic.git
synced 2025-01-03 13:45:20 +00:00
12 lines
153 B
Go
12 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)
|
|
}
|