...

Source file src/github.com/moby/term/termios_nonbsd.go

Documentation: github.com/moby/term

     1  //go:build !darwin && !freebsd && !netbsd && !openbsd && !windows
     2  // +build !darwin,!freebsd,!netbsd,!openbsd,!windows
     3  
     4  package term
     5  
     6  import (
     7  	"golang.org/x/sys/unix"
     8  )
     9  
    10  const (
    11  	getTermios = unix.TCGETS
    12  	setTermios = unix.TCSETS
    13  )
    14  

View as plain text