diff options
Diffstat (limited to 'vendor/golang.org/x/term/term_unix_zos.go')
-rw-r--r-- | vendor/golang.org/x/term/term_unix_zos.go | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/vendor/golang.org/x/term/term_unix_zos.go b/vendor/golang.org/x/term/term_unix_zos.go new file mode 100644 index 0000000..b85ab89 --- /dev/null +++ b/vendor/golang.org/x/term/term_unix_zos.go @@ -0,0 +1,10 @@ +// Copyright 2020 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package term + +import "golang.org/x/sys/unix" + +const ioctlReadTermios = unix.TCGETS +const ioctlWriteTermios = unix.TCSETS |