2017-09-13 13:34:21 +00:00
|
|
|
// Copyright 2017 syzkaller project authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package sys
|
|
|
|
|
|
|
|
import (
|
2018-03-08 17:48:26 +00:00
|
|
|
// Import all targets, so that users only need to import sys.
|
2018-08-02 17:07:22 +00:00
|
|
|
_ "github.com/google/syzkaller/sys/akaros/gen"
|
|
|
|
_ "github.com/google/syzkaller/sys/freebsd/gen"
|
|
|
|
_ "github.com/google/syzkaller/sys/fuchsia/gen"
|
|
|
|
_ "github.com/google/syzkaller/sys/linux/gen"
|
|
|
|
_ "github.com/google/syzkaller/sys/netbsd/gen"
|
2018-08-28 17:07:26 +00:00
|
|
|
_ "github.com/google/syzkaller/sys/openbsd/gen"
|
2018-08-02 17:07:22 +00:00
|
|
|
_ "github.com/google/syzkaller/sys/test/gen"
|
|
|
|
_ "github.com/google/syzkaller/sys/windows/gen"
|
2017-09-13 13:34:21 +00:00
|
|
|
)
|