blob: 312244c0d8ab0c604b917c0b72c4652ebe58ef1f [file] [log] [blame]
Dan Willemsend2797482017-07-26 13:13:13 -07001// Copyright 2017 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
Dan Willemsencc753b72021-08-31 13:25:42 -07005//go:build dragonfly || freebsd || netbsd || openbsd
Dan Willemsenc7413322018-08-27 23:21:26 -07006
Dan Willemsend2797482017-07-26 13:13:13 -07007package syscall
8
9func forkExecPipe(p []int) error {
Dan Willemsena3223282018-02-27 19:41:43 -080010 return Pipe2(p, O_CLOEXEC)
Dan Willemsend2797482017-07-26 13:13:13 -070011}