mirror of
https://github.com/reactos/syzkaller.git
synced 2024-11-24 11:59:58 +00:00
d4aacfdb59
Bisect is not needed after introduction of Bisecter interface.
15 lines
300 B
Go
15 lines
300 B
Go
// Copyright 2019 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 vcs
|
|
|
|
type freebsd struct {
|
|
*git
|
|
}
|
|
|
|
func newFreeBSD(vm, dir string) *freebsd {
|
|
return &freebsd{
|
|
git: newGit(dir, nil),
|
|
}
|
|
}
|