mirror of
https://github.com/restic/restic.git
synced 2026-02-15 16:48:41 -05: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)
|
|
}
|