summaryrefslogtreecommitdiff
path: root/vendor/github.com/onsi/ginkgo/internal/remote/output_interceptor_linux.go
blob: 29add0d330d1e204d706e4a0059c41346b70d67f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// +build linux
// +build !mips64le

package remote

import (
        "golang.org/x/sys/unix"
)

func interceptorDupx(oldfd int, newfd int) {
	unix.Dup2(oldfd, newfd)
}