mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-24 07:26:26 -06:00
11 lines
194 B
Go
11 lines
194 B
Go
// +build darwin openbsd netbsd 386 arm
|
|
|
|
package goselect
|
|
|
|
// darwin, netbsd and openbsd uses uint32 on both amd64 and 386
|
|
|
|
const (
|
|
// NFDBITS is the amount of bits per mask
|
|
NFDBITS = 4 * 8
|
|
)
|