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"
|
|
|
|
_ "github.com/google/syzkaller/sys/test/gen"
|
|
|
|
_ "github.com/google/syzkaller/sys/windows/gen"
|
2017-09-13 13:34:21 +00:00
|
|
|
)
|
2017-09-14 09:47:11 +00:00
|
|
|
|
2017-09-15 08:15:00 +00:00
|
|
|
// Emitted by Makefile.
|
|
|
|
var GitRevision string
|