2
0
mirror of https://github.com/status-im/op-geth.git synced 2025-01-16 01:34:16 +00:00

16 lines
162 B
Go
Raw Normal View History

package fuse
import "syscall"
const (
ENOATTR = Errno(syscall.ENOATTR)
)
const (
errNoXattr = ENOATTR
)
func init() {
errnoNames[errNoXattr] = "ENOATTR"
}