mirror of
https://github.com/golang/term.git
synced 2026-02-08 11:46:05 +03:00
Breaks FreeBSD build of subrepo for non-tip users. ««« original CL description go.crypto/ssh/terminal: enable freebsd build syscall.Termios, which was the only thing breaking the build, is available in go tip now (https://code.google.com/p/go/source/detail?r=873d664b00ec) R=golang-codereviews, bradfitz CC=golang-codereviews https://golang.org/cl/51690043 »»» R=golang-codereviews, dave CC=golang-codereviews https://golang.org/cl/51100044
13 lines
299 B
Go
13 lines
299 B
Go
// Copyright 2013 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.
|
|
|
|
// +build darwin
|
|
|
|
package terminal
|
|
|
|
import "syscall"
|
|
|
|
const ioctlReadTermios = syscall.TIOCGETA
|
|
const ioctlWriteTermios = syscall.TIOCSETA
|