Home | History | Annotate | Download | only in host
      1 // Copyright 2017 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 
      4 // +build akaros
      5 
      6 package host
      7 
      8 import (
      9 	"github.com/google/syzkaller/prog"
     10 )
     11 
     12 func isSupported(c *prog.Syscall, sandbox string) (bool, string) {
     13 	return true, ""
     14 }
     15