summaryrefslogtreecommitdiff
path: root/vendor/github.com/onsi/ginkgo/internal/remote/output_interceptor_linux_mips64le.go
blob: 09bd0626062e113151c604e7b0739b0129068aed (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.Dup3(oldfd, newfd, 0)
}