1package sysx
2
3import (
4	"errors"
5)
6
7// Initial stub version for Solaris. Solaris has a different
8// syscall API from Darwin and Linux for extended attributes;
9// it is also not widely used. It is not exposed at all by the
10// Go syscall package, so we need to implement directly eventually.
11
12var unsupported = errors.New("extended attributes unsupported on Solaris")
13