diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2017-10-26 11:34:41 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2017-10-26 11:53:10 +0200 |
| commit | 6fd57ceb7d9441784c90bb99af6a4e9b056445d7 (patch) | |
| tree | 18f956c2e4ab7b4b60b2a3bb93289d5ed493e283 /vm/vmimpl | |
| parent | 75cdcbe1596b8282651910a6701ac6b40926ed95 (diff) | |
vm/vmimpl: add netbsd console stub
Diffstat (limited to 'vm/vmimpl')
| -rw-r--r-- | vm/vmimpl/console_netbsd.go | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/vm/vmimpl/console_netbsd.go b/vm/vmimpl/console_netbsd.go new file mode 100644 index 000000000..dc332833d --- /dev/null +++ b/vm/vmimpl/console_netbsd.go @@ -0,0 +1,12 @@ +// 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 vmimpl + +// Merely to fix build. +const ( + unix_CBAUD = 0 + unix_CRTSCTS = 0 + syscall_TCGETS = 0 + syscall_TCSETS = 0 +) |
