ONNX
security
malware-detection
File size: 221 Bytes
d2507b5
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
//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")
}