Fix "PR c++/92804 ICE trying to use concept as a nested-name-specifier"
[official-gcc.git] / libgo / go / syscall / forkpipe2.go
blob747afd64be029235887b9815c94c51423eca9646
1 // 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.
5 // +build freebsd hurd netbsd openbsd
7 package syscall
9 func forkExecPipe(p []int) error {
10 return Pipe2(p, O_CLOEXEC)