From 02a88a138e35a20e13b35383b80ca53521c308c1 Mon Sep 17 00:00:00 2001 From: Dustin Spicuzza Date: Fri, 2 Jul 2021 15:33:03 -0400 Subject: [PATCH] Fix darwin stupid --- unix/sysvshm_unix_other.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/unix/sysvshm_unix_other.go b/unix/sysvshm_unix_other.go index 5a1d03e7..579b53bf 100644 --- a/unix/sysvshm_unix_other.go +++ b/unix/sysvshm_unix_other.go @@ -5,6 +5,8 @@ //go:build (darwin && amd64) // +build darwin,amd64 +package unix + // SysvShmCtl performs control operations on the shared memory segment // specified by id. func SysvShmCtl(id, cmd int, desc *SysvShmDesc) (result int, err error) {