update selinux to 1.6.0 release

Signed-off-by: Michael Crosby <michael@thepasture.io>
This commit is contained in:
Michael Crosby
2020-07-20 07:32:08 -04:00
parent 0443a13da7
commit 9b06da4773
21 changed files with 2008 additions and 327 deletions

9
vendor/github.com/willf/bitset/trailing_zeros_19.go generated vendored Normal file
View File

@@ -0,0 +1,9 @@
// +build go1.9
package bitset
import "math/bits"
func trailingZeroes64(v uint64) uint {
return uint(bits.TrailingZeros64(v))
}