restic/internal/terminal/tcgetpgrp_unix.go

10 lines
168 B
Go
Raw Permalink Normal View History

//go:build unix && !linux
package terminal
import "golang.org/x/sys/unix"
func tcgetpgrp(ttyfd int) (int, error) {
return unix.IoctlGetInt(ttyfd, unix.TIOCGPGRP)
}