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.
|
2017-10-14 17:57:48 +00:00
|
|
|
_ "github.com/google/syzkaller/sys/akaros"
|
2017-10-02 12:14:48 +00:00
|
|
|
_ "github.com/google/syzkaller/sys/freebsd"
|
2017-09-22 09:09:53 +00:00
|
|
|
_ "github.com/google/syzkaller/sys/fuchsia"
|
2017-09-13 13:34:21 +00:00
|
|
|
_ "github.com/google/syzkaller/sys/linux"
|
2017-10-25 07:27:47 +00:00
|
|
|
_ "github.com/google/syzkaller/sys/netbsd"
|
2017-12-13 12:49:08 +00:00
|
|
|
_ "github.com/google/syzkaller/sys/test"
|
2017-09-24 09:13:37 +00:00
|
|
|
_ "github.com/google/syzkaller/sys/windows"
|
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
|