mirror of
https://github.com/octoleo/restic.git
synced 2024-11-02 19:49:44 +00:00
27 lines
631 B
Go
27 lines
631 B
Go
// +build !darwin
|
|
|
|
package syscallx
|
|
|
|
// This file just contains wrappers for platforms that already have
|
|
// the right stuff in golang.org/x/sys/unix.
|
|
|
|
import (
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
func Getxattr(path string, attr string, dest []byte) (sz int, err error) {
|
|
return unix.Getxattr(path, attr, dest)
|
|
}
|
|
|
|
func Listxattr(path string, dest []byte) (sz int, err error) {
|
|
return unix.Listxattr(path, dest)
|
|
}
|
|
|
|
func Setxattr(path string, attr string, data []byte, flags int) (err error) {
|
|
return unix.Setxattr(path, attr, data, flags)
|
|
}
|
|
|
|
func Removexattr(path string, attr string) (err error) {
|
|
return unix.Removexattr(path, attr)
|
|
}
|