github.com/neugram/ng@v0.0.0-20180309130942-d472ff93d872/eval/shell/ioctl_bsd.go (about) 1 // Copyright 2015 The Neugram 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 darwin 6 7 package shell 8 9 import "syscall" 10 11 const ( 12 _TIOCGETS = ioctlRequest(syscall.TIOCGETA) 13 _TIOCSETS = ioctlRequest(syscall.TIOCSETA) 14 )