mirror of
https://github.com/restic/restic.git
synced 2025-10-19 23:53:21 +00:00
9 lines
174 B
Go
9 lines
174 B
Go
//go:build unix && !aix
|
|
|
|
package terminal
|
|
|
|
import "golang.org/x/sys/unix"
|
|
|
|
func tcsetpgrp(fd int, pid int) error {
|
|
return unix.IoctlSetPointerInt(fd, unix.TIOCSPGRP, pid)
|
|
}
|