File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 2
2
// Use of this source code is governed by a BSD-style
3
3
// license that can be found in the LICENSE file.
4
4
5
- // +build darwin dragonfly freebsd linux,!appengine netbsd openbsd
5
+ // +build aix darwin dragonfly freebsd linux,!appengine netbsd openbsd
6
6
7
7
// Package terminal provides support functions for dealing with terminals, as
8
8
// commonly found on UNIX systems.
Original file line number Diff line number Diff line change
1
+ // Copyright 2018 The Go Authors. All rights reserved.
2
+ // Use of this source code is governed by a BSD-style
3
+ // license that can be found in the LICENSE file.
4
+
5
+ // +build aix
6
+
7
+ package terminal
8
+
9
+ import "golang.org/x/sys/unix"
10
+
11
+ const ioctlReadTermios = unix .TCGETS
12
+ const ioctlWriteTermios = unix .TCSETS
You can’t perform that action at this time.
0 commit comments