Files
loki/vendor/github.com/moby/term/termios_bsd.go
renovate[bot] 0ad17ebcf4 fix(deps): update module github.com/influxdata/telegraf to v1.33.0 (#15456)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Paul Rogers <paul.rogers@grafana.com>
Co-authored-by: Trevor Whitney <trevorjwhitney@gmail.com>
2024-12-18 19:21:17 -05:00

14 lines
208 B
Go

//go:build darwin || freebsd || openbsd || netbsd
// +build darwin freebsd openbsd netbsd
package term
import (
"golang.org/x/sys/unix"
)
const (
getTermios = unix.TIOCGETA
setTermios = unix.TIOCSETA
)