diff options
Diffstat (limited to 'src/runtime/sys_libc.go')
| -rw-r--r-- | src/runtime/sys_libc.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/runtime/sys_libc.go b/src/runtime/sys_libc.go index 996c032105..91195eb3c0 100644 --- a/src/runtime/sys_libc.go +++ b/src/runtime/sys_libc.go @@ -2,7 +2,8 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// +build darwin openbsd,amd64 openbsd,arm64 +//go:build darwin || (openbsd && 386) || (openbsd && amd64) || (openbsd && arm64) +// +build darwin openbsd,386 openbsd,amd64 openbsd,arm64 package runtime |
