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

package remote

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

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