File: termios_bsd.go

package info (click to toggle)
golang-github-moby-term 0.0~git20221120.abb1982-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bookworm-proposed-updates, sid
  • size: 172 kB
  • sloc: makefile: 2
file content (13 lines) | stat: -rw-r--r-- 208 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
//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
)