summaryrefslogtreecommitdiff
path: root/vendor/github.com/onsi/ginkgo/internal/remote/output_interceptor_darwin.go
blob: e3d09eadb8a5e59332b567e3732643eb374c5472 (plain)
1
2
3
4
5
6
7
8
9
10
11
// +build darwin

package remote

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

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