diff options
author | 2018-12-09 17:59:39 -0800 | |
---|---|---|
committer | 2018-12-09 17:59:39 -0800 | |
commit | 59d8e9b95eddc6b74b76bfc0bd8b786750e800a6 (patch) | |
tree | 5b2379ea736b7bb94e2fc0d492e86b04f32a8d2b /vendor/golang.org/x/sys/unix/syscall_unix.go | |
parent | 61bfb3cfa8857a144460d05330c1d1fccded960b (diff) | |
download | v2-59d8e9b95eddc6b74b76bfc0bd8b786750e800a6.tar.gz v2-59d8e9b95eddc6b74b76bfc0bd8b786750e800a6.tar.zst v2-59d8e9b95eddc6b74b76bfc0bd8b786750e800a6.zip |
Update dependencies
Diffstat (limited to 'vendor/golang.org/x/sys/unix/syscall_unix.go')
-rw-r--r-- | vendor/golang.org/x/sys/unix/syscall_unix.go | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/vendor/golang.org/x/sys/unix/syscall_unix.go b/vendor/golang.org/x/sys/unix/syscall_unix.go index 95b2180a..64fcda4a 100644 --- a/vendor/golang.org/x/sys/unix/syscall_unix.go +++ b/vendor/golang.org/x/sys/unix/syscall_unix.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// +build darwin dragonfly freebsd linux netbsd openbsd solaris +// +build aix darwin dragonfly freebsd linux netbsd openbsd solaris package unix @@ -22,10 +22,10 @@ var ( ) const ( - darwin64Bit = runtime.GOOS == "darwin" && sizeofPtr == 8 - dragonfly64Bit = runtime.GOOS == "dragonfly" && sizeofPtr == 8 - netbsd32Bit = runtime.GOOS == "netbsd" && sizeofPtr == 4 - solaris64Bit = runtime.GOOS == "solaris" && sizeofPtr == 8 + darwin64Bit = runtime.GOOS == "darwin" && SizeofPtr == 8 + dragonfly64Bit = runtime.GOOS == "dragonfly" && SizeofPtr == 8 + netbsd32Bit = runtime.GOOS == "netbsd" && SizeofPtr == 4 + solaris64Bit = runtime.GOOS == "solaris" && SizeofPtr == 8 ) // Do the interface allocations only once for common |