diff options
Diffstat (limited to 'ipc')
-rw-r--r-- | ipc/uapi_bsd.go | 1 | ||||
-rw-r--r-- | ipc/uapi_unix.go | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/ipc/uapi_bsd.go b/ipc/uapi_bsd.go index 5beee9e..062f5d7 100644 --- a/ipc/uapi_bsd.go +++ b/ipc/uapi_bsd.go @@ -1,3 +1,4 @@ +//go:build darwin || freebsd || openbsd // +build darwin freebsd openbsd /* SPDX-License-Identifier: MIT diff --git a/ipc/uapi_unix.go b/ipc/uapi_unix.go index 544651b..48f6846 100644 --- a/ipc/uapi_unix.go +++ b/ipc/uapi_unix.go @@ -1,3 +1,4 @@ +//go:build linux || darwin || freebsd || openbsd // +build linux darwin freebsd openbsd /* SPDX-License-Identifier: MIT |