github.com/google/syzkaller@v0.0.0-20240517125934-c0f1611a36d6/sys/sys.go (about)

     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  package sys
     5  
     6  import (
     7  	// Import all targets, so that users only need to import sys.
     8  	_ "github.com/google/syzkaller/sys/darwin/gen"
     9  	_ "github.com/google/syzkaller/sys/freebsd/gen"
    10  	_ "github.com/google/syzkaller/sys/fuchsia/gen"
    11  	_ "github.com/google/syzkaller/sys/linux/gen"
    12  	_ "github.com/google/syzkaller/sys/netbsd/gen"
    13  	_ "github.com/google/syzkaller/sys/openbsd/gen"
    14  	_ "github.com/google/syzkaller/sys/test/gen"
    15  	_ "github.com/google/syzkaller/sys/trusty/gen"
    16  	_ "github.com/google/syzkaller/sys/windows/gen"
    17  )