diff options
Diffstat (limited to 'libgo/go/net/sock_cloexec.go')
-rw-r--r-- | libgo/go/net/sock_cloexec.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libgo/go/net/sock_cloexec.go b/libgo/go/net/sock_cloexec.go index 43be6ff9b65..cb57bb4d8be 100644 --- a/libgo/go/net/sock_cloexec.go +++ b/libgo/go/net/sock_cloexec.go @@ -2,9 +2,10 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// This file implements sysSocket and accept for platforms that -// provide a fast path for setting SetNonblock and CloseOnExec. +// This file implements sysSocket for platforms that provide a fast path for +// setting SetNonblock and CloseOnExec. +//go:build dragonfly || freebsd || hurd || illumos || linux || netbsd || openbsd // +build dragonfly freebsd hurd illumos linux netbsd openbsd package net |