1// Copyright 2018 syzkaller project authors. All rights reserved. 2// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file. 3 4package host 5 6import ( 7 "github.com/google/syzkaller/prog" 8) 9 10func isSupported(c *prog.Syscall, sandbox string) (bool, string) { 11 return false, "" 12} 13