2
0
mirror of https://github.com/status-im/op-geth.git synced 2025-02-19 02:06:23 +00:00

18 lines
167 B
Go

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