ONNX
security
malware-detection
Vigil / source /pkg /compactscan /linkcount_other.go
turentomer's picture
Publish self-contained Vigil distribution
d2507b5 verified
Raw
History Blame Contribute Delete
221 Bytes
//go:build !unix && !windows
package compactscan
import (
"errors"
"os"
)
func openedHardLinkCount(_ *os.File, _ os.FileInfo) (uint64, error) {
return 0, errors.New("hard-link count unavailable on this platform")
}