5 // Lgetxattr is not supported on platforms other than linux.
6 func Lgetxattr(path string, attr string) ([]byte, error) {
7 return nil, ErrNotSupportedPlatform
10 // Lsetxattr is not supported on platforms other than linux.
11 func Lsetxattr(path string, attr string, data []byte, flags int) error {
12 return ErrNotSupportedPlatform