fuzz-walker/walker/walkers/ioctlFuzz/fuzz.go
Vincent Batts 66e91e3ddf
default to compile in, but also allow plugins
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2018-06-06 12:29:33 -04:00

17 lines
232 B
Go

package ioctlFuzz
import (
"os"
"git.thisco.de/vbatts/fuzz-walker/walker"
)
func init() {
walker.RegisterFuzzFunc(Name, FuzzFunc)
}
const Name = "ioctlFuzz"
func FuzzFunc(path string, info os.FileInfo) error {
return nil
}