api: add go1.2.txt, use in tests

R=golang-dev, iant
CC=golang-dev
https://golang.org/cl/14860043
diff --git a/api/go1.2.txt b/api/go1.2.txt
new file mode 100644
index 0000000..d6835e6
--- /dev/null
+++ b/api/go1.2.txt
@@ -0,0 +1,32484 @@
+pkg archive/zip, func RegisterCompressor(uint16, Compressor)
+pkg archive/zip, func RegisterDecompressor(uint16, Decompressor)
+pkg archive/zip, method (*File) DataOffset() (int64, error)
+pkg archive/zip, type Compressor func(io.Writer) (io.WriteCloser, error)
+pkg archive/zip, type Decompressor func(io.Reader) io.ReadCloser
+pkg bufio, method (*Reader) Reset(io.Reader)
+pkg bufio, method (*Writer) Reset(io.Writer)
+pkg compress/flate, method (*Writer) Reset(io.Writer)
+pkg compress/gzip, method (*Writer) Reset(io.Writer)
+pkg compress/zlib, method (*Writer) Reset(io.Writer)
+pkg container/heap, func Fix(Interface, int)
+pkg container/list, method (*List) MoveAfter(*Element, *Element)
+pkg container/list, method (*List) MoveBefore(*Element, *Element)
+pkg crypto, type PublicKey interface {}
+pkg crypto/cipher, func NewGCM(Block) (AEAD, error)
+pkg crypto/cipher, type AEAD interface { NonceSize, Open, Overhead, Seal }
+pkg crypto/cipher, type AEAD interface, NonceSize() int
+pkg crypto/cipher, type AEAD interface, Open([]uint8, []uint8, []uint8, []uint8) ([]uint8, error)
+pkg crypto/cipher, type AEAD interface, Overhead() int
+pkg crypto/cipher, type AEAD interface, Seal([]uint8, []uint8, []uint8, []uint8) []uint8
+pkg crypto/md5, func Sum([]uint8) [16]uint8
+pkg crypto/rsa, const PSSSaltLengthAuto = 0
+pkg crypto/rsa, const PSSSaltLengthAuto ideal-int
+pkg crypto/rsa, const PSSSaltLengthEqualsHash = -1
+pkg crypto/rsa, const PSSSaltLengthEqualsHash ideal-int
+pkg crypto/rsa, func SignPSS(io.Reader, *PrivateKey, crypto.Hash, []uint8, *PSSOptions) ([]uint8, error)
+pkg crypto/rsa, func VerifyPSS(*PublicKey, crypto.Hash, []uint8, []uint8, *PSSOptions) error
+pkg crypto/rsa, type PSSOptions struct
+pkg crypto/rsa, type PSSOptions struct, SaltLength int
+pkg crypto/sha1, func Sum([]uint8) [20]uint8
+pkg crypto/sha256, func Sum224([]uint8) [28]uint8
+pkg crypto/sha256, func Sum256([]uint8) [32]uint8
+pkg crypto/sha512, func Sum384([]uint8) [48]uint8
+pkg crypto/sha512, func Sum512([]uint8) [64]uint8
+pkg crypto/subtle, func ConstantTimeLessOrEq(int, int) int
+pkg crypto/tls, const TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA = 49161
+pkg crypto/tls, const TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA uint16
+pkg crypto/tls, const TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 = 49195
+pkg crypto/tls, const TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 uint16
+pkg crypto/tls, const TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA = 49162
+pkg crypto/tls, const TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA uint16
+pkg crypto/tls, const TLS_ECDHE_ECDSA_WITH_RC4_128_SHA = 49159
+pkg crypto/tls, const TLS_ECDHE_ECDSA_WITH_RC4_128_SHA uint16
+pkg crypto/tls, const TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 = 49199
+pkg crypto/tls, const TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 uint16
+pkg crypto/tls, const VersionSSL30 = 768
+pkg crypto/tls, const VersionSSL30 ideal-int
+pkg crypto/tls, const VersionTLS10 = 769
+pkg crypto/tls, const VersionTLS10 ideal-int
+pkg crypto/tls, const VersionTLS11 = 770
+pkg crypto/tls, const VersionTLS11 ideal-int
+pkg crypto/tls, const VersionTLS12 = 771
+pkg crypto/tls, const VersionTLS12 ideal-int
+pkg crypto/tls, type Config struct, MaxVersion uint16
+pkg crypto/tls, type Config struct, MinVersion uint16
+pkg crypto/x509, func MarshalECPrivateKey(*ecdsa.PrivateKey) ([]uint8, error)
+pkg crypto/x509, type Certificate struct, CRLDistributionPoints []string
+pkg crypto/x509, type Certificate struct, Extensions []pkix.Extension
+pkg crypto/x509, type Certificate struct, ExtraExtensions []pkix.Extension
+pkg crypto/x509, type Certificate struct, IssuingCertificateURL []string
+pkg crypto/x509, type Certificate struct, OCSPServer []string
+pkg database/sql, method (*DB) SetMaxOpenConns(int)
+pkg encoding, type BinaryMarshaler interface { MarshalBinary }
+pkg encoding, type BinaryMarshaler interface, MarshalBinary() ([]uint8, error)
+pkg encoding, type BinaryUnmarshaler interface { UnmarshalBinary }
+pkg encoding, type BinaryUnmarshaler interface, UnmarshalBinary([]uint8) error
+pkg encoding, type TextMarshaler interface { MarshalText }
+pkg encoding, type TextMarshaler interface, MarshalText() ([]uint8, error)
+pkg encoding, type TextUnmarshaler interface { UnmarshalText }
+pkg encoding, type TextUnmarshaler interface, UnmarshalText([]uint8) error
+pkg encoding/xml, method (*Encoder) EncodeElement(interface{}, StartElement) error
+pkg encoding/xml, method (*Encoder) EncodeToken(Token) error
+pkg encoding/xml, method (*Encoder) Flush() error
+pkg encoding/xml, method (StartElement) End() EndElement
+pkg encoding/xml, type Marshaler interface { MarshalXML }
+pkg encoding/xml, type Marshaler interface, MarshalXML(*Encoder, StartElement) error
+pkg encoding/xml, type MarshalerAttr interface { MarshalXMLAttr }
+pkg encoding/xml, type MarshalerAttr interface, MarshalXMLAttr(Name) (Attr, error)
+pkg encoding/xml, type Unmarshaler interface { UnmarshalXML }
+pkg encoding/xml, type Unmarshaler interface, UnmarshalXML(*Decoder, StartElement) error
+pkg encoding/xml, type UnmarshalerAttr interface { UnmarshalXMLAttr }
+pkg encoding/xml, type UnmarshalerAttr interface, UnmarshalXMLAttr(Attr) error
+pkg flag, type Getter interface { Get, Set, String }
+pkg flag, type Getter interface, Get() interface{}
+pkg flag, type Getter interface, Set(string) error
+pkg flag, type Getter interface, String() string
+pkg flag, var CommandLine *FlagSet
+pkg go/ast, type SliceExpr struct, Max Expr
+pkg go/ast, type SliceExpr struct, Slice3 bool
+pkg go/ast, type TypeAssertExpr struct, Lparen token.Pos
+pkg go/ast, type TypeAssertExpr struct, Rparen token.Pos
+pkg go/build, method (*Context) MatchFile(string, string) (bool, error)
+pkg go/build, type Package struct, AllTags []string
+pkg go/build, type Package struct, CXXFiles []string
+pkg go/build, type Package struct, CgoCPPFLAGS []string
+pkg go/build, type Package struct, CgoCXXFLAGS []string
+pkg go/build, type Package struct, ConflictDir string
+pkg go/token, method (*File) MergeLine(int)
+pkg html/template, type Template struct, Tree *parse.Tree
+pkg image/color/palette, var Plan9 []color.Color
+pkg image/color/palette, var WebSafe []color.Color
+pkg image/draw, method (Op) Draw(Image, image.Rectangle, image.Image, image.Point)
+pkg image/draw, type Drawer interface { Draw }
+pkg image/draw, type Drawer interface, Draw(Image, image.Rectangle, image.Image, image.Point)
+pkg image/draw, type Quantizer interface { Quantize }
+pkg image/draw, type Quantizer interface, Quantize(color.Palette, image.Image) color.Palette
+pkg image/draw, var FloydSteinberg Drawer
+pkg image/gif, func Encode(io.Writer, image.Image, *Options) error
+pkg image/gif, func EncodeAll(io.Writer, *GIF) error
+pkg image/gif, type Options struct
+pkg image/gif, type Options struct, Drawer draw.Drawer
+pkg image/gif, type Options struct, NumColors int
+pkg image/gif, type Options struct, Quantizer draw.Quantizer
+pkg log/syslog (freebsd-386-cgo), const LOG_ALERT Priority
+pkg log/syslog (freebsd-386-cgo), const LOG_AUTH Priority
+pkg log/syslog (freebsd-386-cgo), const LOG_AUTHPRIV Priority
+pkg log/syslog (freebsd-386-cgo), const LOG_CRIT Priority
+pkg log/syslog (freebsd-386-cgo), const LOG_CRON Priority
+pkg log/syslog (freebsd-386-cgo), const LOG_DAEMON Priority
+pkg log/syslog (freebsd-386-cgo), const LOG_DEBUG Priority
+pkg log/syslog (freebsd-386-cgo), const LOG_EMERG Priority
+pkg log/syslog (freebsd-386-cgo), const LOG_ERR Priority
+pkg log/syslog (freebsd-386-cgo), const LOG_FTP Priority
+pkg log/syslog (freebsd-386-cgo), const LOG_INFO Priority
+pkg log/syslog (freebsd-386-cgo), const LOG_KERN Priority
+pkg log/syslog (freebsd-386-cgo), const LOG_LOCAL0 Priority
+pkg log/syslog (freebsd-386-cgo), const LOG_LOCAL1 Priority
+pkg log/syslog (freebsd-386-cgo), const LOG_LOCAL2 Priority
+pkg log/syslog (freebsd-386-cgo), const LOG_LOCAL3 Priority
+pkg log/syslog (freebsd-386-cgo), const LOG_LOCAL4 Priority
+pkg log/syslog (freebsd-386-cgo), const LOG_LOCAL5 Priority
+pkg log/syslog (freebsd-386-cgo), const LOG_LOCAL6 Priority
+pkg log/syslog (freebsd-386-cgo), const LOG_LOCAL7 Priority
+pkg log/syslog (freebsd-386-cgo), const LOG_LPR Priority
+pkg log/syslog (freebsd-386-cgo), const LOG_MAIL Priority
+pkg log/syslog (freebsd-386-cgo), const LOG_NEWS Priority
+pkg log/syslog (freebsd-386-cgo), const LOG_NOTICE Priority
+pkg log/syslog (freebsd-386-cgo), const LOG_SYSLOG Priority
+pkg log/syslog (freebsd-386-cgo), const LOG_USER Priority
+pkg log/syslog (freebsd-386-cgo), const LOG_UUCP Priority
+pkg log/syslog (freebsd-386-cgo), const LOG_WARNING Priority
+pkg log/syslog (freebsd-386-cgo), func Dial(string, string, Priority, string) (*Writer, error)
+pkg log/syslog (freebsd-386-cgo), func New(Priority, string) (*Writer, error)
+pkg log/syslog (freebsd-386-cgo), func NewLogger(Priority, int) (*log.Logger, error)
+pkg log/syslog (freebsd-386-cgo), method (*Writer) Alert(string) error
+pkg log/syslog (freebsd-386-cgo), method (*Writer) Close() error
+pkg log/syslog (freebsd-386-cgo), method (*Writer) Crit(string) error
+pkg log/syslog (freebsd-386-cgo), method (*Writer) Debug(string) error
+pkg log/syslog (freebsd-386-cgo), method (*Writer) Emerg(string) error
+pkg log/syslog (freebsd-386-cgo), method (*Writer) Err(string) error
+pkg log/syslog (freebsd-386-cgo), method (*Writer) Info(string) error
+pkg log/syslog (freebsd-386-cgo), method (*Writer) Notice(string) error
+pkg log/syslog (freebsd-386-cgo), method (*Writer) Warning(string) error
+pkg log/syslog (freebsd-386-cgo), method (*Writer) Write([]uint8) (int, error)
+pkg log/syslog (freebsd-386-cgo), type Priority int
+pkg log/syslog (freebsd-386-cgo), type Writer struct
+pkg log/syslog (freebsd-amd64-cgo), const LOG_ALERT Priority
+pkg log/syslog (freebsd-amd64-cgo), const LOG_AUTH Priority
+pkg log/syslog (freebsd-amd64-cgo), const LOG_AUTHPRIV Priority
+pkg log/syslog (freebsd-amd64-cgo), const LOG_CRIT Priority
+pkg log/syslog (freebsd-amd64-cgo), const LOG_CRON Priority
+pkg log/syslog (freebsd-amd64-cgo), const LOG_DAEMON Priority
+pkg log/syslog (freebsd-amd64-cgo), const LOG_DEBUG Priority
+pkg log/syslog (freebsd-amd64-cgo), const LOG_EMERG Priority
+pkg log/syslog (freebsd-amd64-cgo), const LOG_ERR Priority
+pkg log/syslog (freebsd-amd64-cgo), const LOG_FTP Priority
+pkg log/syslog (freebsd-amd64-cgo), const LOG_INFO Priority
+pkg log/syslog (freebsd-amd64-cgo), const LOG_KERN Priority
+pkg log/syslog (freebsd-amd64-cgo), const LOG_LOCAL0 Priority
+pkg log/syslog (freebsd-amd64-cgo), const LOG_LOCAL1 Priority
+pkg log/syslog (freebsd-amd64-cgo), const LOG_LOCAL2 Priority
+pkg log/syslog (freebsd-amd64-cgo), const LOG_LOCAL3 Priority
+pkg log/syslog (freebsd-amd64-cgo), const LOG_LOCAL4 Priority
+pkg log/syslog (freebsd-amd64-cgo), const LOG_LOCAL5 Priority
+pkg log/syslog (freebsd-amd64-cgo), const LOG_LOCAL6 Priority
+pkg log/syslog (freebsd-amd64-cgo), const LOG_LOCAL7 Priority
+pkg log/syslog (freebsd-amd64-cgo), const LOG_LPR Priority
+pkg log/syslog (freebsd-amd64-cgo), const LOG_MAIL Priority
+pkg log/syslog (freebsd-amd64-cgo), const LOG_NEWS Priority
+pkg log/syslog (freebsd-amd64-cgo), const LOG_NOTICE Priority
+pkg log/syslog (freebsd-amd64-cgo), const LOG_SYSLOG Priority
+pkg log/syslog (freebsd-amd64-cgo), const LOG_USER Priority
+pkg log/syslog (freebsd-amd64-cgo), const LOG_UUCP Priority
+pkg log/syslog (freebsd-amd64-cgo), const LOG_WARNING Priority
+pkg log/syslog (freebsd-amd64-cgo), func Dial(string, string, Priority, string) (*Writer, error)
+pkg log/syslog (freebsd-amd64-cgo), func New(Priority, string) (*Writer, error)
+pkg log/syslog (freebsd-amd64-cgo), func NewLogger(Priority, int) (*log.Logger, error)
+pkg log/syslog (freebsd-amd64-cgo), method (*Writer) Alert(string) error
+pkg log/syslog (freebsd-amd64-cgo), method (*Writer) Close() error
+pkg log/syslog (freebsd-amd64-cgo), method (*Writer) Crit(string) error
+pkg log/syslog (freebsd-amd64-cgo), method (*Writer) Debug(string) error
+pkg log/syslog (freebsd-amd64-cgo), method (*Writer) Emerg(string) error
+pkg log/syslog (freebsd-amd64-cgo), method (*Writer) Err(string) error
+pkg log/syslog (freebsd-amd64-cgo), method (*Writer) Info(string) error
+pkg log/syslog (freebsd-amd64-cgo), method (*Writer) Notice(string) error
+pkg log/syslog (freebsd-amd64-cgo), method (*Writer) Warning(string) error
+pkg log/syslog (freebsd-amd64-cgo), method (*Writer) Write([]uint8) (int, error)
+pkg log/syslog (freebsd-amd64-cgo), type Priority int
+pkg log/syslog (freebsd-amd64-cgo), type Writer struct
+pkg log/syslog (freebsd-arm), const LOG_ALERT Priority
+pkg log/syslog (freebsd-arm), const LOG_AUTH Priority
+pkg log/syslog (freebsd-arm), const LOG_AUTHPRIV Priority
+pkg log/syslog (freebsd-arm), const LOG_CRIT Priority
+pkg log/syslog (freebsd-arm), const LOG_CRON Priority
+pkg log/syslog (freebsd-arm), const LOG_DAEMON Priority
+pkg log/syslog (freebsd-arm), const LOG_DEBUG Priority
+pkg log/syslog (freebsd-arm), const LOG_EMERG Priority
+pkg log/syslog (freebsd-arm), const LOG_ERR Priority
+pkg log/syslog (freebsd-arm), const LOG_FTP Priority
+pkg log/syslog (freebsd-arm), const LOG_INFO Priority
+pkg log/syslog (freebsd-arm), const LOG_KERN Priority
+pkg log/syslog (freebsd-arm), const LOG_LOCAL0 Priority
+pkg log/syslog (freebsd-arm), const LOG_LOCAL1 Priority
+pkg log/syslog (freebsd-arm), const LOG_LOCAL2 Priority
+pkg log/syslog (freebsd-arm), const LOG_LOCAL3 Priority
+pkg log/syslog (freebsd-arm), const LOG_LOCAL4 Priority
+pkg log/syslog (freebsd-arm), const LOG_LOCAL5 Priority
+pkg log/syslog (freebsd-arm), const LOG_LOCAL6 Priority
+pkg log/syslog (freebsd-arm), const LOG_LOCAL7 Priority
+pkg log/syslog (freebsd-arm), const LOG_LPR Priority
+pkg log/syslog (freebsd-arm), const LOG_MAIL Priority
+pkg log/syslog (freebsd-arm), const LOG_NEWS Priority
+pkg log/syslog (freebsd-arm), const LOG_NOTICE Priority
+pkg log/syslog (freebsd-arm), const LOG_SYSLOG Priority
+pkg log/syslog (freebsd-arm), const LOG_USER Priority
+pkg log/syslog (freebsd-arm), const LOG_UUCP Priority
+pkg log/syslog (freebsd-arm), const LOG_WARNING Priority
+pkg log/syslog (freebsd-arm), func Dial(string, string, Priority, string) (*Writer, error)
+pkg log/syslog (freebsd-arm), func New(Priority, string) (*Writer, error)
+pkg log/syslog (freebsd-arm), func NewLogger(Priority, int) (*log.Logger, error)
+pkg log/syslog (freebsd-arm), method (*Writer) Alert(string) error
+pkg log/syslog (freebsd-arm), method (*Writer) Close() error
+pkg log/syslog (freebsd-arm), method (*Writer) Crit(string) error
+pkg log/syslog (freebsd-arm), method (*Writer) Debug(string) error
+pkg log/syslog (freebsd-arm), method (*Writer) Emerg(string) error
+pkg log/syslog (freebsd-arm), method (*Writer) Err(string) error
+pkg log/syslog (freebsd-arm), method (*Writer) Info(string) error
+pkg log/syslog (freebsd-arm), method (*Writer) Notice(string) error
+pkg log/syslog (freebsd-arm), method (*Writer) Warning(string) error
+pkg log/syslog (freebsd-arm), method (*Writer) Write([]uint8) (int, error)
+pkg log/syslog (freebsd-arm), type Priority int
+pkg log/syslog (freebsd-arm), type Writer struct
+pkg log/syslog (freebsd-arm-cgo), const LOG_ALERT Priority
+pkg log/syslog (freebsd-arm-cgo), const LOG_AUTH Priority
+pkg log/syslog (freebsd-arm-cgo), const LOG_AUTHPRIV Priority
+pkg log/syslog (freebsd-arm-cgo), const LOG_CRIT Priority
+pkg log/syslog (freebsd-arm-cgo), const LOG_CRON Priority
+pkg log/syslog (freebsd-arm-cgo), const LOG_DAEMON Priority
+pkg log/syslog (freebsd-arm-cgo), const LOG_DEBUG Priority
+pkg log/syslog (freebsd-arm-cgo), const LOG_EMERG Priority
+pkg log/syslog (freebsd-arm-cgo), const LOG_ERR Priority
+pkg log/syslog (freebsd-arm-cgo), const LOG_FTP Priority
+pkg log/syslog (freebsd-arm-cgo), const LOG_INFO Priority
+pkg log/syslog (freebsd-arm-cgo), const LOG_KERN Priority
+pkg log/syslog (freebsd-arm-cgo), const LOG_LOCAL0 Priority
+pkg log/syslog (freebsd-arm-cgo), const LOG_LOCAL1 Priority
+pkg log/syslog (freebsd-arm-cgo), const LOG_LOCAL2 Priority
+pkg log/syslog (freebsd-arm-cgo), const LOG_LOCAL3 Priority
+pkg log/syslog (freebsd-arm-cgo), const LOG_LOCAL4 Priority
+pkg log/syslog (freebsd-arm-cgo), const LOG_LOCAL5 Priority
+pkg log/syslog (freebsd-arm-cgo), const LOG_LOCAL6 Priority
+pkg log/syslog (freebsd-arm-cgo), const LOG_LOCAL7 Priority
+pkg log/syslog (freebsd-arm-cgo), const LOG_LPR Priority
+pkg log/syslog (freebsd-arm-cgo), const LOG_MAIL Priority
+pkg log/syslog (freebsd-arm-cgo), const LOG_NEWS Priority
+pkg log/syslog (freebsd-arm-cgo), const LOG_NOTICE Priority
+pkg log/syslog (freebsd-arm-cgo), const LOG_SYSLOG Priority
+pkg log/syslog (freebsd-arm-cgo), const LOG_USER Priority
+pkg log/syslog (freebsd-arm-cgo), const LOG_UUCP Priority
+pkg log/syslog (freebsd-arm-cgo), const LOG_WARNING Priority
+pkg log/syslog (freebsd-arm-cgo), func Dial(string, string, Priority, string) (*Writer, error)
+pkg log/syslog (freebsd-arm-cgo), func New(Priority, string) (*Writer, error)
+pkg log/syslog (freebsd-arm-cgo), func NewLogger(Priority, int) (*log.Logger, error)
+pkg log/syslog (freebsd-arm-cgo), method (*Writer) Alert(string) error
+pkg log/syslog (freebsd-arm-cgo), method (*Writer) Close() error
+pkg log/syslog (freebsd-arm-cgo), method (*Writer) Crit(string) error
+pkg log/syslog (freebsd-arm-cgo), method (*Writer) Debug(string) error
+pkg log/syslog (freebsd-arm-cgo), method (*Writer) Emerg(string) error
+pkg log/syslog (freebsd-arm-cgo), method (*Writer) Err(string) error
+pkg log/syslog (freebsd-arm-cgo), method (*Writer) Info(string) error
+pkg log/syslog (freebsd-arm-cgo), method (*Writer) Notice(string) error
+pkg log/syslog (freebsd-arm-cgo), method (*Writer) Warning(string) error
+pkg log/syslog (freebsd-arm-cgo), method (*Writer) Write([]uint8) (int, error)
+pkg log/syslog (freebsd-arm-cgo), type Priority int
+pkg log/syslog (freebsd-arm-cgo), type Writer struct
+pkg log/syslog (linux-arm-cgo), const LOG_ALERT Priority
+pkg log/syslog (linux-arm-cgo), const LOG_AUTH Priority
+pkg log/syslog (linux-arm-cgo), const LOG_AUTHPRIV Priority
+pkg log/syslog (linux-arm-cgo), const LOG_CRIT Priority
+pkg log/syslog (linux-arm-cgo), const LOG_CRON Priority
+pkg log/syslog (linux-arm-cgo), const LOG_DAEMON Priority
+pkg log/syslog (linux-arm-cgo), const LOG_DEBUG Priority
+pkg log/syslog (linux-arm-cgo), const LOG_EMERG Priority
+pkg log/syslog (linux-arm-cgo), const LOG_ERR Priority
+pkg log/syslog (linux-arm-cgo), const LOG_FTP Priority
+pkg log/syslog (linux-arm-cgo), const LOG_INFO Priority
+pkg log/syslog (linux-arm-cgo), const LOG_KERN Priority
+pkg log/syslog (linux-arm-cgo), const LOG_LOCAL0 Priority
+pkg log/syslog (linux-arm-cgo), const LOG_LOCAL1 Priority
+pkg log/syslog (linux-arm-cgo), const LOG_LOCAL2 Priority
+pkg log/syslog (linux-arm-cgo), const LOG_LOCAL3 Priority
+pkg log/syslog (linux-arm-cgo), const LOG_LOCAL4 Priority
+pkg log/syslog (linux-arm-cgo), const LOG_LOCAL5 Priority
+pkg log/syslog (linux-arm-cgo), const LOG_LOCAL6 Priority
+pkg log/syslog (linux-arm-cgo), const LOG_LOCAL7 Priority
+pkg log/syslog (linux-arm-cgo), const LOG_LPR Priority
+pkg log/syslog (linux-arm-cgo), const LOG_MAIL Priority
+pkg log/syslog (linux-arm-cgo), const LOG_NEWS Priority
+pkg log/syslog (linux-arm-cgo), const LOG_NOTICE Priority
+pkg log/syslog (linux-arm-cgo), const LOG_SYSLOG Priority
+pkg log/syslog (linux-arm-cgo), const LOG_USER Priority
+pkg log/syslog (linux-arm-cgo), const LOG_UUCP Priority
+pkg log/syslog (linux-arm-cgo), const LOG_WARNING Priority
+pkg log/syslog (linux-arm-cgo), func Dial(string, string, Priority, string) (*Writer, error)
+pkg log/syslog (linux-arm-cgo), func New(Priority, string) (*Writer, error)
+pkg log/syslog (linux-arm-cgo), func NewLogger(Priority, int) (*log.Logger, error)
+pkg log/syslog (linux-arm-cgo), method (*Writer) Alert(string) error
+pkg log/syslog (linux-arm-cgo), method (*Writer) Close() error
+pkg log/syslog (linux-arm-cgo), method (*Writer) Crit(string) error
+pkg log/syslog (linux-arm-cgo), method (*Writer) Debug(string) error
+pkg log/syslog (linux-arm-cgo), method (*Writer) Emerg(string) error
+pkg log/syslog (linux-arm-cgo), method (*Writer) Err(string) error
+pkg log/syslog (linux-arm-cgo), method (*Writer) Info(string) error
+pkg log/syslog (linux-arm-cgo), method (*Writer) Notice(string) error
+pkg log/syslog (linux-arm-cgo), method (*Writer) Warning(string) error
+pkg log/syslog (linux-arm-cgo), method (*Writer) Write([]uint8) (int, error)
+pkg log/syslog (linux-arm-cgo), type Priority int
+pkg log/syslog (linux-arm-cgo), type Writer struct
+pkg log/syslog (netbsd-386), const LOG_ALERT Priority
+pkg log/syslog (netbsd-386), const LOG_AUTH Priority
+pkg log/syslog (netbsd-386), const LOG_AUTHPRIV Priority
+pkg log/syslog (netbsd-386), const LOG_CRIT Priority
+pkg log/syslog (netbsd-386), const LOG_CRON Priority
+pkg log/syslog (netbsd-386), const LOG_DAEMON Priority
+pkg log/syslog (netbsd-386), const LOG_DEBUG Priority
+pkg log/syslog (netbsd-386), const LOG_EMERG Priority
+pkg log/syslog (netbsd-386), const LOG_ERR Priority
+pkg log/syslog (netbsd-386), const LOG_FTP Priority
+pkg log/syslog (netbsd-386), const LOG_INFO Priority
+pkg log/syslog (netbsd-386), const LOG_KERN Priority
+pkg log/syslog (netbsd-386), const LOG_LOCAL0 Priority
+pkg log/syslog (netbsd-386), const LOG_LOCAL1 Priority
+pkg log/syslog (netbsd-386), const LOG_LOCAL2 Priority
+pkg log/syslog (netbsd-386), const LOG_LOCAL3 Priority
+pkg log/syslog (netbsd-386), const LOG_LOCAL4 Priority
+pkg log/syslog (netbsd-386), const LOG_LOCAL5 Priority
+pkg log/syslog (netbsd-386), const LOG_LOCAL6 Priority
+pkg log/syslog (netbsd-386), const LOG_LOCAL7 Priority
+pkg log/syslog (netbsd-386), const LOG_LPR Priority
+pkg log/syslog (netbsd-386), const LOG_MAIL Priority
+pkg log/syslog (netbsd-386), const LOG_NEWS Priority
+pkg log/syslog (netbsd-386), const LOG_NOTICE Priority
+pkg log/syslog (netbsd-386), const LOG_SYSLOG Priority
+pkg log/syslog (netbsd-386), const LOG_USER Priority
+pkg log/syslog (netbsd-386), const LOG_UUCP Priority
+pkg log/syslog (netbsd-386), const LOG_WARNING Priority
+pkg log/syslog (netbsd-386), func Dial(string, string, Priority, string) (*Writer, error)
+pkg log/syslog (netbsd-386), func New(Priority, string) (*Writer, error)
+pkg log/syslog (netbsd-386), func NewLogger(Priority, int) (*log.Logger, error)
+pkg log/syslog (netbsd-386), method (*Writer) Alert(string) error
+pkg log/syslog (netbsd-386), method (*Writer) Close() error
+pkg log/syslog (netbsd-386), method (*Writer) Crit(string) error
+pkg log/syslog (netbsd-386), method (*Writer) Debug(string) error
+pkg log/syslog (netbsd-386), method (*Writer) Emerg(string) error
+pkg log/syslog (netbsd-386), method (*Writer) Err(string) error
+pkg log/syslog (netbsd-386), method (*Writer) Info(string) error
+pkg log/syslog (netbsd-386), method (*Writer) Notice(string) error
+pkg log/syslog (netbsd-386), method (*Writer) Warning(string) error
+pkg log/syslog (netbsd-386), method (*Writer) Write([]uint8) (int, error)
+pkg log/syslog (netbsd-386), type Priority int
+pkg log/syslog (netbsd-386), type Writer struct
+pkg log/syslog (netbsd-386-cgo), const LOG_ALERT Priority
+pkg log/syslog (netbsd-386-cgo), const LOG_AUTH Priority
+pkg log/syslog (netbsd-386-cgo), const LOG_AUTHPRIV Priority
+pkg log/syslog (netbsd-386-cgo), const LOG_CRIT Priority
+pkg log/syslog (netbsd-386-cgo), const LOG_CRON Priority
+pkg log/syslog (netbsd-386-cgo), const LOG_DAEMON Priority
+pkg log/syslog (netbsd-386-cgo), const LOG_DEBUG Priority
+pkg log/syslog (netbsd-386-cgo), const LOG_EMERG Priority
+pkg log/syslog (netbsd-386-cgo), const LOG_ERR Priority
+pkg log/syslog (netbsd-386-cgo), const LOG_FTP Priority
+pkg log/syslog (netbsd-386-cgo), const LOG_INFO Priority
+pkg log/syslog (netbsd-386-cgo), const LOG_KERN Priority
+pkg log/syslog (netbsd-386-cgo), const LOG_LOCAL0 Priority
+pkg log/syslog (netbsd-386-cgo), const LOG_LOCAL1 Priority
+pkg log/syslog (netbsd-386-cgo), const LOG_LOCAL2 Priority
+pkg log/syslog (netbsd-386-cgo), const LOG_LOCAL3 Priority
+pkg log/syslog (netbsd-386-cgo), const LOG_LOCAL4 Priority
+pkg log/syslog (netbsd-386-cgo), const LOG_LOCAL5 Priority
+pkg log/syslog (netbsd-386-cgo), const LOG_LOCAL6 Priority
+pkg log/syslog (netbsd-386-cgo), const LOG_LOCAL7 Priority
+pkg log/syslog (netbsd-386-cgo), const LOG_LPR Priority
+pkg log/syslog (netbsd-386-cgo), const LOG_MAIL Priority
+pkg log/syslog (netbsd-386-cgo), const LOG_NEWS Priority
+pkg log/syslog (netbsd-386-cgo), const LOG_NOTICE Priority
+pkg log/syslog (netbsd-386-cgo), const LOG_SYSLOG Priority
+pkg log/syslog (netbsd-386-cgo), const LOG_USER Priority
+pkg log/syslog (netbsd-386-cgo), const LOG_UUCP Priority
+pkg log/syslog (netbsd-386-cgo), const LOG_WARNING Priority
+pkg log/syslog (netbsd-386-cgo), func Dial(string, string, Priority, string) (*Writer, error)
+pkg log/syslog (netbsd-386-cgo), func New(Priority, string) (*Writer, error)
+pkg log/syslog (netbsd-386-cgo), func NewLogger(Priority, int) (*log.Logger, error)
+pkg log/syslog (netbsd-386-cgo), method (*Writer) Alert(string) error
+pkg log/syslog (netbsd-386-cgo), method (*Writer) Close() error
+pkg log/syslog (netbsd-386-cgo), method (*Writer) Crit(string) error
+pkg log/syslog (netbsd-386-cgo), method (*Writer) Debug(string) error
+pkg log/syslog (netbsd-386-cgo), method (*Writer) Emerg(string) error
+pkg log/syslog (netbsd-386-cgo), method (*Writer) Err(string) error
+pkg log/syslog (netbsd-386-cgo), method (*Writer) Info(string) error
+pkg log/syslog (netbsd-386-cgo), method (*Writer) Notice(string) error
+pkg log/syslog (netbsd-386-cgo), method (*Writer) Warning(string) error
+pkg log/syslog (netbsd-386-cgo), method (*Writer) Write([]uint8) (int, error)
+pkg log/syslog (netbsd-386-cgo), type Priority int
+pkg log/syslog (netbsd-386-cgo), type Writer struct
+pkg log/syslog (netbsd-amd64), const LOG_ALERT Priority
+pkg log/syslog (netbsd-amd64), const LOG_AUTH Priority
+pkg log/syslog (netbsd-amd64), const LOG_AUTHPRIV Priority
+pkg log/syslog (netbsd-amd64), const LOG_CRIT Priority
+pkg log/syslog (netbsd-amd64), const LOG_CRON Priority
+pkg log/syslog (netbsd-amd64), const LOG_DAEMON Priority
+pkg log/syslog (netbsd-amd64), const LOG_DEBUG Priority
+pkg log/syslog (netbsd-amd64), const LOG_EMERG Priority
+pkg log/syslog (netbsd-amd64), const LOG_ERR Priority
+pkg log/syslog (netbsd-amd64), const LOG_FTP Priority
+pkg log/syslog (netbsd-amd64), const LOG_INFO Priority
+pkg log/syslog (netbsd-amd64), const LOG_KERN Priority
+pkg log/syslog (netbsd-amd64), const LOG_LOCAL0 Priority
+pkg log/syslog (netbsd-amd64), const LOG_LOCAL1 Priority
+pkg log/syslog (netbsd-amd64), const LOG_LOCAL2 Priority
+pkg log/syslog (netbsd-amd64), const LOG_LOCAL3 Priority
+pkg log/syslog (netbsd-amd64), const LOG_LOCAL4 Priority
+pkg log/syslog (netbsd-amd64), const LOG_LOCAL5 Priority
+pkg log/syslog (netbsd-amd64), const LOG_LOCAL6 Priority
+pkg log/syslog (netbsd-amd64), const LOG_LOCAL7 Priority
+pkg log/syslog (netbsd-amd64), const LOG_LPR Priority
+pkg log/syslog (netbsd-amd64), const LOG_MAIL Priority
+pkg log/syslog (netbsd-amd64), const LOG_NEWS Priority
+pkg log/syslog (netbsd-amd64), const LOG_NOTICE Priority
+pkg log/syslog (netbsd-amd64), const LOG_SYSLOG Priority
+pkg log/syslog (netbsd-amd64), const LOG_USER Priority
+pkg log/syslog (netbsd-amd64), const LOG_UUCP Priority
+pkg log/syslog (netbsd-amd64), const LOG_WARNING Priority
+pkg log/syslog (netbsd-amd64), func Dial(string, string, Priority, string) (*Writer, error)
+pkg log/syslog (netbsd-amd64), func New(Priority, string) (*Writer, error)
+pkg log/syslog (netbsd-amd64), func NewLogger(Priority, int) (*log.Logger, error)
+pkg log/syslog (netbsd-amd64), method (*Writer) Alert(string) error
+pkg log/syslog (netbsd-amd64), method (*Writer) Close() error
+pkg log/syslog (netbsd-amd64), method (*Writer) Crit(string) error
+pkg log/syslog (netbsd-amd64), method (*Writer) Debug(string) error
+pkg log/syslog (netbsd-amd64), method (*Writer) Emerg(string) error
+pkg log/syslog (netbsd-amd64), method (*Writer) Err(string) error
+pkg log/syslog (netbsd-amd64), method (*Writer) Info(string) error
+pkg log/syslog (netbsd-amd64), method (*Writer) Notice(string) error
+pkg log/syslog (netbsd-amd64), method (*Writer) Warning(string) error
+pkg log/syslog (netbsd-amd64), method (*Writer) Write([]uint8) (int, error)
+pkg log/syslog (netbsd-amd64), type Priority int
+pkg log/syslog (netbsd-amd64), type Writer struct
+pkg log/syslog (netbsd-amd64-cgo), const LOG_ALERT Priority
+pkg log/syslog (netbsd-amd64-cgo), const LOG_AUTH Priority
+pkg log/syslog (netbsd-amd64-cgo), const LOG_AUTHPRIV Priority
+pkg log/syslog (netbsd-amd64-cgo), const LOG_CRIT Priority
+pkg log/syslog (netbsd-amd64-cgo), const LOG_CRON Priority
+pkg log/syslog (netbsd-amd64-cgo), const LOG_DAEMON Priority
+pkg log/syslog (netbsd-amd64-cgo), const LOG_DEBUG Priority
+pkg log/syslog (netbsd-amd64-cgo), const LOG_EMERG Priority
+pkg log/syslog (netbsd-amd64-cgo), const LOG_ERR Priority
+pkg log/syslog (netbsd-amd64-cgo), const LOG_FTP Priority
+pkg log/syslog (netbsd-amd64-cgo), const LOG_INFO Priority
+pkg log/syslog (netbsd-amd64-cgo), const LOG_KERN Priority
+pkg log/syslog (netbsd-amd64-cgo), const LOG_LOCAL0 Priority
+pkg log/syslog (netbsd-amd64-cgo), const LOG_LOCAL1 Priority
+pkg log/syslog (netbsd-amd64-cgo), const LOG_LOCAL2 Priority
+pkg log/syslog (netbsd-amd64-cgo), const LOG_LOCAL3 Priority
+pkg log/syslog (netbsd-amd64-cgo), const LOG_LOCAL4 Priority
+pkg log/syslog (netbsd-amd64-cgo), const LOG_LOCAL5 Priority
+pkg log/syslog (netbsd-amd64-cgo), const LOG_LOCAL6 Priority
+pkg log/syslog (netbsd-amd64-cgo), const LOG_LOCAL7 Priority
+pkg log/syslog (netbsd-amd64-cgo), const LOG_LPR Priority
+pkg log/syslog (netbsd-amd64-cgo), const LOG_MAIL Priority
+pkg log/syslog (netbsd-amd64-cgo), const LOG_NEWS Priority
+pkg log/syslog (netbsd-amd64-cgo), const LOG_NOTICE Priority
+pkg log/syslog (netbsd-amd64-cgo), const LOG_SYSLOG Priority
+pkg log/syslog (netbsd-amd64-cgo), const LOG_USER Priority
+pkg log/syslog (netbsd-amd64-cgo), const LOG_UUCP Priority
+pkg log/syslog (netbsd-amd64-cgo), const LOG_WARNING Priority
+pkg log/syslog (netbsd-amd64-cgo), func Dial(string, string, Priority, string) (*Writer, error)
+pkg log/syslog (netbsd-amd64-cgo), func New(Priority, string) (*Writer, error)
+pkg log/syslog (netbsd-amd64-cgo), func NewLogger(Priority, int) (*log.Logger, error)
+pkg log/syslog (netbsd-amd64-cgo), method (*Writer) Alert(string) error
+pkg log/syslog (netbsd-amd64-cgo), method (*Writer) Close() error
+pkg log/syslog (netbsd-amd64-cgo), method (*Writer) Crit(string) error
+pkg log/syslog (netbsd-amd64-cgo), method (*Writer) Debug(string) error
+pkg log/syslog (netbsd-amd64-cgo), method (*Writer) Emerg(string) error
+pkg log/syslog (netbsd-amd64-cgo), method (*Writer) Err(string) error
+pkg log/syslog (netbsd-amd64-cgo), method (*Writer) Info(string) error
+pkg log/syslog (netbsd-amd64-cgo), method (*Writer) Notice(string) error
+pkg log/syslog (netbsd-amd64-cgo), method (*Writer) Warning(string) error
+pkg log/syslog (netbsd-amd64-cgo), method (*Writer) Write([]uint8) (int, error)
+pkg log/syslog (netbsd-amd64-cgo), type Priority int
+pkg log/syslog (netbsd-amd64-cgo), type Writer struct
+pkg log/syslog (netbsd-arm), const LOG_ALERT Priority
+pkg log/syslog (netbsd-arm), const LOG_AUTH Priority
+pkg log/syslog (netbsd-arm), const LOG_AUTHPRIV Priority
+pkg log/syslog (netbsd-arm), const LOG_CRIT Priority
+pkg log/syslog (netbsd-arm), const LOG_CRON Priority
+pkg log/syslog (netbsd-arm), const LOG_DAEMON Priority
+pkg log/syslog (netbsd-arm), const LOG_DEBUG Priority
+pkg log/syslog (netbsd-arm), const LOG_EMERG Priority
+pkg log/syslog (netbsd-arm), const LOG_ERR Priority
+pkg log/syslog (netbsd-arm), const LOG_FTP Priority
+pkg log/syslog (netbsd-arm), const LOG_INFO Priority
+pkg log/syslog (netbsd-arm), const LOG_KERN Priority
+pkg log/syslog (netbsd-arm), const LOG_LOCAL0 Priority
+pkg log/syslog (netbsd-arm), const LOG_LOCAL1 Priority
+pkg log/syslog (netbsd-arm), const LOG_LOCAL2 Priority
+pkg log/syslog (netbsd-arm), const LOG_LOCAL3 Priority
+pkg log/syslog (netbsd-arm), const LOG_LOCAL4 Priority
+pkg log/syslog (netbsd-arm), const LOG_LOCAL5 Priority
+pkg log/syslog (netbsd-arm), const LOG_LOCAL6 Priority
+pkg log/syslog (netbsd-arm), const LOG_LOCAL7 Priority
+pkg log/syslog (netbsd-arm), const LOG_LPR Priority
+pkg log/syslog (netbsd-arm), const LOG_MAIL Priority
+pkg log/syslog (netbsd-arm), const LOG_NEWS Priority
+pkg log/syslog (netbsd-arm), const LOG_NOTICE Priority
+pkg log/syslog (netbsd-arm), const LOG_SYSLOG Priority
+pkg log/syslog (netbsd-arm), const LOG_USER Priority
+pkg log/syslog (netbsd-arm), const LOG_UUCP Priority
+pkg log/syslog (netbsd-arm), const LOG_WARNING Priority
+pkg log/syslog (netbsd-arm), func Dial(string, string, Priority, string) (*Writer, error)
+pkg log/syslog (netbsd-arm), func New(Priority, string) (*Writer, error)
+pkg log/syslog (netbsd-arm), func NewLogger(Priority, int) (*log.Logger, error)
+pkg log/syslog (netbsd-arm), method (*Writer) Alert(string) error
+pkg log/syslog (netbsd-arm), method (*Writer) Close() error
+pkg log/syslog (netbsd-arm), method (*Writer) Crit(string) error
+pkg log/syslog (netbsd-arm), method (*Writer) Debug(string) error
+pkg log/syslog (netbsd-arm), method (*Writer) Emerg(string) error
+pkg log/syslog (netbsd-arm), method (*Writer) Err(string) error
+pkg log/syslog (netbsd-arm), method (*Writer) Info(string) error
+pkg log/syslog (netbsd-arm), method (*Writer) Notice(string) error
+pkg log/syslog (netbsd-arm), method (*Writer) Warning(string) error
+pkg log/syslog (netbsd-arm), method (*Writer) Write([]uint8) (int, error)
+pkg log/syslog (netbsd-arm), type Priority int
+pkg log/syslog (netbsd-arm), type Writer struct
+pkg log/syslog (netbsd-arm-cgo), const LOG_ALERT Priority
+pkg log/syslog (netbsd-arm-cgo), const LOG_AUTH Priority
+pkg log/syslog (netbsd-arm-cgo), const LOG_AUTHPRIV Priority
+pkg log/syslog (netbsd-arm-cgo), const LOG_CRIT Priority
+pkg log/syslog (netbsd-arm-cgo), const LOG_CRON Priority
+pkg log/syslog (netbsd-arm-cgo), const LOG_DAEMON Priority
+pkg log/syslog (netbsd-arm-cgo), const LOG_DEBUG Priority
+pkg log/syslog (netbsd-arm-cgo), const LOG_EMERG Priority
+pkg log/syslog (netbsd-arm-cgo), const LOG_ERR Priority
+pkg log/syslog (netbsd-arm-cgo), const LOG_FTP Priority
+pkg log/syslog (netbsd-arm-cgo), const LOG_INFO Priority
+pkg log/syslog (netbsd-arm-cgo), const LOG_KERN Priority
+pkg log/syslog (netbsd-arm-cgo), const LOG_LOCAL0 Priority
+pkg log/syslog (netbsd-arm-cgo), const LOG_LOCAL1 Priority
+pkg log/syslog (netbsd-arm-cgo), const LOG_LOCAL2 Priority
+pkg log/syslog (netbsd-arm-cgo), const LOG_LOCAL3 Priority
+pkg log/syslog (netbsd-arm-cgo), const LOG_LOCAL4 Priority
+pkg log/syslog (netbsd-arm-cgo), const LOG_LOCAL5 Priority
+pkg log/syslog (netbsd-arm-cgo), const LOG_LOCAL6 Priority
+pkg log/syslog (netbsd-arm-cgo), const LOG_LOCAL7 Priority
+pkg log/syslog (netbsd-arm-cgo), const LOG_LPR Priority
+pkg log/syslog (netbsd-arm-cgo), const LOG_MAIL Priority
+pkg log/syslog (netbsd-arm-cgo), const LOG_NEWS Priority
+pkg log/syslog (netbsd-arm-cgo), const LOG_NOTICE Priority
+pkg log/syslog (netbsd-arm-cgo), const LOG_SYSLOG Priority
+pkg log/syslog (netbsd-arm-cgo), const LOG_USER Priority
+pkg log/syslog (netbsd-arm-cgo), const LOG_UUCP Priority
+pkg log/syslog (netbsd-arm-cgo), const LOG_WARNING Priority
+pkg log/syslog (netbsd-arm-cgo), func Dial(string, string, Priority, string) (*Writer, error)
+pkg log/syslog (netbsd-arm-cgo), func New(Priority, string) (*Writer, error)
+pkg log/syslog (netbsd-arm-cgo), func NewLogger(Priority, int) (*log.Logger, error)
+pkg log/syslog (netbsd-arm-cgo), method (*Writer) Alert(string) error
+pkg log/syslog (netbsd-arm-cgo), method (*Writer) Close() error
+pkg log/syslog (netbsd-arm-cgo), method (*Writer) Crit(string) error
+pkg log/syslog (netbsd-arm-cgo), method (*Writer) Debug(string) error
+pkg log/syslog (netbsd-arm-cgo), method (*Writer) Emerg(string) error
+pkg log/syslog (netbsd-arm-cgo), method (*Writer) Err(string) error
+pkg log/syslog (netbsd-arm-cgo), method (*Writer) Info(string) error
+pkg log/syslog (netbsd-arm-cgo), method (*Writer) Notice(string) error
+pkg log/syslog (netbsd-arm-cgo), method (*Writer) Warning(string) error
+pkg log/syslog (netbsd-arm-cgo), method (*Writer) Write([]uint8) (int, error)
+pkg log/syslog (netbsd-arm-cgo), type Priority int
+pkg log/syslog (netbsd-arm-cgo), type Writer struct
+pkg log/syslog (openbsd-386), const LOG_ALERT Priority
+pkg log/syslog (openbsd-386), const LOG_AUTH Priority
+pkg log/syslog (openbsd-386), const LOG_AUTHPRIV Priority
+pkg log/syslog (openbsd-386), const LOG_CRIT Priority
+pkg log/syslog (openbsd-386), const LOG_CRON Priority
+pkg log/syslog (openbsd-386), const LOG_DAEMON Priority
+pkg log/syslog (openbsd-386), const LOG_DEBUG Priority
+pkg log/syslog (openbsd-386), const LOG_EMERG Priority
+pkg log/syslog (openbsd-386), const LOG_ERR Priority
+pkg log/syslog (openbsd-386), const LOG_FTP Priority
+pkg log/syslog (openbsd-386), const LOG_INFO Priority
+pkg log/syslog (openbsd-386), const LOG_KERN Priority
+pkg log/syslog (openbsd-386), const LOG_LOCAL0 Priority
+pkg log/syslog (openbsd-386), const LOG_LOCAL1 Priority
+pkg log/syslog (openbsd-386), const LOG_LOCAL2 Priority
+pkg log/syslog (openbsd-386), const LOG_LOCAL3 Priority
+pkg log/syslog (openbsd-386), const LOG_LOCAL4 Priority
+pkg log/syslog (openbsd-386), const LOG_LOCAL5 Priority
+pkg log/syslog (openbsd-386), const LOG_LOCAL6 Priority
+pkg log/syslog (openbsd-386), const LOG_LOCAL7 Priority
+pkg log/syslog (openbsd-386), const LOG_LPR Priority
+pkg log/syslog (openbsd-386), const LOG_MAIL Priority
+pkg log/syslog (openbsd-386), const LOG_NEWS Priority
+pkg log/syslog (openbsd-386), const LOG_NOTICE Priority
+pkg log/syslog (openbsd-386), const LOG_SYSLOG Priority
+pkg log/syslog (openbsd-386), const LOG_USER Priority
+pkg log/syslog (openbsd-386), const LOG_UUCP Priority
+pkg log/syslog (openbsd-386), const LOG_WARNING Priority
+pkg log/syslog (openbsd-386), func Dial(string, string, Priority, string) (*Writer, error)
+pkg log/syslog (openbsd-386), func New(Priority, string) (*Writer, error)
+pkg log/syslog (openbsd-386), func NewLogger(Priority, int) (*log.Logger, error)
+pkg log/syslog (openbsd-386), method (*Writer) Alert(string) error
+pkg log/syslog (openbsd-386), method (*Writer) Close() error
+pkg log/syslog (openbsd-386), method (*Writer) Crit(string) error
+pkg log/syslog (openbsd-386), method (*Writer) Debug(string) error
+pkg log/syslog (openbsd-386), method (*Writer) Emerg(string) error
+pkg log/syslog (openbsd-386), method (*Writer) Err(string) error
+pkg log/syslog (openbsd-386), method (*Writer) Info(string) error
+pkg log/syslog (openbsd-386), method (*Writer) Notice(string) error
+pkg log/syslog (openbsd-386), method (*Writer) Warning(string) error
+pkg log/syslog (openbsd-386), method (*Writer) Write([]uint8) (int, error)
+pkg log/syslog (openbsd-386), type Priority int
+pkg log/syslog (openbsd-386), type Writer struct
+pkg log/syslog (openbsd-386-cgo), const LOG_ALERT Priority
+pkg log/syslog (openbsd-386-cgo), const LOG_AUTH Priority
+pkg log/syslog (openbsd-386-cgo), const LOG_AUTHPRIV Priority
+pkg log/syslog (openbsd-386-cgo), const LOG_CRIT Priority
+pkg log/syslog (openbsd-386-cgo), const LOG_CRON Priority
+pkg log/syslog (openbsd-386-cgo), const LOG_DAEMON Priority
+pkg log/syslog (openbsd-386-cgo), const LOG_DEBUG Priority
+pkg log/syslog (openbsd-386-cgo), const LOG_EMERG Priority
+pkg log/syslog (openbsd-386-cgo), const LOG_ERR Priority
+pkg log/syslog (openbsd-386-cgo), const LOG_FTP Priority
+pkg log/syslog (openbsd-386-cgo), const LOG_INFO Priority
+pkg log/syslog (openbsd-386-cgo), const LOG_KERN Priority
+pkg log/syslog (openbsd-386-cgo), const LOG_LOCAL0 Priority
+pkg log/syslog (openbsd-386-cgo), const LOG_LOCAL1 Priority
+pkg log/syslog (openbsd-386-cgo), const LOG_LOCAL2 Priority
+pkg log/syslog (openbsd-386-cgo), const LOG_LOCAL3 Priority
+pkg log/syslog (openbsd-386-cgo), const LOG_LOCAL4 Priority
+pkg log/syslog (openbsd-386-cgo), const LOG_LOCAL5 Priority
+pkg log/syslog (openbsd-386-cgo), const LOG_LOCAL6 Priority
+pkg log/syslog (openbsd-386-cgo), const LOG_LOCAL7 Priority
+pkg log/syslog (openbsd-386-cgo), const LOG_LPR Priority
+pkg log/syslog (openbsd-386-cgo), const LOG_MAIL Priority
+pkg log/syslog (openbsd-386-cgo), const LOG_NEWS Priority
+pkg log/syslog (openbsd-386-cgo), const LOG_NOTICE Priority
+pkg log/syslog (openbsd-386-cgo), const LOG_SYSLOG Priority
+pkg log/syslog (openbsd-386-cgo), const LOG_USER Priority
+pkg log/syslog (openbsd-386-cgo), const LOG_UUCP Priority
+pkg log/syslog (openbsd-386-cgo), const LOG_WARNING Priority
+pkg log/syslog (openbsd-386-cgo), func Dial(string, string, Priority, string) (*Writer, error)
+pkg log/syslog (openbsd-386-cgo), func New(Priority, string) (*Writer, error)
+pkg log/syslog (openbsd-386-cgo), func NewLogger(Priority, int) (*log.Logger, error)
+pkg log/syslog (openbsd-386-cgo), method (*Writer) Alert(string) error
+pkg log/syslog (openbsd-386-cgo), method (*Writer) Close() error
+pkg log/syslog (openbsd-386-cgo), method (*Writer) Crit(string) error
+pkg log/syslog (openbsd-386-cgo), method (*Writer) Debug(string) error
+pkg log/syslog (openbsd-386-cgo), method (*Writer) Emerg(string) error
+pkg log/syslog (openbsd-386-cgo), method (*Writer) Err(string) error
+pkg log/syslog (openbsd-386-cgo), method (*Writer) Info(string) error
+pkg log/syslog (openbsd-386-cgo), method (*Writer) Notice(string) error
+pkg log/syslog (openbsd-386-cgo), method (*Writer) Warning(string) error
+pkg log/syslog (openbsd-386-cgo), method (*Writer) Write([]uint8) (int, error)
+pkg log/syslog (openbsd-386-cgo), type Priority int
+pkg log/syslog (openbsd-386-cgo), type Writer struct
+pkg log/syslog (openbsd-amd64), const LOG_ALERT Priority
+pkg log/syslog (openbsd-amd64), const LOG_AUTH Priority
+pkg log/syslog (openbsd-amd64), const LOG_AUTHPRIV Priority
+pkg log/syslog (openbsd-amd64), const LOG_CRIT Priority
+pkg log/syslog (openbsd-amd64), const LOG_CRON Priority
+pkg log/syslog (openbsd-amd64), const LOG_DAEMON Priority
+pkg log/syslog (openbsd-amd64), const LOG_DEBUG Priority
+pkg log/syslog (openbsd-amd64), const LOG_EMERG Priority
+pkg log/syslog (openbsd-amd64), const LOG_ERR Priority
+pkg log/syslog (openbsd-amd64), const LOG_FTP Priority
+pkg log/syslog (openbsd-amd64), const LOG_INFO Priority
+pkg log/syslog (openbsd-amd64), const LOG_KERN Priority
+pkg log/syslog (openbsd-amd64), const LOG_LOCAL0 Priority
+pkg log/syslog (openbsd-amd64), const LOG_LOCAL1 Priority
+pkg log/syslog (openbsd-amd64), const LOG_LOCAL2 Priority
+pkg log/syslog (openbsd-amd64), const LOG_LOCAL3 Priority
+pkg log/syslog (openbsd-amd64), const LOG_LOCAL4 Priority
+pkg log/syslog (openbsd-amd64), const LOG_LOCAL5 Priority
+pkg log/syslog (openbsd-amd64), const LOG_LOCAL6 Priority
+pkg log/syslog (openbsd-amd64), const LOG_LOCAL7 Priority
+pkg log/syslog (openbsd-amd64), const LOG_LPR Priority
+pkg log/syslog (openbsd-amd64), const LOG_MAIL Priority
+pkg log/syslog (openbsd-amd64), const LOG_NEWS Priority
+pkg log/syslog (openbsd-amd64), const LOG_NOTICE Priority
+pkg log/syslog (openbsd-amd64), const LOG_SYSLOG Priority
+pkg log/syslog (openbsd-amd64), const LOG_USER Priority
+pkg log/syslog (openbsd-amd64), const LOG_UUCP Priority
+pkg log/syslog (openbsd-amd64), const LOG_WARNING Priority
+pkg log/syslog (openbsd-amd64), func Dial(string, string, Priority, string) (*Writer, error)
+pkg log/syslog (openbsd-amd64), func New(Priority, string) (*Writer, error)
+pkg log/syslog (openbsd-amd64), func NewLogger(Priority, int) (*log.Logger, error)
+pkg log/syslog (openbsd-amd64), method (*Writer) Alert(string) error
+pkg log/syslog (openbsd-amd64), method (*Writer) Close() error
+pkg log/syslog (openbsd-amd64), method (*Writer) Crit(string) error
+pkg log/syslog (openbsd-amd64), method (*Writer) Debug(string) error
+pkg log/syslog (openbsd-amd64), method (*Writer) Emerg(string) error
+pkg log/syslog (openbsd-amd64), method (*Writer) Err(string) error
+pkg log/syslog (openbsd-amd64), method (*Writer) Info(string) error
+pkg log/syslog (openbsd-amd64), method (*Writer) Notice(string) error
+pkg log/syslog (openbsd-amd64), method (*Writer) Warning(string) error
+pkg log/syslog (openbsd-amd64), method (*Writer) Write([]uint8) (int, error)
+pkg log/syslog (openbsd-amd64), type Priority int
+pkg log/syslog (openbsd-amd64), type Writer struct
+pkg log/syslog (openbsd-amd64-cgo), const LOG_ALERT Priority
+pkg log/syslog (openbsd-amd64-cgo), const LOG_AUTH Priority
+pkg log/syslog (openbsd-amd64-cgo), const LOG_AUTHPRIV Priority
+pkg log/syslog (openbsd-amd64-cgo), const LOG_CRIT Priority
+pkg log/syslog (openbsd-amd64-cgo), const LOG_CRON Priority
+pkg log/syslog (openbsd-amd64-cgo), const LOG_DAEMON Priority
+pkg log/syslog (openbsd-amd64-cgo), const LOG_DEBUG Priority
+pkg log/syslog (openbsd-amd64-cgo), const LOG_EMERG Priority
+pkg log/syslog (openbsd-amd64-cgo), const LOG_ERR Priority
+pkg log/syslog (openbsd-amd64-cgo), const LOG_FTP Priority
+pkg log/syslog (openbsd-amd64-cgo), const LOG_INFO Priority
+pkg log/syslog (openbsd-amd64-cgo), const LOG_KERN Priority
+pkg log/syslog (openbsd-amd64-cgo), const LOG_LOCAL0 Priority
+pkg log/syslog (openbsd-amd64-cgo), const LOG_LOCAL1 Priority
+pkg log/syslog (openbsd-amd64-cgo), const LOG_LOCAL2 Priority
+pkg log/syslog (openbsd-amd64-cgo), const LOG_LOCAL3 Priority
+pkg log/syslog (openbsd-amd64-cgo), const LOG_LOCAL4 Priority
+pkg log/syslog (openbsd-amd64-cgo), const LOG_LOCAL5 Priority
+pkg log/syslog (openbsd-amd64-cgo), const LOG_LOCAL6 Priority
+pkg log/syslog (openbsd-amd64-cgo), const LOG_LOCAL7 Priority
+pkg log/syslog (openbsd-amd64-cgo), const LOG_LPR Priority
+pkg log/syslog (openbsd-amd64-cgo), const LOG_MAIL Priority
+pkg log/syslog (openbsd-amd64-cgo), const LOG_NEWS Priority
+pkg log/syslog (openbsd-amd64-cgo), const LOG_NOTICE Priority
+pkg log/syslog (openbsd-amd64-cgo), const LOG_SYSLOG Priority
+pkg log/syslog (openbsd-amd64-cgo), const LOG_USER Priority
+pkg log/syslog (openbsd-amd64-cgo), const LOG_UUCP Priority
+pkg log/syslog (openbsd-amd64-cgo), const LOG_WARNING Priority
+pkg log/syslog (openbsd-amd64-cgo), func Dial(string, string, Priority, string) (*Writer, error)
+pkg log/syslog (openbsd-amd64-cgo), func New(Priority, string) (*Writer, error)
+pkg log/syslog (openbsd-amd64-cgo), func NewLogger(Priority, int) (*log.Logger, error)
+pkg log/syslog (openbsd-amd64-cgo), method (*Writer) Alert(string) error
+pkg log/syslog (openbsd-amd64-cgo), method (*Writer) Close() error
+pkg log/syslog (openbsd-amd64-cgo), method (*Writer) Crit(string) error
+pkg log/syslog (openbsd-amd64-cgo), method (*Writer) Debug(string) error
+pkg log/syslog (openbsd-amd64-cgo), method (*Writer) Emerg(string) error
+pkg log/syslog (openbsd-amd64-cgo), method (*Writer) Err(string) error
+pkg log/syslog (openbsd-amd64-cgo), method (*Writer) Info(string) error
+pkg log/syslog (openbsd-amd64-cgo), method (*Writer) Notice(string) error
+pkg log/syslog (openbsd-amd64-cgo), method (*Writer) Warning(string) error
+pkg log/syslog (openbsd-amd64-cgo), method (*Writer) Write([]uint8) (int, error)
+pkg log/syslog (openbsd-amd64-cgo), type Priority int
+pkg log/syslog (openbsd-amd64-cgo), type Writer struct
+pkg net, method (*IP) UnmarshalText([]uint8) error
+pkg net, method (*TCPConn) SetKeepAlivePeriod(time.Duration) error
+pkg net, method (IP) MarshalText() ([]uint8, error)
+pkg net, type Dialer struct, DualStack bool
+pkg net/smtp, method (*Client) Close() error
+pkg os (linux-arm), const O_SYNC = 1052672
+pkg os (linux-arm-cgo), const O_SYNC = 1052672
+pkg reflect, method (Value) SetCap(int)
+pkg reflect, method (Value) Slice3(int, int, int) Value
+pkg runtime, type MemStats struct, GCSys uint64
+pkg runtime, type MemStats struct, OtherSys uint64
+pkg runtime/debug, func SetMaxStack(int) int
+pkg runtime/debug, func SetMaxThreads(int) int
+pkg sort, func Stable(Interface)
+pkg strings, func IndexByte(string, uint8) int
+pkg sync/atomic, func SwapInt32(*int32, int32) int32
+pkg sync/atomic, func SwapInt64(*int64, int64) int64
+pkg sync/atomic, func SwapPointer(*unsafe.Pointer, unsafe.Pointer) unsafe.Pointer
+pkg sync/atomic, func SwapUint32(*uint32, uint32) uint32
+pkg sync/atomic, func SwapUint64(*uint64, uint64) uint64
+pkg sync/atomic, func SwapUintptr(*uintptr, uintptr) uintptr
+pkg syscall (darwin-386), const ICMP6_FILTER = 18
+pkg syscall (darwin-386), const ICMP6_FILTER ideal-int
+pkg syscall (darwin-386), const ImplementsGetwd = true
+pkg syscall (darwin-386), const PRIO_PGRP = 1
+pkg syscall (darwin-386), const PRIO_PGRP ideal-int
+pkg syscall (darwin-386), const PRIO_PROCESS = 0
+pkg syscall (darwin-386), const PRIO_PROCESS ideal-int
+pkg syscall (darwin-386), const PRIO_USER = 2
+pkg syscall (darwin-386), const PRIO_USER ideal-int
+pkg syscall (darwin-386), const SizeofICMPv6Filter = 32
+pkg syscall (darwin-386), const SizeofICMPv6Filter ideal-int
+pkg syscall (darwin-386), const SizeofIPv6MTUInfo = 32
+pkg syscall (darwin-386), const SizeofIPv6MTUInfo ideal-int
+pkg syscall (darwin-386), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
+pkg syscall (darwin-386), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
+pkg syscall (darwin-386), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
+pkg syscall (darwin-386), type ICMPv6Filter struct
+pkg syscall (darwin-386), type ICMPv6Filter struct, Filt [8]uint32
+pkg syscall (darwin-386), type IPv6MTUInfo struct
+pkg syscall (darwin-386), type IPv6MTUInfo struct, Addr RawSockaddrInet6
+pkg syscall (darwin-386), type IPv6MTUInfo struct, Mtu uint32
+pkg syscall (darwin-386-cgo), const ICMP6_FILTER = 18
+pkg syscall (darwin-386-cgo), const ICMP6_FILTER ideal-int
+pkg syscall (darwin-386-cgo), const ImplementsGetwd = true
+pkg syscall (darwin-386-cgo), const PRIO_PGRP = 1
+pkg syscall (darwin-386-cgo), const PRIO_PGRP ideal-int
+pkg syscall (darwin-386-cgo), const PRIO_PROCESS = 0
+pkg syscall (darwin-386-cgo), const PRIO_PROCESS ideal-int
+pkg syscall (darwin-386-cgo), const PRIO_USER = 2
+pkg syscall (darwin-386-cgo), const PRIO_USER ideal-int
+pkg syscall (darwin-386-cgo), const SizeofICMPv6Filter = 32
+pkg syscall (darwin-386-cgo), const SizeofICMPv6Filter ideal-int
+pkg syscall (darwin-386-cgo), const SizeofIPv6MTUInfo = 32
+pkg syscall (darwin-386-cgo), const SizeofIPv6MTUInfo ideal-int
+pkg syscall (darwin-386-cgo), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
+pkg syscall (darwin-386-cgo), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
+pkg syscall (darwin-386-cgo), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
+pkg syscall (darwin-386-cgo), type ICMPv6Filter struct
+pkg syscall (darwin-386-cgo), type ICMPv6Filter struct, Filt [8]uint32
+pkg syscall (darwin-386-cgo), type IPv6MTUInfo struct
+pkg syscall (darwin-386-cgo), type IPv6MTUInfo struct, Addr RawSockaddrInet6
+pkg syscall (darwin-386-cgo), type IPv6MTUInfo struct, Mtu uint32
+pkg syscall (darwin-amd64), const ICMP6_FILTER = 18
+pkg syscall (darwin-amd64), const ICMP6_FILTER ideal-int
+pkg syscall (darwin-amd64), const ImplementsGetwd = true
+pkg syscall (darwin-amd64), const PRIO_PGRP = 1
+pkg syscall (darwin-amd64), const PRIO_PGRP ideal-int
+pkg syscall (darwin-amd64), const PRIO_PROCESS = 0
+pkg syscall (darwin-amd64), const PRIO_PROCESS ideal-int
+pkg syscall (darwin-amd64), const PRIO_USER = 2
+pkg syscall (darwin-amd64), const PRIO_USER ideal-int
+pkg syscall (darwin-amd64), const SizeofICMPv6Filter = 32
+pkg syscall (darwin-amd64), const SizeofICMPv6Filter ideal-int
+pkg syscall (darwin-amd64), const SizeofIPv6MTUInfo = 32
+pkg syscall (darwin-amd64), const SizeofIPv6MTUInfo ideal-int
+pkg syscall (darwin-amd64), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
+pkg syscall (darwin-amd64), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
+pkg syscall (darwin-amd64), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
+pkg syscall (darwin-amd64), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (darwin-amd64), type ICMPv6Filter struct
+pkg syscall (darwin-amd64), type ICMPv6Filter struct, Filt [8]uint32
+pkg syscall (darwin-amd64), type IPv6MTUInfo struct
+pkg syscall (darwin-amd64), type IPv6MTUInfo struct, Addr RawSockaddrInet6
+pkg syscall (darwin-amd64), type IPv6MTUInfo struct, Mtu uint32
+pkg syscall (darwin-amd64-cgo), const ICMP6_FILTER = 18
+pkg syscall (darwin-amd64-cgo), const ICMP6_FILTER ideal-int
+pkg syscall (darwin-amd64-cgo), const ImplementsGetwd = true
+pkg syscall (darwin-amd64-cgo), const PRIO_PGRP = 1
+pkg syscall (darwin-amd64-cgo), const PRIO_PGRP ideal-int
+pkg syscall (darwin-amd64-cgo), const PRIO_PROCESS = 0
+pkg syscall (darwin-amd64-cgo), const PRIO_PROCESS ideal-int
+pkg syscall (darwin-amd64-cgo), const PRIO_USER = 2
+pkg syscall (darwin-amd64-cgo), const PRIO_USER ideal-int
+pkg syscall (darwin-amd64-cgo), const SizeofICMPv6Filter = 32
+pkg syscall (darwin-amd64-cgo), const SizeofICMPv6Filter ideal-int
+pkg syscall (darwin-amd64-cgo), const SizeofIPv6MTUInfo = 32
+pkg syscall (darwin-amd64-cgo), const SizeofIPv6MTUInfo ideal-int
+pkg syscall (darwin-amd64-cgo), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
+pkg syscall (darwin-amd64-cgo), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
+pkg syscall (darwin-amd64-cgo), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
+pkg syscall (darwin-amd64-cgo), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (darwin-amd64-cgo), type ICMPv6Filter struct
+pkg syscall (darwin-amd64-cgo), type ICMPv6Filter struct, Filt [8]uint32
+pkg syscall (darwin-amd64-cgo), type IPv6MTUInfo struct
+pkg syscall (darwin-amd64-cgo), type IPv6MTUInfo struct, Addr RawSockaddrInet6
+pkg syscall (darwin-amd64-cgo), type IPv6MTUInfo struct, Mtu uint32
+pkg syscall (freebsd-386), const F_DUP2FD_CLOEXEC = 18
+pkg syscall (freebsd-386), const F_DUP2FD_CLOEXEC ideal-int
+pkg syscall (freebsd-386), const F_DUPFD_CLOEXEC = 17
+pkg syscall (freebsd-386), const F_DUPFD_CLOEXEC ideal-int
+pkg syscall (freebsd-386), const ICMP6_FILTER = 18
+pkg syscall (freebsd-386), const ICMP6_FILTER ideal-int
+pkg syscall (freebsd-386), const PRIO_PGRP = 1
+pkg syscall (freebsd-386), const PRIO_PGRP ideal-int
+pkg syscall (freebsd-386), const PRIO_PROCESS = 0
+pkg syscall (freebsd-386), const PRIO_PROCESS ideal-int
+pkg syscall (freebsd-386), const PRIO_USER = 2
+pkg syscall (freebsd-386), const PRIO_USER ideal-int
+pkg syscall (freebsd-386), const SizeofICMPv6Filter = 32
+pkg syscall (freebsd-386), const SizeofICMPv6Filter ideal-int
+pkg syscall (freebsd-386), const SizeofIPv6MTUInfo = 32
+pkg syscall (freebsd-386), const SizeofIPv6MTUInfo ideal-int
+pkg syscall (freebsd-386), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
+pkg syscall (freebsd-386), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
+pkg syscall (freebsd-386), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
+pkg syscall (freebsd-386), type ICMPv6Filter struct
+pkg syscall (freebsd-386), type ICMPv6Filter struct, Filt [8]uint32
+pkg syscall (freebsd-386), type IPv6MTUInfo struct
+pkg syscall (freebsd-386), type IPv6MTUInfo struct, Addr RawSockaddrInet6
+pkg syscall (freebsd-386), type IPv6MTUInfo struct, Mtu uint32
+pkg syscall (freebsd-386-cgo), const AF_APPLETALK ideal-int
+pkg syscall (freebsd-386-cgo), const AF_ARP ideal-int
+pkg syscall (freebsd-386-cgo), const AF_ATM ideal-int
+pkg syscall (freebsd-386-cgo), const AF_BLUETOOTH ideal-int
+pkg syscall (freebsd-386-cgo), const AF_CCITT ideal-int
+pkg syscall (freebsd-386-cgo), const AF_CHAOS ideal-int
+pkg syscall (freebsd-386-cgo), const AF_CNT ideal-int
+pkg syscall (freebsd-386-cgo), const AF_COIP ideal-int
+pkg syscall (freebsd-386-cgo), const AF_DATAKIT ideal-int
+pkg syscall (freebsd-386-cgo), const AF_DECnet ideal-int
+pkg syscall (freebsd-386-cgo), const AF_DLI ideal-int
+pkg syscall (freebsd-386-cgo), const AF_E164 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_ECMA ideal-int
+pkg syscall (freebsd-386-cgo), const AF_HYLINK ideal-int
+pkg syscall (freebsd-386-cgo), const AF_IEEE80211 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_IMPLINK ideal-int
+pkg syscall (freebsd-386-cgo), const AF_IPX ideal-int
+pkg syscall (freebsd-386-cgo), const AF_ISDN ideal-int
+pkg syscall (freebsd-386-cgo), const AF_ISO ideal-int
+pkg syscall (freebsd-386-cgo), const AF_LAT ideal-int
+pkg syscall (freebsd-386-cgo), const AF_LINK ideal-int
+pkg syscall (freebsd-386-cgo), const AF_LOCAL ideal-int
+pkg syscall (freebsd-386-cgo), const AF_MAX ideal-int
+pkg syscall (freebsd-386-cgo), const AF_NATM ideal-int
+pkg syscall (freebsd-386-cgo), const AF_NETBIOS ideal-int
+pkg syscall (freebsd-386-cgo), const AF_NETGRAPH ideal-int
+pkg syscall (freebsd-386-cgo), const AF_OSI ideal-int
+pkg syscall (freebsd-386-cgo), const AF_PUP ideal-int
+pkg syscall (freebsd-386-cgo), const AF_ROUTE ideal-int
+pkg syscall (freebsd-386-cgo), const AF_SCLUSTER ideal-int
+pkg syscall (freebsd-386-cgo), const AF_SIP ideal-int
+pkg syscall (freebsd-386-cgo), const AF_SLOW ideal-int
+pkg syscall (freebsd-386-cgo), const AF_SNA ideal-int
+pkg syscall (freebsd-386-cgo), const AF_VENDOR00 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_VENDOR01 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_VENDOR02 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_VENDOR03 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_VENDOR04 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_VENDOR05 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_VENDOR06 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_VENDOR07 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_VENDOR08 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_VENDOR09 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_VENDOR10 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_VENDOR11 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_VENDOR12 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_VENDOR13 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_VENDOR14 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_VENDOR15 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_VENDOR16 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_VENDOR17 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_VENDOR18 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_VENDOR19 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_VENDOR20 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_VENDOR21 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_VENDOR22 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_VENDOR23 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_VENDOR24 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_VENDOR25 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_VENDOR26 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_VENDOR27 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_VENDOR28 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_VENDOR29 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_VENDOR30 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_VENDOR31 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_VENDOR32 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_VENDOR33 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_VENDOR34 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_VENDOR35 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_VENDOR36 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_VENDOR37 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_VENDOR38 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_VENDOR39 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_VENDOR40 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_VENDOR41 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_VENDOR42 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_VENDOR43 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_VENDOR44 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_VENDOR45 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_VENDOR46 ideal-int
+pkg syscall (freebsd-386-cgo), const AF_VENDOR47 ideal-int
+pkg syscall (freebsd-386-cgo), const B0 ideal-int
+pkg syscall (freebsd-386-cgo), const B110 ideal-int
+pkg syscall (freebsd-386-cgo), const B115200 ideal-int
+pkg syscall (freebsd-386-cgo), const B1200 ideal-int
+pkg syscall (freebsd-386-cgo), const B134 ideal-int
+pkg syscall (freebsd-386-cgo), const B14400 ideal-int
+pkg syscall (freebsd-386-cgo), const B150 ideal-int
+pkg syscall (freebsd-386-cgo), const B1800 ideal-int
+pkg syscall (freebsd-386-cgo), const B19200 ideal-int
+pkg syscall (freebsd-386-cgo), const B200 ideal-int
+pkg syscall (freebsd-386-cgo), const B230400 ideal-int
+pkg syscall (freebsd-386-cgo), const B2400 ideal-int
+pkg syscall (freebsd-386-cgo), const B28800 ideal-int
+pkg syscall (freebsd-386-cgo), const B300 ideal-int
+pkg syscall (freebsd-386-cgo), const B38400 ideal-int
+pkg syscall (freebsd-386-cgo), const B460800 ideal-int
+pkg syscall (freebsd-386-cgo), const B4800 ideal-int
+pkg syscall (freebsd-386-cgo), const B50 ideal-int
+pkg syscall (freebsd-386-cgo), const B57600 ideal-int
+pkg syscall (freebsd-386-cgo), const B600 ideal-int
+pkg syscall (freebsd-386-cgo), const B7200 ideal-int
+pkg syscall (freebsd-386-cgo), const B75 ideal-int
+pkg syscall (freebsd-386-cgo), const B76800 ideal-int
+pkg syscall (freebsd-386-cgo), const B921600 ideal-int
+pkg syscall (freebsd-386-cgo), const B9600 ideal-int
+pkg syscall (freebsd-386-cgo), const BIOCFEEDBACK ideal-int
+pkg syscall (freebsd-386-cgo), const BIOCFLUSH ideal-int
+pkg syscall (freebsd-386-cgo), const BIOCGBLEN ideal-int
+pkg syscall (freebsd-386-cgo), const BIOCGDIRECTION ideal-int
+pkg syscall (freebsd-386-cgo), const BIOCGDLT ideal-int
+pkg syscall (freebsd-386-cgo), const BIOCGDLTLIST ideal-int
+pkg syscall (freebsd-386-cgo), const BIOCGETBUFMODE ideal-int
+pkg syscall (freebsd-386-cgo), const BIOCGETIF ideal-int
+pkg syscall (freebsd-386-cgo), const BIOCGETZMAX ideal-int
+pkg syscall (freebsd-386-cgo), const BIOCGHDRCMPLT ideal-int
+pkg syscall (freebsd-386-cgo), const BIOCGRSIG ideal-int
+pkg syscall (freebsd-386-cgo), const BIOCGRTIMEOUT ideal-int
+pkg syscall (freebsd-386-cgo), const BIOCGSEESENT ideal-int
+pkg syscall (freebsd-386-cgo), const BIOCGSTATS ideal-int
+pkg syscall (freebsd-386-cgo), const BIOCGTSTAMP ideal-int
+pkg syscall (freebsd-386-cgo), const BIOCIMMEDIATE ideal-int
+pkg syscall (freebsd-386-cgo), const BIOCLOCK ideal-int
+pkg syscall (freebsd-386-cgo), const BIOCPROMISC ideal-int
+pkg syscall (freebsd-386-cgo), const BIOCROTZBUF ideal-int
+pkg syscall (freebsd-386-cgo), const BIOCSBLEN ideal-int
+pkg syscall (freebsd-386-cgo), const BIOCSDIRECTION ideal-int
+pkg syscall (freebsd-386-cgo), const BIOCSDLT ideal-int
+pkg syscall (freebsd-386-cgo), const BIOCSETBUFMODE ideal-int
+pkg syscall (freebsd-386-cgo), const BIOCSETF ideal-int
+pkg syscall (freebsd-386-cgo), const BIOCSETFNR ideal-int
+pkg syscall (freebsd-386-cgo), const BIOCSETIF ideal-int
+pkg syscall (freebsd-386-cgo), const BIOCSETWF ideal-int
+pkg syscall (freebsd-386-cgo), const BIOCSETZBUF ideal-int
+pkg syscall (freebsd-386-cgo), const BIOCSHDRCMPLT ideal-int
+pkg syscall (freebsd-386-cgo), const BIOCSRSIG ideal-int
+pkg syscall (freebsd-386-cgo), const BIOCSRTIMEOUT ideal-int
+pkg syscall (freebsd-386-cgo), const BIOCSSEESENT ideal-int
+pkg syscall (freebsd-386-cgo), const BIOCSTSTAMP ideal-int
+pkg syscall (freebsd-386-cgo), const BIOCVERSION ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_A ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_ABS ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_ADD ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_ALIGNMENT ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_ALU ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_AND ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_B ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_BUFMODE_BUFFER ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_BUFMODE_ZBUF ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_DIV ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_H ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_IMM ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_IND ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_JA ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_JEQ ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_JGE ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_JGT ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_JMP ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_JSET ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_K ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_LD ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_LDX ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_LEN ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_LSH ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_MAJOR_VERSION ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_MAXBUFSIZE ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_MAXINSNS ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_MEM ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_MEMWORDS ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_MINBUFSIZE ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_MINOR_VERSION ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_MISC ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_MSH ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_MUL ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_NEG ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_OR ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_RELEASE ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_RET ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_RSH ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_ST ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_STX ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_SUB ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_TAX ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_TXA ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_T_BINTIME ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_T_BINTIME_FAST ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_T_BINTIME_MONOTONIC ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_T_BINTIME_MONOTONIC_FAST ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_T_FAST ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_T_FLAG_MASK ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_T_FORMAT_MASK ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_T_MICROTIME ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_T_MICROTIME_FAST ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_T_MICROTIME_MONOTONIC ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_T_MICROTIME_MONOTONIC_FAST ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_T_MONOTONIC ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_T_MONOTONIC_FAST ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_T_NANOTIME ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_T_NANOTIME_FAST ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_T_NANOTIME_MONOTONIC ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_T_NANOTIME_MONOTONIC_FAST ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_T_NONE ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_T_NORMAL ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_W ideal-int
+pkg syscall (freebsd-386-cgo), const BPF_X ideal-int
+pkg syscall (freebsd-386-cgo), const BRKINT ideal-int
+pkg syscall (freebsd-386-cgo), const CFLUSH ideal-int
+pkg syscall (freebsd-386-cgo), const CLOCAL ideal-int
+pkg syscall (freebsd-386-cgo), const CREAD ideal-int
+pkg syscall (freebsd-386-cgo), const CS5 ideal-int
+pkg syscall (freebsd-386-cgo), const CS6 ideal-int
+pkg syscall (freebsd-386-cgo), const CS7 ideal-int
+pkg syscall (freebsd-386-cgo), const CS8 ideal-int
+pkg syscall (freebsd-386-cgo), const CSIZE ideal-int
+pkg syscall (freebsd-386-cgo), const CSTART ideal-int
+pkg syscall (freebsd-386-cgo), const CSTATUS ideal-int
+pkg syscall (freebsd-386-cgo), const CSTOP ideal-int
+pkg syscall (freebsd-386-cgo), const CSTOPB ideal-int
+pkg syscall (freebsd-386-cgo), const CSUSP ideal-int
+pkg syscall (freebsd-386-cgo), const CTL_MAXNAME ideal-int
+pkg syscall (freebsd-386-cgo), const CTL_NET ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_A429 ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_A653_ICM ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_AIRONET_HEADER ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_AOS ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_ARCNET ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_ARCNET_LINUX ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_ATM_CLIP ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_ATM_RFC1483 ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_AURORA ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_AX25 ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_AX25_KISS ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_BACNET_MS_TP ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_BLUETOOTH_HCI_H4 ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_CAN20B ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_CAN_SOCKETCAN ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_CHAOS ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_CHDLC ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_CISCO_IOS ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_C_HDLC ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_C_HDLC_WITH_DIR ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_DBUS ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_DECT ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_DOCSIS ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_DVB_CI ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_ECONET ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_EN10MB ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_EN3MB ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_ENC ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_ERF ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_ERF_ETH ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_ERF_POS ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_FC_2 ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_FC_2_WITH_FRAME_DELIMS ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_FDDI ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_FLEXRAY ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_FRELAY ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_FRELAY_WITH_DIR ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_GCOM_SERIAL ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_GCOM_T1E1 ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_GPF_F ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_GPF_T ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_GPRS_LLC ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_GSMTAP_ABIS ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_GSMTAP_UM ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_HHDLC ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_IBM_SN ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_IBM_SP ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_IEEE802 ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_IEEE802_11 ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_IEEE802_11_RADIO ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_IEEE802_11_RADIO_AVS ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_IEEE802_15_4 ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_IEEE802_15_4_LINUX ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_IEEE802_15_4_NOFCS ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_IEEE802_15_4_NONASK_PHY ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_IEEE802_16_MAC_CPS ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_IEEE802_16_MAC_CPS_RADIO ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_IPFILTER ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_IPMB ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_IPMB_LINUX ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_IPNET ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_IPOIB ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_IPV4 ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_IPV6 ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_IP_OVER_FC ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_ATM1 ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_ATM2 ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_ATM_CEMIC ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_CHDLC ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_ES ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_ETHER ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_FIBRECHANNEL ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_FRELAY ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_GGSN ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_ISM ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_MFR ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_MLFR ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_MLPPP ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_MONITOR ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_PIC_PEER ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_PPP ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_PPPOE ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_PPPOE_ATM ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_SERVICES ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_SRX_E2E ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_ST ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_VP ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_VS ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_LAPB_WITH_DIR ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_LAPD ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_LIN ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_LINUX_EVDEV ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_LINUX_IRDA ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_LINUX_LAPD ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_LINUX_PPP_WITHDIRECTION ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_LINUX_SLL ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_LOOP ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_LTALK ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_MATCHING_MAX ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_MATCHING_MIN ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_MFR ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_MOST ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_MPLS ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_MTP2 ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_MTP2_WITH_PHDR ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_MTP3 ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_MUX27010 ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_NETANALYZER ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_NETANALYZER_TRANSPARENT ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_NFLOG ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_NULL ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_PCI_EXP ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_PFLOG ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_PFSYNC ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_PPI ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_PPP ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_PPP_BSDOS ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_PPP_ETHER ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_PPP_PPPD ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_PPP_SERIAL ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_PPP_WITH_DIR ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_PPP_WITH_DIRECTION ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_PRISM_HEADER ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_PRONET ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_RAIF1 ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_RAW ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_RIO ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_SCCP ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_SITA ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_SLIP ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_SLIP_BSDOS ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_STANAG_5066_D_PDU ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_SUNATM ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_SYMANTEC_FIREWALL ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_TZSP ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_USB ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_USB_LINUX ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_USB_LINUX_MMAPPED ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_USER0 ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_USER1 ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_USER10 ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_USER11 ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_USER12 ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_USER13 ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_USER14 ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_USER15 ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_USER2 ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_USER3 ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_USER4 ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_USER5 ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_USER6 ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_USER7 ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_USER8 ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_USER9 ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_WIHART ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_X2E_SERIAL ideal-int
+pkg syscall (freebsd-386-cgo), const DLT_X2E_XORAYA ideal-int
+pkg syscall (freebsd-386-cgo), const DT_BLK ideal-int
+pkg syscall (freebsd-386-cgo), const DT_CHR ideal-int
+pkg syscall (freebsd-386-cgo), const DT_DIR ideal-int
+pkg syscall (freebsd-386-cgo), const DT_FIFO ideal-int
+pkg syscall (freebsd-386-cgo), const DT_LNK ideal-int
+pkg syscall (freebsd-386-cgo), const DT_REG ideal-int
+pkg syscall (freebsd-386-cgo), const DT_SOCK ideal-int
+pkg syscall (freebsd-386-cgo), const DT_UNKNOWN ideal-int
+pkg syscall (freebsd-386-cgo), const DT_WHT ideal-int
+pkg syscall (freebsd-386-cgo), const EAUTH Errno
+pkg syscall (freebsd-386-cgo), const EBADMSG Errno
+pkg syscall (freebsd-386-cgo), const EBADRPC Errno
+pkg syscall (freebsd-386-cgo), const ECAPMODE Errno
+pkg syscall (freebsd-386-cgo), const ECHO ideal-int
+pkg syscall (freebsd-386-cgo), const ECHOCTL ideal-int
+pkg syscall (freebsd-386-cgo), const ECHOE ideal-int
+pkg syscall (freebsd-386-cgo), const ECHOK ideal-int
+pkg syscall (freebsd-386-cgo), const ECHOKE ideal-int
+pkg syscall (freebsd-386-cgo), const ECHONL ideal-int
+pkg syscall (freebsd-386-cgo), const ECHOPRT ideal-int
+pkg syscall (freebsd-386-cgo), const EDOOFUS Errno
+pkg syscall (freebsd-386-cgo), const EFTYPE Errno
+pkg syscall (freebsd-386-cgo), const ELAST Errno
+pkg syscall (freebsd-386-cgo), const EMULTIHOP Errno
+pkg syscall (freebsd-386-cgo), const ENEEDAUTH Errno
+pkg syscall (freebsd-386-cgo), const ENOATTR Errno
+pkg syscall (freebsd-386-cgo), const ENOLINK Errno
+pkg syscall (freebsd-386-cgo), const ENOTCAPABLE Errno
+pkg syscall (freebsd-386-cgo), const EPROCLIM Errno
+pkg syscall (freebsd-386-cgo), const EPROCUNAVAIL Errno
+pkg syscall (freebsd-386-cgo), const EPROGMISMATCH Errno
+pkg syscall (freebsd-386-cgo), const EPROGUNAVAIL Errno
+pkg syscall (freebsd-386-cgo), const EPROTO Errno
+pkg syscall (freebsd-386-cgo), const ERPCMISMATCH Errno
+pkg syscall (freebsd-386-cgo), const EVFILT_AIO ideal-int
+pkg syscall (freebsd-386-cgo), const EVFILT_FS ideal-int
+pkg syscall (freebsd-386-cgo), const EVFILT_LIO ideal-int
+pkg syscall (freebsd-386-cgo), const EVFILT_PROC ideal-int
+pkg syscall (freebsd-386-cgo), const EVFILT_READ ideal-int
+pkg syscall (freebsd-386-cgo), const EVFILT_SIGNAL ideal-int
+pkg syscall (freebsd-386-cgo), const EVFILT_SYSCOUNT ideal-int
+pkg syscall (freebsd-386-cgo), const EVFILT_TIMER ideal-int
+pkg syscall (freebsd-386-cgo), const EVFILT_USER ideal-int
+pkg syscall (freebsd-386-cgo), const EVFILT_VNODE ideal-int
+pkg syscall (freebsd-386-cgo), const EVFILT_WRITE ideal-int
+pkg syscall (freebsd-386-cgo), const EV_ADD ideal-int
+pkg syscall (freebsd-386-cgo), const EV_CLEAR ideal-int
+pkg syscall (freebsd-386-cgo), const EV_DELETE ideal-int
+pkg syscall (freebsd-386-cgo), const EV_DISABLE ideal-int
+pkg syscall (freebsd-386-cgo), const EV_DISPATCH ideal-int
+pkg syscall (freebsd-386-cgo), const EV_ENABLE ideal-int
+pkg syscall (freebsd-386-cgo), const EV_EOF ideal-int
+pkg syscall (freebsd-386-cgo), const EV_ERROR ideal-int
+pkg syscall (freebsd-386-cgo), const EV_FLAG1 ideal-int
+pkg syscall (freebsd-386-cgo), const EV_ONESHOT ideal-int
+pkg syscall (freebsd-386-cgo), const EV_RECEIPT ideal-int
+pkg syscall (freebsd-386-cgo), const EV_SYSFLAGS ideal-int
+pkg syscall (freebsd-386-cgo), const EXTA ideal-int
+pkg syscall (freebsd-386-cgo), const EXTB ideal-int
+pkg syscall (freebsd-386-cgo), const EXTPROC ideal-int
+pkg syscall (freebsd-386-cgo), const FD_CLOEXEC ideal-int
+pkg syscall (freebsd-386-cgo), const FD_SETSIZE ideal-int
+pkg syscall (freebsd-386-cgo), const FLUSHO ideal-int
+pkg syscall (freebsd-386-cgo), const F_CANCEL ideal-int
+pkg syscall (freebsd-386-cgo), const F_DUP2FD ideal-int
+pkg syscall (freebsd-386-cgo), const F_DUP2FD_CLOEXEC = 18
+pkg syscall (freebsd-386-cgo), const F_DUP2FD_CLOEXEC ideal-int
+pkg syscall (freebsd-386-cgo), const F_DUPFD ideal-int
+pkg syscall (freebsd-386-cgo), const F_DUPFD_CLOEXEC = 17
+pkg syscall (freebsd-386-cgo), const F_DUPFD_CLOEXEC ideal-int
+pkg syscall (freebsd-386-cgo), const F_GETFD ideal-int
+pkg syscall (freebsd-386-cgo), const F_GETFL ideal-int
+pkg syscall (freebsd-386-cgo), const F_GETLK ideal-int
+pkg syscall (freebsd-386-cgo), const F_GETOWN ideal-int
+pkg syscall (freebsd-386-cgo), const F_OGETLK ideal-int
+pkg syscall (freebsd-386-cgo), const F_OK ideal-int
+pkg syscall (freebsd-386-cgo), const F_OSETLK ideal-int
+pkg syscall (freebsd-386-cgo), const F_OSETLKW ideal-int
+pkg syscall (freebsd-386-cgo), const F_RDAHEAD ideal-int
+pkg syscall (freebsd-386-cgo), const F_RDLCK ideal-int
+pkg syscall (freebsd-386-cgo), const F_READAHEAD ideal-int
+pkg syscall (freebsd-386-cgo), const F_SETFD ideal-int
+pkg syscall (freebsd-386-cgo), const F_SETFL ideal-int
+pkg syscall (freebsd-386-cgo), const F_SETLK ideal-int
+pkg syscall (freebsd-386-cgo), const F_SETLKW ideal-int
+pkg syscall (freebsd-386-cgo), const F_SETLK_REMOTE ideal-int
+pkg syscall (freebsd-386-cgo), const F_SETOWN ideal-int
+pkg syscall (freebsd-386-cgo), const F_UNLCK ideal-int
+pkg syscall (freebsd-386-cgo), const F_UNLCKSYS ideal-int
+pkg syscall (freebsd-386-cgo), const F_WRLCK ideal-int
+pkg syscall (freebsd-386-cgo), const HUPCL ideal-int
+pkg syscall (freebsd-386-cgo), const ICANON ideal-int
+pkg syscall (freebsd-386-cgo), const ICMP6_FILTER = 18
+pkg syscall (freebsd-386-cgo), const ICMP6_FILTER ideal-int
+pkg syscall (freebsd-386-cgo), const ICRNL ideal-int
+pkg syscall (freebsd-386-cgo), const IEXTEN ideal-int
+pkg syscall (freebsd-386-cgo), const IFAN_ARRIVAL ideal-int
+pkg syscall (freebsd-386-cgo), const IFAN_DEPARTURE ideal-int
+pkg syscall (freebsd-386-cgo), const IFF_ALLMULTI ideal-int
+pkg syscall (freebsd-386-cgo), const IFF_ALTPHYS ideal-int
+pkg syscall (freebsd-386-cgo), const IFF_CANTCHANGE ideal-int
+pkg syscall (freebsd-386-cgo), const IFF_CANTCONFIG ideal-int
+pkg syscall (freebsd-386-cgo), const IFF_DEBUG ideal-int
+pkg syscall (freebsd-386-cgo), const IFF_DRV_OACTIVE ideal-int
+pkg syscall (freebsd-386-cgo), const IFF_DRV_RUNNING ideal-int
+pkg syscall (freebsd-386-cgo), const IFF_DYING ideal-int
+pkg syscall (freebsd-386-cgo), const IFF_LINK0 ideal-int
+pkg syscall (freebsd-386-cgo), const IFF_LINK1 ideal-int
+pkg syscall (freebsd-386-cgo), const IFF_LINK2 ideal-int
+pkg syscall (freebsd-386-cgo), const IFF_MONITOR ideal-int
+pkg syscall (freebsd-386-cgo), const IFF_NOARP ideal-int
+pkg syscall (freebsd-386-cgo), const IFF_OACTIVE ideal-int
+pkg syscall (freebsd-386-cgo), const IFF_POINTOPOINT ideal-int
+pkg syscall (freebsd-386-cgo), const IFF_PPROMISC ideal-int
+pkg syscall (freebsd-386-cgo), const IFF_PROMISC ideal-int
+pkg syscall (freebsd-386-cgo), const IFF_RENAMING ideal-int
+pkg syscall (freebsd-386-cgo), const IFF_RUNNING ideal-int
+pkg syscall (freebsd-386-cgo), const IFF_SIMPLEX ideal-int
+pkg syscall (freebsd-386-cgo), const IFF_SMART ideal-int
+pkg syscall (freebsd-386-cgo), const IFF_STATICARP ideal-int
+pkg syscall (freebsd-386-cgo), const IFNAMSIZ ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_1822 ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_A12MPPSWITCH ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_AAL2 ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_AAL5 ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_ADSL ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_AFLANE8023 ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_AFLANE8025 ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_ARAP ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_ARCNET ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_ARCNETPLUS ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_ASYNC ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_ATM ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_ATMDXI ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_ATMFUNI ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_ATMIMA ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_ATMLOGICAL ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_ATMRADIO ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_ATMSUBINTERFACE ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_ATMVCIENDPT ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_ATMVIRTUAL ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_BGPPOLICYACCOUNTING ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_BRIDGE ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_BSC ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_CARP ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_CCTEMUL ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_CEPT ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_CES ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_CHANNEL ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_CNR ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_COFFEE ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_COMPOSITELINK ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_DCN ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_DIGITALPOWERLINE ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_DLSW ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_DOCSCABLEDOWNSTREAM ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_DOCSCABLEMACLAYER ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_DOCSCABLEUPSTREAM ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_DS0 ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_DS0BUNDLE ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_DS1FDL ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_DS3 ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_DTM ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_DVBASILN ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_DVBASIOUT ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_DVBRCCDOWNSTREAM ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_DVBRCCMACLAYER ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_DVBRCCUPSTREAM ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_ENC ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_EON ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_EPLRS ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_ESCON ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_ETHER ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_FAITH ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_FAST ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_FASTETHER ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_FASTETHERFX ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_FDDI ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_FIBRECHANNEL ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_FRAMERELAYINTERCONNECT ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_FRAMERELAYMPI ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_FRDLCIENDPT ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_FRELAY ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_FRELAYDCE ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_FRF16MFRBUNDLE ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_FRFORWARD ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_G703AT2MB ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_G703AT64K ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_GIF ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_GIGABITETHERNET ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_GR303IDT ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_GR303RDT ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_H323GATEKEEPER ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_H323PROXY ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_HDH1822 ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_HDLC ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_HDSL2 ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_HIPERLAN2 ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_HIPPI ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_HIPPIINTERFACE ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_HOSTPAD ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_HSSI ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_HY ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_IBM370PARCHAN ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_IDSL ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_IEEE1394 ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_IEEE80211 ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_IEEE80212 ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_IEEE8023ADLAG ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_IFGSN ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_IMT ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_INFINIBAND ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_INTERLEAVE ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_IP ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_IPFORWARD ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_IPOVERATM ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_IPOVERCDLC ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_IPOVERCLAW ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_IPSWITCH ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_IPXIP ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_ISDN ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_ISDNBASIC ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_ISDNPRIMARY ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_ISDNS ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_ISDNU ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_ISO88022LLC ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_ISO88023 ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_ISO88024 ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_ISO88025 ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_ISO88025CRFPINT ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_ISO88025DTR ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_ISO88025FIBER ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_ISO88026 ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_ISUP ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_L2VLAN ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_L3IPVLAN ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_L3IPXVLAN ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_LAPB ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_LAPD ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_LAPF ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_LOCALTALK ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_LOOP ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_MEDIAMAILOVERIP ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_MFSIGLINK ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_MIOX25 ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_MODEM ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_MPC ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_MPLS ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_MPLSTUNNEL ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_MSDSL ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_MVL ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_MYRINET ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_NFAS ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_NSIP ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_OPTICALCHANNEL ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_OPTICALTRANSPORT ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_OTHER ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_P10 ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_P80 ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_PARA ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_PFLOG ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_PFSYNC ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_PLC ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_POS ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_PPP ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_PPPMULTILINKBUNDLE ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_PROPBWAP2MP ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_PROPCNLS ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_PROPMUX ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_PROPVIRTUAL ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_PROPWIRELESSP2P ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_PTPSERIAL ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_PVC ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_QLLC ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_RADIOMAC ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_RADSL ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_REACHDSL ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_RFC1483 ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_RS232 ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_RSRB ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_SDLC ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_SDSL ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_SHDSL ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_SIP ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_SLIP ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_SMDSDXI ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_SMDSICIP ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_SONET ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_SONETOVERHEADCHANNEL ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_SONETPATH ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_SONETVT ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_SRP ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_SS7SIGLINK ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_STACKTOSTACK ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_STARLAN ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_STF ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_T1 ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_TDLC ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_TERMPAD ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_TR008 ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_TRANSPHDLC ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_TUNNEL ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_ULTRA ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_USB ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_V11 ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_V35 ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_V36 ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_V37 ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_VDSL ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_VIRTUALIPADDRESS ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_VOICEEM ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_VOICEENCAP ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_VOICEFXO ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_VOICEFXS ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_VOICEOVERATM ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_VOICEOVERFRAMERELAY ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_VOICEOVERIP ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_X213 ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_X25 ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_X25DDN ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_X25HUNTGROUP ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_X25MLP ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_X25PLE ideal-int
+pkg syscall (freebsd-386-cgo), const IFT_XETHER ideal-int
+pkg syscall (freebsd-386-cgo), const IGNBRK ideal-int
+pkg syscall (freebsd-386-cgo), const IGNCR ideal-int
+pkg syscall (freebsd-386-cgo), const IGNPAR ideal-int
+pkg syscall (freebsd-386-cgo), const IMAXBEL ideal-int
+pkg syscall (freebsd-386-cgo), const INLCR ideal-int
+pkg syscall (freebsd-386-cgo), const INPCK ideal-int
+pkg syscall (freebsd-386-cgo), const IN_CLASSA_HOST ideal-int
+pkg syscall (freebsd-386-cgo), const IN_CLASSA_MAX ideal-int
+pkg syscall (freebsd-386-cgo), const IN_CLASSA_NET ideal-int
+pkg syscall (freebsd-386-cgo), const IN_CLASSA_NSHIFT ideal-int
+pkg syscall (freebsd-386-cgo), const IN_CLASSB_HOST ideal-int
+pkg syscall (freebsd-386-cgo), const IN_CLASSB_MAX ideal-int
+pkg syscall (freebsd-386-cgo), const IN_CLASSB_NET ideal-int
+pkg syscall (freebsd-386-cgo), const IN_CLASSB_NSHIFT ideal-int
+pkg syscall (freebsd-386-cgo), const IN_CLASSC_HOST ideal-int
+pkg syscall (freebsd-386-cgo), const IN_CLASSC_NET ideal-int
+pkg syscall (freebsd-386-cgo), const IN_CLASSC_NSHIFT ideal-int
+pkg syscall (freebsd-386-cgo), const IN_CLASSD_HOST ideal-int
+pkg syscall (freebsd-386-cgo), const IN_CLASSD_NET ideal-int
+pkg syscall (freebsd-386-cgo), const IN_CLASSD_NSHIFT ideal-int
+pkg syscall (freebsd-386-cgo), const IN_LOOPBACKNET ideal-int
+pkg syscall (freebsd-386-cgo), const IN_RFC3021_MASK ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_3PC ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_ADFS ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_AH ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_AHIP ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_APES ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_ARGUS ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_AX25 ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_BHA ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_BLT ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_BRSATMON ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_CARP ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_CFTP ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_CHAOS ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_CMTP ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_CPHB ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_CPNX ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_DDP ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_DGP ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_DIVERT ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_DONE ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_DSTOPTS ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_EGP ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_EMCON ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_ENCAP ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_EON ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_ESP ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_ETHERIP ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_FRAGMENT ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_GGP ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_GMTP ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_GRE ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_HELLO ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_HMP ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_HOPOPTS ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_ICMP ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_ICMPV6 ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_IDP ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_IDPR ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_IDRP ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_IGMP ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_IGP ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_IGRP ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_IL ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_INLSP ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_INP ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_IPCOMP ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_IPCV ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_IPEIP ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_IPIP ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_IPPC ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_IPV4 ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_IRTP ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_KRYPTOLAN ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_LARP ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_LEAF1 ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_LEAF2 ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_MAX ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_MAXID ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_MEAS ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_MH ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_MHRP ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_MICP ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_MOBILE ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_MTP ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_MUX ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_ND ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_NHRP ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_NONE ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_NSP ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_NVPII ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_OLD_DIVERT ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_OSPFIGP ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_PFSYNC ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_PGM ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_PIGP ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_PIM ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_PRM ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_PUP ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_PVP ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_RAW ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_RCCMON ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_RDP ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_ROUTING ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_RSVP ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_RVD ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_SATEXPAK ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_SATMON ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_SCCSP ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_SCTP ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_SDRP ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_SEND ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_SEP ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_SKIP ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_SPACER ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_SRPC ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_ST ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_SVMTP ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_SWIPE ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_TCF ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_TLSP ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_TP ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_TPXX ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_TRUNK1 ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_TRUNK2 ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_TTP ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_VINES ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_VISA ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_VMTP ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_WBEXPAK ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_WBMON ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_WSN ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_XNET ideal-int
+pkg syscall (freebsd-386-cgo), const IPPROTO_XTP ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_AUTOFLOWLABEL ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_BINDANY ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_BINDV6ONLY ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_CHECKSUM ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_DEFHLIM ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_DONTFRAG ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_DSTOPTS ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_FAITH ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_FLOWINFO_MASK ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_FLOWLABEL_MASK ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_FRAGTTL ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_FW_ADD ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_FW_DEL ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_FW_FLUSH ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_FW_GET ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_FW_ZERO ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_HLIMDEC ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_HOPLIMIT ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_HOPOPTS ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_IPSEC_POLICY ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_MAXHLIM ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_MAXOPTHDR ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_MAXPACKET ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_MAX_GROUP_SRC_FILTER ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_MAX_MEMBERSHIPS ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_MAX_SOCK_SRC_FILTER ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_MIN_MEMBERSHIPS ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_MMTU ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_MSFILTER ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_NEXTHOP ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_PATHMTU ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_PKTINFO ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_PORTRANGE ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_PORTRANGE_DEFAULT ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_PORTRANGE_HIGH ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_PORTRANGE_LOW ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_PREFER_TEMPADDR ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_RECVDSTOPTS ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_RECVHOPLIMIT ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_RECVHOPOPTS ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_RECVPATHMTU ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_RECVPKTINFO ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_RECVRTHDR ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_RECVTCLASS ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_RTHDR ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_RTHDRDSTOPTS ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_RTHDR_LOOSE ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_RTHDR_STRICT ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_RTHDR_TYPE_0 ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_SOCKOPT_RESERVED1 ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_TCLASS ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_USE_MIN_MTU ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_VERSION ideal-int
+pkg syscall (freebsd-386-cgo), const IPV6_VERSION_MASK ideal-int
+pkg syscall (freebsd-386-cgo), const IP_ADD_SOURCE_MEMBERSHIP ideal-int
+pkg syscall (freebsd-386-cgo), const IP_BINDANY ideal-int
+pkg syscall (freebsd-386-cgo), const IP_BLOCK_SOURCE ideal-int
+pkg syscall (freebsd-386-cgo), const IP_DEFAULT_MULTICAST_LOOP ideal-int
+pkg syscall (freebsd-386-cgo), const IP_DEFAULT_MULTICAST_TTL ideal-int
+pkg syscall (freebsd-386-cgo), const IP_DF ideal-int
+pkg syscall (freebsd-386-cgo), const IP_DONTFRAG ideal-int
+pkg syscall (freebsd-386-cgo), const IP_DROP_SOURCE_MEMBERSHIP ideal-int
+pkg syscall (freebsd-386-cgo), const IP_DUMMYNET3 ideal-int
+pkg syscall (freebsd-386-cgo), const IP_DUMMYNET_CONFIGURE ideal-int
+pkg syscall (freebsd-386-cgo), const IP_DUMMYNET_DEL ideal-int
+pkg syscall (freebsd-386-cgo), const IP_DUMMYNET_FLUSH ideal-int
+pkg syscall (freebsd-386-cgo), const IP_DUMMYNET_GET ideal-int
+pkg syscall (freebsd-386-cgo), const IP_FAITH ideal-int
+pkg syscall (freebsd-386-cgo), const IP_FW3 ideal-int
+pkg syscall (freebsd-386-cgo), const IP_FW_ADD ideal-int
+pkg syscall (freebsd-386-cgo), const IP_FW_DEL ideal-int
+pkg syscall (freebsd-386-cgo), const IP_FW_FLUSH ideal-int
+pkg syscall (freebsd-386-cgo), const IP_FW_GET ideal-int
+pkg syscall (freebsd-386-cgo), const IP_FW_NAT_CFG ideal-int
+pkg syscall (freebsd-386-cgo), const IP_FW_NAT_DEL ideal-int
+pkg syscall (freebsd-386-cgo), const IP_FW_NAT_GET_CONFIG ideal-int
+pkg syscall (freebsd-386-cgo), const IP_FW_NAT_GET_LOG ideal-int
+pkg syscall (freebsd-386-cgo), const IP_FW_RESETLOG ideal-int
+pkg syscall (freebsd-386-cgo), const IP_FW_TABLE_ADD ideal-int
+pkg syscall (freebsd-386-cgo), const IP_FW_TABLE_DEL ideal-int
+pkg syscall (freebsd-386-cgo), const IP_FW_TABLE_FLUSH ideal-int
+pkg syscall (freebsd-386-cgo), const IP_FW_TABLE_GETSIZE ideal-int
+pkg syscall (freebsd-386-cgo), const IP_FW_TABLE_LIST ideal-int
+pkg syscall (freebsd-386-cgo), const IP_FW_ZERO ideal-int
+pkg syscall (freebsd-386-cgo), const IP_HDRINCL ideal-int
+pkg syscall (freebsd-386-cgo), const IP_IPSEC_POLICY ideal-int
+pkg syscall (freebsd-386-cgo), const IP_MAXPACKET ideal-int
+pkg syscall (freebsd-386-cgo), const IP_MAX_GROUP_SRC_FILTER ideal-int
+pkg syscall (freebsd-386-cgo), const IP_MAX_MEMBERSHIPS ideal-int
+pkg syscall (freebsd-386-cgo), const IP_MAX_SOCK_MUTE_FILTER ideal-int
+pkg syscall (freebsd-386-cgo), const IP_MAX_SOCK_SRC_FILTER ideal-int
+pkg syscall (freebsd-386-cgo), const IP_MAX_SOURCE_FILTER ideal-int
+pkg syscall (freebsd-386-cgo), const IP_MF ideal-int
+pkg syscall (freebsd-386-cgo), const IP_MINTTL ideal-int
+pkg syscall (freebsd-386-cgo), const IP_MIN_MEMBERSHIPS ideal-int
+pkg syscall (freebsd-386-cgo), const IP_MSFILTER ideal-int
+pkg syscall (freebsd-386-cgo), const IP_MSS ideal-int
+pkg syscall (freebsd-386-cgo), const IP_MULTICAST_VIF ideal-int
+pkg syscall (freebsd-386-cgo), const IP_OFFMASK ideal-int
+pkg syscall (freebsd-386-cgo), const IP_ONESBCAST ideal-int
+pkg syscall (freebsd-386-cgo), const IP_OPTIONS ideal-int
+pkg syscall (freebsd-386-cgo), const IP_PORTRANGE ideal-int
+pkg syscall (freebsd-386-cgo), const IP_PORTRANGE_DEFAULT ideal-int
+pkg syscall (freebsd-386-cgo), const IP_PORTRANGE_HIGH ideal-int
+pkg syscall (freebsd-386-cgo), const IP_PORTRANGE_LOW ideal-int
+pkg syscall (freebsd-386-cgo), const IP_RECVDSTADDR ideal-int
+pkg syscall (freebsd-386-cgo), const IP_RECVIF ideal-int
+pkg syscall (freebsd-386-cgo), const IP_RECVOPTS ideal-int
+pkg syscall (freebsd-386-cgo), const IP_RECVRETOPTS ideal-int
+pkg syscall (freebsd-386-cgo), const IP_RECVTOS ideal-int
+pkg syscall (freebsd-386-cgo), const IP_RECVTTL ideal-int
+pkg syscall (freebsd-386-cgo), const IP_RETOPTS ideal-int
+pkg syscall (freebsd-386-cgo), const IP_RF ideal-int
+pkg syscall (freebsd-386-cgo), const IP_RSVP_OFF ideal-int
+pkg syscall (freebsd-386-cgo), const IP_RSVP_ON ideal-int
+pkg syscall (freebsd-386-cgo), const IP_RSVP_VIF_OFF ideal-int
+pkg syscall (freebsd-386-cgo), const IP_RSVP_VIF_ON ideal-int
+pkg syscall (freebsd-386-cgo), const IP_SENDSRCADDR ideal-int
+pkg syscall (freebsd-386-cgo), const IP_UNBLOCK_SOURCE ideal-int
+pkg syscall (freebsd-386-cgo), const ISIG ideal-int
+pkg syscall (freebsd-386-cgo), const ISTRIP ideal-int
+pkg syscall (freebsd-386-cgo), const IXANY ideal-int
+pkg syscall (freebsd-386-cgo), const IXOFF ideal-int
+pkg syscall (freebsd-386-cgo), const IXON ideal-int
+pkg syscall (freebsd-386-cgo), const LOCK_EX ideal-int
+pkg syscall (freebsd-386-cgo), const LOCK_NB ideal-int
+pkg syscall (freebsd-386-cgo), const LOCK_SH ideal-int
+pkg syscall (freebsd-386-cgo), const LOCK_UN ideal-int
+pkg syscall (freebsd-386-cgo), const MADV_AUTOSYNC ideal-int
+pkg syscall (freebsd-386-cgo), const MADV_CORE ideal-int
+pkg syscall (freebsd-386-cgo), const MADV_DONTNEED ideal-int
+pkg syscall (freebsd-386-cgo), const MADV_FREE ideal-int
+pkg syscall (freebsd-386-cgo), const MADV_NOCORE ideal-int
+pkg syscall (freebsd-386-cgo), const MADV_NORMAL ideal-int
+pkg syscall (freebsd-386-cgo), const MADV_NOSYNC ideal-int
+pkg syscall (freebsd-386-cgo), const MADV_PROTECT ideal-int
+pkg syscall (freebsd-386-cgo), const MADV_RANDOM ideal-int
+pkg syscall (freebsd-386-cgo), const MADV_SEQUENTIAL ideal-int
+pkg syscall (freebsd-386-cgo), const MADV_WILLNEED ideal-int
+pkg syscall (freebsd-386-cgo), const MAP_ANON ideal-int
+pkg syscall (freebsd-386-cgo), const MAP_ANONYMOUS ideal-int
+pkg syscall (freebsd-386-cgo), const MAP_COPY ideal-int
+pkg syscall (freebsd-386-cgo), const MAP_FILE ideal-int
+pkg syscall (freebsd-386-cgo), const MAP_FIXED ideal-int
+pkg syscall (freebsd-386-cgo), const MAP_HASSEMAPHORE ideal-int
+pkg syscall (freebsd-386-cgo), const MAP_NOCORE ideal-int
+pkg syscall (freebsd-386-cgo), const MAP_NORESERVE ideal-int
+pkg syscall (freebsd-386-cgo), const MAP_NOSYNC ideal-int
+pkg syscall (freebsd-386-cgo), const MAP_PREFAULT_READ ideal-int
+pkg syscall (freebsd-386-cgo), const MAP_PRIVATE ideal-int
+pkg syscall (freebsd-386-cgo), const MAP_RENAME ideal-int
+pkg syscall (freebsd-386-cgo), const MAP_RESERVED0080 ideal-int
+pkg syscall (freebsd-386-cgo), const MAP_RESERVED0100 ideal-int
+pkg syscall (freebsd-386-cgo), const MAP_SHARED ideal-int
+pkg syscall (freebsd-386-cgo), const MAP_STACK ideal-int
+pkg syscall (freebsd-386-cgo), const MCL_CURRENT ideal-int
+pkg syscall (freebsd-386-cgo), const MCL_FUTURE ideal-int
+pkg syscall (freebsd-386-cgo), const MSG_COMPAT ideal-int
+pkg syscall (freebsd-386-cgo), const MSG_CTRUNC ideal-int
+pkg syscall (freebsd-386-cgo), const MSG_DONTROUTE ideal-int
+pkg syscall (freebsd-386-cgo), const MSG_DONTWAIT ideal-int
+pkg syscall (freebsd-386-cgo), const MSG_EOF ideal-int
+pkg syscall (freebsd-386-cgo), const MSG_EOR ideal-int
+pkg syscall (freebsd-386-cgo), const MSG_NBIO ideal-int
+pkg syscall (freebsd-386-cgo), const MSG_NOSIGNAL ideal-int
+pkg syscall (freebsd-386-cgo), const MSG_NOTIFICATION ideal-int
+pkg syscall (freebsd-386-cgo), const MSG_OOB ideal-int
+pkg syscall (freebsd-386-cgo), const MSG_PEEK ideal-int
+pkg syscall (freebsd-386-cgo), const MSG_TRUNC ideal-int
+pkg syscall (freebsd-386-cgo), const MSG_WAITALL ideal-int
+pkg syscall (freebsd-386-cgo), const MS_ASYNC ideal-int
+pkg syscall (freebsd-386-cgo), const MS_INVALIDATE ideal-int
+pkg syscall (freebsd-386-cgo), const MS_SYNC ideal-int
+pkg syscall (freebsd-386-cgo), const NET_RT_DUMP ideal-int
+pkg syscall (freebsd-386-cgo), const NET_RT_FLAGS ideal-int
+pkg syscall (freebsd-386-cgo), const NET_RT_IFLIST ideal-int
+pkg syscall (freebsd-386-cgo), const NET_RT_IFLISTL ideal-int
+pkg syscall (freebsd-386-cgo), const NET_RT_IFMALIST ideal-int
+pkg syscall (freebsd-386-cgo), const NET_RT_MAXID ideal-int
+pkg syscall (freebsd-386-cgo), const NOFLSH ideal-int
+pkg syscall (freebsd-386-cgo), const NOTE_ATTRIB ideal-int
+pkg syscall (freebsd-386-cgo), const NOTE_CHILD ideal-int
+pkg syscall (freebsd-386-cgo), const NOTE_DELETE ideal-int
+pkg syscall (freebsd-386-cgo), const NOTE_EXEC ideal-int
+pkg syscall (freebsd-386-cgo), const NOTE_EXIT ideal-int
+pkg syscall (freebsd-386-cgo), const NOTE_EXTEND ideal-int
+pkg syscall (freebsd-386-cgo), const NOTE_FFAND ideal-int
+pkg syscall (freebsd-386-cgo), const NOTE_FFCOPY ideal-int
+pkg syscall (freebsd-386-cgo), const NOTE_FFCTRLMASK ideal-int
+pkg syscall (freebsd-386-cgo), const NOTE_FFLAGSMASK ideal-int
+pkg syscall (freebsd-386-cgo), const NOTE_FFNOP ideal-int
+pkg syscall (freebsd-386-cgo), const NOTE_FFOR ideal-int
+pkg syscall (freebsd-386-cgo), const NOTE_FORK ideal-int
+pkg syscall (freebsd-386-cgo), const NOTE_LINK ideal-int
+pkg syscall (freebsd-386-cgo), const NOTE_LOWAT ideal-int
+pkg syscall (freebsd-386-cgo), const NOTE_PCTRLMASK ideal-int
+pkg syscall (freebsd-386-cgo), const NOTE_PDATAMASK ideal-int
+pkg syscall (freebsd-386-cgo), const NOTE_RENAME ideal-int
+pkg syscall (freebsd-386-cgo), const NOTE_REVOKE ideal-int
+pkg syscall (freebsd-386-cgo), const NOTE_TRACK ideal-int
+pkg syscall (freebsd-386-cgo), const NOTE_TRACKERR ideal-int
+pkg syscall (freebsd-386-cgo), const NOTE_TRIGGER ideal-int
+pkg syscall (freebsd-386-cgo), const NOTE_WRITE ideal-int
+pkg syscall (freebsd-386-cgo), const OCRNL ideal-int
+pkg syscall (freebsd-386-cgo), const ONLCR ideal-int
+pkg syscall (freebsd-386-cgo), const ONLRET ideal-int
+pkg syscall (freebsd-386-cgo), const ONOCR ideal-int
+pkg syscall (freebsd-386-cgo), const ONOEOT ideal-int
+pkg syscall (freebsd-386-cgo), const OPOST ideal-int
+pkg syscall (freebsd-386-cgo), const O_ACCMODE ideal-int
+pkg syscall (freebsd-386-cgo), const O_DIRECT ideal-int
+pkg syscall (freebsd-386-cgo), const O_DIRECTORY ideal-int
+pkg syscall (freebsd-386-cgo), const O_EXEC ideal-int
+pkg syscall (freebsd-386-cgo), const O_EXLOCK ideal-int
+pkg syscall (freebsd-386-cgo), const O_FSYNC ideal-int
+pkg syscall (freebsd-386-cgo), const O_NDELAY ideal-int
+pkg syscall (freebsd-386-cgo), const O_NOFOLLOW ideal-int
+pkg syscall (freebsd-386-cgo), const O_SHLOCK ideal-int
+pkg syscall (freebsd-386-cgo), const O_TTY_INIT ideal-int
+pkg syscall (freebsd-386-cgo), const PARENB ideal-int
+pkg syscall (freebsd-386-cgo), const PARMRK ideal-int
+pkg syscall (freebsd-386-cgo), const PARODD ideal-int
+pkg syscall (freebsd-386-cgo), const PENDIN ideal-int
+pkg syscall (freebsd-386-cgo), const PRIO_PGRP = 1
+pkg syscall (freebsd-386-cgo), const PRIO_PGRP ideal-int
+pkg syscall (freebsd-386-cgo), const PRIO_PROCESS = 0
+pkg syscall (freebsd-386-cgo), const PRIO_PROCESS ideal-int
+pkg syscall (freebsd-386-cgo), const PRIO_USER = 2
+pkg syscall (freebsd-386-cgo), const PRIO_USER ideal-int
+pkg syscall (freebsd-386-cgo), const PROT_EXEC ideal-int
+pkg syscall (freebsd-386-cgo), const PROT_NONE ideal-int
+pkg syscall (freebsd-386-cgo), const PROT_READ ideal-int
+pkg syscall (freebsd-386-cgo), const PROT_WRITE ideal-int
+pkg syscall (freebsd-386-cgo), const PTRACE_CONT ideal-int
+pkg syscall (freebsd-386-cgo), const PTRACE_KILL ideal-int
+pkg syscall (freebsd-386-cgo), const PTRACE_TRACEME ideal-int
+pkg syscall (freebsd-386-cgo), const RLIMIT_AS ideal-int
+pkg syscall (freebsd-386-cgo), const RLIMIT_CORE ideal-int
+pkg syscall (freebsd-386-cgo), const RLIMIT_CPU ideal-int
+pkg syscall (freebsd-386-cgo), const RLIMIT_DATA ideal-int
+pkg syscall (freebsd-386-cgo), const RLIMIT_FSIZE ideal-int
+pkg syscall (freebsd-386-cgo), const RLIMIT_NOFILE ideal-int
+pkg syscall (freebsd-386-cgo), const RLIMIT_STACK ideal-int
+pkg syscall (freebsd-386-cgo), const RLIM_INFINITY ideal-int
+pkg syscall (freebsd-386-cgo), const RTAX_AUTHOR ideal-int
+pkg syscall (freebsd-386-cgo), const RTAX_BRD ideal-int
+pkg syscall (freebsd-386-cgo), const RTAX_DST ideal-int
+pkg syscall (freebsd-386-cgo), const RTAX_GATEWAY ideal-int
+pkg syscall (freebsd-386-cgo), const RTAX_GENMASK ideal-int
+pkg syscall (freebsd-386-cgo), const RTAX_IFA ideal-int
+pkg syscall (freebsd-386-cgo), const RTAX_IFP ideal-int
+pkg syscall (freebsd-386-cgo), const RTAX_MAX ideal-int
+pkg syscall (freebsd-386-cgo), const RTAX_NETMASK ideal-int
+pkg syscall (freebsd-386-cgo), const RTA_AUTHOR ideal-int
+pkg syscall (freebsd-386-cgo), const RTA_BRD ideal-int
+pkg syscall (freebsd-386-cgo), const RTA_DST ideal-int
+pkg syscall (freebsd-386-cgo), const RTA_GATEWAY ideal-int
+pkg syscall (freebsd-386-cgo), const RTA_GENMASK ideal-int
+pkg syscall (freebsd-386-cgo), const RTA_IFA ideal-int
+pkg syscall (freebsd-386-cgo), const RTA_IFP ideal-int
+pkg syscall (freebsd-386-cgo), const RTA_NETMASK ideal-int
+pkg syscall (freebsd-386-cgo), const RTF_BLACKHOLE ideal-int
+pkg syscall (freebsd-386-cgo), const RTF_BROADCAST ideal-int
+pkg syscall (freebsd-386-cgo), const RTF_DONE ideal-int
+pkg syscall (freebsd-386-cgo), const RTF_DYNAMIC ideal-int
+pkg syscall (freebsd-386-cgo), const RTF_FMASK ideal-int
+pkg syscall (freebsd-386-cgo), const RTF_GATEWAY ideal-int
+pkg syscall (freebsd-386-cgo), const RTF_HOST ideal-int
+pkg syscall (freebsd-386-cgo), const RTF_LLDATA ideal-int
+pkg syscall (freebsd-386-cgo), const RTF_LLINFO ideal-int
+pkg syscall (freebsd-386-cgo), const RTF_LOCAL ideal-int
+pkg syscall (freebsd-386-cgo), const RTF_MODIFIED ideal-int
+pkg syscall (freebsd-386-cgo), const RTF_MULTICAST ideal-int
+pkg syscall (freebsd-386-cgo), const RTF_PINNED ideal-int
+pkg syscall (freebsd-386-cgo), const RTF_PRCLONING ideal-int
+pkg syscall (freebsd-386-cgo), const RTF_PROTO1 ideal-int
+pkg syscall (freebsd-386-cgo), const RTF_PROTO2 ideal-int
+pkg syscall (freebsd-386-cgo), const RTF_PROTO3 ideal-int
+pkg syscall (freebsd-386-cgo), const RTF_REJECT ideal-int
+pkg syscall (freebsd-386-cgo), const RTF_RNH_LOCKED ideal-int
+pkg syscall (freebsd-386-cgo), const RTF_STATIC ideal-int
+pkg syscall (freebsd-386-cgo), const RTF_STICKY ideal-int
+pkg syscall (freebsd-386-cgo), const RTF_UP ideal-int
+pkg syscall (freebsd-386-cgo), const RTF_XRESOLVE ideal-int
+pkg syscall (freebsd-386-cgo), const RTM_ADD ideal-int
+pkg syscall (freebsd-386-cgo), const RTM_CHANGE ideal-int
+pkg syscall (freebsd-386-cgo), const RTM_DELADDR ideal-int
+pkg syscall (freebsd-386-cgo), const RTM_DELETE ideal-int
+pkg syscall (freebsd-386-cgo), const RTM_DELMADDR ideal-int
+pkg syscall (freebsd-386-cgo), const RTM_GET ideal-int
+pkg syscall (freebsd-386-cgo), const RTM_IEEE80211 ideal-int
+pkg syscall (freebsd-386-cgo), const RTM_IFANNOUNCE ideal-int
+pkg syscall (freebsd-386-cgo), const RTM_IFINFO ideal-int
+pkg syscall (freebsd-386-cgo), const RTM_LOCK ideal-int
+pkg syscall (freebsd-386-cgo), const RTM_LOSING ideal-int
+pkg syscall (freebsd-386-cgo), const RTM_MISS ideal-int
+pkg syscall (freebsd-386-cgo), const RTM_NEWADDR ideal-int
+pkg syscall (freebsd-386-cgo), const RTM_NEWMADDR ideal-int
+pkg syscall (freebsd-386-cgo), const RTM_OLDADD ideal-int
+pkg syscall (freebsd-386-cgo), const RTM_OLDDEL ideal-int
+pkg syscall (freebsd-386-cgo), const RTM_REDIRECT ideal-int
+pkg syscall (freebsd-386-cgo), const RTM_RESOLVE ideal-int
+pkg syscall (freebsd-386-cgo), const RTM_RTTUNIT ideal-int
+pkg syscall (freebsd-386-cgo), const RTM_VERSION ideal-int
+pkg syscall (freebsd-386-cgo), const RTV_EXPIRE ideal-int
+pkg syscall (freebsd-386-cgo), const RTV_HOPCOUNT ideal-int
+pkg syscall (freebsd-386-cgo), const RTV_MTU ideal-int
+pkg syscall (freebsd-386-cgo), const RTV_RPIPE ideal-int
+pkg syscall (freebsd-386-cgo), const RTV_RTT ideal-int
+pkg syscall (freebsd-386-cgo), const RTV_RTTVAR ideal-int
+pkg syscall (freebsd-386-cgo), const RTV_SPIPE ideal-int
+pkg syscall (freebsd-386-cgo), const RTV_SSTHRESH ideal-int
+pkg syscall (freebsd-386-cgo), const RTV_WEIGHT ideal-int
+pkg syscall (freebsd-386-cgo), const RT_CACHING_CONTEXT ideal-int
+pkg syscall (freebsd-386-cgo), const RT_DEFAULT_FIB ideal-int
+pkg syscall (freebsd-386-cgo), const RUSAGE_CHILDREN ideal-int
+pkg syscall (freebsd-386-cgo), const RUSAGE_SELF ideal-int
+pkg syscall (freebsd-386-cgo), const RUSAGE_THREAD ideal-int
+pkg syscall (freebsd-386-cgo), const SCM_BINTIME ideal-int
+pkg syscall (freebsd-386-cgo), const SCM_CREDS ideal-int
+pkg syscall (freebsd-386-cgo), const SCM_RIGHTS ideal-int
+pkg syscall (freebsd-386-cgo), const SCM_TIMESTAMP ideal-int
+pkg syscall (freebsd-386-cgo), const SIGCHLD Signal
+pkg syscall (freebsd-386-cgo), const SIGCONT Signal
+pkg syscall (freebsd-386-cgo), const SIGEMT Signal
+pkg syscall (freebsd-386-cgo), const SIGINFO Signal
+pkg syscall (freebsd-386-cgo), const SIGIO Signal
+pkg syscall (freebsd-386-cgo), const SIGIOT Signal
+pkg syscall (freebsd-386-cgo), const SIGLWP Signal
+pkg syscall (freebsd-386-cgo), const SIGPROF Signal
+pkg syscall (freebsd-386-cgo), const SIGSTOP Signal
+pkg syscall (freebsd-386-cgo), const SIGSYS Signal
+pkg syscall (freebsd-386-cgo), const SIGTHR Signal
+pkg syscall (freebsd-386-cgo), const SIGTSTP Signal
+pkg syscall (freebsd-386-cgo), const SIGTTIN Signal
+pkg syscall (freebsd-386-cgo), const SIGTTOU Signal
+pkg syscall (freebsd-386-cgo), const SIGURG Signal
+pkg syscall (freebsd-386-cgo), const SIGUSR1 Signal
+pkg syscall (freebsd-386-cgo), const SIGUSR2 Signal
+pkg syscall (freebsd-386-cgo), const SIGVTALRM Signal
+pkg syscall (freebsd-386-cgo), const SIGWINCH Signal
+pkg syscall (freebsd-386-cgo), const SIGXCPU Signal
+pkg syscall (freebsd-386-cgo), const SIGXFSZ Signal
+pkg syscall (freebsd-386-cgo), const SIOCADDMULTI ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCADDRT ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCAIFADDR ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCAIFGROUP ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCALIFADDR ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCATMARK ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCDELMULTI ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCDELRT ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCDIFADDR ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCDIFGROUP ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCDIFPHYADDR ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCDLIFADDR ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCGDRVSPEC ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCGETSGCNT ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCGETVIFCNT ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCGHIWAT ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCGIFADDR ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCGIFBRDADDR ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCGIFCAP ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCGIFCONF ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCGIFDESCR ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCGIFDSTADDR ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCGIFFIB ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCGIFFLAGS ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCGIFGENERIC ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCGIFGMEMB ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCGIFGROUP ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCGIFINDEX ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCGIFMAC ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCGIFMEDIA ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCGIFMETRIC ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCGIFMTU ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCGIFNETMASK ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCGIFPDSTADDR ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCGIFPHYS ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCGIFPSRCADDR ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCGIFSTATUS ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCGLIFADDR ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCGLIFPHYADDR ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCGLOWAT ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCGPGRP ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCGPRIVATE_0 ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCGPRIVATE_1 ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCIFCREATE ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCIFCREATE2 ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCIFDESTROY ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCIFGCLONERS ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCSDRVSPEC ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCSHIWAT ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCSIFADDR ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCSIFBRDADDR ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCSIFCAP ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCSIFDESCR ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCSIFDSTADDR ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCSIFFIB ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCSIFFLAGS ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCSIFGENERIC ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCSIFLLADDR ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCSIFMAC ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCSIFMEDIA ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCSIFMETRIC ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCSIFMTU ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCSIFNAME ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCSIFNETMASK ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCSIFPHYADDR ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCSIFPHYS ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCSIFRVNET ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCSIFVNET ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCSLIFPHYADDR ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCSLOWAT ideal-int
+pkg syscall (freebsd-386-cgo), const SIOCSPGRP ideal-int
+pkg syscall (freebsd-386-cgo), const SOCK_MAXADDRLEN ideal-int
+pkg syscall (freebsd-386-cgo), const SOCK_RDM ideal-int
+pkg syscall (freebsd-386-cgo), const SO_ACCEPTCONN ideal-int
+pkg syscall (freebsd-386-cgo), const SO_ACCEPTFILTER ideal-int
+pkg syscall (freebsd-386-cgo), const SO_BINTIME ideal-int
+pkg syscall (freebsd-386-cgo), const SO_DEBUG ideal-int
+pkg syscall (freebsd-386-cgo), const SO_ERROR ideal-int
+pkg syscall (freebsd-386-cgo), const SO_LABEL ideal-int
+pkg syscall (freebsd-386-cgo), const SO_LISTENINCQLEN ideal-int
+pkg syscall (freebsd-386-cgo), const SO_LISTENQLEN ideal-int
+pkg syscall (freebsd-386-cgo), const SO_LISTENQLIMIT ideal-int
+pkg syscall (freebsd-386-cgo), const SO_NOSIGPIPE ideal-int
+pkg syscall (freebsd-386-cgo), const SO_NO_DDP ideal-int
+pkg syscall (freebsd-386-cgo), const SO_NO_OFFLOAD ideal-int
+pkg syscall (freebsd-386-cgo), const SO_OOBINLINE ideal-int
+pkg syscall (freebsd-386-cgo), const SO_PEERLABEL ideal-int
+pkg syscall (freebsd-386-cgo), const SO_PROTOCOL ideal-int
+pkg syscall (freebsd-386-cgo), const SO_PROTOTYPE ideal-int
+pkg syscall (freebsd-386-cgo), const SO_RCVLOWAT ideal-int
+pkg syscall (freebsd-386-cgo), const SO_RCVTIMEO ideal-int
+pkg syscall (freebsd-386-cgo), const SO_REUSEPORT ideal-int
+pkg syscall (freebsd-386-cgo), const SO_SETFIB ideal-int
+pkg syscall (freebsd-386-cgo), const SO_SNDLOWAT ideal-int
+pkg syscall (freebsd-386-cgo), const SO_SNDTIMEO ideal-int
+pkg syscall (freebsd-386-cgo), const SO_TIMESTAMP ideal-int
+pkg syscall (freebsd-386-cgo), const SO_TYPE ideal-int
+pkg syscall (freebsd-386-cgo), const SO_USELOOPBACK ideal-int
+pkg syscall (freebsd-386-cgo), const SO_USER_COOKIE ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_ABORT2 ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_ACCEPT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_ACCESS ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_ACCT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_ADJTIME ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_AUDIT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_AUDITCTL ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_AUDITON ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_BIND ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_CAP_ENTER ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_CAP_GETMODE ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_CAP_GETRIGHTS ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_CAP_NEW ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_CHDIR ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_CHFLAGS ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_CHMOD ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_CHOWN ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_CHROOT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_CLOCK_GETCPUCLOCKID2 ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_CLOCK_GETRES ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_CLOCK_GETTIME ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_CLOCK_SETTIME ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_CLOSE ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_CLOSEFROM ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_CONNECT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_CPUSET ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_CPUSET_GETAFFINITY ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_CPUSET_GETID ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_CPUSET_SETAFFINITY ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_CPUSET_SETID ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_DUP ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_DUP2 ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_EACCESS ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_EXECVE ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_EXIT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_EXTATTRCTL ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_DELETE_FD ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_DELETE_FILE ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_DELETE_LINK ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_GET_FD ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_GET_FILE ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_GET_LINK ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_LIST_FD ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_LIST_FILE ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_LIST_LINK ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_SET_FD ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_SET_FILE ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_SET_LINK ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_FACCESSAT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_FCHDIR ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_FCHFLAGS ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_FCHMOD ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_FCHMODAT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_FCHOWN ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_FCHOWNAT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_FCNTL ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_FEXECVE ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_FFCLOCK_GETCOUNTER ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_FFCLOCK_GETESTIMATE ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_FFCLOCK_SETESTIMATE ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_FHOPEN ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_FHSTAT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_FHSTATFS ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_FLOCK ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_FORK ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_FPATHCONF ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_FREEBSD6_FTRUNCATE ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_FREEBSD6_LSEEK ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_FREEBSD6_MMAP ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_FREEBSD6_PREAD ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_FREEBSD6_PWRITE ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_FREEBSD6_TRUNCATE ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_FSTAT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_FSTATAT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_FSTATFS ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_FSYNC ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_FTRUNCATE ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_FUTIMES ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_FUTIMESAT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_GETAUDIT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_GETAUDIT_ADDR ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_GETAUID ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_GETCONTEXT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_GETDENTS ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_GETDIRENTRIES ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_GETDTABLESIZE ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_GETEGID ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_GETEUID ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_GETFH ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_GETFSSTAT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_GETGID ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_GETGROUPS ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_GETITIMER ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_GETLOGIN ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_GETLOGINCLASS ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_GETPEERNAME ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_GETPGID ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_GETPGRP ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_GETPID ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_GETPPID ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_GETPRIORITY ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_GETRESGID ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_GETRESUID ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_GETRLIMIT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_GETRUSAGE ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_GETSID ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_GETSOCKNAME ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_GETSOCKOPT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_GETTIMEOFDAY ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_GETUID ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_IOCTL ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_ISSETUGID ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_JAIL ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_JAIL_ATTACH ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_JAIL_GET ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_JAIL_REMOVE ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_JAIL_SET ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_KENV ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_KEVENT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_KILL ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_KLDFIND ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_KLDFIRSTMOD ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_KLDLOAD ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_KLDNEXT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_KLDSTAT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_KLDSYM ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_KLDUNLOAD ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_KLDUNLOADF ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_KQUEUE ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_KTIMER_CREATE ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_KTIMER_DELETE ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_KTIMER_GETOVERRUN ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_KTIMER_GETTIME ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_KTIMER_SETTIME ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_KTRACE ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_LCHFLAGS ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_LCHMOD ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_LCHOWN ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_LGETFH ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_LINK ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_LINKAT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_LISTEN ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_LPATHCONF ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_LSEEK ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_LSTAT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_LUTIMES ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_MAC_SYSCALL ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_MADVISE ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_MINCORE ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_MINHERIT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_MKDIR ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_MKDIRAT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_MKFIFO ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_MKFIFOAT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_MKNOD ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_MKNODAT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_MLOCK ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_MLOCKALL ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_MMAP ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_MODFIND ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_MODFNEXT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_MODNEXT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_MODSTAT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_MOUNT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_MPROTECT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_MSYNC ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_MUNLOCK ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_MUNLOCKALL ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_MUNMAP ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_NANOSLEEP ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_NFSTAT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_NLSTAT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_NMOUNT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_NSTAT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_NTP_ADJTIME ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_NTP_GETTIME ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_OBREAK ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_OPEN ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_OPENAT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_OPENBSD_POLL ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_OVADVISE ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_PATHCONF ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_PDFORK ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_PDGETPID ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_PDKILL ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_PIPE ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_POLL ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_POSIX_FADVISE ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_POSIX_FALLOCATE ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_POSIX_OPENPT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_PREAD ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_PREADV ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_PROFIL ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_PSELECT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_PTRACE ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_PWRITE ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_PWRITEV ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_QUOTACTL ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_RCTL_ADD_RULE ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_RCTL_GET_LIMITS ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_RCTL_GET_RACCT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_RCTL_GET_RULES ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_RCTL_REMOVE_RULE ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_READ ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_READLINK ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_READLINKAT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_READV ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_REBOOT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_RECVFROM ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_RECVMSG ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_RENAME ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_RENAMEAT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_REVOKE ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_RFORK ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_RMDIR ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_RTPRIO ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_RTPRIO_THREAD ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SBRK ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SCHED_GETPARAM ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SCHED_GETSCHEDULER ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SCHED_GET_PRIORITY_MAX ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SCHED_GET_PRIORITY_MIN ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SCHED_RR_GET_INTERVAL ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SCHED_SETPARAM ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SCHED_SETSCHEDULER ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SCHED_YIELD ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SCTP_GENERIC_RECVMSG ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SCTP_GENERIC_SENDMSG ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SCTP_GENERIC_SENDMSG_IOV ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SCTP_PEELOFF ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SELECT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SENDFILE ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SENDMSG ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SENDTO ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SETAUDIT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SETAUDIT_ADDR ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SETAUID ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SETCONTEXT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SETEGID ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SETEUID ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SETFIB ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SETGID ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SETGROUPS ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SETITIMER ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SETLOGIN ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SETLOGINCLASS ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SETPGID ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SETPRIORITY ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SETREGID ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SETRESGID ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SETRESUID ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SETREUID ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SETRLIMIT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SETSID ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SETSOCKOPT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SETTIMEOFDAY ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SETUID ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SHM_OPEN ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SHM_UNLINK ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SHUTDOWN ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SIGACTION ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SIGALTSTACK ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SIGPENDING ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SIGPROCMASK ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SIGQUEUE ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SIGRETURN ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SIGSUSPEND ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SIGTIMEDWAIT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SIGWAIT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SIGWAITINFO ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SOCKET ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SOCKETPAIR ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SSTK ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_STAT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_STATFS ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SWAPCONTEXT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SWAPOFF ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SWAPON ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SYMLINK ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SYMLINKAT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SYNC ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_SYSARCH ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_THR_CREATE ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_THR_EXIT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_THR_KILL ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_THR_KILL2 ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_THR_NEW ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_THR_SELF ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_THR_SET_NAME ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_THR_SUSPEND ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_THR_WAKE ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_TRUNCATE ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_UMASK ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_UNDELETE ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_UNLINK ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_UNLINKAT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_UNMOUNT ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_UTIMES ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_UTRACE ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_UUIDGEN ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_VFORK ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_WAIT4 ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_WAIT6 ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_WRITE ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_WRITEV ideal-int
+pkg syscall (freebsd-386-cgo), const SYS_YIELD ideal-int
+pkg syscall (freebsd-386-cgo), const SYS__UMTX_LOCK ideal-int
+pkg syscall (freebsd-386-cgo), const SYS__UMTX_OP ideal-int
+pkg syscall (freebsd-386-cgo), const SYS__UMTX_UNLOCK ideal-int
+pkg syscall (freebsd-386-cgo), const SYS___ACL_ACLCHECK_FD ideal-int
+pkg syscall (freebsd-386-cgo), const SYS___ACL_ACLCHECK_FILE ideal-int
+pkg syscall (freebsd-386-cgo), const SYS___ACL_ACLCHECK_LINK ideal-int
+pkg syscall (freebsd-386-cgo), const SYS___ACL_DELETE_FD ideal-int
+pkg syscall (freebsd-386-cgo), const SYS___ACL_DELETE_FILE ideal-int
+pkg syscall (freebsd-386-cgo), const SYS___ACL_DELETE_LINK ideal-int
+pkg syscall (freebsd-386-cgo), const SYS___ACL_GET_FD ideal-int
+pkg syscall (freebsd-386-cgo), const SYS___ACL_GET_FILE ideal-int
+pkg syscall (freebsd-386-cgo), const SYS___ACL_GET_LINK ideal-int
+pkg syscall (freebsd-386-cgo), const SYS___ACL_SET_FD ideal-int
+pkg syscall (freebsd-386-cgo), const SYS___ACL_SET_FILE ideal-int
+pkg syscall (freebsd-386-cgo), const SYS___ACL_SET_LINK ideal-int
+pkg syscall (freebsd-386-cgo), const SYS___GETCWD ideal-int
+pkg syscall (freebsd-386-cgo), const SYS___MAC_EXECVE ideal-int
+pkg syscall (freebsd-386-cgo), const SYS___MAC_GET_FD ideal-int
+pkg syscall (freebsd-386-cgo), const SYS___MAC_GET_FILE ideal-int
+pkg syscall (freebsd-386-cgo), const SYS___MAC_GET_LINK ideal-int
+pkg syscall (freebsd-386-cgo), const SYS___MAC_GET_PID ideal-int
+pkg syscall (freebsd-386-cgo), const SYS___MAC_GET_PROC ideal-int
+pkg syscall (freebsd-386-cgo), const SYS___MAC_SET_FD ideal-int
+pkg syscall (freebsd-386-cgo), const SYS___MAC_SET_FILE ideal-int
+pkg syscall (freebsd-386-cgo), const SYS___MAC_SET_LINK ideal-int
+pkg syscall (freebsd-386-cgo), const SYS___MAC_SET_PROC ideal-int
+pkg syscall (freebsd-386-cgo), const SYS___SETUGID ideal-int
+pkg syscall (freebsd-386-cgo), const SYS___SYSCTL ideal-int
+pkg syscall (freebsd-386-cgo), const SizeofBpfHdr ideal-int
+pkg syscall (freebsd-386-cgo), const SizeofBpfInsn ideal-int
+pkg syscall (freebsd-386-cgo), const SizeofBpfProgram ideal-int
+pkg syscall (freebsd-386-cgo), const SizeofBpfStat ideal-int
+pkg syscall (freebsd-386-cgo), const SizeofBpfVersion ideal-int
+pkg syscall (freebsd-386-cgo), const SizeofBpfZbuf ideal-int
+pkg syscall (freebsd-386-cgo), const SizeofBpfZbufHeader ideal-int
+pkg syscall (freebsd-386-cgo), const SizeofCmsghdr ideal-int
+pkg syscall (freebsd-386-cgo), const SizeofICMPv6Filter = 32
+pkg syscall (freebsd-386-cgo), const SizeofICMPv6Filter ideal-int
+pkg syscall (freebsd-386-cgo), const SizeofIPMreq ideal-int
+pkg syscall (freebsd-386-cgo), const SizeofIPMreqn ideal-int
+pkg syscall (freebsd-386-cgo), const SizeofIPv6MTUInfo = 32
+pkg syscall (freebsd-386-cgo), const SizeofIPv6MTUInfo ideal-int
+pkg syscall (freebsd-386-cgo), const SizeofIPv6Mreq ideal-int
+pkg syscall (freebsd-386-cgo), const SizeofIfAnnounceMsghdr ideal-int
+pkg syscall (freebsd-386-cgo), const SizeofIfData ideal-int
+pkg syscall (freebsd-386-cgo), const SizeofIfMsghdr ideal-int
+pkg syscall (freebsd-386-cgo), const SizeofIfaMsghdr ideal-int
+pkg syscall (freebsd-386-cgo), const SizeofIfmaMsghdr ideal-int
+pkg syscall (freebsd-386-cgo), const SizeofInet6Pktinfo ideal-int
+pkg syscall (freebsd-386-cgo), const SizeofLinger ideal-int
+pkg syscall (freebsd-386-cgo), const SizeofMsghdr ideal-int
+pkg syscall (freebsd-386-cgo), const SizeofRtMetrics ideal-int
+pkg syscall (freebsd-386-cgo), const SizeofRtMsghdr ideal-int
+pkg syscall (freebsd-386-cgo), const SizeofSockaddrAny ideal-int
+pkg syscall (freebsd-386-cgo), const SizeofSockaddrDatalink ideal-int
+pkg syscall (freebsd-386-cgo), const SizeofSockaddrInet4 ideal-int
+pkg syscall (freebsd-386-cgo), const SizeofSockaddrInet6 ideal-int
+pkg syscall (freebsd-386-cgo), const SizeofSockaddrUnix ideal-int
+pkg syscall (freebsd-386-cgo), const TCIFLUSH ideal-int
+pkg syscall (freebsd-386-cgo), const TCIOFLUSH ideal-int
+pkg syscall (freebsd-386-cgo), const TCOFLUSH ideal-int
+pkg syscall (freebsd-386-cgo), const TCP_CA_NAME_MAX ideal-int
+pkg syscall (freebsd-386-cgo), const TCP_CONGESTION ideal-int
+pkg syscall (freebsd-386-cgo), const TCP_INFO ideal-int
+pkg syscall (freebsd-386-cgo), const TCP_KEEPCNT ideal-int
+pkg syscall (freebsd-386-cgo), const TCP_KEEPIDLE ideal-int
+pkg syscall (freebsd-386-cgo), const TCP_KEEPINIT ideal-int
+pkg syscall (freebsd-386-cgo), const TCP_KEEPINTVL ideal-int
+pkg syscall (freebsd-386-cgo), const TCP_MAXBURST ideal-int
+pkg syscall (freebsd-386-cgo), const TCP_MAXHLEN ideal-int
+pkg syscall (freebsd-386-cgo), const TCP_MAXOLEN ideal-int
+pkg syscall (freebsd-386-cgo), const TCP_MAXSEG ideal-int
+pkg syscall (freebsd-386-cgo), const TCP_MAXWIN ideal-int
+pkg syscall (freebsd-386-cgo), const TCP_MAX_SACK ideal-int
+pkg syscall (freebsd-386-cgo), const TCP_MAX_WINSHIFT ideal-int
+pkg syscall (freebsd-386-cgo), const TCP_MD5SIG ideal-int
+pkg syscall (freebsd-386-cgo), const TCP_MINMSS ideal-int
+pkg syscall (freebsd-386-cgo), const TCP_MSS ideal-int
+pkg syscall (freebsd-386-cgo), const TCP_NOOPT ideal-int
+pkg syscall (freebsd-386-cgo), const TCP_NOPUSH ideal-int
+pkg syscall (freebsd-386-cgo), const TCSAFLUSH ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCCBRK ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCCDTR ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCCONS ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCDRAIN ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCEXCL ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCEXT ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCFLUSH ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCGDRAINWAIT ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCGETA ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCGETD ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCGPGRP ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCGPTN ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCGSID ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCGWINSZ ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCMBIC ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCMBIS ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCMGDTRWAIT ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCMGET ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCMSDTRWAIT ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCMSET ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCM_CAR ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCM_CD ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCM_CTS ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCM_DCD ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCM_DSR ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCM_DTR ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCM_LE ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCM_RI ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCM_RNG ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCM_RTS ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCM_SR ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCM_ST ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCNOTTY ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCNXCL ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCOUTQ ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCPKT ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCPKT_DATA ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCPKT_DOSTOP ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCPKT_FLUSHREAD ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCPKT_FLUSHWRITE ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCPKT_IOCTL ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCPKT_NOSTOP ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCPKT_START ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCPKT_STOP ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCPTMASTER ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCSBRK ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCSCTTY ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCSDRAINWAIT ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCSDTR ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCSETA ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCSETAF ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCSETAW ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCSETD ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCSIG ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCSPGRP ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCSTART ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCSTAT ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCSTI ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCSTOP ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCSWINSZ ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCTIMESTAMP ideal-int
+pkg syscall (freebsd-386-cgo), const TIOCUCNTL ideal-int
+pkg syscall (freebsd-386-cgo), const TOSTOP ideal-int
+pkg syscall (freebsd-386-cgo), const VDISCARD ideal-int
+pkg syscall (freebsd-386-cgo), const VDSUSP ideal-int
+pkg syscall (freebsd-386-cgo), const VEOF ideal-int
+pkg syscall (freebsd-386-cgo), const VEOL ideal-int
+pkg syscall (freebsd-386-cgo), const VEOL2 ideal-int
+pkg syscall (freebsd-386-cgo), const VERASE ideal-int
+pkg syscall (freebsd-386-cgo), const VERASE2 ideal-int
+pkg syscall (freebsd-386-cgo), const VINTR ideal-int
+pkg syscall (freebsd-386-cgo), const VKILL ideal-int
+pkg syscall (freebsd-386-cgo), const VLNEXT ideal-int
+pkg syscall (freebsd-386-cgo), const VMIN ideal-int
+pkg syscall (freebsd-386-cgo), const VQUIT ideal-int
+pkg syscall (freebsd-386-cgo), const VREPRINT ideal-int
+pkg syscall (freebsd-386-cgo), const VSTART ideal-int
+pkg syscall (freebsd-386-cgo), const VSTATUS ideal-int
+pkg syscall (freebsd-386-cgo), const VSTOP ideal-int
+pkg syscall (freebsd-386-cgo), const VSUSP ideal-int
+pkg syscall (freebsd-386-cgo), const VTIME ideal-int
+pkg syscall (freebsd-386-cgo), const VWERASE ideal-int
+pkg syscall (freebsd-386-cgo), const WCONTINUED ideal-int
+pkg syscall (freebsd-386-cgo), const WCOREFLAG ideal-int
+pkg syscall (freebsd-386-cgo), const WLINUXCLONE ideal-int
+pkg syscall (freebsd-386-cgo), const WNOHANG ideal-int
+pkg syscall (freebsd-386-cgo), const WNOWAIT ideal-int
+pkg syscall (freebsd-386-cgo), const WSTOPPED ideal-int
+pkg syscall (freebsd-386-cgo), const WUNTRACED ideal-int
+pkg syscall (freebsd-386-cgo), func Accept(int) (int, Sockaddr, error)
+pkg syscall (freebsd-386-cgo), func Access(string, uint32) error
+pkg syscall (freebsd-386-cgo), func Adjtime(*Timeval, *Timeval) error
+pkg syscall (freebsd-386-cgo), func Bind(int, Sockaddr) error
+pkg syscall (freebsd-386-cgo), func BpfBuflen(int) (int, error)
+pkg syscall (freebsd-386-cgo), func BpfDatalink(int) (int, error)
+pkg syscall (freebsd-386-cgo), func BpfHeadercmpl(int) (int, error)
+pkg syscall (freebsd-386-cgo), func BpfInterface(int, string) (string, error)
+pkg syscall (freebsd-386-cgo), func BpfJump(int, int, int, int) *BpfInsn
+pkg syscall (freebsd-386-cgo), func BpfStats(int) (*BpfStat, error)
+pkg syscall (freebsd-386-cgo), func BpfStmt(int, int) *BpfInsn
+pkg syscall (freebsd-386-cgo), func BpfTimeout(int) (*Timeval, error)
+pkg syscall (freebsd-386-cgo), func CheckBpfVersion(int) error
+pkg syscall (freebsd-386-cgo), func Chflags(string, int) error
+pkg syscall (freebsd-386-cgo), func Chroot(string) error
+pkg syscall (freebsd-386-cgo), func Close(int) error
+pkg syscall (freebsd-386-cgo), func CloseOnExec(int)
+pkg syscall (freebsd-386-cgo), func CmsgLen(int) int
+pkg syscall (freebsd-386-cgo), func CmsgSpace(int) int
+pkg syscall (freebsd-386-cgo), func Connect(int, Sockaddr) error
+pkg syscall (freebsd-386-cgo), func Dup(int) (int, error)
+pkg syscall (freebsd-386-cgo), func Dup2(int, int) error
+pkg syscall (freebsd-386-cgo), func Fchdir(int) error
+pkg syscall (freebsd-386-cgo), func Fchflags(int, int) error
+pkg syscall (freebsd-386-cgo), func Fchmod(int, uint32) error
+pkg syscall (freebsd-386-cgo), func Fchown(int, int, int) error
+pkg syscall (freebsd-386-cgo), func Flock(int, int) error
+pkg syscall (freebsd-386-cgo), func FlushBpf(int) error
+pkg syscall (freebsd-386-cgo), func ForkExec(string, []string, *ProcAttr) (int, error)
+pkg syscall (freebsd-386-cgo), func Fpathconf(int, int) (int, error)
+pkg syscall (freebsd-386-cgo), func Fstat(int, *Stat_t) error
+pkg syscall (freebsd-386-cgo), func Fstatfs(int, *Statfs_t) error
+pkg syscall (freebsd-386-cgo), func Fsync(int) error
+pkg syscall (freebsd-386-cgo), func Ftruncate(int, int64) error
+pkg syscall (freebsd-386-cgo), func Futimes(int, []Timeval) error
+pkg syscall (freebsd-386-cgo), func Getdirentries(int, []uint8, *uintptr) (int, error)
+pkg syscall (freebsd-386-cgo), func Getdtablesize() int
+pkg syscall (freebsd-386-cgo), func Getfsstat([]Statfs_t, int) (int, error)
+pkg syscall (freebsd-386-cgo), func Getpeername(int) (Sockaddr, error)
+pkg syscall (freebsd-386-cgo), func Getpgid(int) (int, error)
+pkg syscall (freebsd-386-cgo), func Getpgrp() int
+pkg syscall (freebsd-386-cgo), func Getpriority(int, int) (int, error)
+pkg syscall (freebsd-386-cgo), func Getrlimit(int, *Rlimit) error
+pkg syscall (freebsd-386-cgo), func Getrusage(int, *Rusage) error
+pkg syscall (freebsd-386-cgo), func Getsid(int) (int, error)
+pkg syscall (freebsd-386-cgo), func Getsockname(int) (Sockaddr, error)
+pkg syscall (freebsd-386-cgo), func GetsockoptByte(int, int, int) (uint8, error)
+pkg syscall (freebsd-386-cgo), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
+pkg syscall (freebsd-386-cgo), func GetsockoptIPMreq(int, int, int) (*IPMreq, error)
+pkg syscall (freebsd-386-cgo), func GetsockoptIPMreqn(int, int, int) (*IPMreqn, error)
+pkg syscall (freebsd-386-cgo), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
+pkg syscall (freebsd-386-cgo), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error)
+pkg syscall (freebsd-386-cgo), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error)
+pkg syscall (freebsd-386-cgo), func GetsockoptInt(int, int, int) (int, error)
+pkg syscall (freebsd-386-cgo), func Issetugid() bool
+pkg syscall (freebsd-386-cgo), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error)
+pkg syscall (freebsd-386-cgo), func Kill(int, Signal) error
+pkg syscall (freebsd-386-cgo), func Kqueue() (int, error)
+pkg syscall (freebsd-386-cgo), func Listen(int, int) error
+pkg syscall (freebsd-386-cgo), func Lstat(string, *Stat_t) error
+pkg syscall (freebsd-386-cgo), func Mkfifo(string, uint32) error
+pkg syscall (freebsd-386-cgo), func Mknod(string, uint32, int) error
+pkg syscall (freebsd-386-cgo), func Mmap(int, int64, int, int, int) ([]uint8, error)
+pkg syscall (freebsd-386-cgo), func Munmap([]uint8) error
+pkg syscall (freebsd-386-cgo), func Nanosleep(*Timespec, *Timespec) error
+pkg syscall (freebsd-386-cgo), func Open(string, int, uint32) (int, error)
+pkg syscall (freebsd-386-cgo), func ParseDirent([]uint8, int, []string) (int, int, []string)
+pkg syscall (freebsd-386-cgo), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error)
+pkg syscall (freebsd-386-cgo), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error)
+pkg syscall (freebsd-386-cgo), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error)
+pkg syscall (freebsd-386-cgo), func ParseUnixRights(*SocketControlMessage) ([]int, error)
+pkg syscall (freebsd-386-cgo), func Pathconf(string, int) (int, error)
+pkg syscall (freebsd-386-cgo), func Pipe([]int) error
+pkg syscall (freebsd-386-cgo), func Pread(int, []uint8, int64) (int, error)
+pkg syscall (freebsd-386-cgo), func Pwrite(int, []uint8, int64) (int, error)
+pkg syscall (freebsd-386-cgo), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (freebsd-386-cgo), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (freebsd-386-cgo), func Read(int, []uint8) (int, error)
+pkg syscall (freebsd-386-cgo), func ReadDirent(int, []uint8) (int, error)
+pkg syscall (freebsd-386-cgo), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
+pkg syscall (freebsd-386-cgo), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
+pkg syscall (freebsd-386-cgo), func Revoke(string) error
+pkg syscall (freebsd-386-cgo), func RouteRIB(int, int) ([]uint8, error)
+pkg syscall (freebsd-386-cgo), func Seek(int, int64, int) (int64, error)
+pkg syscall (freebsd-386-cgo), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error
+pkg syscall (freebsd-386-cgo), func Sendfile(int, int, *int64, int) (int, error)
+pkg syscall (freebsd-386-cgo), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
+pkg syscall (freebsd-386-cgo), func Sendto(int, []uint8, int, Sockaddr) error
+pkg syscall (freebsd-386-cgo), func SetBpf(int, []BpfInsn) error
+pkg syscall (freebsd-386-cgo), func SetBpfBuflen(int, int) (int, error)
+pkg syscall (freebsd-386-cgo), func SetBpfDatalink(int, int) (int, error)
+pkg syscall (freebsd-386-cgo), func SetBpfHeadercmpl(int, int) error
+pkg syscall (freebsd-386-cgo), func SetBpfImmediate(int, int) error
+pkg syscall (freebsd-386-cgo), func SetBpfInterface(int, string) error
+pkg syscall (freebsd-386-cgo), func SetBpfPromisc(int, int) error
+pkg syscall (freebsd-386-cgo), func SetBpfTimeout(int, *Timeval) error
+pkg syscall (freebsd-386-cgo), func SetKevent(*Kevent_t, int, int, int)
+pkg syscall (freebsd-386-cgo), func SetNonblock(int, bool) error
+pkg syscall (freebsd-386-cgo), func Setegid(int) error
+pkg syscall (freebsd-386-cgo), func Seteuid(int) error
+pkg syscall (freebsd-386-cgo), func Setgid(int) error
+pkg syscall (freebsd-386-cgo), func Setgroups([]int) error
+pkg syscall (freebsd-386-cgo), func Setlogin(string) error
+pkg syscall (freebsd-386-cgo), func Setpgid(int, int) error
+pkg syscall (freebsd-386-cgo), func Setpriority(int, int, int) error
+pkg syscall (freebsd-386-cgo), func Setregid(int, int) error
+pkg syscall (freebsd-386-cgo), func Setreuid(int, int) error
+pkg syscall (freebsd-386-cgo), func Setrlimit(int, *Rlimit) error
+pkg syscall (freebsd-386-cgo), func Setsid() (int, error)
+pkg syscall (freebsd-386-cgo), func SetsockoptByte(int, int, int, uint8) error
+pkg syscall (freebsd-386-cgo), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
+pkg syscall (freebsd-386-cgo), func SetsockoptIPMreq(int, int, int, *IPMreq) error
+pkg syscall (freebsd-386-cgo), func SetsockoptIPMreqn(int, int, int, *IPMreqn) error
+pkg syscall (freebsd-386-cgo), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error
+pkg syscall (freebsd-386-cgo), func SetsockoptInet4Addr(int, int, int, [4]uint8) error
+pkg syscall (freebsd-386-cgo), func SetsockoptInt(int, int, int, int) error
+pkg syscall (freebsd-386-cgo), func SetsockoptLinger(int, int, int, *Linger) error
+pkg syscall (freebsd-386-cgo), func SetsockoptString(int, int, int, string) error
+pkg syscall (freebsd-386-cgo), func SetsockoptTimeval(int, int, int, *Timeval) error
+pkg syscall (freebsd-386-cgo), func Settimeofday(*Timeval) error
+pkg syscall (freebsd-386-cgo), func Setuid(int) error
+pkg syscall (freebsd-386-cgo), func Shutdown(int, int) error
+pkg syscall (freebsd-386-cgo), func SlicePtrFromStrings([]string) ([]*uint8, error)
+pkg syscall (freebsd-386-cgo), func Socket(int, int, int) (int, error)
+pkg syscall (freebsd-386-cgo), func Socketpair(int, int, int) ([2]int, error)
+pkg syscall (freebsd-386-cgo), func Stat(string, *Stat_t) error
+pkg syscall (freebsd-386-cgo), func Statfs(string, *Statfs_t) error
+pkg syscall (freebsd-386-cgo), func StringSlicePtr([]string) []*uint8
+pkg syscall (freebsd-386-cgo), func Sync() error
+pkg syscall (freebsd-386-cgo), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (freebsd-386-cgo), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (freebsd-386-cgo), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (freebsd-386-cgo), func Sysctl(string) (string, error)
+pkg syscall (freebsd-386-cgo), func SysctlUint32(string) (uint32, error)
+pkg syscall (freebsd-386-cgo), func TimevalToNsec(Timeval) int64
+pkg syscall (freebsd-386-cgo), func Truncate(string, int64) error
+pkg syscall (freebsd-386-cgo), func Umask(int) int
+pkg syscall (freebsd-386-cgo), func Undelete(string) error
+pkg syscall (freebsd-386-cgo), func UnixRights(...int) []uint8
+pkg syscall (freebsd-386-cgo), func Unmount(string, int) error
+pkg syscall (freebsd-386-cgo), func Wait4(int, *WaitStatus, int, *Rusage) (int, error)
+pkg syscall (freebsd-386-cgo), func Write(int, []uint8) (int, error)
+pkg syscall (freebsd-386-cgo), method (*Cmsghdr) SetLen(int)
+pkg syscall (freebsd-386-cgo), method (*Iovec) SetLen(int)
+pkg syscall (freebsd-386-cgo), method (*Msghdr) SetControllen(int)
+pkg syscall (freebsd-386-cgo), type BpfHdr struct
+pkg syscall (freebsd-386-cgo), type BpfHdr struct, Caplen uint32
+pkg syscall (freebsd-386-cgo), type BpfHdr struct, Datalen uint32
+pkg syscall (freebsd-386-cgo), type BpfHdr struct, Hdrlen uint16
+pkg syscall (freebsd-386-cgo), type BpfHdr struct, Pad_cgo_0 [2]uint8
+pkg syscall (freebsd-386-cgo), type BpfHdr struct, Tstamp Timeval
+pkg syscall (freebsd-386-cgo), type BpfInsn struct
+pkg syscall (freebsd-386-cgo), type BpfInsn struct, Code uint16
+pkg syscall (freebsd-386-cgo), type BpfInsn struct, Jf uint8
+pkg syscall (freebsd-386-cgo), type BpfInsn struct, Jt uint8
+pkg syscall (freebsd-386-cgo), type BpfInsn struct, K uint32
+pkg syscall (freebsd-386-cgo), type BpfProgram struct
+pkg syscall (freebsd-386-cgo), type BpfProgram struct, Insns *BpfInsn
+pkg syscall (freebsd-386-cgo), type BpfProgram struct, Len uint32
+pkg syscall (freebsd-386-cgo), type BpfStat struct
+pkg syscall (freebsd-386-cgo), type BpfStat struct, Drop uint32
+pkg syscall (freebsd-386-cgo), type BpfStat struct, Recv uint32
+pkg syscall (freebsd-386-cgo), type BpfVersion struct
+pkg syscall (freebsd-386-cgo), type BpfVersion struct, Major uint16
+pkg syscall (freebsd-386-cgo), type BpfVersion struct, Minor uint16
+pkg syscall (freebsd-386-cgo), type BpfZbuf struct
+pkg syscall (freebsd-386-cgo), type BpfZbuf struct, Bufa *uint8
+pkg syscall (freebsd-386-cgo), type BpfZbuf struct, Bufb *uint8
+pkg syscall (freebsd-386-cgo), type BpfZbuf struct, Buflen uint32
+pkg syscall (freebsd-386-cgo), type BpfZbufHeader struct
+pkg syscall (freebsd-386-cgo), type BpfZbufHeader struct, Kernel_gen uint32
+pkg syscall (freebsd-386-cgo), type BpfZbufHeader struct, Kernel_len uint32
+pkg syscall (freebsd-386-cgo), type BpfZbufHeader struct, User_gen uint32
+pkg syscall (freebsd-386-cgo), type BpfZbufHeader struct, X_bzh_pad [5]uint32
+pkg syscall (freebsd-386-cgo), type Cmsghdr struct
+pkg syscall (freebsd-386-cgo), type Cmsghdr struct, Len uint32
+pkg syscall (freebsd-386-cgo), type Cmsghdr struct, Level int32
+pkg syscall (freebsd-386-cgo), type Cmsghdr struct, Type int32
+pkg syscall (freebsd-386-cgo), type Credential struct
+pkg syscall (freebsd-386-cgo), type Credential struct, Gid uint32
+pkg syscall (freebsd-386-cgo), type Credential struct, Groups []uint32
+pkg syscall (freebsd-386-cgo), type Credential struct, Uid uint32
+pkg syscall (freebsd-386-cgo), type Dirent struct
+pkg syscall (freebsd-386-cgo), type Dirent struct, Fileno uint32
+pkg syscall (freebsd-386-cgo), type Dirent struct, Name [256]int8
+pkg syscall (freebsd-386-cgo), type Dirent struct, Namlen uint8
+pkg syscall (freebsd-386-cgo), type Dirent struct, Reclen uint16
+pkg syscall (freebsd-386-cgo), type Dirent struct, Type uint8
+pkg syscall (freebsd-386-cgo), type FdSet struct
+pkg syscall (freebsd-386-cgo), type FdSet struct, X__fds_bits [32]uint32
+pkg syscall (freebsd-386-cgo), type Flock_t struct
+pkg syscall (freebsd-386-cgo), type Flock_t struct, Len int64
+pkg syscall (freebsd-386-cgo), type Flock_t struct, Pid int32
+pkg syscall (freebsd-386-cgo), type Flock_t struct, Start int64
+pkg syscall (freebsd-386-cgo), type Flock_t struct, Sysid int32
+pkg syscall (freebsd-386-cgo), type Flock_t struct, Type int16
+pkg syscall (freebsd-386-cgo), type Flock_t struct, Whence int16
+pkg syscall (freebsd-386-cgo), type Fsid struct
+pkg syscall (freebsd-386-cgo), type Fsid struct, Val [2]int32
+pkg syscall (freebsd-386-cgo), type ICMPv6Filter struct
+pkg syscall (freebsd-386-cgo), type ICMPv6Filter struct, Filt [8]uint32
+pkg syscall (freebsd-386-cgo), type IPMreqn struct
+pkg syscall (freebsd-386-cgo), type IPMreqn struct, Address [4]uint8
+pkg syscall (freebsd-386-cgo), type IPMreqn struct, Ifindex int32
+pkg syscall (freebsd-386-cgo), type IPMreqn struct, Multiaddr [4]uint8
+pkg syscall (freebsd-386-cgo), type IPv6MTUInfo struct
+pkg syscall (freebsd-386-cgo), type IPv6MTUInfo struct, Addr RawSockaddrInet6
+pkg syscall (freebsd-386-cgo), type IPv6MTUInfo struct, Mtu uint32
+pkg syscall (freebsd-386-cgo), type IfAnnounceMsghdr struct
+pkg syscall (freebsd-386-cgo), type IfAnnounceMsghdr struct, Index uint16
+pkg syscall (freebsd-386-cgo), type IfAnnounceMsghdr struct, Msglen uint16
+pkg syscall (freebsd-386-cgo), type IfAnnounceMsghdr struct, Name [16]int8
+pkg syscall (freebsd-386-cgo), type IfAnnounceMsghdr struct, Type uint8
+pkg syscall (freebsd-386-cgo), type IfAnnounceMsghdr struct, Version uint8
+pkg syscall (freebsd-386-cgo), type IfAnnounceMsghdr struct, What uint16
+pkg syscall (freebsd-386-cgo), type IfData struct
+pkg syscall (freebsd-386-cgo), type IfData struct, Addrlen uint8
+pkg syscall (freebsd-386-cgo), type IfData struct, Baudrate uint32
+pkg syscall (freebsd-386-cgo), type IfData struct, Collisions uint32
+pkg syscall (freebsd-386-cgo), type IfData struct, Datalen uint8
+pkg syscall (freebsd-386-cgo), type IfData struct, Epoch int32
+pkg syscall (freebsd-386-cgo), type IfData struct, Hdrlen uint8
+pkg syscall (freebsd-386-cgo), type IfData struct, Hwassist uint32
+pkg syscall (freebsd-386-cgo), type IfData struct, Ibytes uint32
+pkg syscall (freebsd-386-cgo), type IfData struct, Ierrors uint32
+pkg syscall (freebsd-386-cgo), type IfData struct, Imcasts uint32
+pkg syscall (freebsd-386-cgo), type IfData struct, Ipackets uint32
+pkg syscall (freebsd-386-cgo), type IfData struct, Iqdrops uint32
+pkg syscall (freebsd-386-cgo), type IfData struct, Lastchange Timeval
+pkg syscall (freebsd-386-cgo), type IfData struct, Link_state uint8
+pkg syscall (freebsd-386-cgo), type IfData struct, Metric uint32
+pkg syscall (freebsd-386-cgo), type IfData struct, Mtu uint32
+pkg syscall (freebsd-386-cgo), type IfData struct, Noproto uint32
+pkg syscall (freebsd-386-cgo), type IfData struct, Obytes uint32
+pkg syscall (freebsd-386-cgo), type IfData struct, Oerrors uint32
+pkg syscall (freebsd-386-cgo), type IfData struct, Omcasts uint32
+pkg syscall (freebsd-386-cgo), type IfData struct, Opackets uint32
+pkg syscall (freebsd-386-cgo), type IfData struct, Physical uint8
+pkg syscall (freebsd-386-cgo), type IfData struct, Spare_char1 uint8
+pkg syscall (freebsd-386-cgo), type IfData struct, Spare_char2 uint8
+pkg syscall (freebsd-386-cgo), type IfData struct, Type uint8
+pkg syscall (freebsd-386-cgo), type IfMsghdr struct
+pkg syscall (freebsd-386-cgo), type IfMsghdr struct, Addrs int32
+pkg syscall (freebsd-386-cgo), type IfMsghdr struct, Data IfData
+pkg syscall (freebsd-386-cgo), type IfMsghdr struct, Flags int32
+pkg syscall (freebsd-386-cgo), type IfMsghdr struct, Index uint16
+pkg syscall (freebsd-386-cgo), type IfMsghdr struct, Msglen uint16
+pkg syscall (freebsd-386-cgo), type IfMsghdr struct, Pad_cgo_0 [2]uint8
+pkg syscall (freebsd-386-cgo), type IfMsghdr struct, Type uint8
+pkg syscall (freebsd-386-cgo), type IfMsghdr struct, Version uint8
+pkg syscall (freebsd-386-cgo), type IfaMsghdr struct
+pkg syscall (freebsd-386-cgo), type IfaMsghdr struct, Addrs int32
+pkg syscall (freebsd-386-cgo), type IfaMsghdr struct, Flags int32
+pkg syscall (freebsd-386-cgo), type IfaMsghdr struct, Index uint16
+pkg syscall (freebsd-386-cgo), type IfaMsghdr struct, Metric int32
+pkg syscall (freebsd-386-cgo), type IfaMsghdr struct, Msglen uint16
+pkg syscall (freebsd-386-cgo), type IfaMsghdr struct, Pad_cgo_0 [2]uint8
+pkg syscall (freebsd-386-cgo), type IfaMsghdr struct, Type uint8
+pkg syscall (freebsd-386-cgo), type IfaMsghdr struct, Version uint8
+pkg syscall (freebsd-386-cgo), type IfmaMsghdr struct
+pkg syscall (freebsd-386-cgo), type IfmaMsghdr struct, Addrs int32
+pkg syscall (freebsd-386-cgo), type IfmaMsghdr struct, Flags int32
+pkg syscall (freebsd-386-cgo), type IfmaMsghdr struct, Index uint16
+pkg syscall (freebsd-386-cgo), type IfmaMsghdr struct, Msglen uint16
+pkg syscall (freebsd-386-cgo), type IfmaMsghdr struct, Pad_cgo_0 [2]uint8
+pkg syscall (freebsd-386-cgo), type IfmaMsghdr struct, Type uint8
+pkg syscall (freebsd-386-cgo), type IfmaMsghdr struct, Version uint8
+pkg syscall (freebsd-386-cgo), type Inet6Pktinfo struct
+pkg syscall (freebsd-386-cgo), type Inet6Pktinfo struct, Addr [16]uint8
+pkg syscall (freebsd-386-cgo), type Inet6Pktinfo struct, Ifindex uint32
+pkg syscall (freebsd-386-cgo), type InterfaceAddrMessage struct
+pkg syscall (freebsd-386-cgo), type InterfaceAddrMessage struct, Data []uint8
+pkg syscall (freebsd-386-cgo), type InterfaceAddrMessage struct, Header IfaMsghdr
+pkg syscall (freebsd-386-cgo), type InterfaceAnnounceMessage struct
+pkg syscall (freebsd-386-cgo), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr
+pkg syscall (freebsd-386-cgo), type InterfaceMessage struct
+pkg syscall (freebsd-386-cgo), type InterfaceMessage struct, Data []uint8
+pkg syscall (freebsd-386-cgo), type InterfaceMessage struct, Header IfMsghdr
+pkg syscall (freebsd-386-cgo), type InterfaceMulticastAddrMessage struct
+pkg syscall (freebsd-386-cgo), type InterfaceMulticastAddrMessage struct, Data []uint8
+pkg syscall (freebsd-386-cgo), type InterfaceMulticastAddrMessage struct, Header IfmaMsghdr
+pkg syscall (freebsd-386-cgo), type Iovec struct
+pkg syscall (freebsd-386-cgo), type Iovec struct, Base *uint8
+pkg syscall (freebsd-386-cgo), type Iovec struct, Len uint32
+pkg syscall (freebsd-386-cgo), type Kevent_t struct
+pkg syscall (freebsd-386-cgo), type Kevent_t struct, Data int32
+pkg syscall (freebsd-386-cgo), type Kevent_t struct, Fflags uint32
+pkg syscall (freebsd-386-cgo), type Kevent_t struct, Filter int16
+pkg syscall (freebsd-386-cgo), type Kevent_t struct, Flags uint16
+pkg syscall (freebsd-386-cgo), type Kevent_t struct, Ident uint32
+pkg syscall (freebsd-386-cgo), type Kevent_t struct, Udata *uint8
+pkg syscall (freebsd-386-cgo), type Msghdr struct
+pkg syscall (freebsd-386-cgo), type Msghdr struct, Control *uint8
+pkg syscall (freebsd-386-cgo), type Msghdr struct, Controllen uint32
+pkg syscall (freebsd-386-cgo), type Msghdr struct, Flags int32
+pkg syscall (freebsd-386-cgo), type Msghdr struct, Iov *Iovec
+pkg syscall (freebsd-386-cgo), type Msghdr struct, Iovlen int32
+pkg syscall (freebsd-386-cgo), type Msghdr struct, Name *uint8
+pkg syscall (freebsd-386-cgo), type Msghdr struct, Namelen uint32
+pkg syscall (freebsd-386-cgo), type RawSockaddr struct, Data [14]int8
+pkg syscall (freebsd-386-cgo), type RawSockaddr struct, Family uint8
+pkg syscall (freebsd-386-cgo), type RawSockaddr struct, Len uint8
+pkg syscall (freebsd-386-cgo), type RawSockaddrAny struct, Pad [92]int8
+pkg syscall (freebsd-386-cgo), type RawSockaddrDatalink struct
+pkg syscall (freebsd-386-cgo), type RawSockaddrDatalink struct, Alen uint8
+pkg syscall (freebsd-386-cgo), type RawSockaddrDatalink struct, Data [46]int8
+pkg syscall (freebsd-386-cgo), type RawSockaddrDatalink struct, Family uint8
+pkg syscall (freebsd-386-cgo), type RawSockaddrDatalink struct, Index uint16
+pkg syscall (freebsd-386-cgo), type RawSockaddrDatalink struct, Len uint8
+pkg syscall (freebsd-386-cgo), type RawSockaddrDatalink struct, Nlen uint8
+pkg syscall (freebsd-386-cgo), type RawSockaddrDatalink struct, Slen uint8
+pkg syscall (freebsd-386-cgo), type RawSockaddrDatalink struct, Type uint8
+pkg syscall (freebsd-386-cgo), type RawSockaddrInet4 struct, Family uint8
+pkg syscall (freebsd-386-cgo), type RawSockaddrInet4 struct, Len uint8
+pkg syscall (freebsd-386-cgo), type RawSockaddrInet4 struct, Zero [8]int8
+pkg syscall (freebsd-386-cgo), type RawSockaddrInet6 struct, Family uint8
+pkg syscall (freebsd-386-cgo), type RawSockaddrInet6 struct, Len uint8
+pkg syscall (freebsd-386-cgo), type RawSockaddrUnix struct
+pkg syscall (freebsd-386-cgo), type RawSockaddrUnix struct, Family uint8
+pkg syscall (freebsd-386-cgo), type RawSockaddrUnix struct, Len uint8
+pkg syscall (freebsd-386-cgo), type RawSockaddrUnix struct, Path [104]int8
+pkg syscall (freebsd-386-cgo), type Rlimit struct
+pkg syscall (freebsd-386-cgo), type Rlimit struct, Cur int64
+pkg syscall (freebsd-386-cgo), type Rlimit struct, Max int64
+pkg syscall (freebsd-386-cgo), type RouteMessage struct
+pkg syscall (freebsd-386-cgo), type RouteMessage struct, Data []uint8
+pkg syscall (freebsd-386-cgo), type RouteMessage struct, Header RtMsghdr
+pkg syscall (freebsd-386-cgo), type RoutingMessage interface, unexported methods
+pkg syscall (freebsd-386-cgo), type RtMetrics struct
+pkg syscall (freebsd-386-cgo), type RtMetrics struct, Expire uint32
+pkg syscall (freebsd-386-cgo), type RtMetrics struct, Filler [3]uint32
+pkg syscall (freebsd-386-cgo), type RtMetrics struct, Hopcount uint32
+pkg syscall (freebsd-386-cgo), type RtMetrics struct, Locks uint32
+pkg syscall (freebsd-386-cgo), type RtMetrics struct, Mtu uint32
+pkg syscall (freebsd-386-cgo), type RtMetrics struct, Pksent uint32
+pkg syscall (freebsd-386-cgo), type RtMetrics struct, Recvpipe uint32
+pkg syscall (freebsd-386-cgo), type RtMetrics struct, Rtt uint32
+pkg syscall (freebsd-386-cgo), type RtMetrics struct, Rttvar uint32
+pkg syscall (freebsd-386-cgo), type RtMetrics struct, Sendpipe uint32
+pkg syscall (freebsd-386-cgo), type RtMetrics struct, Ssthresh uint32
+pkg syscall (freebsd-386-cgo), type RtMetrics struct, Weight uint32
+pkg syscall (freebsd-386-cgo), type RtMsghdr struct
+pkg syscall (freebsd-386-cgo), type RtMsghdr struct, Addrs int32
+pkg syscall (freebsd-386-cgo), type RtMsghdr struct, Errno int32
+pkg syscall (freebsd-386-cgo), type RtMsghdr struct, Flags int32
+pkg syscall (freebsd-386-cgo), type RtMsghdr struct, Fmask int32
+pkg syscall (freebsd-386-cgo), type RtMsghdr struct, Index uint16
+pkg syscall (freebsd-386-cgo), type RtMsghdr struct, Inits uint32
+pkg syscall (freebsd-386-cgo), type RtMsghdr struct, Msglen uint16
+pkg syscall (freebsd-386-cgo), type RtMsghdr struct, Pad_cgo_0 [2]uint8
+pkg syscall (freebsd-386-cgo), type RtMsghdr struct, Pid int32
+pkg syscall (freebsd-386-cgo), type RtMsghdr struct, Rmx RtMetrics
+pkg syscall (freebsd-386-cgo), type RtMsghdr struct, Seq int32
+pkg syscall (freebsd-386-cgo), type RtMsghdr struct, Type uint8
+pkg syscall (freebsd-386-cgo), type RtMsghdr struct, Version uint8
+pkg syscall (freebsd-386-cgo), type Rusage struct, Idrss int32
+pkg syscall (freebsd-386-cgo), type Rusage struct, Inblock int32
+pkg syscall (freebsd-386-cgo), type Rusage struct, Isrss int32
+pkg syscall (freebsd-386-cgo), type Rusage struct, Ixrss int32
+pkg syscall (freebsd-386-cgo), type Rusage struct, Majflt int32
+pkg syscall (freebsd-386-cgo), type Rusage struct, Maxrss int32
+pkg syscall (freebsd-386-cgo), type Rusage struct, Minflt int32
+pkg syscall (freebsd-386-cgo), type Rusage struct, Msgrcv int32
+pkg syscall (freebsd-386-cgo), type Rusage struct, Msgsnd int32
+pkg syscall (freebsd-386-cgo), type Rusage struct, Nivcsw int32
+pkg syscall (freebsd-386-cgo), type Rusage struct, Nsignals int32
+pkg syscall (freebsd-386-cgo), type Rusage struct, Nswap int32
+pkg syscall (freebsd-386-cgo), type Rusage struct, Nvcsw int32
+pkg syscall (freebsd-386-cgo), type Rusage struct, Oublock int32
+pkg syscall (freebsd-386-cgo), type Rusage struct, Stime Timeval
+pkg syscall (freebsd-386-cgo), type Rusage struct, Utime Timeval
+pkg syscall (freebsd-386-cgo), type SockaddrDatalink struct
+pkg syscall (freebsd-386-cgo), type SockaddrDatalink struct, Alen uint8
+pkg syscall (freebsd-386-cgo), type SockaddrDatalink struct, Data [46]int8
+pkg syscall (freebsd-386-cgo), type SockaddrDatalink struct, Family uint8
+pkg syscall (freebsd-386-cgo), type SockaddrDatalink struct, Index uint16
+pkg syscall (freebsd-386-cgo), type SockaddrDatalink struct, Len uint8
+pkg syscall (freebsd-386-cgo), type SockaddrDatalink struct, Nlen uint8
+pkg syscall (freebsd-386-cgo), type SockaddrDatalink struct, Slen uint8
+pkg syscall (freebsd-386-cgo), type SockaddrDatalink struct, Type uint8
+pkg syscall (freebsd-386-cgo), type SocketControlMessage struct
+pkg syscall (freebsd-386-cgo), type SocketControlMessage struct, Data []uint8
+pkg syscall (freebsd-386-cgo), type SocketControlMessage struct, Header Cmsghdr
+pkg syscall (freebsd-386-cgo), type Stat_t struct
+pkg syscall (freebsd-386-cgo), type Stat_t struct, Atimespec Timespec
+pkg syscall (freebsd-386-cgo), type Stat_t struct, Birthtimespec Timespec
+pkg syscall (freebsd-386-cgo), type Stat_t struct, Blksize uint32
+pkg syscall (freebsd-386-cgo), type Stat_t struct, Blocks int64
+pkg syscall (freebsd-386-cgo), type Stat_t struct, Ctimespec Timespec
+pkg syscall (freebsd-386-cgo), type Stat_t struct, Dev uint32
+pkg syscall (freebsd-386-cgo), type Stat_t struct, Flags uint32
+pkg syscall (freebsd-386-cgo), type Stat_t struct, Gen uint32
+pkg syscall (freebsd-386-cgo), type Stat_t struct, Gid uint32
+pkg syscall (freebsd-386-cgo), type Stat_t struct, Ino uint32
+pkg syscall (freebsd-386-cgo), type Stat_t struct, Lspare int32
+pkg syscall (freebsd-386-cgo), type Stat_t struct, Mode uint16
+pkg syscall (freebsd-386-cgo), type Stat_t struct, Mtimespec Timespec
+pkg syscall (freebsd-386-cgo), type Stat_t struct, Nlink uint16
+pkg syscall (freebsd-386-cgo), type Stat_t struct, Pad_cgo_0 [8]uint8
+pkg syscall (freebsd-386-cgo), type Stat_t struct, Rdev uint32
+pkg syscall (freebsd-386-cgo), type Stat_t struct, Size int64
+pkg syscall (freebsd-386-cgo), type Stat_t struct, Uid uint32
+pkg syscall (freebsd-386-cgo), type Statfs_t struct
+pkg syscall (freebsd-386-cgo), type Statfs_t struct, Asyncreads uint64
+pkg syscall (freebsd-386-cgo), type Statfs_t struct, Asyncwrites uint64
+pkg syscall (freebsd-386-cgo), type Statfs_t struct, Bavail int64
+pkg syscall (freebsd-386-cgo), type Statfs_t struct, Bfree uint64
+pkg syscall (freebsd-386-cgo), type Statfs_t struct, Blocks uint64
+pkg syscall (freebsd-386-cgo), type Statfs_t struct, Bsize uint64
+pkg syscall (freebsd-386-cgo), type Statfs_t struct, Charspare [80]int8
+pkg syscall (freebsd-386-cgo), type Statfs_t struct, Ffree int64
+pkg syscall (freebsd-386-cgo), type Statfs_t struct, Files uint64
+pkg syscall (freebsd-386-cgo), type Statfs_t struct, Flags uint64
+pkg syscall (freebsd-386-cgo), type Statfs_t struct, Fsid Fsid
+pkg syscall (freebsd-386-cgo), type Statfs_t struct, Fstypename [16]int8
+pkg syscall (freebsd-386-cgo), type Statfs_t struct, Iosize uint64
+pkg syscall (freebsd-386-cgo), type Statfs_t struct, Mntfromname [88]int8
+pkg syscall (freebsd-386-cgo), type Statfs_t struct, Mntonname [88]int8
+pkg syscall (freebsd-386-cgo), type Statfs_t struct, Namemax uint32
+pkg syscall (freebsd-386-cgo), type Statfs_t struct, Owner uint32
+pkg syscall (freebsd-386-cgo), type Statfs_t struct, Spare [10]uint64
+pkg syscall (freebsd-386-cgo), type Statfs_t struct, Syncreads uint64
+pkg syscall (freebsd-386-cgo), type Statfs_t struct, Syncwrites uint64
+pkg syscall (freebsd-386-cgo), type Statfs_t struct, Type uint32
+pkg syscall (freebsd-386-cgo), type Statfs_t struct, Version uint32
+pkg syscall (freebsd-386-cgo), type SysProcAttr struct, Chroot string
+pkg syscall (freebsd-386-cgo), type SysProcAttr struct, Credential *Credential
+pkg syscall (freebsd-386-cgo), type SysProcAttr struct, Noctty bool
+pkg syscall (freebsd-386-cgo), type SysProcAttr struct, Ptrace bool
+pkg syscall (freebsd-386-cgo), type SysProcAttr struct, Setctty bool
+pkg syscall (freebsd-386-cgo), type SysProcAttr struct, Setpgid bool
+pkg syscall (freebsd-386-cgo), type SysProcAttr struct, Setsid bool
+pkg syscall (freebsd-386-cgo), type Timespec struct, Nsec int32
+pkg syscall (freebsd-386-cgo), type Timespec struct, Sec int32
+pkg syscall (freebsd-386-cgo), type Timeval struct, Sec int32
+pkg syscall (freebsd-386-cgo), type Timeval struct, Usec int32
+pkg syscall (freebsd-386-cgo), type WaitStatus uint32
+pkg syscall (freebsd-386-cgo), var Stderr int
+pkg syscall (freebsd-386-cgo), var Stdin int
+pkg syscall (freebsd-386-cgo), var Stdout int
+pkg syscall (freebsd-amd64), const F_DUP2FD_CLOEXEC = 18
+pkg syscall (freebsd-amd64), const F_DUP2FD_CLOEXEC ideal-int
+pkg syscall (freebsd-amd64), const F_DUPFD_CLOEXEC = 17
+pkg syscall (freebsd-amd64), const F_DUPFD_CLOEXEC ideal-int
+pkg syscall (freebsd-amd64), const ICMP6_FILTER = 18
+pkg syscall (freebsd-amd64), const ICMP6_FILTER ideal-int
+pkg syscall (freebsd-amd64), const PRIO_PGRP = 1
+pkg syscall (freebsd-amd64), const PRIO_PGRP ideal-int
+pkg syscall (freebsd-amd64), const PRIO_PROCESS = 0
+pkg syscall (freebsd-amd64), const PRIO_PROCESS ideal-int
+pkg syscall (freebsd-amd64), const PRIO_USER = 2
+pkg syscall (freebsd-amd64), const PRIO_USER ideal-int
+pkg syscall (freebsd-amd64), const SizeofICMPv6Filter = 32
+pkg syscall (freebsd-amd64), const SizeofICMPv6Filter ideal-int
+pkg syscall (freebsd-amd64), const SizeofIPv6MTUInfo = 32
+pkg syscall (freebsd-amd64), const SizeofIPv6MTUInfo ideal-int
+pkg syscall (freebsd-amd64), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
+pkg syscall (freebsd-amd64), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
+pkg syscall (freebsd-amd64), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
+pkg syscall (freebsd-amd64), type ICMPv6Filter struct
+pkg syscall (freebsd-amd64), type ICMPv6Filter struct, Filt [8]uint32
+pkg syscall (freebsd-amd64), type IPv6MTUInfo struct
+pkg syscall (freebsd-amd64), type IPv6MTUInfo struct, Addr RawSockaddrInet6
+pkg syscall (freebsd-amd64), type IPv6MTUInfo struct, Mtu uint32
+pkg syscall (freebsd-amd64-cgo), const AF_APPLETALK ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_ARP ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_ATM ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_BLUETOOTH ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_CCITT ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_CHAOS ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_CNT ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_COIP ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_DATAKIT ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_DECnet ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_DLI ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_E164 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_ECMA ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_HYLINK ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_IEEE80211 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_IMPLINK ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_IPX ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_ISDN ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_ISO ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_LAT ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_LINK ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_LOCAL ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_MAX ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_NATM ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_NETBIOS ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_NETGRAPH ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_OSI ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_PUP ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_ROUTE ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_SCLUSTER ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_SIP ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_SLOW ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_SNA ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_VENDOR00 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_VENDOR01 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_VENDOR02 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_VENDOR03 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_VENDOR04 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_VENDOR05 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_VENDOR06 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_VENDOR07 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_VENDOR08 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_VENDOR09 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_VENDOR10 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_VENDOR11 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_VENDOR12 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_VENDOR13 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_VENDOR14 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_VENDOR15 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_VENDOR16 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_VENDOR17 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_VENDOR18 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_VENDOR19 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_VENDOR20 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_VENDOR21 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_VENDOR22 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_VENDOR23 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_VENDOR24 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_VENDOR25 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_VENDOR26 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_VENDOR27 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_VENDOR28 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_VENDOR29 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_VENDOR30 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_VENDOR31 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_VENDOR32 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_VENDOR33 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_VENDOR34 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_VENDOR35 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_VENDOR36 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_VENDOR37 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_VENDOR38 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_VENDOR39 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_VENDOR40 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_VENDOR41 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_VENDOR42 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_VENDOR43 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_VENDOR44 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_VENDOR45 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_VENDOR46 ideal-int
+pkg syscall (freebsd-amd64-cgo), const AF_VENDOR47 ideal-int
+pkg syscall (freebsd-amd64-cgo), const B0 ideal-int
+pkg syscall (freebsd-amd64-cgo), const B110 ideal-int
+pkg syscall (freebsd-amd64-cgo), const B115200 ideal-int
+pkg syscall (freebsd-amd64-cgo), const B1200 ideal-int
+pkg syscall (freebsd-amd64-cgo), const B134 ideal-int
+pkg syscall (freebsd-amd64-cgo), const B14400 ideal-int
+pkg syscall (freebsd-amd64-cgo), const B150 ideal-int
+pkg syscall (freebsd-amd64-cgo), const B1800 ideal-int
+pkg syscall (freebsd-amd64-cgo), const B19200 ideal-int
+pkg syscall (freebsd-amd64-cgo), const B200 ideal-int
+pkg syscall (freebsd-amd64-cgo), const B230400 ideal-int
+pkg syscall (freebsd-amd64-cgo), const B2400 ideal-int
+pkg syscall (freebsd-amd64-cgo), const B28800 ideal-int
+pkg syscall (freebsd-amd64-cgo), const B300 ideal-int
+pkg syscall (freebsd-amd64-cgo), const B38400 ideal-int
+pkg syscall (freebsd-amd64-cgo), const B460800 ideal-int
+pkg syscall (freebsd-amd64-cgo), const B4800 ideal-int
+pkg syscall (freebsd-amd64-cgo), const B50 ideal-int
+pkg syscall (freebsd-amd64-cgo), const B57600 ideal-int
+pkg syscall (freebsd-amd64-cgo), const B600 ideal-int
+pkg syscall (freebsd-amd64-cgo), const B7200 ideal-int
+pkg syscall (freebsd-amd64-cgo), const B75 ideal-int
+pkg syscall (freebsd-amd64-cgo), const B76800 ideal-int
+pkg syscall (freebsd-amd64-cgo), const B921600 ideal-int
+pkg syscall (freebsd-amd64-cgo), const B9600 ideal-int
+pkg syscall (freebsd-amd64-cgo), const BIOCFEEDBACK ideal-int
+pkg syscall (freebsd-amd64-cgo), const BIOCFLUSH ideal-int
+pkg syscall (freebsd-amd64-cgo), const BIOCGBLEN ideal-int
+pkg syscall (freebsd-amd64-cgo), const BIOCGDIRECTION ideal-int
+pkg syscall (freebsd-amd64-cgo), const BIOCGDLT ideal-int
+pkg syscall (freebsd-amd64-cgo), const BIOCGDLTLIST ideal-int
+pkg syscall (freebsd-amd64-cgo), const BIOCGETBUFMODE ideal-int
+pkg syscall (freebsd-amd64-cgo), const BIOCGETIF ideal-int
+pkg syscall (freebsd-amd64-cgo), const BIOCGETZMAX ideal-int
+pkg syscall (freebsd-amd64-cgo), const BIOCGHDRCMPLT ideal-int
+pkg syscall (freebsd-amd64-cgo), const BIOCGRSIG ideal-int
+pkg syscall (freebsd-amd64-cgo), const BIOCGRTIMEOUT ideal-int
+pkg syscall (freebsd-amd64-cgo), const BIOCGSEESENT ideal-int
+pkg syscall (freebsd-amd64-cgo), const BIOCGSTATS ideal-int
+pkg syscall (freebsd-amd64-cgo), const BIOCGTSTAMP ideal-int
+pkg syscall (freebsd-amd64-cgo), const BIOCIMMEDIATE ideal-int
+pkg syscall (freebsd-amd64-cgo), const BIOCLOCK ideal-int
+pkg syscall (freebsd-amd64-cgo), const BIOCPROMISC ideal-int
+pkg syscall (freebsd-amd64-cgo), const BIOCROTZBUF ideal-int
+pkg syscall (freebsd-amd64-cgo), const BIOCSBLEN ideal-int
+pkg syscall (freebsd-amd64-cgo), const BIOCSDIRECTION ideal-int
+pkg syscall (freebsd-amd64-cgo), const BIOCSDLT ideal-int
+pkg syscall (freebsd-amd64-cgo), const BIOCSETBUFMODE ideal-int
+pkg syscall (freebsd-amd64-cgo), const BIOCSETF ideal-int
+pkg syscall (freebsd-amd64-cgo), const BIOCSETFNR ideal-int
+pkg syscall (freebsd-amd64-cgo), const BIOCSETIF ideal-int
+pkg syscall (freebsd-amd64-cgo), const BIOCSETWF ideal-int
+pkg syscall (freebsd-amd64-cgo), const BIOCSETZBUF ideal-int
+pkg syscall (freebsd-amd64-cgo), const BIOCSHDRCMPLT ideal-int
+pkg syscall (freebsd-amd64-cgo), const BIOCSRSIG ideal-int
+pkg syscall (freebsd-amd64-cgo), const BIOCSRTIMEOUT ideal-int
+pkg syscall (freebsd-amd64-cgo), const BIOCSSEESENT ideal-int
+pkg syscall (freebsd-amd64-cgo), const BIOCSTSTAMP ideal-int
+pkg syscall (freebsd-amd64-cgo), const BIOCVERSION ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_A ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_ABS ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_ADD ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_ALIGNMENT ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_ALU ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_AND ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_B ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_BUFMODE_BUFFER ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_BUFMODE_ZBUF ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_DIV ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_H ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_IMM ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_IND ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_JA ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_JEQ ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_JGE ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_JGT ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_JMP ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_JSET ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_K ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_LD ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_LDX ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_LEN ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_LSH ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_MAJOR_VERSION ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_MAXBUFSIZE ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_MAXINSNS ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_MEM ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_MEMWORDS ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_MINBUFSIZE ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_MINOR_VERSION ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_MISC ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_MSH ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_MUL ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_NEG ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_OR ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_RELEASE ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_RET ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_RSH ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_ST ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_STX ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_SUB ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_TAX ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_TXA ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_T_BINTIME ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_T_BINTIME_FAST ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_T_BINTIME_MONOTONIC ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_T_BINTIME_MONOTONIC_FAST ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_T_FAST ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_T_FLAG_MASK ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_T_FORMAT_MASK ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_T_MICROTIME ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_T_MICROTIME_FAST ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_T_MICROTIME_MONOTONIC ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_T_MICROTIME_MONOTONIC_FAST ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_T_MONOTONIC ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_T_MONOTONIC_FAST ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_T_NANOTIME ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_T_NANOTIME_FAST ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_T_NANOTIME_MONOTONIC ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_T_NANOTIME_MONOTONIC_FAST ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_T_NONE ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_T_NORMAL ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_W ideal-int
+pkg syscall (freebsd-amd64-cgo), const BPF_X ideal-int
+pkg syscall (freebsd-amd64-cgo), const BRKINT ideal-int
+pkg syscall (freebsd-amd64-cgo), const CFLUSH ideal-int
+pkg syscall (freebsd-amd64-cgo), const CLOCAL ideal-int
+pkg syscall (freebsd-amd64-cgo), const CREAD ideal-int
+pkg syscall (freebsd-amd64-cgo), const CS5 ideal-int
+pkg syscall (freebsd-amd64-cgo), const CS6 ideal-int
+pkg syscall (freebsd-amd64-cgo), const CS7 ideal-int
+pkg syscall (freebsd-amd64-cgo), const CS8 ideal-int
+pkg syscall (freebsd-amd64-cgo), const CSIZE ideal-int
+pkg syscall (freebsd-amd64-cgo), const CSTART ideal-int
+pkg syscall (freebsd-amd64-cgo), const CSTATUS ideal-int
+pkg syscall (freebsd-amd64-cgo), const CSTOP ideal-int
+pkg syscall (freebsd-amd64-cgo), const CSTOPB ideal-int
+pkg syscall (freebsd-amd64-cgo), const CSUSP ideal-int
+pkg syscall (freebsd-amd64-cgo), const CTL_MAXNAME ideal-int
+pkg syscall (freebsd-amd64-cgo), const CTL_NET ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_A429 ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_A653_ICM ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_AIRONET_HEADER ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_AOS ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_ARCNET ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_ARCNET_LINUX ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_ATM_CLIP ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_ATM_RFC1483 ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_AURORA ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_AX25 ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_AX25_KISS ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_BACNET_MS_TP ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_BLUETOOTH_HCI_H4 ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_CAN20B ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_CAN_SOCKETCAN ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_CHAOS ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_CHDLC ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_CISCO_IOS ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_C_HDLC ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_C_HDLC_WITH_DIR ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_DBUS ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_DECT ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_DOCSIS ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_DVB_CI ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_ECONET ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_EN10MB ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_EN3MB ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_ENC ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_ERF ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_ERF_ETH ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_ERF_POS ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_FC_2 ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_FC_2_WITH_FRAME_DELIMS ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_FDDI ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_FLEXRAY ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_FRELAY ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_FRELAY_WITH_DIR ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_GCOM_SERIAL ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_GCOM_T1E1 ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_GPF_F ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_GPF_T ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_GPRS_LLC ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_GSMTAP_ABIS ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_GSMTAP_UM ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_HHDLC ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_IBM_SN ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_IBM_SP ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_IEEE802 ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_IEEE802_11 ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_IEEE802_11_RADIO ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_IEEE802_11_RADIO_AVS ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_IEEE802_15_4 ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_IEEE802_15_4_LINUX ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_IEEE802_15_4_NOFCS ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_IEEE802_15_4_NONASK_PHY ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_IEEE802_16_MAC_CPS ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_IEEE802_16_MAC_CPS_RADIO ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_IPFILTER ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_IPMB ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_IPMB_LINUX ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_IPNET ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_IPOIB ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_IPV4 ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_IPV6 ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_IP_OVER_FC ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_ATM1 ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_ATM2 ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_ATM_CEMIC ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_CHDLC ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_ES ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_ETHER ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_FIBRECHANNEL ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_FRELAY ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_GGSN ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_ISM ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_MFR ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_MLFR ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_MLPPP ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_MONITOR ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_PIC_PEER ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_PPP ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_PPPOE ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_PPPOE_ATM ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_SERVICES ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_SRX_E2E ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_ST ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_VP ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_VS ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_LAPB_WITH_DIR ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_LAPD ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_LIN ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_LINUX_EVDEV ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_LINUX_IRDA ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_LINUX_LAPD ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_LINUX_PPP_WITHDIRECTION ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_LINUX_SLL ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_LOOP ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_LTALK ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_MATCHING_MAX ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_MATCHING_MIN ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_MFR ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_MOST ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_MPLS ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_MTP2 ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_MTP2_WITH_PHDR ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_MTP3 ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_MUX27010 ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_NETANALYZER ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_NETANALYZER_TRANSPARENT ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_NFLOG ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_NULL ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_PCI_EXP ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_PFLOG ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_PFSYNC ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_PPI ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_PPP ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_PPP_BSDOS ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_PPP_ETHER ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_PPP_PPPD ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_PPP_SERIAL ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_PPP_WITH_DIR ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_PPP_WITH_DIRECTION ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_PRISM_HEADER ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_PRONET ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_RAIF1 ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_RAW ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_RIO ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_SCCP ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_SITA ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_SLIP ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_SLIP_BSDOS ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_STANAG_5066_D_PDU ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_SUNATM ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_SYMANTEC_FIREWALL ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_TZSP ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_USB ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_USB_LINUX ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_USB_LINUX_MMAPPED ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_USER0 ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_USER1 ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_USER10 ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_USER11 ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_USER12 ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_USER13 ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_USER14 ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_USER15 ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_USER2 ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_USER3 ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_USER4 ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_USER5 ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_USER6 ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_USER7 ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_USER8 ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_USER9 ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_WIHART ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_X2E_SERIAL ideal-int
+pkg syscall (freebsd-amd64-cgo), const DLT_X2E_XORAYA ideal-int
+pkg syscall (freebsd-amd64-cgo), const DT_BLK ideal-int
+pkg syscall (freebsd-amd64-cgo), const DT_CHR ideal-int
+pkg syscall (freebsd-amd64-cgo), const DT_DIR ideal-int
+pkg syscall (freebsd-amd64-cgo), const DT_FIFO ideal-int
+pkg syscall (freebsd-amd64-cgo), const DT_LNK ideal-int
+pkg syscall (freebsd-amd64-cgo), const DT_REG ideal-int
+pkg syscall (freebsd-amd64-cgo), const DT_SOCK ideal-int
+pkg syscall (freebsd-amd64-cgo), const DT_UNKNOWN ideal-int
+pkg syscall (freebsd-amd64-cgo), const DT_WHT ideal-int
+pkg syscall (freebsd-amd64-cgo), const EAUTH Errno
+pkg syscall (freebsd-amd64-cgo), const EBADMSG Errno
+pkg syscall (freebsd-amd64-cgo), const EBADRPC Errno
+pkg syscall (freebsd-amd64-cgo), const ECAPMODE Errno
+pkg syscall (freebsd-amd64-cgo), const ECHO ideal-int
+pkg syscall (freebsd-amd64-cgo), const ECHOCTL ideal-int
+pkg syscall (freebsd-amd64-cgo), const ECHOE ideal-int
+pkg syscall (freebsd-amd64-cgo), const ECHOK ideal-int
+pkg syscall (freebsd-amd64-cgo), const ECHOKE ideal-int
+pkg syscall (freebsd-amd64-cgo), const ECHONL ideal-int
+pkg syscall (freebsd-amd64-cgo), const ECHOPRT ideal-int
+pkg syscall (freebsd-amd64-cgo), const EDOOFUS Errno
+pkg syscall (freebsd-amd64-cgo), const EFTYPE Errno
+pkg syscall (freebsd-amd64-cgo), const ELAST Errno
+pkg syscall (freebsd-amd64-cgo), const EMULTIHOP Errno
+pkg syscall (freebsd-amd64-cgo), const ENEEDAUTH Errno
+pkg syscall (freebsd-amd64-cgo), const ENOATTR Errno
+pkg syscall (freebsd-amd64-cgo), const ENOLINK Errno
+pkg syscall (freebsd-amd64-cgo), const ENOTCAPABLE Errno
+pkg syscall (freebsd-amd64-cgo), const EPROCLIM Errno
+pkg syscall (freebsd-amd64-cgo), const EPROCUNAVAIL Errno
+pkg syscall (freebsd-amd64-cgo), const EPROGMISMATCH Errno
+pkg syscall (freebsd-amd64-cgo), const EPROGUNAVAIL Errno
+pkg syscall (freebsd-amd64-cgo), const EPROTO Errno
+pkg syscall (freebsd-amd64-cgo), const ERPCMISMATCH Errno
+pkg syscall (freebsd-amd64-cgo), const EVFILT_AIO ideal-int
+pkg syscall (freebsd-amd64-cgo), const EVFILT_FS ideal-int
+pkg syscall (freebsd-amd64-cgo), const EVFILT_LIO ideal-int
+pkg syscall (freebsd-amd64-cgo), const EVFILT_PROC ideal-int
+pkg syscall (freebsd-amd64-cgo), const EVFILT_READ ideal-int
+pkg syscall (freebsd-amd64-cgo), const EVFILT_SIGNAL ideal-int
+pkg syscall (freebsd-amd64-cgo), const EVFILT_SYSCOUNT ideal-int
+pkg syscall (freebsd-amd64-cgo), const EVFILT_TIMER ideal-int
+pkg syscall (freebsd-amd64-cgo), const EVFILT_USER ideal-int
+pkg syscall (freebsd-amd64-cgo), const EVFILT_VNODE ideal-int
+pkg syscall (freebsd-amd64-cgo), const EVFILT_WRITE ideal-int
+pkg syscall (freebsd-amd64-cgo), const EV_ADD ideal-int
+pkg syscall (freebsd-amd64-cgo), const EV_CLEAR ideal-int
+pkg syscall (freebsd-amd64-cgo), const EV_DELETE ideal-int
+pkg syscall (freebsd-amd64-cgo), const EV_DISABLE ideal-int
+pkg syscall (freebsd-amd64-cgo), const EV_DISPATCH ideal-int
+pkg syscall (freebsd-amd64-cgo), const EV_ENABLE ideal-int
+pkg syscall (freebsd-amd64-cgo), const EV_EOF ideal-int
+pkg syscall (freebsd-amd64-cgo), const EV_ERROR ideal-int
+pkg syscall (freebsd-amd64-cgo), const EV_FLAG1 ideal-int
+pkg syscall (freebsd-amd64-cgo), const EV_ONESHOT ideal-int
+pkg syscall (freebsd-amd64-cgo), const EV_RECEIPT ideal-int
+pkg syscall (freebsd-amd64-cgo), const EV_SYSFLAGS ideal-int
+pkg syscall (freebsd-amd64-cgo), const EXTA ideal-int
+pkg syscall (freebsd-amd64-cgo), const EXTB ideal-int
+pkg syscall (freebsd-amd64-cgo), const EXTPROC ideal-int
+pkg syscall (freebsd-amd64-cgo), const FD_CLOEXEC ideal-int
+pkg syscall (freebsd-amd64-cgo), const FD_SETSIZE ideal-int
+pkg syscall (freebsd-amd64-cgo), const FLUSHO ideal-int
+pkg syscall (freebsd-amd64-cgo), const F_CANCEL ideal-int
+pkg syscall (freebsd-amd64-cgo), const F_DUP2FD ideal-int
+pkg syscall (freebsd-amd64-cgo), const F_DUP2FD_CLOEXEC = 18
+pkg syscall (freebsd-amd64-cgo), const F_DUP2FD_CLOEXEC ideal-int
+pkg syscall (freebsd-amd64-cgo), const F_DUPFD ideal-int
+pkg syscall (freebsd-amd64-cgo), const F_DUPFD_CLOEXEC = 17
+pkg syscall (freebsd-amd64-cgo), const F_DUPFD_CLOEXEC ideal-int
+pkg syscall (freebsd-amd64-cgo), const F_GETFD ideal-int
+pkg syscall (freebsd-amd64-cgo), const F_GETFL ideal-int
+pkg syscall (freebsd-amd64-cgo), const F_GETLK ideal-int
+pkg syscall (freebsd-amd64-cgo), const F_GETOWN ideal-int
+pkg syscall (freebsd-amd64-cgo), const F_OGETLK ideal-int
+pkg syscall (freebsd-amd64-cgo), const F_OK ideal-int
+pkg syscall (freebsd-amd64-cgo), const F_OSETLK ideal-int
+pkg syscall (freebsd-amd64-cgo), const F_OSETLKW ideal-int
+pkg syscall (freebsd-amd64-cgo), const F_RDAHEAD ideal-int
+pkg syscall (freebsd-amd64-cgo), const F_RDLCK ideal-int
+pkg syscall (freebsd-amd64-cgo), const F_READAHEAD ideal-int
+pkg syscall (freebsd-amd64-cgo), const F_SETFD ideal-int
+pkg syscall (freebsd-amd64-cgo), const F_SETFL ideal-int
+pkg syscall (freebsd-amd64-cgo), const F_SETLK ideal-int
+pkg syscall (freebsd-amd64-cgo), const F_SETLKW ideal-int
+pkg syscall (freebsd-amd64-cgo), const F_SETLK_REMOTE ideal-int
+pkg syscall (freebsd-amd64-cgo), const F_SETOWN ideal-int
+pkg syscall (freebsd-amd64-cgo), const F_UNLCK ideal-int
+pkg syscall (freebsd-amd64-cgo), const F_UNLCKSYS ideal-int
+pkg syscall (freebsd-amd64-cgo), const F_WRLCK ideal-int
+pkg syscall (freebsd-amd64-cgo), const HUPCL ideal-int
+pkg syscall (freebsd-amd64-cgo), const ICANON ideal-int
+pkg syscall (freebsd-amd64-cgo), const ICMP6_FILTER = 18
+pkg syscall (freebsd-amd64-cgo), const ICMP6_FILTER ideal-int
+pkg syscall (freebsd-amd64-cgo), const ICRNL ideal-int
+pkg syscall (freebsd-amd64-cgo), const IEXTEN ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFAN_ARRIVAL ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFAN_DEPARTURE ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFF_ALLMULTI ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFF_ALTPHYS ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFF_CANTCHANGE ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFF_CANTCONFIG ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFF_DEBUG ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFF_DRV_OACTIVE ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFF_DRV_RUNNING ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFF_DYING ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFF_LINK0 ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFF_LINK1 ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFF_LINK2 ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFF_MONITOR ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFF_NOARP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFF_OACTIVE ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFF_POINTOPOINT ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFF_PPROMISC ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFF_PROMISC ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFF_RENAMING ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFF_RUNNING ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFF_SIMPLEX ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFF_SMART ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFF_STATICARP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFNAMSIZ ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_1822 ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_A12MPPSWITCH ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_AAL2 ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_AAL5 ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_ADSL ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_AFLANE8023 ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_AFLANE8025 ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_ARAP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_ARCNET ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_ARCNETPLUS ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_ASYNC ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_ATM ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_ATMDXI ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_ATMFUNI ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_ATMIMA ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_ATMLOGICAL ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_ATMRADIO ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_ATMSUBINTERFACE ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_ATMVCIENDPT ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_ATMVIRTUAL ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_BGPPOLICYACCOUNTING ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_BRIDGE ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_BSC ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_CARP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_CCTEMUL ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_CEPT ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_CES ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_CHANNEL ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_CNR ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_COFFEE ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_COMPOSITELINK ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_DCN ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_DIGITALPOWERLINE ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_DLSW ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_DOCSCABLEDOWNSTREAM ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_DOCSCABLEMACLAYER ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_DOCSCABLEUPSTREAM ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_DS0 ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_DS0BUNDLE ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_DS1FDL ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_DS3 ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_DTM ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_DVBASILN ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_DVBASIOUT ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_DVBRCCDOWNSTREAM ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_DVBRCCMACLAYER ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_DVBRCCUPSTREAM ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_ENC ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_EON ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_EPLRS ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_ESCON ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_ETHER ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_FAITH ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_FAST ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_FASTETHER ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_FASTETHERFX ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_FDDI ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_FIBRECHANNEL ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_FRAMERELAYINTERCONNECT ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_FRAMERELAYMPI ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_FRDLCIENDPT ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_FRELAY ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_FRELAYDCE ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_FRF16MFRBUNDLE ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_FRFORWARD ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_G703AT2MB ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_G703AT64K ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_GIF ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_GIGABITETHERNET ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_GR303IDT ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_GR303RDT ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_H323GATEKEEPER ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_H323PROXY ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_HDH1822 ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_HDLC ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_HDSL2 ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_HIPERLAN2 ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_HIPPI ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_HIPPIINTERFACE ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_HOSTPAD ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_HSSI ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_HY ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_IBM370PARCHAN ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_IDSL ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_IEEE1394 ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_IEEE80211 ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_IEEE80212 ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_IEEE8023ADLAG ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_IFGSN ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_IMT ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_INFINIBAND ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_INTERLEAVE ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_IP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_IPFORWARD ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_IPOVERATM ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_IPOVERCDLC ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_IPOVERCLAW ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_IPSWITCH ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_IPXIP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_ISDN ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_ISDNBASIC ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_ISDNPRIMARY ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_ISDNS ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_ISDNU ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_ISO88022LLC ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_ISO88023 ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_ISO88024 ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_ISO88025 ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_ISO88025CRFPINT ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_ISO88025DTR ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_ISO88025FIBER ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_ISO88026 ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_ISUP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_L2VLAN ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_L3IPVLAN ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_L3IPXVLAN ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_LAPB ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_LAPD ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_LAPF ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_LOCALTALK ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_LOOP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_MEDIAMAILOVERIP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_MFSIGLINK ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_MIOX25 ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_MODEM ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_MPC ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_MPLS ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_MPLSTUNNEL ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_MSDSL ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_MVL ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_MYRINET ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_NFAS ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_NSIP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_OPTICALCHANNEL ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_OPTICALTRANSPORT ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_OTHER ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_P10 ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_P80 ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_PARA ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_PFLOG ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_PFSYNC ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_PLC ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_POS ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_PPP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_PPPMULTILINKBUNDLE ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_PROPBWAP2MP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_PROPCNLS ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_PROPMUX ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_PROPVIRTUAL ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_PROPWIRELESSP2P ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_PTPSERIAL ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_PVC ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_QLLC ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_RADIOMAC ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_RADSL ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_REACHDSL ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_RFC1483 ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_RS232 ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_RSRB ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_SDLC ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_SDSL ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_SHDSL ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_SIP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_SLIP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_SMDSDXI ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_SMDSICIP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_SONET ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_SONETOVERHEADCHANNEL ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_SONETPATH ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_SONETVT ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_SRP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_SS7SIGLINK ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_STACKTOSTACK ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_STARLAN ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_STF ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_T1 ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_TDLC ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_TERMPAD ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_TR008 ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_TRANSPHDLC ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_TUNNEL ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_ULTRA ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_USB ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_V11 ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_V35 ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_V36 ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_V37 ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_VDSL ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_VIRTUALIPADDRESS ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_VOICEEM ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_VOICEENCAP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_VOICEFXO ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_VOICEFXS ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_VOICEOVERATM ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_VOICEOVERFRAMERELAY ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_VOICEOVERIP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_X213 ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_X25 ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_X25DDN ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_X25HUNTGROUP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_X25MLP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_X25PLE ideal-int
+pkg syscall (freebsd-amd64-cgo), const IFT_XETHER ideal-int
+pkg syscall (freebsd-amd64-cgo), const IGNBRK ideal-int
+pkg syscall (freebsd-amd64-cgo), const IGNCR ideal-int
+pkg syscall (freebsd-amd64-cgo), const IGNPAR ideal-int
+pkg syscall (freebsd-amd64-cgo), const IMAXBEL ideal-int
+pkg syscall (freebsd-amd64-cgo), const INLCR ideal-int
+pkg syscall (freebsd-amd64-cgo), const INPCK ideal-int
+pkg syscall (freebsd-amd64-cgo), const IN_CLASSA_HOST ideal-int
+pkg syscall (freebsd-amd64-cgo), const IN_CLASSA_MAX ideal-int
+pkg syscall (freebsd-amd64-cgo), const IN_CLASSA_NET ideal-int
+pkg syscall (freebsd-amd64-cgo), const IN_CLASSA_NSHIFT ideal-int
+pkg syscall (freebsd-amd64-cgo), const IN_CLASSB_HOST ideal-int
+pkg syscall (freebsd-amd64-cgo), const IN_CLASSB_MAX ideal-int
+pkg syscall (freebsd-amd64-cgo), const IN_CLASSB_NET ideal-int
+pkg syscall (freebsd-amd64-cgo), const IN_CLASSB_NSHIFT ideal-int
+pkg syscall (freebsd-amd64-cgo), const IN_CLASSC_HOST ideal-int
+pkg syscall (freebsd-amd64-cgo), const IN_CLASSC_NET ideal-int
+pkg syscall (freebsd-amd64-cgo), const IN_CLASSC_NSHIFT ideal-int
+pkg syscall (freebsd-amd64-cgo), const IN_CLASSD_HOST ideal-int
+pkg syscall (freebsd-amd64-cgo), const IN_CLASSD_NET ideal-int
+pkg syscall (freebsd-amd64-cgo), const IN_CLASSD_NSHIFT ideal-int
+pkg syscall (freebsd-amd64-cgo), const IN_LOOPBACKNET ideal-int
+pkg syscall (freebsd-amd64-cgo), const IN_RFC3021_MASK ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_3PC ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_ADFS ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_AH ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_AHIP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_APES ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_ARGUS ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_AX25 ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_BHA ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_BLT ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_BRSATMON ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_CARP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_CFTP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_CHAOS ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_CMTP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_CPHB ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_CPNX ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_DDP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_DGP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_DIVERT ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_DONE ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_DSTOPTS ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_EGP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_EMCON ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_ENCAP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_EON ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_ESP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_ETHERIP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_FRAGMENT ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_GGP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_GMTP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_GRE ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_HELLO ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_HMP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_HOPOPTS ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_ICMP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_ICMPV6 ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_IDP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_IDPR ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_IDRP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_IGMP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_IGP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_IGRP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_IL ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_INLSP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_INP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_IPCOMP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_IPCV ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_IPEIP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_IPIP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_IPPC ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_IPV4 ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_IRTP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_KRYPTOLAN ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_LARP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_LEAF1 ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_LEAF2 ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_MAX ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_MAXID ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_MEAS ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_MH ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_MHRP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_MICP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_MOBILE ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_MTP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_MUX ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_ND ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_NHRP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_NONE ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_NSP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_NVPII ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_OLD_DIVERT ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_OSPFIGP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_PFSYNC ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_PGM ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_PIGP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_PIM ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_PRM ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_PUP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_PVP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_RAW ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_RCCMON ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_RDP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_ROUTING ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_RSVP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_RVD ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_SATEXPAK ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_SATMON ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_SCCSP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_SCTP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_SDRP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_SEND ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_SEP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_SKIP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_SPACER ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_SRPC ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_ST ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_SVMTP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_SWIPE ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_TCF ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_TLSP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_TP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_TPXX ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_TRUNK1 ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_TRUNK2 ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_TTP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_VINES ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_VISA ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_VMTP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_WBEXPAK ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_WBMON ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_WSN ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_XNET ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPPROTO_XTP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_AUTOFLOWLABEL ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_BINDANY ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_BINDV6ONLY ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_CHECKSUM ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_DEFHLIM ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_DONTFRAG ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_DSTOPTS ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_FAITH ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_FLOWINFO_MASK ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_FLOWLABEL_MASK ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_FRAGTTL ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_FW_ADD ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_FW_DEL ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_FW_FLUSH ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_FW_GET ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_FW_ZERO ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_HLIMDEC ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_HOPLIMIT ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_HOPOPTS ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_IPSEC_POLICY ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_MAXHLIM ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_MAXOPTHDR ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_MAXPACKET ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_MAX_GROUP_SRC_FILTER ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_MAX_MEMBERSHIPS ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_MAX_SOCK_SRC_FILTER ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_MIN_MEMBERSHIPS ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_MMTU ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_MSFILTER ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_NEXTHOP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_PATHMTU ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_PKTINFO ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_PORTRANGE ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_PORTRANGE_DEFAULT ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_PORTRANGE_HIGH ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_PORTRANGE_LOW ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_PREFER_TEMPADDR ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_RECVDSTOPTS ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_RECVHOPLIMIT ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_RECVHOPOPTS ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_RECVPATHMTU ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_RECVPKTINFO ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_RECVRTHDR ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_RECVTCLASS ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_RTHDR ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_RTHDRDSTOPTS ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_RTHDR_LOOSE ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_RTHDR_STRICT ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_RTHDR_TYPE_0 ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_SOCKOPT_RESERVED1 ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_TCLASS ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_USE_MIN_MTU ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_VERSION ideal-int
+pkg syscall (freebsd-amd64-cgo), const IPV6_VERSION_MASK ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_ADD_SOURCE_MEMBERSHIP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_BINDANY ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_BLOCK_SOURCE ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_DEFAULT_MULTICAST_LOOP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_DEFAULT_MULTICAST_TTL ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_DF ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_DONTFRAG ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_DROP_SOURCE_MEMBERSHIP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_DUMMYNET3 ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_DUMMYNET_CONFIGURE ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_DUMMYNET_DEL ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_DUMMYNET_FLUSH ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_DUMMYNET_GET ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_FAITH ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_FW3 ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_FW_ADD ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_FW_DEL ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_FW_FLUSH ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_FW_GET ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_FW_NAT_CFG ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_FW_NAT_DEL ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_FW_NAT_GET_CONFIG ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_FW_NAT_GET_LOG ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_FW_RESETLOG ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_FW_TABLE_ADD ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_FW_TABLE_DEL ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_FW_TABLE_FLUSH ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_FW_TABLE_GETSIZE ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_FW_TABLE_LIST ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_FW_ZERO ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_HDRINCL ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_IPSEC_POLICY ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_MAXPACKET ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_MAX_GROUP_SRC_FILTER ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_MAX_MEMBERSHIPS ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_MAX_SOCK_MUTE_FILTER ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_MAX_SOCK_SRC_FILTER ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_MAX_SOURCE_FILTER ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_MF ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_MINTTL ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_MIN_MEMBERSHIPS ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_MSFILTER ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_MSS ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_MULTICAST_VIF ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_OFFMASK ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_ONESBCAST ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_OPTIONS ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_PORTRANGE ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_PORTRANGE_DEFAULT ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_PORTRANGE_HIGH ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_PORTRANGE_LOW ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_RECVDSTADDR ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_RECVIF ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_RECVOPTS ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_RECVRETOPTS ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_RECVTOS ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_RECVTTL ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_RETOPTS ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_RF ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_RSVP_OFF ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_RSVP_ON ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_RSVP_VIF_OFF ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_RSVP_VIF_ON ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_SENDSRCADDR ideal-int
+pkg syscall (freebsd-amd64-cgo), const IP_UNBLOCK_SOURCE ideal-int
+pkg syscall (freebsd-amd64-cgo), const ISIG ideal-int
+pkg syscall (freebsd-amd64-cgo), const ISTRIP ideal-int
+pkg syscall (freebsd-amd64-cgo), const IXANY ideal-int
+pkg syscall (freebsd-amd64-cgo), const IXOFF ideal-int
+pkg syscall (freebsd-amd64-cgo), const IXON ideal-int
+pkg syscall (freebsd-amd64-cgo), const LOCK_EX ideal-int
+pkg syscall (freebsd-amd64-cgo), const LOCK_NB ideal-int
+pkg syscall (freebsd-amd64-cgo), const LOCK_SH ideal-int
+pkg syscall (freebsd-amd64-cgo), const LOCK_UN ideal-int
+pkg syscall (freebsd-amd64-cgo), const MADV_AUTOSYNC ideal-int
+pkg syscall (freebsd-amd64-cgo), const MADV_CORE ideal-int
+pkg syscall (freebsd-amd64-cgo), const MADV_DONTNEED ideal-int
+pkg syscall (freebsd-amd64-cgo), const MADV_FREE ideal-int
+pkg syscall (freebsd-amd64-cgo), const MADV_NOCORE ideal-int
+pkg syscall (freebsd-amd64-cgo), const MADV_NORMAL ideal-int
+pkg syscall (freebsd-amd64-cgo), const MADV_NOSYNC ideal-int
+pkg syscall (freebsd-amd64-cgo), const MADV_PROTECT ideal-int
+pkg syscall (freebsd-amd64-cgo), const MADV_RANDOM ideal-int
+pkg syscall (freebsd-amd64-cgo), const MADV_SEQUENTIAL ideal-int
+pkg syscall (freebsd-amd64-cgo), const MADV_WILLNEED ideal-int
+pkg syscall (freebsd-amd64-cgo), const MAP_ANON ideal-int
+pkg syscall (freebsd-amd64-cgo), const MAP_ANONYMOUS ideal-int
+pkg syscall (freebsd-amd64-cgo), const MAP_COPY ideal-int
+pkg syscall (freebsd-amd64-cgo), const MAP_FILE ideal-int
+pkg syscall (freebsd-amd64-cgo), const MAP_FIXED ideal-int
+pkg syscall (freebsd-amd64-cgo), const MAP_HASSEMAPHORE ideal-int
+pkg syscall (freebsd-amd64-cgo), const MAP_NOCORE ideal-int
+pkg syscall (freebsd-amd64-cgo), const MAP_NORESERVE ideal-int
+pkg syscall (freebsd-amd64-cgo), const MAP_NOSYNC ideal-int
+pkg syscall (freebsd-amd64-cgo), const MAP_PREFAULT_READ ideal-int
+pkg syscall (freebsd-amd64-cgo), const MAP_PRIVATE ideal-int
+pkg syscall (freebsd-amd64-cgo), const MAP_RENAME ideal-int
+pkg syscall (freebsd-amd64-cgo), const MAP_RESERVED0080 ideal-int
+pkg syscall (freebsd-amd64-cgo), const MAP_RESERVED0100 ideal-int
+pkg syscall (freebsd-amd64-cgo), const MAP_SHARED ideal-int
+pkg syscall (freebsd-amd64-cgo), const MAP_STACK ideal-int
+pkg syscall (freebsd-amd64-cgo), const MCL_CURRENT ideal-int
+pkg syscall (freebsd-amd64-cgo), const MCL_FUTURE ideal-int
+pkg syscall (freebsd-amd64-cgo), const MSG_COMPAT ideal-int
+pkg syscall (freebsd-amd64-cgo), const MSG_CTRUNC ideal-int
+pkg syscall (freebsd-amd64-cgo), const MSG_DONTROUTE ideal-int
+pkg syscall (freebsd-amd64-cgo), const MSG_DONTWAIT ideal-int
+pkg syscall (freebsd-amd64-cgo), const MSG_EOF ideal-int
+pkg syscall (freebsd-amd64-cgo), const MSG_EOR ideal-int
+pkg syscall (freebsd-amd64-cgo), const MSG_NBIO ideal-int
+pkg syscall (freebsd-amd64-cgo), const MSG_NOSIGNAL ideal-int
+pkg syscall (freebsd-amd64-cgo), const MSG_NOTIFICATION ideal-int
+pkg syscall (freebsd-amd64-cgo), const MSG_OOB ideal-int
+pkg syscall (freebsd-amd64-cgo), const MSG_PEEK ideal-int
+pkg syscall (freebsd-amd64-cgo), const MSG_TRUNC ideal-int
+pkg syscall (freebsd-amd64-cgo), const MSG_WAITALL ideal-int
+pkg syscall (freebsd-amd64-cgo), const MS_ASYNC ideal-int
+pkg syscall (freebsd-amd64-cgo), const MS_INVALIDATE ideal-int
+pkg syscall (freebsd-amd64-cgo), const MS_SYNC ideal-int
+pkg syscall (freebsd-amd64-cgo), const NET_RT_DUMP ideal-int
+pkg syscall (freebsd-amd64-cgo), const NET_RT_FLAGS ideal-int
+pkg syscall (freebsd-amd64-cgo), const NET_RT_IFLIST ideal-int
+pkg syscall (freebsd-amd64-cgo), const NET_RT_IFLISTL ideal-int
+pkg syscall (freebsd-amd64-cgo), const NET_RT_IFMALIST ideal-int
+pkg syscall (freebsd-amd64-cgo), const NET_RT_MAXID ideal-int
+pkg syscall (freebsd-amd64-cgo), const NOFLSH ideal-int
+pkg syscall (freebsd-amd64-cgo), const NOTE_ATTRIB ideal-int
+pkg syscall (freebsd-amd64-cgo), const NOTE_CHILD ideal-int
+pkg syscall (freebsd-amd64-cgo), const NOTE_DELETE ideal-int
+pkg syscall (freebsd-amd64-cgo), const NOTE_EXEC ideal-int
+pkg syscall (freebsd-amd64-cgo), const NOTE_EXIT ideal-int
+pkg syscall (freebsd-amd64-cgo), const NOTE_EXTEND ideal-int
+pkg syscall (freebsd-amd64-cgo), const NOTE_FFAND ideal-int
+pkg syscall (freebsd-amd64-cgo), const NOTE_FFCOPY ideal-int
+pkg syscall (freebsd-amd64-cgo), const NOTE_FFCTRLMASK ideal-int
+pkg syscall (freebsd-amd64-cgo), const NOTE_FFLAGSMASK ideal-int
+pkg syscall (freebsd-amd64-cgo), const NOTE_FFNOP ideal-int
+pkg syscall (freebsd-amd64-cgo), const NOTE_FFOR ideal-int
+pkg syscall (freebsd-amd64-cgo), const NOTE_FORK ideal-int
+pkg syscall (freebsd-amd64-cgo), const NOTE_LINK ideal-int
+pkg syscall (freebsd-amd64-cgo), const NOTE_LOWAT ideal-int
+pkg syscall (freebsd-amd64-cgo), const NOTE_PCTRLMASK ideal-int
+pkg syscall (freebsd-amd64-cgo), const NOTE_PDATAMASK ideal-int
+pkg syscall (freebsd-amd64-cgo), const NOTE_RENAME ideal-int
+pkg syscall (freebsd-amd64-cgo), const NOTE_REVOKE ideal-int
+pkg syscall (freebsd-amd64-cgo), const NOTE_TRACK ideal-int
+pkg syscall (freebsd-amd64-cgo), const NOTE_TRACKERR ideal-int
+pkg syscall (freebsd-amd64-cgo), const NOTE_TRIGGER ideal-int
+pkg syscall (freebsd-amd64-cgo), const NOTE_WRITE ideal-int
+pkg syscall (freebsd-amd64-cgo), const OCRNL ideal-int
+pkg syscall (freebsd-amd64-cgo), const ONLCR ideal-int
+pkg syscall (freebsd-amd64-cgo), const ONLRET ideal-int
+pkg syscall (freebsd-amd64-cgo), const ONOCR ideal-int
+pkg syscall (freebsd-amd64-cgo), const ONOEOT ideal-int
+pkg syscall (freebsd-amd64-cgo), const OPOST ideal-int
+pkg syscall (freebsd-amd64-cgo), const O_ACCMODE ideal-int
+pkg syscall (freebsd-amd64-cgo), const O_DIRECT ideal-int
+pkg syscall (freebsd-amd64-cgo), const O_DIRECTORY ideal-int
+pkg syscall (freebsd-amd64-cgo), const O_EXEC ideal-int
+pkg syscall (freebsd-amd64-cgo), const O_EXLOCK ideal-int
+pkg syscall (freebsd-amd64-cgo), const O_FSYNC ideal-int
+pkg syscall (freebsd-amd64-cgo), const O_NDELAY ideal-int
+pkg syscall (freebsd-amd64-cgo), const O_NOFOLLOW ideal-int
+pkg syscall (freebsd-amd64-cgo), const O_SHLOCK ideal-int
+pkg syscall (freebsd-amd64-cgo), const O_TTY_INIT ideal-int
+pkg syscall (freebsd-amd64-cgo), const PARENB ideal-int
+pkg syscall (freebsd-amd64-cgo), const PARMRK ideal-int
+pkg syscall (freebsd-amd64-cgo), const PARODD ideal-int
+pkg syscall (freebsd-amd64-cgo), const PENDIN ideal-int
+pkg syscall (freebsd-amd64-cgo), const PRIO_PGRP = 1
+pkg syscall (freebsd-amd64-cgo), const PRIO_PGRP ideal-int
+pkg syscall (freebsd-amd64-cgo), const PRIO_PROCESS = 0
+pkg syscall (freebsd-amd64-cgo), const PRIO_PROCESS ideal-int
+pkg syscall (freebsd-amd64-cgo), const PRIO_USER = 2
+pkg syscall (freebsd-amd64-cgo), const PRIO_USER ideal-int
+pkg syscall (freebsd-amd64-cgo), const PROT_EXEC ideal-int
+pkg syscall (freebsd-amd64-cgo), const PROT_NONE ideal-int
+pkg syscall (freebsd-amd64-cgo), const PROT_READ ideal-int
+pkg syscall (freebsd-amd64-cgo), const PROT_WRITE ideal-int
+pkg syscall (freebsd-amd64-cgo), const PTRACE_CONT ideal-int
+pkg syscall (freebsd-amd64-cgo), const PTRACE_KILL ideal-int
+pkg syscall (freebsd-amd64-cgo), const PTRACE_TRACEME ideal-int
+pkg syscall (freebsd-amd64-cgo), const RLIMIT_AS ideal-int
+pkg syscall (freebsd-amd64-cgo), const RLIMIT_CORE ideal-int
+pkg syscall (freebsd-amd64-cgo), const RLIMIT_CPU ideal-int
+pkg syscall (freebsd-amd64-cgo), const RLIMIT_DATA ideal-int
+pkg syscall (freebsd-amd64-cgo), const RLIMIT_FSIZE ideal-int
+pkg syscall (freebsd-amd64-cgo), const RLIMIT_NOFILE ideal-int
+pkg syscall (freebsd-amd64-cgo), const RLIMIT_STACK ideal-int
+pkg syscall (freebsd-amd64-cgo), const RLIM_INFINITY ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTAX_AUTHOR ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTAX_BRD ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTAX_DST ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTAX_GATEWAY ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTAX_GENMASK ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTAX_IFA ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTAX_IFP ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTAX_MAX ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTAX_NETMASK ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTA_AUTHOR ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTA_BRD ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTA_DST ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTA_GATEWAY ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTA_GENMASK ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTA_IFA ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTA_IFP ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTA_NETMASK ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTF_BLACKHOLE ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTF_BROADCAST ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTF_DONE ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTF_DYNAMIC ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTF_FMASK ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTF_GATEWAY ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTF_HOST ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTF_LLDATA ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTF_LLINFO ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTF_LOCAL ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTF_MODIFIED ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTF_MULTICAST ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTF_PINNED ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTF_PRCLONING ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTF_PROTO1 ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTF_PROTO2 ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTF_PROTO3 ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTF_REJECT ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTF_RNH_LOCKED ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTF_STATIC ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTF_STICKY ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTF_UP ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTF_XRESOLVE ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTM_ADD ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTM_CHANGE ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTM_DELADDR ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTM_DELETE ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTM_DELMADDR ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTM_GET ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTM_IEEE80211 ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTM_IFANNOUNCE ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTM_IFINFO ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTM_LOCK ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTM_LOSING ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTM_MISS ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTM_NEWADDR ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTM_NEWMADDR ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTM_OLDADD ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTM_OLDDEL ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTM_REDIRECT ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTM_RESOLVE ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTM_RTTUNIT ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTM_VERSION ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTV_EXPIRE ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTV_HOPCOUNT ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTV_MTU ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTV_RPIPE ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTV_RTT ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTV_RTTVAR ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTV_SPIPE ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTV_SSTHRESH ideal-int
+pkg syscall (freebsd-amd64-cgo), const RTV_WEIGHT ideal-int
+pkg syscall (freebsd-amd64-cgo), const RT_CACHING_CONTEXT ideal-int
+pkg syscall (freebsd-amd64-cgo), const RT_DEFAULT_FIB ideal-int
+pkg syscall (freebsd-amd64-cgo), const RUSAGE_CHILDREN ideal-int
+pkg syscall (freebsd-amd64-cgo), const RUSAGE_SELF ideal-int
+pkg syscall (freebsd-amd64-cgo), const RUSAGE_THREAD ideal-int
+pkg syscall (freebsd-amd64-cgo), const SCM_BINTIME ideal-int
+pkg syscall (freebsd-amd64-cgo), const SCM_CREDS ideal-int
+pkg syscall (freebsd-amd64-cgo), const SCM_RIGHTS ideal-int
+pkg syscall (freebsd-amd64-cgo), const SCM_TIMESTAMP ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIGCHLD Signal
+pkg syscall (freebsd-amd64-cgo), const SIGCONT Signal
+pkg syscall (freebsd-amd64-cgo), const SIGEMT Signal
+pkg syscall (freebsd-amd64-cgo), const SIGINFO Signal
+pkg syscall (freebsd-amd64-cgo), const SIGIO Signal
+pkg syscall (freebsd-amd64-cgo), const SIGIOT Signal
+pkg syscall (freebsd-amd64-cgo), const SIGLWP Signal
+pkg syscall (freebsd-amd64-cgo), const SIGPROF Signal
+pkg syscall (freebsd-amd64-cgo), const SIGSTOP Signal
+pkg syscall (freebsd-amd64-cgo), const SIGSYS Signal
+pkg syscall (freebsd-amd64-cgo), const SIGTHR Signal
+pkg syscall (freebsd-amd64-cgo), const SIGTSTP Signal
+pkg syscall (freebsd-amd64-cgo), const SIGTTIN Signal
+pkg syscall (freebsd-amd64-cgo), const SIGTTOU Signal
+pkg syscall (freebsd-amd64-cgo), const SIGURG Signal
+pkg syscall (freebsd-amd64-cgo), const SIGUSR1 Signal
+pkg syscall (freebsd-amd64-cgo), const SIGUSR2 Signal
+pkg syscall (freebsd-amd64-cgo), const SIGVTALRM Signal
+pkg syscall (freebsd-amd64-cgo), const SIGWINCH Signal
+pkg syscall (freebsd-amd64-cgo), const SIGXCPU Signal
+pkg syscall (freebsd-amd64-cgo), const SIGXFSZ Signal
+pkg syscall (freebsd-amd64-cgo), const SIOCADDMULTI ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCADDRT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCAIFADDR ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCAIFGROUP ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCALIFADDR ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCATMARK ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCDELMULTI ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCDELRT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCDIFADDR ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCDIFGROUP ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCDIFPHYADDR ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCDLIFADDR ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCGDRVSPEC ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCGETSGCNT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCGETVIFCNT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCGHIWAT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCGIFADDR ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCGIFBRDADDR ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCGIFCAP ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCGIFCONF ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCGIFDESCR ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCGIFDSTADDR ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCGIFFIB ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCGIFFLAGS ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCGIFGENERIC ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCGIFGMEMB ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCGIFGROUP ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCGIFINDEX ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCGIFMAC ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCGIFMEDIA ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCGIFMETRIC ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCGIFMTU ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCGIFNETMASK ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCGIFPDSTADDR ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCGIFPHYS ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCGIFPSRCADDR ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCGIFSTATUS ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCGLIFADDR ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCGLIFPHYADDR ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCGLOWAT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCGPGRP ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCGPRIVATE_0 ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCGPRIVATE_1 ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCIFCREATE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCIFCREATE2 ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCIFDESTROY ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCIFGCLONERS ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCSDRVSPEC ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCSHIWAT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCSIFADDR ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCSIFBRDADDR ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCSIFCAP ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCSIFDESCR ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCSIFDSTADDR ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCSIFFIB ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCSIFFLAGS ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCSIFGENERIC ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCSIFLLADDR ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCSIFMAC ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCSIFMEDIA ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCSIFMETRIC ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCSIFMTU ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCSIFNAME ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCSIFNETMASK ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCSIFPHYADDR ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCSIFPHYS ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCSIFRVNET ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCSIFVNET ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCSLIFPHYADDR ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCSLOWAT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SIOCSPGRP ideal-int
+pkg syscall (freebsd-amd64-cgo), const SOCK_MAXADDRLEN ideal-int
+pkg syscall (freebsd-amd64-cgo), const SOCK_RDM ideal-int
+pkg syscall (freebsd-amd64-cgo), const SO_ACCEPTCONN ideal-int
+pkg syscall (freebsd-amd64-cgo), const SO_ACCEPTFILTER ideal-int
+pkg syscall (freebsd-amd64-cgo), const SO_BINTIME ideal-int
+pkg syscall (freebsd-amd64-cgo), const SO_DEBUG ideal-int
+pkg syscall (freebsd-amd64-cgo), const SO_ERROR ideal-int
+pkg syscall (freebsd-amd64-cgo), const SO_LABEL ideal-int
+pkg syscall (freebsd-amd64-cgo), const SO_LISTENINCQLEN ideal-int
+pkg syscall (freebsd-amd64-cgo), const SO_LISTENQLEN ideal-int
+pkg syscall (freebsd-amd64-cgo), const SO_LISTENQLIMIT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SO_NOSIGPIPE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SO_NO_DDP ideal-int
+pkg syscall (freebsd-amd64-cgo), const SO_NO_OFFLOAD ideal-int
+pkg syscall (freebsd-amd64-cgo), const SO_OOBINLINE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SO_PEERLABEL ideal-int
+pkg syscall (freebsd-amd64-cgo), const SO_PROTOCOL ideal-int
+pkg syscall (freebsd-amd64-cgo), const SO_PROTOTYPE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SO_RCVLOWAT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SO_RCVTIMEO ideal-int
+pkg syscall (freebsd-amd64-cgo), const SO_REUSEPORT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SO_SETFIB ideal-int
+pkg syscall (freebsd-amd64-cgo), const SO_SNDLOWAT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SO_SNDTIMEO ideal-int
+pkg syscall (freebsd-amd64-cgo), const SO_TIMESTAMP ideal-int
+pkg syscall (freebsd-amd64-cgo), const SO_TYPE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SO_USELOOPBACK ideal-int
+pkg syscall (freebsd-amd64-cgo), const SO_USER_COOKIE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_ABORT2 ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_ACCEPT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_ACCESS ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_ACCT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_ADJTIME ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_AUDIT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_AUDITCTL ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_AUDITON ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_BIND ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_CAP_ENTER ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_CAP_GETMODE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_CAP_GETRIGHTS ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_CAP_NEW ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_CHDIR ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_CHFLAGS ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_CHMOD ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_CHOWN ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_CHROOT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_CLOCK_GETCPUCLOCKID2 ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_CLOCK_GETRES ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_CLOCK_GETTIME ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_CLOCK_SETTIME ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_CLOSE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_CLOSEFROM ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_CONNECT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_CPUSET ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_CPUSET_GETAFFINITY ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_CPUSET_GETID ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_CPUSET_SETAFFINITY ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_CPUSET_SETID ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_DUP ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_DUP2 ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_EACCESS ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_EXECVE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_EXIT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTRCTL ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTR_DELETE_FD ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTR_DELETE_FILE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTR_DELETE_LINK ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTR_GET_FD ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTR_GET_FILE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTR_GET_LINK ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTR_LIST_FD ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTR_LIST_FILE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTR_LIST_LINK ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTR_SET_FD ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTR_SET_FILE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTR_SET_LINK ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_FACCESSAT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_FCHDIR ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_FCHFLAGS ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_FCHMOD ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_FCHMODAT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_FCHOWN ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_FCHOWNAT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_FCNTL ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_FEXECVE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_FFCLOCK_GETCOUNTER ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_FFCLOCK_GETESTIMATE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_FFCLOCK_SETESTIMATE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_FHOPEN ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_FHSTAT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_FHSTATFS ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_FLOCK ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_FORK ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_FPATHCONF ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_FREEBSD6_FTRUNCATE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_FREEBSD6_LSEEK ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_FREEBSD6_MMAP ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_FREEBSD6_PREAD ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_FREEBSD6_PWRITE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_FREEBSD6_TRUNCATE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_FSTAT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_FSTATAT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_FSTATFS ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_FSYNC ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_FTRUNCATE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_FUTIMES ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_FUTIMESAT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_GETAUDIT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_GETAUDIT_ADDR ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_GETAUID ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_GETCONTEXT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_GETDENTS ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_GETDIRENTRIES ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_GETDTABLESIZE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_GETEGID ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_GETEUID ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_GETFH ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_GETFSSTAT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_GETGID ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_GETGROUPS ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_GETITIMER ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_GETLOGIN ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_GETLOGINCLASS ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_GETPEERNAME ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_GETPGID ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_GETPGRP ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_GETPID ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_GETPPID ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_GETPRIORITY ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_GETRESGID ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_GETRESUID ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_GETRLIMIT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_GETRUSAGE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_GETSID ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_GETSOCKNAME ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_GETSOCKOPT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_GETTIMEOFDAY ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_GETUID ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_IOCTL ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_ISSETUGID ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_JAIL ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_JAIL_ATTACH ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_JAIL_GET ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_JAIL_REMOVE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_JAIL_SET ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_KENV ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_KEVENT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_KILL ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_KLDFIND ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_KLDFIRSTMOD ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_KLDLOAD ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_KLDNEXT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_KLDSTAT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_KLDSYM ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_KLDUNLOAD ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_KLDUNLOADF ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_KQUEUE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_KTIMER_CREATE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_KTIMER_DELETE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_KTIMER_GETOVERRUN ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_KTIMER_GETTIME ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_KTIMER_SETTIME ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_KTRACE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_LCHFLAGS ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_LCHMOD ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_LCHOWN ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_LGETFH ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_LINK ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_LINKAT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_LISTEN ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_LPATHCONF ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_LSEEK ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_LSTAT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_LUTIMES ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_MAC_SYSCALL ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_MADVISE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_MINCORE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_MINHERIT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_MKDIR ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_MKDIRAT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_MKFIFO ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_MKFIFOAT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_MKNOD ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_MKNODAT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_MLOCK ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_MLOCKALL ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_MMAP ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_MODFIND ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_MODFNEXT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_MODNEXT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_MODSTAT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_MOUNT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_MPROTECT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_MSYNC ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_MUNLOCK ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_MUNLOCKALL ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_MUNMAP ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_NANOSLEEP ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_NFSTAT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_NLSTAT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_NMOUNT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_NSTAT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_NTP_ADJTIME ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_NTP_GETTIME ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_OBREAK ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_OPEN ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_OPENAT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_OPENBSD_POLL ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_OVADVISE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_PATHCONF ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_PDFORK ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_PDGETPID ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_PDKILL ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_PIPE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_POLL ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_POSIX_FADVISE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_POSIX_FALLOCATE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_POSIX_OPENPT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_PREAD ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_PREADV ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_PROFIL ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_PSELECT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_PTRACE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_PWRITE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_PWRITEV ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_QUOTACTL ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_RCTL_ADD_RULE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_RCTL_GET_LIMITS ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_RCTL_GET_RACCT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_RCTL_GET_RULES ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_RCTL_REMOVE_RULE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_READ ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_READLINK ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_READLINKAT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_READV ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_REBOOT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_RECVFROM ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_RECVMSG ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_RENAME ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_RENAMEAT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_REVOKE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_RFORK ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_RMDIR ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_RTPRIO ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_RTPRIO_THREAD ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SBRK ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SCHED_GETPARAM ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SCHED_GETSCHEDULER ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SCHED_GET_PRIORITY_MAX ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SCHED_GET_PRIORITY_MIN ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SCHED_RR_GET_INTERVAL ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SCHED_SETPARAM ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SCHED_SETSCHEDULER ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SCHED_YIELD ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SCTP_GENERIC_RECVMSG ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SCTP_GENERIC_SENDMSG ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SCTP_GENERIC_SENDMSG_IOV ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SCTP_PEELOFF ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SELECT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SENDFILE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SENDMSG ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SENDTO ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SETAUDIT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SETAUDIT_ADDR ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SETAUID ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SETCONTEXT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SETEGID ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SETEUID ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SETFIB ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SETGID ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SETGROUPS ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SETITIMER ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SETLOGIN ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SETLOGINCLASS ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SETPGID ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SETPRIORITY ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SETREGID ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SETRESGID ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SETRESUID ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SETREUID ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SETRLIMIT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SETSID ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SETSOCKOPT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SETTIMEOFDAY ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SETUID ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SHM_OPEN ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SHM_UNLINK ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SHUTDOWN ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SIGACTION ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SIGALTSTACK ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SIGPENDING ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SIGPROCMASK ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SIGQUEUE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SIGRETURN ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SIGSUSPEND ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SIGTIMEDWAIT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SIGWAIT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SIGWAITINFO ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SOCKET ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SOCKETPAIR ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SSTK ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_STAT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_STATFS ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SWAPCONTEXT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SWAPOFF ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SWAPON ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SYMLINK ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SYMLINKAT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SYNC ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_SYSARCH ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_THR_CREATE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_THR_EXIT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_THR_KILL ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_THR_KILL2 ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_THR_NEW ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_THR_SELF ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_THR_SET_NAME ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_THR_SUSPEND ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_THR_WAKE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_TRUNCATE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_UMASK ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_UNDELETE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_UNLINK ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_UNLINKAT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_UNMOUNT ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_UTIMES ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_UTRACE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_UUIDGEN ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_VFORK ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_WAIT4 ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_WAIT6 ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_WRITE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_WRITEV ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS_YIELD ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS__UMTX_LOCK ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS__UMTX_OP ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS__UMTX_UNLOCK ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS___ACL_ACLCHECK_FD ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS___ACL_ACLCHECK_FILE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS___ACL_ACLCHECK_LINK ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS___ACL_DELETE_FD ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS___ACL_DELETE_FILE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS___ACL_DELETE_LINK ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS___ACL_GET_FD ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS___ACL_GET_FILE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS___ACL_GET_LINK ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS___ACL_SET_FD ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS___ACL_SET_FILE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS___ACL_SET_LINK ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS___GETCWD ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS___MAC_EXECVE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS___MAC_GET_FD ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS___MAC_GET_FILE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS___MAC_GET_LINK ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS___MAC_GET_PID ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS___MAC_GET_PROC ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS___MAC_SET_FD ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS___MAC_SET_FILE ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS___MAC_SET_LINK ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS___MAC_SET_PROC ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS___SETUGID ideal-int
+pkg syscall (freebsd-amd64-cgo), const SYS___SYSCTL ideal-int
+pkg syscall (freebsd-amd64-cgo), const SizeofBpfHdr ideal-int
+pkg syscall (freebsd-amd64-cgo), const SizeofBpfInsn ideal-int
+pkg syscall (freebsd-amd64-cgo), const SizeofBpfProgram ideal-int
+pkg syscall (freebsd-amd64-cgo), const SizeofBpfStat ideal-int
+pkg syscall (freebsd-amd64-cgo), const SizeofBpfVersion ideal-int
+pkg syscall (freebsd-amd64-cgo), const SizeofBpfZbuf ideal-int
+pkg syscall (freebsd-amd64-cgo), const SizeofBpfZbufHeader ideal-int
+pkg syscall (freebsd-amd64-cgo), const SizeofCmsghdr ideal-int
+pkg syscall (freebsd-amd64-cgo), const SizeofICMPv6Filter = 32
+pkg syscall (freebsd-amd64-cgo), const SizeofICMPv6Filter ideal-int
+pkg syscall (freebsd-amd64-cgo), const SizeofIPMreq ideal-int
+pkg syscall (freebsd-amd64-cgo), const SizeofIPMreqn ideal-int
+pkg syscall (freebsd-amd64-cgo), const SizeofIPv6MTUInfo = 32
+pkg syscall (freebsd-amd64-cgo), const SizeofIPv6MTUInfo ideal-int
+pkg syscall (freebsd-amd64-cgo), const SizeofIPv6Mreq ideal-int
+pkg syscall (freebsd-amd64-cgo), const SizeofIfAnnounceMsghdr ideal-int
+pkg syscall (freebsd-amd64-cgo), const SizeofIfData ideal-int
+pkg syscall (freebsd-amd64-cgo), const SizeofIfMsghdr ideal-int
+pkg syscall (freebsd-amd64-cgo), const SizeofIfaMsghdr ideal-int
+pkg syscall (freebsd-amd64-cgo), const SizeofIfmaMsghdr ideal-int
+pkg syscall (freebsd-amd64-cgo), const SizeofInet6Pktinfo ideal-int
+pkg syscall (freebsd-amd64-cgo), const SizeofLinger ideal-int
+pkg syscall (freebsd-amd64-cgo), const SizeofMsghdr ideal-int
+pkg syscall (freebsd-amd64-cgo), const SizeofRtMetrics ideal-int
+pkg syscall (freebsd-amd64-cgo), const SizeofRtMsghdr ideal-int
+pkg syscall (freebsd-amd64-cgo), const SizeofSockaddrAny ideal-int
+pkg syscall (freebsd-amd64-cgo), const SizeofSockaddrDatalink ideal-int
+pkg syscall (freebsd-amd64-cgo), const SizeofSockaddrInet4 ideal-int
+pkg syscall (freebsd-amd64-cgo), const SizeofSockaddrInet6 ideal-int
+pkg syscall (freebsd-amd64-cgo), const SizeofSockaddrUnix ideal-int
+pkg syscall (freebsd-amd64-cgo), const TCIFLUSH ideal-int
+pkg syscall (freebsd-amd64-cgo), const TCIOFLUSH ideal-int
+pkg syscall (freebsd-amd64-cgo), const TCOFLUSH ideal-int
+pkg syscall (freebsd-amd64-cgo), const TCP_CA_NAME_MAX ideal-int
+pkg syscall (freebsd-amd64-cgo), const TCP_CONGESTION ideal-int
+pkg syscall (freebsd-amd64-cgo), const TCP_INFO ideal-int
+pkg syscall (freebsd-amd64-cgo), const TCP_KEEPCNT ideal-int
+pkg syscall (freebsd-amd64-cgo), const TCP_KEEPIDLE ideal-int
+pkg syscall (freebsd-amd64-cgo), const TCP_KEEPINIT ideal-int
+pkg syscall (freebsd-amd64-cgo), const TCP_KEEPINTVL ideal-int
+pkg syscall (freebsd-amd64-cgo), const TCP_MAXBURST ideal-int
+pkg syscall (freebsd-amd64-cgo), const TCP_MAXHLEN ideal-int
+pkg syscall (freebsd-amd64-cgo), const TCP_MAXOLEN ideal-int
+pkg syscall (freebsd-amd64-cgo), const TCP_MAXSEG ideal-int
+pkg syscall (freebsd-amd64-cgo), const TCP_MAXWIN ideal-int
+pkg syscall (freebsd-amd64-cgo), const TCP_MAX_SACK ideal-int
+pkg syscall (freebsd-amd64-cgo), const TCP_MAX_WINSHIFT ideal-int
+pkg syscall (freebsd-amd64-cgo), const TCP_MD5SIG ideal-int
+pkg syscall (freebsd-amd64-cgo), const TCP_MINMSS ideal-int
+pkg syscall (freebsd-amd64-cgo), const TCP_MSS ideal-int
+pkg syscall (freebsd-amd64-cgo), const TCP_NOOPT ideal-int
+pkg syscall (freebsd-amd64-cgo), const TCP_NOPUSH ideal-int
+pkg syscall (freebsd-amd64-cgo), const TCSAFLUSH ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCCBRK ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCCDTR ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCCONS ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCDRAIN ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCEXCL ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCEXT ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCFLUSH ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCGDRAINWAIT ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCGETA ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCGETD ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCGPGRP ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCGPTN ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCGSID ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCGWINSZ ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCMBIC ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCMBIS ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCMGDTRWAIT ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCMGET ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCMSDTRWAIT ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCMSET ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCM_CAR ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCM_CD ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCM_CTS ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCM_DCD ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCM_DSR ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCM_DTR ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCM_LE ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCM_RI ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCM_RNG ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCM_RTS ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCM_SR ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCM_ST ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCNOTTY ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCNXCL ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCOUTQ ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCPKT ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCPKT_DATA ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCPKT_DOSTOP ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCPKT_FLUSHREAD ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCPKT_FLUSHWRITE ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCPKT_IOCTL ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCPKT_NOSTOP ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCPKT_START ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCPKT_STOP ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCPTMASTER ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCSBRK ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCSCTTY ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCSDRAINWAIT ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCSDTR ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCSETA ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCSETAF ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCSETAW ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCSETD ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCSIG ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCSPGRP ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCSTART ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCSTAT ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCSTI ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCSTOP ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCSWINSZ ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCTIMESTAMP ideal-int
+pkg syscall (freebsd-amd64-cgo), const TIOCUCNTL ideal-int
+pkg syscall (freebsd-amd64-cgo), const TOSTOP ideal-int
+pkg syscall (freebsd-amd64-cgo), const VDISCARD ideal-int
+pkg syscall (freebsd-amd64-cgo), const VDSUSP ideal-int
+pkg syscall (freebsd-amd64-cgo), const VEOF ideal-int
+pkg syscall (freebsd-amd64-cgo), const VEOL ideal-int
+pkg syscall (freebsd-amd64-cgo), const VEOL2 ideal-int
+pkg syscall (freebsd-amd64-cgo), const VERASE ideal-int
+pkg syscall (freebsd-amd64-cgo), const VERASE2 ideal-int
+pkg syscall (freebsd-amd64-cgo), const VINTR ideal-int
+pkg syscall (freebsd-amd64-cgo), const VKILL ideal-int
+pkg syscall (freebsd-amd64-cgo), const VLNEXT ideal-int
+pkg syscall (freebsd-amd64-cgo), const VMIN ideal-int
+pkg syscall (freebsd-amd64-cgo), const VQUIT ideal-int
+pkg syscall (freebsd-amd64-cgo), const VREPRINT ideal-int
+pkg syscall (freebsd-amd64-cgo), const VSTART ideal-int
+pkg syscall (freebsd-amd64-cgo), const VSTATUS ideal-int
+pkg syscall (freebsd-amd64-cgo), const VSTOP ideal-int
+pkg syscall (freebsd-amd64-cgo), const VSUSP ideal-int
+pkg syscall (freebsd-amd64-cgo), const VTIME ideal-int
+pkg syscall (freebsd-amd64-cgo), const VWERASE ideal-int
+pkg syscall (freebsd-amd64-cgo), const WCONTINUED ideal-int
+pkg syscall (freebsd-amd64-cgo), const WCOREFLAG ideal-int
+pkg syscall (freebsd-amd64-cgo), const WLINUXCLONE ideal-int
+pkg syscall (freebsd-amd64-cgo), const WNOHANG ideal-int
+pkg syscall (freebsd-amd64-cgo), const WNOWAIT ideal-int
+pkg syscall (freebsd-amd64-cgo), const WSTOPPED ideal-int
+pkg syscall (freebsd-amd64-cgo), const WUNTRACED ideal-int
+pkg syscall (freebsd-amd64-cgo), func Accept(int) (int, Sockaddr, error)
+pkg syscall (freebsd-amd64-cgo), func Access(string, uint32) error
+pkg syscall (freebsd-amd64-cgo), func Adjtime(*Timeval, *Timeval) error
+pkg syscall (freebsd-amd64-cgo), func Bind(int, Sockaddr) error
+pkg syscall (freebsd-amd64-cgo), func BpfBuflen(int) (int, error)
+pkg syscall (freebsd-amd64-cgo), func BpfDatalink(int) (int, error)
+pkg syscall (freebsd-amd64-cgo), func BpfHeadercmpl(int) (int, error)
+pkg syscall (freebsd-amd64-cgo), func BpfInterface(int, string) (string, error)
+pkg syscall (freebsd-amd64-cgo), func BpfJump(int, int, int, int) *BpfInsn
+pkg syscall (freebsd-amd64-cgo), func BpfStats(int) (*BpfStat, error)
+pkg syscall (freebsd-amd64-cgo), func BpfStmt(int, int) *BpfInsn
+pkg syscall (freebsd-amd64-cgo), func BpfTimeout(int) (*Timeval, error)
+pkg syscall (freebsd-amd64-cgo), func CheckBpfVersion(int) error
+pkg syscall (freebsd-amd64-cgo), func Chflags(string, int) error
+pkg syscall (freebsd-amd64-cgo), func Chroot(string) error
+pkg syscall (freebsd-amd64-cgo), func Close(int) error
+pkg syscall (freebsd-amd64-cgo), func CloseOnExec(int)
+pkg syscall (freebsd-amd64-cgo), func CmsgLen(int) int
+pkg syscall (freebsd-amd64-cgo), func CmsgSpace(int) int
+pkg syscall (freebsd-amd64-cgo), func Connect(int, Sockaddr) error
+pkg syscall (freebsd-amd64-cgo), func Dup(int) (int, error)
+pkg syscall (freebsd-amd64-cgo), func Dup2(int, int) error
+pkg syscall (freebsd-amd64-cgo), func Fchdir(int) error
+pkg syscall (freebsd-amd64-cgo), func Fchflags(int, int) error
+pkg syscall (freebsd-amd64-cgo), func Fchmod(int, uint32) error
+pkg syscall (freebsd-amd64-cgo), func Fchown(int, int, int) error
+pkg syscall (freebsd-amd64-cgo), func Flock(int, int) error
+pkg syscall (freebsd-amd64-cgo), func FlushBpf(int) error
+pkg syscall (freebsd-amd64-cgo), func ForkExec(string, []string, *ProcAttr) (int, error)
+pkg syscall (freebsd-amd64-cgo), func Fpathconf(int, int) (int, error)
+pkg syscall (freebsd-amd64-cgo), func Fstat(int, *Stat_t) error
+pkg syscall (freebsd-amd64-cgo), func Fstatfs(int, *Statfs_t) error
+pkg syscall (freebsd-amd64-cgo), func Fsync(int) error
+pkg syscall (freebsd-amd64-cgo), func Ftruncate(int, int64) error
+pkg syscall (freebsd-amd64-cgo), func Futimes(int, []Timeval) error
+pkg syscall (freebsd-amd64-cgo), func Getdirentries(int, []uint8, *uintptr) (int, error)
+pkg syscall (freebsd-amd64-cgo), func Getdtablesize() int
+pkg syscall (freebsd-amd64-cgo), func Getfsstat([]Statfs_t, int) (int, error)
+pkg syscall (freebsd-amd64-cgo), func Getpeername(int) (Sockaddr, error)
+pkg syscall (freebsd-amd64-cgo), func Getpgid(int) (int, error)
+pkg syscall (freebsd-amd64-cgo), func Getpgrp() int
+pkg syscall (freebsd-amd64-cgo), func Getpriority(int, int) (int, error)
+pkg syscall (freebsd-amd64-cgo), func Getrlimit(int, *Rlimit) error
+pkg syscall (freebsd-amd64-cgo), func Getrusage(int, *Rusage) error
+pkg syscall (freebsd-amd64-cgo), func Getsid(int) (int, error)
+pkg syscall (freebsd-amd64-cgo), func Getsockname(int) (Sockaddr, error)
+pkg syscall (freebsd-amd64-cgo), func GetsockoptByte(int, int, int) (uint8, error)
+pkg syscall (freebsd-amd64-cgo), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
+pkg syscall (freebsd-amd64-cgo), func GetsockoptIPMreq(int, int, int) (*IPMreq, error)
+pkg syscall (freebsd-amd64-cgo), func GetsockoptIPMreqn(int, int, int) (*IPMreqn, error)
+pkg syscall (freebsd-amd64-cgo), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
+pkg syscall (freebsd-amd64-cgo), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error)
+pkg syscall (freebsd-amd64-cgo), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error)
+pkg syscall (freebsd-amd64-cgo), func GetsockoptInt(int, int, int) (int, error)
+pkg syscall (freebsd-amd64-cgo), func Issetugid() bool
+pkg syscall (freebsd-amd64-cgo), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error)
+pkg syscall (freebsd-amd64-cgo), func Kill(int, Signal) error
+pkg syscall (freebsd-amd64-cgo), func Kqueue() (int, error)
+pkg syscall (freebsd-amd64-cgo), func Listen(int, int) error
+pkg syscall (freebsd-amd64-cgo), func Lstat(string, *Stat_t) error
+pkg syscall (freebsd-amd64-cgo), func Mkfifo(string, uint32) error
+pkg syscall (freebsd-amd64-cgo), func Mknod(string, uint32, int) error
+pkg syscall (freebsd-amd64-cgo), func Mmap(int, int64, int, int, int) ([]uint8, error)
+pkg syscall (freebsd-amd64-cgo), func Munmap([]uint8) error
+pkg syscall (freebsd-amd64-cgo), func Nanosleep(*Timespec, *Timespec) error
+pkg syscall (freebsd-amd64-cgo), func Open(string, int, uint32) (int, error)
+pkg syscall (freebsd-amd64-cgo), func ParseDirent([]uint8, int, []string) (int, int, []string)
+pkg syscall (freebsd-amd64-cgo), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error)
+pkg syscall (freebsd-amd64-cgo), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error)
+pkg syscall (freebsd-amd64-cgo), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error)
+pkg syscall (freebsd-amd64-cgo), func ParseUnixRights(*SocketControlMessage) ([]int, error)
+pkg syscall (freebsd-amd64-cgo), func Pathconf(string, int) (int, error)
+pkg syscall (freebsd-amd64-cgo), func Pipe([]int) error
+pkg syscall (freebsd-amd64-cgo), func Pread(int, []uint8, int64) (int, error)
+pkg syscall (freebsd-amd64-cgo), func Pwrite(int, []uint8, int64) (int, error)
+pkg syscall (freebsd-amd64-cgo), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (freebsd-amd64-cgo), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (freebsd-amd64-cgo), func Read(int, []uint8) (int, error)
+pkg syscall (freebsd-amd64-cgo), func ReadDirent(int, []uint8) (int, error)
+pkg syscall (freebsd-amd64-cgo), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
+pkg syscall (freebsd-amd64-cgo), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
+pkg syscall (freebsd-amd64-cgo), func Revoke(string) error
+pkg syscall (freebsd-amd64-cgo), func RouteRIB(int, int) ([]uint8, error)
+pkg syscall (freebsd-amd64-cgo), func Seek(int, int64, int) (int64, error)
+pkg syscall (freebsd-amd64-cgo), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error
+pkg syscall (freebsd-amd64-cgo), func Sendfile(int, int, *int64, int) (int, error)
+pkg syscall (freebsd-amd64-cgo), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
+pkg syscall (freebsd-amd64-cgo), func Sendto(int, []uint8, int, Sockaddr) error
+pkg syscall (freebsd-amd64-cgo), func SetBpf(int, []BpfInsn) error
+pkg syscall (freebsd-amd64-cgo), func SetBpfBuflen(int, int) (int, error)
+pkg syscall (freebsd-amd64-cgo), func SetBpfDatalink(int, int) (int, error)
+pkg syscall (freebsd-amd64-cgo), func SetBpfHeadercmpl(int, int) error
+pkg syscall (freebsd-amd64-cgo), func SetBpfImmediate(int, int) error
+pkg syscall (freebsd-amd64-cgo), func SetBpfInterface(int, string) error
+pkg syscall (freebsd-amd64-cgo), func SetBpfPromisc(int, int) error
+pkg syscall (freebsd-amd64-cgo), func SetBpfTimeout(int, *Timeval) error
+pkg syscall (freebsd-amd64-cgo), func SetKevent(*Kevent_t, int, int, int)
+pkg syscall (freebsd-amd64-cgo), func SetNonblock(int, bool) error
+pkg syscall (freebsd-amd64-cgo), func Setegid(int) error
+pkg syscall (freebsd-amd64-cgo), func Seteuid(int) error
+pkg syscall (freebsd-amd64-cgo), func Setgid(int) error
+pkg syscall (freebsd-amd64-cgo), func Setgroups([]int) error
+pkg syscall (freebsd-amd64-cgo), func Setlogin(string) error
+pkg syscall (freebsd-amd64-cgo), func Setpgid(int, int) error
+pkg syscall (freebsd-amd64-cgo), func Setpriority(int, int, int) error
+pkg syscall (freebsd-amd64-cgo), func Setregid(int, int) error
+pkg syscall (freebsd-amd64-cgo), func Setreuid(int, int) error
+pkg syscall (freebsd-amd64-cgo), func Setrlimit(int, *Rlimit) error
+pkg syscall (freebsd-amd64-cgo), func Setsid() (int, error)
+pkg syscall (freebsd-amd64-cgo), func SetsockoptByte(int, int, int, uint8) error
+pkg syscall (freebsd-amd64-cgo), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
+pkg syscall (freebsd-amd64-cgo), func SetsockoptIPMreq(int, int, int, *IPMreq) error
+pkg syscall (freebsd-amd64-cgo), func SetsockoptIPMreqn(int, int, int, *IPMreqn) error
+pkg syscall (freebsd-amd64-cgo), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error
+pkg syscall (freebsd-amd64-cgo), func SetsockoptInet4Addr(int, int, int, [4]uint8) error
+pkg syscall (freebsd-amd64-cgo), func SetsockoptInt(int, int, int, int) error
+pkg syscall (freebsd-amd64-cgo), func SetsockoptLinger(int, int, int, *Linger) error
+pkg syscall (freebsd-amd64-cgo), func SetsockoptString(int, int, int, string) error
+pkg syscall (freebsd-amd64-cgo), func SetsockoptTimeval(int, int, int, *Timeval) error
+pkg syscall (freebsd-amd64-cgo), func Settimeofday(*Timeval) error
+pkg syscall (freebsd-amd64-cgo), func Setuid(int) error
+pkg syscall (freebsd-amd64-cgo), func Shutdown(int, int) error
+pkg syscall (freebsd-amd64-cgo), func SlicePtrFromStrings([]string) ([]*uint8, error)
+pkg syscall (freebsd-amd64-cgo), func Socket(int, int, int) (int, error)
+pkg syscall (freebsd-amd64-cgo), func Socketpair(int, int, int) ([2]int, error)
+pkg syscall (freebsd-amd64-cgo), func Stat(string, *Stat_t) error
+pkg syscall (freebsd-amd64-cgo), func Statfs(string, *Statfs_t) error
+pkg syscall (freebsd-amd64-cgo), func StringSlicePtr([]string) []*uint8
+pkg syscall (freebsd-amd64-cgo), func Sync() error
+pkg syscall (freebsd-amd64-cgo), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (freebsd-amd64-cgo), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (freebsd-amd64-cgo), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (freebsd-amd64-cgo), func Sysctl(string) (string, error)
+pkg syscall (freebsd-amd64-cgo), func SysctlUint32(string) (uint32, error)
+pkg syscall (freebsd-amd64-cgo), func TimevalToNsec(Timeval) int64
+pkg syscall (freebsd-amd64-cgo), func Truncate(string, int64) error
+pkg syscall (freebsd-amd64-cgo), func Umask(int) int
+pkg syscall (freebsd-amd64-cgo), func Undelete(string) error
+pkg syscall (freebsd-amd64-cgo), func UnixRights(...int) []uint8
+pkg syscall (freebsd-amd64-cgo), func Unmount(string, int) error
+pkg syscall (freebsd-amd64-cgo), func Wait4(int, *WaitStatus, int, *Rusage) (int, error)
+pkg syscall (freebsd-amd64-cgo), func Write(int, []uint8) (int, error)
+pkg syscall (freebsd-amd64-cgo), method (*Cmsghdr) SetLen(int)
+pkg syscall (freebsd-amd64-cgo), method (*Iovec) SetLen(int)
+pkg syscall (freebsd-amd64-cgo), method (*Msghdr) SetControllen(int)
+pkg syscall (freebsd-amd64-cgo), type BpfHdr struct
+pkg syscall (freebsd-amd64-cgo), type BpfHdr struct, Caplen uint32
+pkg syscall (freebsd-amd64-cgo), type BpfHdr struct, Datalen uint32
+pkg syscall (freebsd-amd64-cgo), type BpfHdr struct, Hdrlen uint16
+pkg syscall (freebsd-amd64-cgo), type BpfHdr struct, Pad_cgo_0 [6]uint8
+pkg syscall (freebsd-amd64-cgo), type BpfHdr struct, Tstamp Timeval
+pkg syscall (freebsd-amd64-cgo), type BpfInsn struct
+pkg syscall (freebsd-amd64-cgo), type BpfInsn struct, Code uint16
+pkg syscall (freebsd-amd64-cgo), type BpfInsn struct, Jf uint8
+pkg syscall (freebsd-amd64-cgo), type BpfInsn struct, Jt uint8
+pkg syscall (freebsd-amd64-cgo), type BpfInsn struct, K uint32
+pkg syscall (freebsd-amd64-cgo), type BpfProgram struct
+pkg syscall (freebsd-amd64-cgo), type BpfProgram struct, Insns *BpfInsn
+pkg syscall (freebsd-amd64-cgo), type BpfProgram struct, Len uint32
+pkg syscall (freebsd-amd64-cgo), type BpfProgram struct, Pad_cgo_0 [4]uint8
+pkg syscall (freebsd-amd64-cgo), type BpfStat struct
+pkg syscall (freebsd-amd64-cgo), type BpfStat struct, Drop uint32
+pkg syscall (freebsd-amd64-cgo), type BpfStat struct, Recv uint32
+pkg syscall (freebsd-amd64-cgo), type BpfVersion struct
+pkg syscall (freebsd-amd64-cgo), type BpfVersion struct, Major uint16
+pkg syscall (freebsd-amd64-cgo), type BpfVersion struct, Minor uint16
+pkg syscall (freebsd-amd64-cgo), type BpfZbuf struct
+pkg syscall (freebsd-amd64-cgo), type BpfZbuf struct, Bufa *uint8
+pkg syscall (freebsd-amd64-cgo), type BpfZbuf struct, Bufb *uint8
+pkg syscall (freebsd-amd64-cgo), type BpfZbuf struct, Buflen uint64
+pkg syscall (freebsd-amd64-cgo), type BpfZbufHeader struct
+pkg syscall (freebsd-amd64-cgo), type BpfZbufHeader struct, Kernel_gen uint32
+pkg syscall (freebsd-amd64-cgo), type BpfZbufHeader struct, Kernel_len uint32
+pkg syscall (freebsd-amd64-cgo), type BpfZbufHeader struct, User_gen uint32
+pkg syscall (freebsd-amd64-cgo), type BpfZbufHeader struct, X_bzh_pad [5]uint32
+pkg syscall (freebsd-amd64-cgo), type Cmsghdr struct
+pkg syscall (freebsd-amd64-cgo), type Cmsghdr struct, Len uint32
+pkg syscall (freebsd-amd64-cgo), type Cmsghdr struct, Level int32
+pkg syscall (freebsd-amd64-cgo), type Cmsghdr struct, Type int32
+pkg syscall (freebsd-amd64-cgo), type Credential struct
+pkg syscall (freebsd-amd64-cgo), type Credential struct, Gid uint32
+pkg syscall (freebsd-amd64-cgo), type Credential struct, Groups []uint32
+pkg syscall (freebsd-amd64-cgo), type Credential struct, Uid uint32
+pkg syscall (freebsd-amd64-cgo), type Dirent struct
+pkg syscall (freebsd-amd64-cgo), type Dirent struct, Fileno uint32
+pkg syscall (freebsd-amd64-cgo), type Dirent struct, Name [256]int8
+pkg syscall (freebsd-amd64-cgo), type Dirent struct, Namlen uint8
+pkg syscall (freebsd-amd64-cgo), type Dirent struct, Reclen uint16
+pkg syscall (freebsd-amd64-cgo), type Dirent struct, Type uint8
+pkg syscall (freebsd-amd64-cgo), type FdSet struct
+pkg syscall (freebsd-amd64-cgo), type FdSet struct, X__fds_bits [16]uint64
+pkg syscall (freebsd-amd64-cgo), type Flock_t struct
+pkg syscall (freebsd-amd64-cgo), type Flock_t struct, Len int64
+pkg syscall (freebsd-amd64-cgo), type Flock_t struct, Pad_cgo_0 [4]uint8
+pkg syscall (freebsd-amd64-cgo), type Flock_t struct, Pid int32
+pkg syscall (freebsd-amd64-cgo), type Flock_t struct, Start int64
+pkg syscall (freebsd-amd64-cgo), type Flock_t struct, Sysid int32
+pkg syscall (freebsd-amd64-cgo), type Flock_t struct, Type int16
+pkg syscall (freebsd-amd64-cgo), type Flock_t struct, Whence int16
+pkg syscall (freebsd-amd64-cgo), type Fsid struct
+pkg syscall (freebsd-amd64-cgo), type Fsid struct, Val [2]int32
+pkg syscall (freebsd-amd64-cgo), type ICMPv6Filter struct
+pkg syscall (freebsd-amd64-cgo), type ICMPv6Filter struct, Filt [8]uint32
+pkg syscall (freebsd-amd64-cgo), type IPMreqn struct
+pkg syscall (freebsd-amd64-cgo), type IPMreqn struct, Address [4]uint8
+pkg syscall (freebsd-amd64-cgo), type IPMreqn struct, Ifindex int32
+pkg syscall (freebsd-amd64-cgo), type IPMreqn struct, Multiaddr [4]uint8
+pkg syscall (freebsd-amd64-cgo), type IPv6MTUInfo struct
+pkg syscall (freebsd-amd64-cgo), type IPv6MTUInfo struct, Addr RawSockaddrInet6
+pkg syscall (freebsd-amd64-cgo), type IPv6MTUInfo struct, Mtu uint32
+pkg syscall (freebsd-amd64-cgo), type IfAnnounceMsghdr struct
+pkg syscall (freebsd-amd64-cgo), type IfAnnounceMsghdr struct, Index uint16
+pkg syscall (freebsd-amd64-cgo), type IfAnnounceMsghdr struct, Msglen uint16
+pkg syscall (freebsd-amd64-cgo), type IfAnnounceMsghdr struct, Name [16]int8
+pkg syscall (freebsd-amd64-cgo), type IfAnnounceMsghdr struct, Type uint8
+pkg syscall (freebsd-amd64-cgo), type IfAnnounceMsghdr struct, Version uint8
+pkg syscall (freebsd-amd64-cgo), type IfAnnounceMsghdr struct, What uint16
+pkg syscall (freebsd-amd64-cgo), type IfData struct
+pkg syscall (freebsd-amd64-cgo), type IfData struct, Addrlen uint8
+pkg syscall (freebsd-amd64-cgo), type IfData struct, Baudrate uint64
+pkg syscall (freebsd-amd64-cgo), type IfData struct, Collisions uint64
+pkg syscall (freebsd-amd64-cgo), type IfData struct, Datalen uint8
+pkg syscall (freebsd-amd64-cgo), type IfData struct, Epoch int64
+pkg syscall (freebsd-amd64-cgo), type IfData struct, Hdrlen uint8
+pkg syscall (freebsd-amd64-cgo), type IfData struct, Hwassist uint64
+pkg syscall (freebsd-amd64-cgo), type IfData struct, Ibytes uint64
+pkg syscall (freebsd-amd64-cgo), type IfData struct, Ierrors uint64
+pkg syscall (freebsd-amd64-cgo), type IfData struct, Imcasts uint64
+pkg syscall (freebsd-amd64-cgo), type IfData struct, Ipackets uint64
+pkg syscall (freebsd-amd64-cgo), type IfData struct, Iqdrops uint64
+pkg syscall (freebsd-amd64-cgo), type IfData struct, Lastchange Timeval
+pkg syscall (freebsd-amd64-cgo), type IfData struct, Link_state uint8
+pkg syscall (freebsd-amd64-cgo), type IfData struct, Metric uint64
+pkg syscall (freebsd-amd64-cgo), type IfData struct, Mtu uint64
+pkg syscall (freebsd-amd64-cgo), type IfData struct, Noproto uint64
+pkg syscall (freebsd-amd64-cgo), type IfData struct, Obytes uint64
+pkg syscall (freebsd-amd64-cgo), type IfData struct, Oerrors uint64
+pkg syscall (freebsd-amd64-cgo), type IfData struct, Omcasts uint64
+pkg syscall (freebsd-amd64-cgo), type IfData struct, Opackets uint64
+pkg syscall (freebsd-amd64-cgo), type IfData struct, Physical uint8
+pkg syscall (freebsd-amd64-cgo), type IfData struct, Spare_char1 uint8
+pkg syscall (freebsd-amd64-cgo), type IfData struct, Spare_char2 uint8
+pkg syscall (freebsd-amd64-cgo), type IfData struct, Type uint8
+pkg syscall (freebsd-amd64-cgo), type IfMsghdr struct
+pkg syscall (freebsd-amd64-cgo), type IfMsghdr struct, Addrs int32
+pkg syscall (freebsd-amd64-cgo), type IfMsghdr struct, Data IfData
+pkg syscall (freebsd-amd64-cgo), type IfMsghdr struct, Flags int32
+pkg syscall (freebsd-amd64-cgo), type IfMsghdr struct, Index uint16
+pkg syscall (freebsd-amd64-cgo), type IfMsghdr struct, Msglen uint16
+pkg syscall (freebsd-amd64-cgo), type IfMsghdr struct, Pad_cgo_0 [2]uint8
+pkg syscall (freebsd-amd64-cgo), type IfMsghdr struct, Type uint8
+pkg syscall (freebsd-amd64-cgo), type IfMsghdr struct, Version uint8
+pkg syscall (freebsd-amd64-cgo), type IfaMsghdr struct
+pkg syscall (freebsd-amd64-cgo), type IfaMsghdr struct, Addrs int32
+pkg syscall (freebsd-amd64-cgo), type IfaMsghdr struct, Flags int32
+pkg syscall (freebsd-amd64-cgo), type IfaMsghdr struct, Index uint16
+pkg syscall (freebsd-amd64-cgo), type IfaMsghdr struct, Metric int32
+pkg syscall (freebsd-amd64-cgo), type IfaMsghdr struct, Msglen uint16
+pkg syscall (freebsd-amd64-cgo), type IfaMsghdr struct, Pad_cgo_0 [2]uint8
+pkg syscall (freebsd-amd64-cgo), type IfaMsghdr struct, Type uint8
+pkg syscall (freebsd-amd64-cgo), type IfaMsghdr struct, Version uint8
+pkg syscall (freebsd-amd64-cgo), type IfmaMsghdr struct
+pkg syscall (freebsd-amd64-cgo), type IfmaMsghdr struct, Addrs int32
+pkg syscall (freebsd-amd64-cgo), type IfmaMsghdr struct, Flags int32
+pkg syscall (freebsd-amd64-cgo), type IfmaMsghdr struct, Index uint16
+pkg syscall (freebsd-amd64-cgo), type IfmaMsghdr struct, Msglen uint16
+pkg syscall (freebsd-amd64-cgo), type IfmaMsghdr struct, Pad_cgo_0 [2]uint8
+pkg syscall (freebsd-amd64-cgo), type IfmaMsghdr struct, Type uint8
+pkg syscall (freebsd-amd64-cgo), type IfmaMsghdr struct, Version uint8
+pkg syscall (freebsd-amd64-cgo), type Inet6Pktinfo struct
+pkg syscall (freebsd-amd64-cgo), type Inet6Pktinfo struct, Addr [16]uint8
+pkg syscall (freebsd-amd64-cgo), type Inet6Pktinfo struct, Ifindex uint32
+pkg syscall (freebsd-amd64-cgo), type InterfaceAddrMessage struct
+pkg syscall (freebsd-amd64-cgo), type InterfaceAddrMessage struct, Data []uint8
+pkg syscall (freebsd-amd64-cgo), type InterfaceAddrMessage struct, Header IfaMsghdr
+pkg syscall (freebsd-amd64-cgo), type InterfaceAnnounceMessage struct
+pkg syscall (freebsd-amd64-cgo), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr
+pkg syscall (freebsd-amd64-cgo), type InterfaceMessage struct
+pkg syscall (freebsd-amd64-cgo), type InterfaceMessage struct, Data []uint8
+pkg syscall (freebsd-amd64-cgo), type InterfaceMessage struct, Header IfMsghdr
+pkg syscall (freebsd-amd64-cgo), type InterfaceMulticastAddrMessage struct
+pkg syscall (freebsd-amd64-cgo), type InterfaceMulticastAddrMessage struct, Data []uint8
+pkg syscall (freebsd-amd64-cgo), type InterfaceMulticastAddrMessage struct, Header IfmaMsghdr
+pkg syscall (freebsd-amd64-cgo), type Iovec struct
+pkg syscall (freebsd-amd64-cgo), type Iovec struct, Base *uint8
+pkg syscall (freebsd-amd64-cgo), type Iovec struct, Len uint64
+pkg syscall (freebsd-amd64-cgo), type Kevent_t struct
+pkg syscall (freebsd-amd64-cgo), type Kevent_t struct, Data int64
+pkg syscall (freebsd-amd64-cgo), type Kevent_t struct, Fflags uint32
+pkg syscall (freebsd-amd64-cgo), type Kevent_t struct, Filter int16
+pkg syscall (freebsd-amd64-cgo), type Kevent_t struct, Flags uint16
+pkg syscall (freebsd-amd64-cgo), type Kevent_t struct, Ident uint64
+pkg syscall (freebsd-amd64-cgo), type Kevent_t struct, Udata *uint8
+pkg syscall (freebsd-amd64-cgo), type Msghdr struct
+pkg syscall (freebsd-amd64-cgo), type Msghdr struct, Control *uint8
+pkg syscall (freebsd-amd64-cgo), type Msghdr struct, Controllen uint32
+pkg syscall (freebsd-amd64-cgo), type Msghdr struct, Flags int32
+pkg syscall (freebsd-amd64-cgo), type Msghdr struct, Iov *Iovec
+pkg syscall (freebsd-amd64-cgo), type Msghdr struct, Iovlen int32
+pkg syscall (freebsd-amd64-cgo), type Msghdr struct, Name *uint8
+pkg syscall (freebsd-amd64-cgo), type Msghdr struct, Namelen uint32
+pkg syscall (freebsd-amd64-cgo), type Msghdr struct, Pad_cgo_0 [4]uint8
+pkg syscall (freebsd-amd64-cgo), type Msghdr struct, Pad_cgo_1 [4]uint8
+pkg syscall (freebsd-amd64-cgo), type RawSockaddr struct, Data [14]int8
+pkg syscall (freebsd-amd64-cgo), type RawSockaddr struct, Family uint8
+pkg syscall (freebsd-amd64-cgo), type RawSockaddr struct, Len uint8
+pkg syscall (freebsd-amd64-cgo), type RawSockaddrAny struct, Pad [92]int8
+pkg syscall (freebsd-amd64-cgo), type RawSockaddrDatalink struct
+pkg syscall (freebsd-amd64-cgo), type RawSockaddrDatalink struct, Alen uint8
+pkg syscall (freebsd-amd64-cgo), type RawSockaddrDatalink struct, Data [46]int8
+pkg syscall (freebsd-amd64-cgo), type RawSockaddrDatalink struct, Family uint8
+pkg syscall (freebsd-amd64-cgo), type RawSockaddrDatalink struct, Index uint16
+pkg syscall (freebsd-amd64-cgo), type RawSockaddrDatalink struct, Len uint8
+pkg syscall (freebsd-amd64-cgo), type RawSockaddrDatalink struct, Nlen uint8
+pkg syscall (freebsd-amd64-cgo), type RawSockaddrDatalink struct, Slen uint8
+pkg syscall (freebsd-amd64-cgo), type RawSockaddrDatalink struct, Type uint8
+pkg syscall (freebsd-amd64-cgo), type RawSockaddrInet4 struct, Family uint8
+pkg syscall (freebsd-amd64-cgo), type RawSockaddrInet4 struct, Len uint8
+pkg syscall (freebsd-amd64-cgo), type RawSockaddrInet4 struct, Zero [8]int8
+pkg syscall (freebsd-amd64-cgo), type RawSockaddrInet6 struct, Family uint8
+pkg syscall (freebsd-amd64-cgo), type RawSockaddrInet6 struct, Len uint8
+pkg syscall (freebsd-amd64-cgo), type RawSockaddrUnix struct
+pkg syscall (freebsd-amd64-cgo), type RawSockaddrUnix struct, Family uint8
+pkg syscall (freebsd-amd64-cgo), type RawSockaddrUnix struct, Len uint8
+pkg syscall (freebsd-amd64-cgo), type RawSockaddrUnix struct, Path [104]int8
+pkg syscall (freebsd-amd64-cgo), type Rlimit struct
+pkg syscall (freebsd-amd64-cgo), type Rlimit struct, Cur int64
+pkg syscall (freebsd-amd64-cgo), type Rlimit struct, Max int64
+pkg syscall (freebsd-amd64-cgo), type RouteMessage struct
+pkg syscall (freebsd-amd64-cgo), type RouteMessage struct, Data []uint8
+pkg syscall (freebsd-amd64-cgo), type RouteMessage struct, Header RtMsghdr
+pkg syscall (freebsd-amd64-cgo), type RoutingMessage interface, unexported methods
+pkg syscall (freebsd-amd64-cgo), type RtMetrics struct
+pkg syscall (freebsd-amd64-cgo), type RtMetrics struct, Expire uint64
+pkg syscall (freebsd-amd64-cgo), type RtMetrics struct, Filler [3]uint64
+pkg syscall (freebsd-amd64-cgo), type RtMetrics struct, Hopcount uint64
+pkg syscall (freebsd-amd64-cgo), type RtMetrics struct, Locks uint64
+pkg syscall (freebsd-amd64-cgo), type RtMetrics struct, Mtu uint64
+pkg syscall (freebsd-amd64-cgo), type RtMetrics struct, Pksent uint64
+pkg syscall (freebsd-amd64-cgo), type RtMetrics struct, Recvpipe uint64
+pkg syscall (freebsd-amd64-cgo), type RtMetrics struct, Rtt uint64
+pkg syscall (freebsd-amd64-cgo), type RtMetrics struct, Rttvar uint64
+pkg syscall (freebsd-amd64-cgo), type RtMetrics struct, Sendpipe uint64
+pkg syscall (freebsd-amd64-cgo), type RtMetrics struct, Ssthresh uint64
+pkg syscall (freebsd-amd64-cgo), type RtMetrics struct, Weight uint64
+pkg syscall (freebsd-amd64-cgo), type RtMsghdr struct
+pkg syscall (freebsd-amd64-cgo), type RtMsghdr struct, Addrs int32
+pkg syscall (freebsd-amd64-cgo), type RtMsghdr struct, Errno int32
+pkg syscall (freebsd-amd64-cgo), type RtMsghdr struct, Flags int32
+pkg syscall (freebsd-amd64-cgo), type RtMsghdr struct, Fmask int32
+pkg syscall (freebsd-amd64-cgo), type RtMsghdr struct, Index uint16
+pkg syscall (freebsd-amd64-cgo), type RtMsghdr struct, Inits uint64
+pkg syscall (freebsd-amd64-cgo), type RtMsghdr struct, Msglen uint16
+pkg syscall (freebsd-amd64-cgo), type RtMsghdr struct, Pad_cgo_0 [2]uint8
+pkg syscall (freebsd-amd64-cgo), type RtMsghdr struct, Pid int32
+pkg syscall (freebsd-amd64-cgo), type RtMsghdr struct, Rmx RtMetrics
+pkg syscall (freebsd-amd64-cgo), type RtMsghdr struct, Seq int32
+pkg syscall (freebsd-amd64-cgo), type RtMsghdr struct, Type uint8
+pkg syscall (freebsd-amd64-cgo), type RtMsghdr struct, Version uint8
+pkg syscall (freebsd-amd64-cgo), type Rusage struct, Idrss int64
+pkg syscall (freebsd-amd64-cgo), type Rusage struct, Inblock int64
+pkg syscall (freebsd-amd64-cgo), type Rusage struct, Isrss int64
+pkg syscall (freebsd-amd64-cgo), type Rusage struct, Ixrss int64
+pkg syscall (freebsd-amd64-cgo), type Rusage struct, Majflt int64
+pkg syscall (freebsd-amd64-cgo), type Rusage struct, Maxrss int64
+pkg syscall (freebsd-amd64-cgo), type Rusage struct, Minflt int64
+pkg syscall (freebsd-amd64-cgo), type Rusage struct, Msgrcv int64
+pkg syscall (freebsd-amd64-cgo), type Rusage struct, Msgsnd int64
+pkg syscall (freebsd-amd64-cgo), type Rusage struct, Nivcsw int64
+pkg syscall (freebsd-amd64-cgo), type Rusage struct, Nsignals int64
+pkg syscall (freebsd-amd64-cgo), type Rusage struct, Nswap int64
+pkg syscall (freebsd-amd64-cgo), type Rusage struct, Nvcsw int64
+pkg syscall (freebsd-amd64-cgo), type Rusage struct, Oublock int64
+pkg syscall (freebsd-amd64-cgo), type Rusage struct, Stime Timeval
+pkg syscall (freebsd-amd64-cgo), type Rusage struct, Utime Timeval
+pkg syscall (freebsd-amd64-cgo), type SockaddrDatalink struct
+pkg syscall (freebsd-amd64-cgo), type SockaddrDatalink struct, Alen uint8
+pkg syscall (freebsd-amd64-cgo), type SockaddrDatalink struct, Data [46]int8
+pkg syscall (freebsd-amd64-cgo), type SockaddrDatalink struct, Family uint8
+pkg syscall (freebsd-amd64-cgo), type SockaddrDatalink struct, Index uint16
+pkg syscall (freebsd-amd64-cgo), type SockaddrDatalink struct, Len uint8
+pkg syscall (freebsd-amd64-cgo), type SockaddrDatalink struct, Nlen uint8
+pkg syscall (freebsd-amd64-cgo), type SockaddrDatalink struct, Slen uint8
+pkg syscall (freebsd-amd64-cgo), type SockaddrDatalink struct, Type uint8
+pkg syscall (freebsd-amd64-cgo), type SocketControlMessage struct
+pkg syscall (freebsd-amd64-cgo), type SocketControlMessage struct, Data []uint8
+pkg syscall (freebsd-amd64-cgo), type SocketControlMessage struct, Header Cmsghdr
+pkg syscall (freebsd-amd64-cgo), type Stat_t struct
+pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Atimespec Timespec
+pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Birthtimespec Timespec
+pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Blksize uint32
+pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Blocks int64
+pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Ctimespec Timespec
+pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Dev uint32
+pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Flags uint32
+pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Gen uint32
+pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Gid uint32
+pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Ino uint32
+pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Lspare int32
+pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Mode uint16
+pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Mtimespec Timespec
+pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Nlink uint16
+pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Rdev uint32
+pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Size int64
+pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Uid uint32
+pkg syscall (freebsd-amd64-cgo), type Statfs_t struct
+pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Asyncreads uint64
+pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Asyncwrites uint64
+pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Bavail int64
+pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Bfree uint64
+pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Blocks uint64
+pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Bsize uint64
+pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Charspare [80]int8
+pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Ffree int64
+pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Files uint64
+pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Flags uint64
+pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Fsid Fsid
+pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Fstypename [16]int8
+pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Iosize uint64
+pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Mntfromname [88]int8
+pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Mntonname [88]int8
+pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Namemax uint32
+pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Owner uint32
+pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Spare [10]uint64
+pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Syncreads uint64
+pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Syncwrites uint64
+pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Type uint32
+pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Version uint32
+pkg syscall (freebsd-amd64-cgo), type SysProcAttr struct, Chroot string
+pkg syscall (freebsd-amd64-cgo), type SysProcAttr struct, Credential *Credential
+pkg syscall (freebsd-amd64-cgo), type SysProcAttr struct, Noctty bool
+pkg syscall (freebsd-amd64-cgo), type SysProcAttr struct, Ptrace bool
+pkg syscall (freebsd-amd64-cgo), type SysProcAttr struct, Setctty bool
+pkg syscall (freebsd-amd64-cgo), type SysProcAttr struct, Setpgid bool
+pkg syscall (freebsd-amd64-cgo), type SysProcAttr struct, Setsid bool
+pkg syscall (freebsd-amd64-cgo), type Timespec struct, Nsec int64
+pkg syscall (freebsd-amd64-cgo), type Timespec struct, Sec int64
+pkg syscall (freebsd-amd64-cgo), type Timeval struct, Sec int64
+pkg syscall (freebsd-amd64-cgo), type Timeval struct, Usec int64
+pkg syscall (freebsd-amd64-cgo), type WaitStatus uint32
+pkg syscall (freebsd-amd64-cgo), var Stderr int
+pkg syscall (freebsd-amd64-cgo), var Stdin int
+pkg syscall (freebsd-amd64-cgo), var Stdout int
+pkg syscall (freebsd-arm), const AF_APPLETALK ideal-int
+pkg syscall (freebsd-arm), const AF_ARP ideal-int
+pkg syscall (freebsd-arm), const AF_ATM ideal-int
+pkg syscall (freebsd-arm), const AF_BLUETOOTH ideal-int
+pkg syscall (freebsd-arm), const AF_CCITT ideal-int
+pkg syscall (freebsd-arm), const AF_CHAOS ideal-int
+pkg syscall (freebsd-arm), const AF_CNT ideal-int
+pkg syscall (freebsd-arm), const AF_COIP ideal-int
+pkg syscall (freebsd-arm), const AF_DATAKIT ideal-int
+pkg syscall (freebsd-arm), const AF_DECnet ideal-int
+pkg syscall (freebsd-arm), const AF_DLI ideal-int
+pkg syscall (freebsd-arm), const AF_E164 ideal-int
+pkg syscall (freebsd-arm), const AF_ECMA ideal-int
+pkg syscall (freebsd-arm), const AF_HYLINK ideal-int
+pkg syscall (freebsd-arm), const AF_IEEE80211 ideal-int
+pkg syscall (freebsd-arm), const AF_IMPLINK ideal-int
+pkg syscall (freebsd-arm), const AF_IPX ideal-int
+pkg syscall (freebsd-arm), const AF_ISDN ideal-int
+pkg syscall (freebsd-arm), const AF_ISO ideal-int
+pkg syscall (freebsd-arm), const AF_LAT ideal-int
+pkg syscall (freebsd-arm), const AF_LINK ideal-int
+pkg syscall (freebsd-arm), const AF_LOCAL ideal-int
+pkg syscall (freebsd-arm), const AF_MAX ideal-int
+pkg syscall (freebsd-arm), const AF_NATM ideal-int
+pkg syscall (freebsd-arm), const AF_NETBIOS ideal-int
+pkg syscall (freebsd-arm), const AF_NETGRAPH ideal-int
+pkg syscall (freebsd-arm), const AF_OSI ideal-int
+pkg syscall (freebsd-arm), const AF_PUP ideal-int
+pkg syscall (freebsd-arm), const AF_ROUTE ideal-int
+pkg syscall (freebsd-arm), const AF_SCLUSTER ideal-int
+pkg syscall (freebsd-arm), const AF_SIP ideal-int
+pkg syscall (freebsd-arm), const AF_SLOW ideal-int
+pkg syscall (freebsd-arm), const AF_SNA ideal-int
+pkg syscall (freebsd-arm), const AF_VENDOR00 ideal-int
+pkg syscall (freebsd-arm), const AF_VENDOR01 ideal-int
+pkg syscall (freebsd-arm), const AF_VENDOR02 ideal-int
+pkg syscall (freebsd-arm), const AF_VENDOR03 ideal-int
+pkg syscall (freebsd-arm), const AF_VENDOR04 ideal-int
+pkg syscall (freebsd-arm), const AF_VENDOR05 ideal-int
+pkg syscall (freebsd-arm), const AF_VENDOR06 ideal-int
+pkg syscall (freebsd-arm), const AF_VENDOR07 ideal-int
+pkg syscall (freebsd-arm), const AF_VENDOR08 ideal-int
+pkg syscall (freebsd-arm), const AF_VENDOR09 ideal-int
+pkg syscall (freebsd-arm), const AF_VENDOR10 ideal-int
+pkg syscall (freebsd-arm), const AF_VENDOR11 ideal-int
+pkg syscall (freebsd-arm), const AF_VENDOR12 ideal-int
+pkg syscall (freebsd-arm), const AF_VENDOR13 ideal-int
+pkg syscall (freebsd-arm), const AF_VENDOR14 ideal-int
+pkg syscall (freebsd-arm), const AF_VENDOR15 ideal-int
+pkg syscall (freebsd-arm), const AF_VENDOR16 ideal-int
+pkg syscall (freebsd-arm), const AF_VENDOR17 ideal-int
+pkg syscall (freebsd-arm), const AF_VENDOR18 ideal-int
+pkg syscall (freebsd-arm), const AF_VENDOR19 ideal-int
+pkg syscall (freebsd-arm), const AF_VENDOR20 ideal-int
+pkg syscall (freebsd-arm), const AF_VENDOR21 ideal-int
+pkg syscall (freebsd-arm), const AF_VENDOR22 ideal-int
+pkg syscall (freebsd-arm), const AF_VENDOR23 ideal-int
+pkg syscall (freebsd-arm), const AF_VENDOR24 ideal-int
+pkg syscall (freebsd-arm), const AF_VENDOR25 ideal-int
+pkg syscall (freebsd-arm), const AF_VENDOR26 ideal-int
+pkg syscall (freebsd-arm), const AF_VENDOR27 ideal-int
+pkg syscall (freebsd-arm), const AF_VENDOR28 ideal-int
+pkg syscall (freebsd-arm), const AF_VENDOR29 ideal-int
+pkg syscall (freebsd-arm), const AF_VENDOR30 ideal-int
+pkg syscall (freebsd-arm), const AF_VENDOR31 ideal-int
+pkg syscall (freebsd-arm), const AF_VENDOR32 ideal-int
+pkg syscall (freebsd-arm), const AF_VENDOR33 ideal-int
+pkg syscall (freebsd-arm), const AF_VENDOR34 ideal-int
+pkg syscall (freebsd-arm), const AF_VENDOR35 ideal-int
+pkg syscall (freebsd-arm), const AF_VENDOR36 ideal-int
+pkg syscall (freebsd-arm), const AF_VENDOR37 ideal-int
+pkg syscall (freebsd-arm), const AF_VENDOR38 ideal-int
+pkg syscall (freebsd-arm), const AF_VENDOR39 ideal-int
+pkg syscall (freebsd-arm), const AF_VENDOR40 ideal-int
+pkg syscall (freebsd-arm), const AF_VENDOR41 ideal-int
+pkg syscall (freebsd-arm), const AF_VENDOR42 ideal-int
+pkg syscall (freebsd-arm), const AF_VENDOR43 ideal-int
+pkg syscall (freebsd-arm), const AF_VENDOR44 ideal-int
+pkg syscall (freebsd-arm), const AF_VENDOR45 ideal-int
+pkg syscall (freebsd-arm), const AF_VENDOR46 ideal-int
+pkg syscall (freebsd-arm), const AF_VENDOR47 ideal-int
+pkg syscall (freebsd-arm), const B0 ideal-int
+pkg syscall (freebsd-arm), const B110 ideal-int
+pkg syscall (freebsd-arm), const B115200 ideal-int
+pkg syscall (freebsd-arm), const B1200 ideal-int
+pkg syscall (freebsd-arm), const B134 ideal-int
+pkg syscall (freebsd-arm), const B14400 ideal-int
+pkg syscall (freebsd-arm), const B150 ideal-int
+pkg syscall (freebsd-arm), const B1800 ideal-int
+pkg syscall (freebsd-arm), const B19200 ideal-int
+pkg syscall (freebsd-arm), const B200 ideal-int
+pkg syscall (freebsd-arm), const B230400 ideal-int
+pkg syscall (freebsd-arm), const B2400 ideal-int
+pkg syscall (freebsd-arm), const B28800 ideal-int
+pkg syscall (freebsd-arm), const B300 ideal-int
+pkg syscall (freebsd-arm), const B38400 ideal-int
+pkg syscall (freebsd-arm), const B460800 ideal-int
+pkg syscall (freebsd-arm), const B4800 ideal-int
+pkg syscall (freebsd-arm), const B50 ideal-int
+pkg syscall (freebsd-arm), const B57600 ideal-int
+pkg syscall (freebsd-arm), const B600 ideal-int
+pkg syscall (freebsd-arm), const B7200 ideal-int
+pkg syscall (freebsd-arm), const B75 ideal-int
+pkg syscall (freebsd-arm), const B76800 ideal-int
+pkg syscall (freebsd-arm), const B921600 ideal-int
+pkg syscall (freebsd-arm), const B9600 ideal-int
+pkg syscall (freebsd-arm), const BIOCFEEDBACK ideal-int
+pkg syscall (freebsd-arm), const BIOCFLUSH ideal-int
+pkg syscall (freebsd-arm), const BIOCGBLEN ideal-int
+pkg syscall (freebsd-arm), const BIOCGDIRECTION ideal-int
+pkg syscall (freebsd-arm), const BIOCGDLT ideal-int
+pkg syscall (freebsd-arm), const BIOCGDLTLIST ideal-int
+pkg syscall (freebsd-arm), const BIOCGETBUFMODE ideal-int
+pkg syscall (freebsd-arm), const BIOCGETIF ideal-int
+pkg syscall (freebsd-arm), const BIOCGETZMAX ideal-int
+pkg syscall (freebsd-arm), const BIOCGHDRCMPLT ideal-int
+pkg syscall (freebsd-arm), const BIOCGRSIG ideal-int
+pkg syscall (freebsd-arm), const BIOCGRTIMEOUT ideal-int
+pkg syscall (freebsd-arm), const BIOCGSEESENT ideal-int
+pkg syscall (freebsd-arm), const BIOCGSTATS ideal-int
+pkg syscall (freebsd-arm), const BIOCGTSTAMP ideal-int
+pkg syscall (freebsd-arm), const BIOCIMMEDIATE ideal-int
+pkg syscall (freebsd-arm), const BIOCLOCK ideal-int
+pkg syscall (freebsd-arm), const BIOCPROMISC ideal-int
+pkg syscall (freebsd-arm), const BIOCROTZBUF ideal-int
+pkg syscall (freebsd-arm), const BIOCSBLEN ideal-int
+pkg syscall (freebsd-arm), const BIOCSDIRECTION ideal-int
+pkg syscall (freebsd-arm), const BIOCSDLT ideal-int
+pkg syscall (freebsd-arm), const BIOCSETBUFMODE ideal-int
+pkg syscall (freebsd-arm), const BIOCSETF ideal-int
+pkg syscall (freebsd-arm), const BIOCSETFNR ideal-int
+pkg syscall (freebsd-arm), const BIOCSETIF ideal-int
+pkg syscall (freebsd-arm), const BIOCSETWF ideal-int
+pkg syscall (freebsd-arm), const BIOCSETZBUF ideal-int
+pkg syscall (freebsd-arm), const BIOCSHDRCMPLT ideal-int
+pkg syscall (freebsd-arm), const BIOCSRSIG ideal-int
+pkg syscall (freebsd-arm), const BIOCSRTIMEOUT ideal-int
+pkg syscall (freebsd-arm), const BIOCSSEESENT ideal-int
+pkg syscall (freebsd-arm), const BIOCSTSTAMP ideal-int
+pkg syscall (freebsd-arm), const BIOCVERSION ideal-int
+pkg syscall (freebsd-arm), const BPF_A ideal-int
+pkg syscall (freebsd-arm), const BPF_ABS ideal-int
+pkg syscall (freebsd-arm), const BPF_ADD ideal-int
+pkg syscall (freebsd-arm), const BPF_ALIGNMENT ideal-int
+pkg syscall (freebsd-arm), const BPF_ALU ideal-int
+pkg syscall (freebsd-arm), const BPF_AND ideal-int
+pkg syscall (freebsd-arm), const BPF_B ideal-int
+pkg syscall (freebsd-arm), const BPF_BUFMODE_BUFFER ideal-int
+pkg syscall (freebsd-arm), const BPF_BUFMODE_ZBUF ideal-int
+pkg syscall (freebsd-arm), const BPF_DIV ideal-int
+pkg syscall (freebsd-arm), const BPF_H ideal-int
+pkg syscall (freebsd-arm), const BPF_IMM ideal-int
+pkg syscall (freebsd-arm), const BPF_IND ideal-int
+pkg syscall (freebsd-arm), const BPF_JA ideal-int
+pkg syscall (freebsd-arm), const BPF_JEQ ideal-int
+pkg syscall (freebsd-arm), const BPF_JGE ideal-int
+pkg syscall (freebsd-arm), const BPF_JGT ideal-int
+pkg syscall (freebsd-arm), const BPF_JMP ideal-int
+pkg syscall (freebsd-arm), const BPF_JSET ideal-int
+pkg syscall (freebsd-arm), const BPF_K ideal-int
+pkg syscall (freebsd-arm), const BPF_LD ideal-int
+pkg syscall (freebsd-arm), const BPF_LDX ideal-int
+pkg syscall (freebsd-arm), const BPF_LEN ideal-int
+pkg syscall (freebsd-arm), const BPF_LSH ideal-int
+pkg syscall (freebsd-arm), const BPF_MAJOR_VERSION ideal-int
+pkg syscall (freebsd-arm), const BPF_MAXBUFSIZE ideal-int
+pkg syscall (freebsd-arm), const BPF_MAXINSNS ideal-int
+pkg syscall (freebsd-arm), const BPF_MEM ideal-int
+pkg syscall (freebsd-arm), const BPF_MEMWORDS ideal-int
+pkg syscall (freebsd-arm), const BPF_MINBUFSIZE ideal-int
+pkg syscall (freebsd-arm), const BPF_MINOR_VERSION ideal-int
+pkg syscall (freebsd-arm), const BPF_MISC ideal-int
+pkg syscall (freebsd-arm), const BPF_MSH ideal-int
+pkg syscall (freebsd-arm), const BPF_MUL ideal-int
+pkg syscall (freebsd-arm), const BPF_NEG ideal-int
+pkg syscall (freebsd-arm), const BPF_OR ideal-int
+pkg syscall (freebsd-arm), const BPF_RELEASE ideal-int
+pkg syscall (freebsd-arm), const BPF_RET ideal-int
+pkg syscall (freebsd-arm), const BPF_RSH ideal-int
+pkg syscall (freebsd-arm), const BPF_ST ideal-int
+pkg syscall (freebsd-arm), const BPF_STX ideal-int
+pkg syscall (freebsd-arm), const BPF_SUB ideal-int
+pkg syscall (freebsd-arm), const BPF_TAX ideal-int
+pkg syscall (freebsd-arm), const BPF_TXA ideal-int
+pkg syscall (freebsd-arm), const BPF_T_BINTIME ideal-int
+pkg syscall (freebsd-arm), const BPF_T_BINTIME_FAST ideal-int
+pkg syscall (freebsd-arm), const BPF_T_BINTIME_MONOTONIC ideal-int
+pkg syscall (freebsd-arm), const BPF_T_BINTIME_MONOTONIC_FAST ideal-int
+pkg syscall (freebsd-arm), const BPF_T_FAST ideal-int
+pkg syscall (freebsd-arm), const BPF_T_FLAG_MASK ideal-int
+pkg syscall (freebsd-arm), const BPF_T_FORMAT_MASK ideal-int
+pkg syscall (freebsd-arm), const BPF_T_MICROTIME ideal-int
+pkg syscall (freebsd-arm), const BPF_T_MICROTIME_FAST ideal-int
+pkg syscall (freebsd-arm), const BPF_T_MICROTIME_MONOTONIC ideal-int
+pkg syscall (freebsd-arm), const BPF_T_MICROTIME_MONOTONIC_FAST ideal-int
+pkg syscall (freebsd-arm), const BPF_T_MONOTONIC ideal-int
+pkg syscall (freebsd-arm), const BPF_T_MONOTONIC_FAST ideal-int
+pkg syscall (freebsd-arm), const BPF_T_NANOTIME ideal-int
+pkg syscall (freebsd-arm), const BPF_T_NANOTIME_FAST ideal-int
+pkg syscall (freebsd-arm), const BPF_T_NANOTIME_MONOTONIC ideal-int
+pkg syscall (freebsd-arm), const BPF_T_NANOTIME_MONOTONIC_FAST ideal-int
+pkg syscall (freebsd-arm), const BPF_T_NONE ideal-int
+pkg syscall (freebsd-arm), const BPF_T_NORMAL ideal-int
+pkg syscall (freebsd-arm), const BPF_W ideal-int
+pkg syscall (freebsd-arm), const BPF_X ideal-int
+pkg syscall (freebsd-arm), const BRKINT ideal-int
+pkg syscall (freebsd-arm), const CFLUSH ideal-int
+pkg syscall (freebsd-arm), const CLOCAL ideal-int
+pkg syscall (freebsd-arm), const CREAD ideal-int
+pkg syscall (freebsd-arm), const CS5 ideal-int
+pkg syscall (freebsd-arm), const CS6 ideal-int
+pkg syscall (freebsd-arm), const CS7 ideal-int
+pkg syscall (freebsd-arm), const CS8 ideal-int
+pkg syscall (freebsd-arm), const CSIZE ideal-int
+pkg syscall (freebsd-arm), const CSTART ideal-int
+pkg syscall (freebsd-arm), const CSTATUS ideal-int
+pkg syscall (freebsd-arm), const CSTOP ideal-int
+pkg syscall (freebsd-arm), const CSTOPB ideal-int
+pkg syscall (freebsd-arm), const CSUSP ideal-int
+pkg syscall (freebsd-arm), const CTL_MAXNAME ideal-int
+pkg syscall (freebsd-arm), const CTL_NET ideal-int
+pkg syscall (freebsd-arm), const DLT_A429 ideal-int
+pkg syscall (freebsd-arm), const DLT_A653_ICM ideal-int
+pkg syscall (freebsd-arm), const DLT_AIRONET_HEADER ideal-int
+pkg syscall (freebsd-arm), const DLT_AOS ideal-int
+pkg syscall (freebsd-arm), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int
+pkg syscall (freebsd-arm), const DLT_ARCNET ideal-int
+pkg syscall (freebsd-arm), const DLT_ARCNET_LINUX ideal-int
+pkg syscall (freebsd-arm), const DLT_ATM_CLIP ideal-int
+pkg syscall (freebsd-arm), const DLT_ATM_RFC1483 ideal-int
+pkg syscall (freebsd-arm), const DLT_AURORA ideal-int
+pkg syscall (freebsd-arm), const DLT_AX25 ideal-int
+pkg syscall (freebsd-arm), const DLT_AX25_KISS ideal-int
+pkg syscall (freebsd-arm), const DLT_BACNET_MS_TP ideal-int
+pkg syscall (freebsd-arm), const DLT_BLUETOOTH_HCI_H4 ideal-int
+pkg syscall (freebsd-arm), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR ideal-int
+pkg syscall (freebsd-arm), const DLT_CAN20B ideal-int
+pkg syscall (freebsd-arm), const DLT_CAN_SOCKETCAN ideal-int
+pkg syscall (freebsd-arm), const DLT_CHAOS ideal-int
+pkg syscall (freebsd-arm), const DLT_CHDLC ideal-int
+pkg syscall (freebsd-arm), const DLT_CISCO_IOS ideal-int
+pkg syscall (freebsd-arm), const DLT_C_HDLC ideal-int
+pkg syscall (freebsd-arm), const DLT_C_HDLC_WITH_DIR ideal-int
+pkg syscall (freebsd-arm), const DLT_DBUS ideal-int
+pkg syscall (freebsd-arm), const DLT_DECT ideal-int
+pkg syscall (freebsd-arm), const DLT_DOCSIS ideal-int
+pkg syscall (freebsd-arm), const DLT_DVB_CI ideal-int
+pkg syscall (freebsd-arm), const DLT_ECONET ideal-int
+pkg syscall (freebsd-arm), const DLT_EN10MB ideal-int
+pkg syscall (freebsd-arm), const DLT_EN3MB ideal-int
+pkg syscall (freebsd-arm), const DLT_ENC ideal-int
+pkg syscall (freebsd-arm), const DLT_ERF ideal-int
+pkg syscall (freebsd-arm), const DLT_ERF_ETH ideal-int
+pkg syscall (freebsd-arm), const DLT_ERF_POS ideal-int
+pkg syscall (freebsd-arm), const DLT_FC_2 ideal-int
+pkg syscall (freebsd-arm), const DLT_FC_2_WITH_FRAME_DELIMS ideal-int
+pkg syscall (freebsd-arm), const DLT_FDDI ideal-int
+pkg syscall (freebsd-arm), const DLT_FLEXRAY ideal-int
+pkg syscall (freebsd-arm), const DLT_FRELAY ideal-int
+pkg syscall (freebsd-arm), const DLT_FRELAY_WITH_DIR ideal-int
+pkg syscall (freebsd-arm), const DLT_GCOM_SERIAL ideal-int
+pkg syscall (freebsd-arm), const DLT_GCOM_T1E1 ideal-int
+pkg syscall (freebsd-arm), const DLT_GPF_F ideal-int
+pkg syscall (freebsd-arm), const DLT_GPF_T ideal-int
+pkg syscall (freebsd-arm), const DLT_GPRS_LLC ideal-int
+pkg syscall (freebsd-arm), const DLT_GSMTAP_ABIS ideal-int
+pkg syscall (freebsd-arm), const DLT_GSMTAP_UM ideal-int
+pkg syscall (freebsd-arm), const DLT_HHDLC ideal-int
+pkg syscall (freebsd-arm), const DLT_IBM_SN ideal-int
+pkg syscall (freebsd-arm), const DLT_IBM_SP ideal-int
+pkg syscall (freebsd-arm), const DLT_IEEE802 ideal-int
+pkg syscall (freebsd-arm), const DLT_IEEE802_11 ideal-int
+pkg syscall (freebsd-arm), const DLT_IEEE802_11_RADIO ideal-int
+pkg syscall (freebsd-arm), const DLT_IEEE802_11_RADIO_AVS ideal-int
+pkg syscall (freebsd-arm), const DLT_IEEE802_15_4 ideal-int
+pkg syscall (freebsd-arm), const DLT_IEEE802_15_4_LINUX ideal-int
+pkg syscall (freebsd-arm), const DLT_IEEE802_15_4_NOFCS ideal-int
+pkg syscall (freebsd-arm), const DLT_IEEE802_15_4_NONASK_PHY ideal-int
+pkg syscall (freebsd-arm), const DLT_IEEE802_16_MAC_CPS ideal-int
+pkg syscall (freebsd-arm), const DLT_IEEE802_16_MAC_CPS_RADIO ideal-int
+pkg syscall (freebsd-arm), const DLT_IPFILTER ideal-int
+pkg syscall (freebsd-arm), const DLT_IPMB ideal-int
+pkg syscall (freebsd-arm), const DLT_IPMB_LINUX ideal-int
+pkg syscall (freebsd-arm), const DLT_IPNET ideal-int
+pkg syscall (freebsd-arm), const DLT_IPOIB ideal-int
+pkg syscall (freebsd-arm), const DLT_IPV4 ideal-int
+pkg syscall (freebsd-arm), const DLT_IPV6 ideal-int
+pkg syscall (freebsd-arm), const DLT_IP_OVER_FC ideal-int
+pkg syscall (freebsd-arm), const DLT_JUNIPER_ATM1 ideal-int
+pkg syscall (freebsd-arm), const DLT_JUNIPER_ATM2 ideal-int
+pkg syscall (freebsd-arm), const DLT_JUNIPER_ATM_CEMIC ideal-int
+pkg syscall (freebsd-arm), const DLT_JUNIPER_CHDLC ideal-int
+pkg syscall (freebsd-arm), const DLT_JUNIPER_ES ideal-int
+pkg syscall (freebsd-arm), const DLT_JUNIPER_ETHER ideal-int
+pkg syscall (freebsd-arm), const DLT_JUNIPER_FIBRECHANNEL ideal-int
+pkg syscall (freebsd-arm), const DLT_JUNIPER_FRELAY ideal-int
+pkg syscall (freebsd-arm), const DLT_JUNIPER_GGSN ideal-int
+pkg syscall (freebsd-arm), const DLT_JUNIPER_ISM ideal-int
+pkg syscall (freebsd-arm), const DLT_JUNIPER_MFR ideal-int
+pkg syscall (freebsd-arm), const DLT_JUNIPER_MLFR ideal-int
+pkg syscall (freebsd-arm), const DLT_JUNIPER_MLPPP ideal-int
+pkg syscall (freebsd-arm), const DLT_JUNIPER_MONITOR ideal-int
+pkg syscall (freebsd-arm), const DLT_JUNIPER_PIC_PEER ideal-int
+pkg syscall (freebsd-arm), const DLT_JUNIPER_PPP ideal-int
+pkg syscall (freebsd-arm), const DLT_JUNIPER_PPPOE ideal-int
+pkg syscall (freebsd-arm), const DLT_JUNIPER_PPPOE_ATM ideal-int
+pkg syscall (freebsd-arm), const DLT_JUNIPER_SERVICES ideal-int
+pkg syscall (freebsd-arm), const DLT_JUNIPER_SRX_E2E ideal-int
+pkg syscall (freebsd-arm), const DLT_JUNIPER_ST ideal-int
+pkg syscall (freebsd-arm), const DLT_JUNIPER_VP ideal-int
+pkg syscall (freebsd-arm), const DLT_JUNIPER_VS ideal-int
+pkg syscall (freebsd-arm), const DLT_LAPB_WITH_DIR ideal-int
+pkg syscall (freebsd-arm), const DLT_LAPD ideal-int
+pkg syscall (freebsd-arm), const DLT_LIN ideal-int
+pkg syscall (freebsd-arm), const DLT_LINUX_EVDEV ideal-int
+pkg syscall (freebsd-arm), const DLT_LINUX_IRDA ideal-int
+pkg syscall (freebsd-arm), const DLT_LINUX_LAPD ideal-int
+pkg syscall (freebsd-arm), const DLT_LINUX_PPP_WITHDIRECTION ideal-int
+pkg syscall (freebsd-arm), const DLT_LINUX_SLL ideal-int
+pkg syscall (freebsd-arm), const DLT_LOOP ideal-int
+pkg syscall (freebsd-arm), const DLT_LTALK ideal-int
+pkg syscall (freebsd-arm), const DLT_MATCHING_MAX ideal-int
+pkg syscall (freebsd-arm), const DLT_MATCHING_MIN ideal-int
+pkg syscall (freebsd-arm), const DLT_MFR ideal-int
+pkg syscall (freebsd-arm), const DLT_MOST ideal-int
+pkg syscall (freebsd-arm), const DLT_MPEG_2_TS ideal-int
+pkg syscall (freebsd-arm), const DLT_MPLS ideal-int
+pkg syscall (freebsd-arm), const DLT_MTP2 ideal-int
+pkg syscall (freebsd-arm), const DLT_MTP2_WITH_PHDR ideal-int
+pkg syscall (freebsd-arm), const DLT_MTP3 ideal-int
+pkg syscall (freebsd-arm), const DLT_MUX27010 ideal-int
+pkg syscall (freebsd-arm), const DLT_NETANALYZER ideal-int
+pkg syscall (freebsd-arm), const DLT_NETANALYZER_TRANSPARENT ideal-int
+pkg syscall (freebsd-arm), const DLT_NFC_LLCP ideal-int
+pkg syscall (freebsd-arm), const DLT_NFLOG ideal-int
+pkg syscall (freebsd-arm), const DLT_NG40 ideal-int
+pkg syscall (freebsd-arm), const DLT_NULL ideal-int
+pkg syscall (freebsd-arm), const DLT_PCI_EXP ideal-int
+pkg syscall (freebsd-arm), const DLT_PFLOG ideal-int
+pkg syscall (freebsd-arm), const DLT_PFSYNC ideal-int
+pkg syscall (freebsd-arm), const DLT_PPI ideal-int
+pkg syscall (freebsd-arm), const DLT_PPP ideal-int
+pkg syscall (freebsd-arm), const DLT_PPP_BSDOS ideal-int
+pkg syscall (freebsd-arm), const DLT_PPP_ETHER ideal-int
+pkg syscall (freebsd-arm), const DLT_PPP_PPPD ideal-int
+pkg syscall (freebsd-arm), const DLT_PPP_SERIAL ideal-int
+pkg syscall (freebsd-arm), const DLT_PPP_WITH_DIR ideal-int
+pkg syscall (freebsd-arm), const DLT_PPP_WITH_DIRECTION ideal-int
+pkg syscall (freebsd-arm), const DLT_PRISM_HEADER ideal-int
+pkg syscall (freebsd-arm), const DLT_PRONET ideal-int
+pkg syscall (freebsd-arm), const DLT_RAIF1 ideal-int
+pkg syscall (freebsd-arm), const DLT_RAW ideal-int
+pkg syscall (freebsd-arm), const DLT_RIO ideal-int
+pkg syscall (freebsd-arm), const DLT_SCCP ideal-int
+pkg syscall (freebsd-arm), const DLT_SITA ideal-int
+pkg syscall (freebsd-arm), const DLT_SLIP ideal-int
+pkg syscall (freebsd-arm), const DLT_SLIP_BSDOS ideal-int
+pkg syscall (freebsd-arm), const DLT_STANAG_5066_D_PDU ideal-int
+pkg syscall (freebsd-arm), const DLT_SUNATM ideal-int
+pkg syscall (freebsd-arm), const DLT_SYMANTEC_FIREWALL ideal-int
+pkg syscall (freebsd-arm), const DLT_TZSP ideal-int
+pkg syscall (freebsd-arm), const DLT_USB ideal-int
+pkg syscall (freebsd-arm), const DLT_USB_LINUX ideal-int
+pkg syscall (freebsd-arm), const DLT_USB_LINUX_MMAPPED ideal-int
+pkg syscall (freebsd-arm), const DLT_USER0 ideal-int
+pkg syscall (freebsd-arm), const DLT_USER1 ideal-int
+pkg syscall (freebsd-arm), const DLT_USER10 ideal-int
+pkg syscall (freebsd-arm), const DLT_USER11 ideal-int
+pkg syscall (freebsd-arm), const DLT_USER12 ideal-int
+pkg syscall (freebsd-arm), const DLT_USER13 ideal-int
+pkg syscall (freebsd-arm), const DLT_USER14 ideal-int
+pkg syscall (freebsd-arm), const DLT_USER15 ideal-int
+pkg syscall (freebsd-arm), const DLT_USER2 ideal-int
+pkg syscall (freebsd-arm), const DLT_USER3 ideal-int
+pkg syscall (freebsd-arm), const DLT_USER4 ideal-int
+pkg syscall (freebsd-arm), const DLT_USER5 ideal-int
+pkg syscall (freebsd-arm), const DLT_USER6 ideal-int
+pkg syscall (freebsd-arm), const DLT_USER7 ideal-int
+pkg syscall (freebsd-arm), const DLT_USER8 ideal-int
+pkg syscall (freebsd-arm), const DLT_USER9 ideal-int
+pkg syscall (freebsd-arm), const DLT_WIHART ideal-int
+pkg syscall (freebsd-arm), const DLT_X2E_SERIAL ideal-int
+pkg syscall (freebsd-arm), const DLT_X2E_XORAYA ideal-int
+pkg syscall (freebsd-arm), const DT_BLK ideal-int
+pkg syscall (freebsd-arm), const DT_CHR ideal-int
+pkg syscall (freebsd-arm), const DT_DIR ideal-int
+pkg syscall (freebsd-arm), const DT_FIFO ideal-int
+pkg syscall (freebsd-arm), const DT_LNK ideal-int
+pkg syscall (freebsd-arm), const DT_REG ideal-int
+pkg syscall (freebsd-arm), const DT_SOCK ideal-int
+pkg syscall (freebsd-arm), const DT_UNKNOWN ideal-int
+pkg syscall (freebsd-arm), const DT_WHT ideal-int
+pkg syscall (freebsd-arm), const EAUTH Errno
+pkg syscall (freebsd-arm), const EBADMSG Errno
+pkg syscall (freebsd-arm), const EBADRPC Errno
+pkg syscall (freebsd-arm), const ECAPMODE Errno
+pkg syscall (freebsd-arm), const ECHO ideal-int
+pkg syscall (freebsd-arm), const ECHOCTL ideal-int
+pkg syscall (freebsd-arm), const ECHOE ideal-int
+pkg syscall (freebsd-arm), const ECHOK ideal-int
+pkg syscall (freebsd-arm), const ECHOKE ideal-int
+pkg syscall (freebsd-arm), const ECHONL ideal-int
+pkg syscall (freebsd-arm), const ECHOPRT ideal-int
+pkg syscall (freebsd-arm), const EDOOFUS Errno
+pkg syscall (freebsd-arm), const EFTYPE Errno
+pkg syscall (freebsd-arm), const ELAST Errno
+pkg syscall (freebsd-arm), const EMULTIHOP Errno
+pkg syscall (freebsd-arm), const ENEEDAUTH Errno
+pkg syscall (freebsd-arm), const ENOATTR Errno
+pkg syscall (freebsd-arm), const ENOLINK Errno
+pkg syscall (freebsd-arm), const ENOTCAPABLE Errno
+pkg syscall (freebsd-arm), const EPROCLIM Errno
+pkg syscall (freebsd-arm), const EPROCUNAVAIL Errno
+pkg syscall (freebsd-arm), const EPROGMISMATCH Errno
+pkg syscall (freebsd-arm), const EPROGUNAVAIL Errno
+pkg syscall (freebsd-arm), const EPROTO Errno
+pkg syscall (freebsd-arm), const ERPCMISMATCH Errno
+pkg syscall (freebsd-arm), const EVFILT_AIO ideal-int
+pkg syscall (freebsd-arm), const EVFILT_FS ideal-int
+pkg syscall (freebsd-arm), const EVFILT_LIO ideal-int
+pkg syscall (freebsd-arm), const EVFILT_PROC ideal-int
+pkg syscall (freebsd-arm), const EVFILT_READ ideal-int
+pkg syscall (freebsd-arm), const EVFILT_SIGNAL ideal-int
+pkg syscall (freebsd-arm), const EVFILT_SYSCOUNT ideal-int
+pkg syscall (freebsd-arm), const EVFILT_TIMER ideal-int
+pkg syscall (freebsd-arm), const EVFILT_USER ideal-int
+pkg syscall (freebsd-arm), const EVFILT_VNODE ideal-int
+pkg syscall (freebsd-arm), const EVFILT_WRITE ideal-int
+pkg syscall (freebsd-arm), const EV_ADD ideal-int
+pkg syscall (freebsd-arm), const EV_CLEAR ideal-int
+pkg syscall (freebsd-arm), const EV_DELETE ideal-int
+pkg syscall (freebsd-arm), const EV_DISABLE ideal-int
+pkg syscall (freebsd-arm), const EV_DISPATCH ideal-int
+pkg syscall (freebsd-arm), const EV_ENABLE ideal-int
+pkg syscall (freebsd-arm), const EV_EOF ideal-int
+pkg syscall (freebsd-arm), const EV_ERROR ideal-int
+pkg syscall (freebsd-arm), const EV_FLAG1 ideal-int
+pkg syscall (freebsd-arm), const EV_ONESHOT ideal-int
+pkg syscall (freebsd-arm), const EV_RECEIPT ideal-int
+pkg syscall (freebsd-arm), const EV_SYSFLAGS ideal-int
+pkg syscall (freebsd-arm), const EXTA ideal-int
+pkg syscall (freebsd-arm), const EXTB ideal-int
+pkg syscall (freebsd-arm), const EXTPROC ideal-int
+pkg syscall (freebsd-arm), const FD_CLOEXEC ideal-int
+pkg syscall (freebsd-arm), const FD_SETSIZE ideal-int
+pkg syscall (freebsd-arm), const FLUSHO ideal-int
+pkg syscall (freebsd-arm), const F_CANCEL ideal-int
+pkg syscall (freebsd-arm), const F_DUP2FD ideal-int
+pkg syscall (freebsd-arm), const F_DUP2FD_CLOEXEC ideal-int
+pkg syscall (freebsd-arm), const F_DUPFD ideal-int
+pkg syscall (freebsd-arm), const F_DUPFD_CLOEXEC ideal-int
+pkg syscall (freebsd-arm), const F_GETFD ideal-int
+pkg syscall (freebsd-arm), const F_GETFL ideal-int
+pkg syscall (freebsd-arm), const F_GETLK ideal-int
+pkg syscall (freebsd-arm), const F_GETOWN ideal-int
+pkg syscall (freebsd-arm), const F_OGETLK ideal-int
+pkg syscall (freebsd-arm), const F_OK ideal-int
+pkg syscall (freebsd-arm), const F_OSETLK ideal-int
+pkg syscall (freebsd-arm), const F_OSETLKW ideal-int
+pkg syscall (freebsd-arm), const F_RDAHEAD ideal-int
+pkg syscall (freebsd-arm), const F_RDLCK ideal-int
+pkg syscall (freebsd-arm), const F_READAHEAD ideal-int
+pkg syscall (freebsd-arm), const F_SETFD ideal-int
+pkg syscall (freebsd-arm), const F_SETFL ideal-int
+pkg syscall (freebsd-arm), const F_SETLK ideal-int
+pkg syscall (freebsd-arm), const F_SETLKW ideal-int
+pkg syscall (freebsd-arm), const F_SETLK_REMOTE ideal-int
+pkg syscall (freebsd-arm), const F_SETOWN ideal-int
+pkg syscall (freebsd-arm), const F_UNLCK ideal-int
+pkg syscall (freebsd-arm), const F_UNLCKSYS ideal-int
+pkg syscall (freebsd-arm), const F_WRLCK ideal-int
+pkg syscall (freebsd-arm), const HUPCL ideal-int
+pkg syscall (freebsd-arm), const ICANON ideal-int
+pkg syscall (freebsd-arm), const ICMP6_FILTER = 18
+pkg syscall (freebsd-arm), const ICMP6_FILTER ideal-int
+pkg syscall (freebsd-arm), const ICRNL ideal-int
+pkg syscall (freebsd-arm), const IEXTEN ideal-int
+pkg syscall (freebsd-arm), const IFAN_ARRIVAL ideal-int
+pkg syscall (freebsd-arm), const IFAN_DEPARTURE ideal-int
+pkg syscall (freebsd-arm), const IFF_ALLMULTI ideal-int
+pkg syscall (freebsd-arm), const IFF_ALTPHYS ideal-int
+pkg syscall (freebsd-arm), const IFF_CANTCHANGE ideal-int
+pkg syscall (freebsd-arm), const IFF_CANTCONFIG ideal-int
+pkg syscall (freebsd-arm), const IFF_DEBUG ideal-int
+pkg syscall (freebsd-arm), const IFF_DRV_OACTIVE ideal-int
+pkg syscall (freebsd-arm), const IFF_DRV_RUNNING ideal-int
+pkg syscall (freebsd-arm), const IFF_DYING ideal-int
+pkg syscall (freebsd-arm), const IFF_LINK0 ideal-int
+pkg syscall (freebsd-arm), const IFF_LINK1 ideal-int
+pkg syscall (freebsd-arm), const IFF_LINK2 ideal-int
+pkg syscall (freebsd-arm), const IFF_MONITOR ideal-int
+pkg syscall (freebsd-arm), const IFF_NOARP ideal-int
+pkg syscall (freebsd-arm), const IFF_OACTIVE ideal-int
+pkg syscall (freebsd-arm), const IFF_POINTOPOINT ideal-int
+pkg syscall (freebsd-arm), const IFF_PPROMISC ideal-int
+pkg syscall (freebsd-arm), const IFF_PROMISC ideal-int
+pkg syscall (freebsd-arm), const IFF_RENAMING ideal-int
+pkg syscall (freebsd-arm), const IFF_RUNNING ideal-int
+pkg syscall (freebsd-arm), const IFF_SIMPLEX ideal-int
+pkg syscall (freebsd-arm), const IFF_SMART ideal-int
+pkg syscall (freebsd-arm), const IFF_STATICARP ideal-int
+pkg syscall (freebsd-arm), const IFNAMSIZ ideal-int
+pkg syscall (freebsd-arm), const IFT_1822 ideal-int
+pkg syscall (freebsd-arm), const IFT_A12MPPSWITCH ideal-int
+pkg syscall (freebsd-arm), const IFT_AAL2 ideal-int
+pkg syscall (freebsd-arm), const IFT_AAL5 ideal-int
+pkg syscall (freebsd-arm), const IFT_ADSL ideal-int
+pkg syscall (freebsd-arm), const IFT_AFLANE8023 ideal-int
+pkg syscall (freebsd-arm), const IFT_AFLANE8025 ideal-int
+pkg syscall (freebsd-arm), const IFT_ARAP ideal-int
+pkg syscall (freebsd-arm), const IFT_ARCNET ideal-int
+pkg syscall (freebsd-arm), const IFT_ARCNETPLUS ideal-int
+pkg syscall (freebsd-arm), const IFT_ASYNC ideal-int
+pkg syscall (freebsd-arm), const IFT_ATM ideal-int
+pkg syscall (freebsd-arm), const IFT_ATMDXI ideal-int
+pkg syscall (freebsd-arm), const IFT_ATMFUNI ideal-int
+pkg syscall (freebsd-arm), const IFT_ATMIMA ideal-int
+pkg syscall (freebsd-arm), const IFT_ATMLOGICAL ideal-int
+pkg syscall (freebsd-arm), const IFT_ATMRADIO ideal-int
+pkg syscall (freebsd-arm), const IFT_ATMSUBINTERFACE ideal-int
+pkg syscall (freebsd-arm), const IFT_ATMVCIENDPT ideal-int
+pkg syscall (freebsd-arm), const IFT_ATMVIRTUAL ideal-int
+pkg syscall (freebsd-arm), const IFT_BGPPOLICYACCOUNTING ideal-int
+pkg syscall (freebsd-arm), const IFT_BRIDGE ideal-int
+pkg syscall (freebsd-arm), const IFT_BSC ideal-int
+pkg syscall (freebsd-arm), const IFT_CCTEMUL ideal-int
+pkg syscall (freebsd-arm), const IFT_CEPT ideal-int
+pkg syscall (freebsd-arm), const IFT_CES ideal-int
+pkg syscall (freebsd-arm), const IFT_CHANNEL ideal-int
+pkg syscall (freebsd-arm), const IFT_CNR ideal-int
+pkg syscall (freebsd-arm), const IFT_COFFEE ideal-int
+pkg syscall (freebsd-arm), const IFT_COMPOSITELINK ideal-int
+pkg syscall (freebsd-arm), const IFT_DCN ideal-int
+pkg syscall (freebsd-arm), const IFT_DIGITALPOWERLINE ideal-int
+pkg syscall (freebsd-arm), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int
+pkg syscall (freebsd-arm), const IFT_DLSW ideal-int
+pkg syscall (freebsd-arm), const IFT_DOCSCABLEDOWNSTREAM ideal-int
+pkg syscall (freebsd-arm), const IFT_DOCSCABLEMACLAYER ideal-int
+pkg syscall (freebsd-arm), const IFT_DOCSCABLEUPSTREAM ideal-int
+pkg syscall (freebsd-arm), const IFT_DS0 ideal-int
+pkg syscall (freebsd-arm), const IFT_DS0BUNDLE ideal-int
+pkg syscall (freebsd-arm), const IFT_DS1FDL ideal-int
+pkg syscall (freebsd-arm), const IFT_DS3 ideal-int
+pkg syscall (freebsd-arm), const IFT_DTM ideal-int
+pkg syscall (freebsd-arm), const IFT_DVBASILN ideal-int
+pkg syscall (freebsd-arm), const IFT_DVBASIOUT ideal-int
+pkg syscall (freebsd-arm), const IFT_DVBRCCDOWNSTREAM ideal-int
+pkg syscall (freebsd-arm), const IFT_DVBRCCMACLAYER ideal-int
+pkg syscall (freebsd-arm), const IFT_DVBRCCUPSTREAM ideal-int
+pkg syscall (freebsd-arm), const IFT_ENC ideal-int
+pkg syscall (freebsd-arm), const IFT_EON ideal-int
+pkg syscall (freebsd-arm), const IFT_EPLRS ideal-int
+pkg syscall (freebsd-arm), const IFT_ESCON ideal-int
+pkg syscall (freebsd-arm), const IFT_ETHER ideal-int
+pkg syscall (freebsd-arm), const IFT_FAITH ideal-int
+pkg syscall (freebsd-arm), const IFT_FAST ideal-int
+pkg syscall (freebsd-arm), const IFT_FASTETHER ideal-int
+pkg syscall (freebsd-arm), const IFT_FASTETHERFX ideal-int
+pkg syscall (freebsd-arm), const IFT_FDDI ideal-int
+pkg syscall (freebsd-arm), const IFT_FIBRECHANNEL ideal-int
+pkg syscall (freebsd-arm), const IFT_FRAMERELAYINTERCONNECT ideal-int
+pkg syscall (freebsd-arm), const IFT_FRAMERELAYMPI ideal-int
+pkg syscall (freebsd-arm), const IFT_FRDLCIENDPT ideal-int
+pkg syscall (freebsd-arm), const IFT_FRELAY ideal-int
+pkg syscall (freebsd-arm), const IFT_FRELAYDCE ideal-int
+pkg syscall (freebsd-arm), const IFT_FRF16MFRBUNDLE ideal-int
+pkg syscall (freebsd-arm), const IFT_FRFORWARD ideal-int
+pkg syscall (freebsd-arm), const IFT_G703AT2MB ideal-int
+pkg syscall (freebsd-arm), const IFT_G703AT64K ideal-int
+pkg syscall (freebsd-arm), const IFT_GIF ideal-int
+pkg syscall (freebsd-arm), const IFT_GIGABITETHERNET ideal-int
+pkg syscall (freebsd-arm), const IFT_GR303IDT ideal-int
+pkg syscall (freebsd-arm), const IFT_GR303RDT ideal-int
+pkg syscall (freebsd-arm), const IFT_H323GATEKEEPER ideal-int
+pkg syscall (freebsd-arm), const IFT_H323PROXY ideal-int
+pkg syscall (freebsd-arm), const IFT_HDH1822 ideal-int
+pkg syscall (freebsd-arm), const IFT_HDLC ideal-int
+pkg syscall (freebsd-arm), const IFT_HDSL2 ideal-int
+pkg syscall (freebsd-arm), const IFT_HIPERLAN2 ideal-int
+pkg syscall (freebsd-arm), const IFT_HIPPI ideal-int
+pkg syscall (freebsd-arm), const IFT_HIPPIINTERFACE ideal-int
+pkg syscall (freebsd-arm), const IFT_HOSTPAD ideal-int
+pkg syscall (freebsd-arm), const IFT_HSSI ideal-int
+pkg syscall (freebsd-arm), const IFT_HY ideal-int
+pkg syscall (freebsd-arm), const IFT_IBM370PARCHAN ideal-int
+pkg syscall (freebsd-arm), const IFT_IDSL ideal-int
+pkg syscall (freebsd-arm), const IFT_IEEE1394 ideal-int
+pkg syscall (freebsd-arm), const IFT_IEEE80211 ideal-int
+pkg syscall (freebsd-arm), const IFT_IEEE80212 ideal-int
+pkg syscall (freebsd-arm), const IFT_IEEE8023ADLAG ideal-int
+pkg syscall (freebsd-arm), const IFT_IFGSN ideal-int
+pkg syscall (freebsd-arm), const IFT_IMT ideal-int
+pkg syscall (freebsd-arm), const IFT_INFINIBAND ideal-int
+pkg syscall (freebsd-arm), const IFT_INTERLEAVE ideal-int
+pkg syscall (freebsd-arm), const IFT_IP ideal-int
+pkg syscall (freebsd-arm), const IFT_IPFORWARD ideal-int
+pkg syscall (freebsd-arm), const IFT_IPOVERATM ideal-int
+pkg syscall (freebsd-arm), const IFT_IPOVERCDLC ideal-int
+pkg syscall (freebsd-arm), const IFT_IPOVERCLAW ideal-int
+pkg syscall (freebsd-arm), const IFT_IPSWITCH ideal-int
+pkg syscall (freebsd-arm), const IFT_IPXIP ideal-int
+pkg syscall (freebsd-arm), const IFT_ISDN ideal-int
+pkg syscall (freebsd-arm), const IFT_ISDNBASIC ideal-int
+pkg syscall (freebsd-arm), const IFT_ISDNPRIMARY ideal-int
+pkg syscall (freebsd-arm), const IFT_ISDNS ideal-int
+pkg syscall (freebsd-arm), const IFT_ISDNU ideal-int
+pkg syscall (freebsd-arm), const IFT_ISO88022LLC ideal-int
+pkg syscall (freebsd-arm), const IFT_ISO88023 ideal-int
+pkg syscall (freebsd-arm), const IFT_ISO88024 ideal-int
+pkg syscall (freebsd-arm), const IFT_ISO88025 ideal-int
+pkg syscall (freebsd-arm), const IFT_ISO88025CRFPINT ideal-int
+pkg syscall (freebsd-arm), const IFT_ISO88025DTR ideal-int
+pkg syscall (freebsd-arm), const IFT_ISO88025FIBER ideal-int
+pkg syscall (freebsd-arm), const IFT_ISO88026 ideal-int
+pkg syscall (freebsd-arm), const IFT_ISUP ideal-int
+pkg syscall (freebsd-arm), const IFT_L2VLAN ideal-int
+pkg syscall (freebsd-arm), const IFT_L3IPVLAN ideal-int
+pkg syscall (freebsd-arm), const IFT_L3IPXVLAN ideal-int
+pkg syscall (freebsd-arm), const IFT_LAPB ideal-int
+pkg syscall (freebsd-arm), const IFT_LAPD ideal-int
+pkg syscall (freebsd-arm), const IFT_LAPF ideal-int
+pkg syscall (freebsd-arm), const IFT_LOCALTALK ideal-int
+pkg syscall (freebsd-arm), const IFT_LOOP ideal-int
+pkg syscall (freebsd-arm), const IFT_MEDIAMAILOVERIP ideal-int
+pkg syscall (freebsd-arm), const IFT_MFSIGLINK ideal-int
+pkg syscall (freebsd-arm), const IFT_MIOX25 ideal-int
+pkg syscall (freebsd-arm), const IFT_MODEM ideal-int
+pkg syscall (freebsd-arm), const IFT_MPC ideal-int
+pkg syscall (freebsd-arm), const IFT_MPLS ideal-int
+pkg syscall (freebsd-arm), const IFT_MPLSTUNNEL ideal-int
+pkg syscall (freebsd-arm), const IFT_MSDSL ideal-int
+pkg syscall (freebsd-arm), const IFT_MVL ideal-int
+pkg syscall (freebsd-arm), const IFT_MYRINET ideal-int
+pkg syscall (freebsd-arm), const IFT_NFAS ideal-int
+pkg syscall (freebsd-arm), const IFT_NSIP ideal-int
+pkg syscall (freebsd-arm), const IFT_OPTICALCHANNEL ideal-int
+pkg syscall (freebsd-arm), const IFT_OPTICALTRANSPORT ideal-int
+pkg syscall (freebsd-arm), const IFT_OTHER ideal-int
+pkg syscall (freebsd-arm), const IFT_P10 ideal-int
+pkg syscall (freebsd-arm), const IFT_P80 ideal-int
+pkg syscall (freebsd-arm), const IFT_PARA ideal-int
+pkg syscall (freebsd-arm), const IFT_PFLOG ideal-int
+pkg syscall (freebsd-arm), const IFT_PFSYNC ideal-int
+pkg syscall (freebsd-arm), const IFT_PLC ideal-int
+pkg syscall (freebsd-arm), const IFT_POS ideal-int
+pkg syscall (freebsd-arm), const IFT_PPP ideal-int
+pkg syscall (freebsd-arm), const IFT_PPPMULTILINKBUNDLE ideal-int
+pkg syscall (freebsd-arm), const IFT_PROPBWAP2MP ideal-int
+pkg syscall (freebsd-arm), const IFT_PROPCNLS ideal-int
+pkg syscall (freebsd-arm), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int
+pkg syscall (freebsd-arm), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int
+pkg syscall (freebsd-arm), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int
+pkg syscall (freebsd-arm), const IFT_PROPMUX ideal-int
+pkg syscall (freebsd-arm), const IFT_PROPVIRTUAL ideal-int
+pkg syscall (freebsd-arm), const IFT_PROPWIRELESSP2P ideal-int
+pkg syscall (freebsd-arm), const IFT_PTPSERIAL ideal-int
+pkg syscall (freebsd-arm), const IFT_PVC ideal-int
+pkg syscall (freebsd-arm), const IFT_QLLC ideal-int
+pkg syscall (freebsd-arm), const IFT_RADIOMAC ideal-int
+pkg syscall (freebsd-arm), const IFT_RADSL ideal-int
+pkg syscall (freebsd-arm), const IFT_REACHDSL ideal-int
+pkg syscall (freebsd-arm), const IFT_RFC1483 ideal-int
+pkg syscall (freebsd-arm), const IFT_RS232 ideal-int
+pkg syscall (freebsd-arm), const IFT_RSRB ideal-int
+pkg syscall (freebsd-arm), const IFT_SDLC ideal-int
+pkg syscall (freebsd-arm), const IFT_SDSL ideal-int
+pkg syscall (freebsd-arm), const IFT_SHDSL ideal-int
+pkg syscall (freebsd-arm), const IFT_SIP ideal-int
+pkg syscall (freebsd-arm), const IFT_SLIP ideal-int
+pkg syscall (freebsd-arm), const IFT_SMDSDXI ideal-int
+pkg syscall (freebsd-arm), const IFT_SMDSICIP ideal-int
+pkg syscall (freebsd-arm), const IFT_SONET ideal-int
+pkg syscall (freebsd-arm), const IFT_SONETOVERHEADCHANNEL ideal-int
+pkg syscall (freebsd-arm), const IFT_SONETPATH ideal-int
+pkg syscall (freebsd-arm), const IFT_SONETVT ideal-int
+pkg syscall (freebsd-arm), const IFT_SRP ideal-int
+pkg syscall (freebsd-arm), const IFT_SS7SIGLINK ideal-int
+pkg syscall (freebsd-arm), const IFT_STACKTOSTACK ideal-int
+pkg syscall (freebsd-arm), const IFT_STARLAN ideal-int
+pkg syscall (freebsd-arm), const IFT_STF ideal-int
+pkg syscall (freebsd-arm), const IFT_T1 ideal-int
+pkg syscall (freebsd-arm), const IFT_TDLC ideal-int
+pkg syscall (freebsd-arm), const IFT_TERMPAD ideal-int
+pkg syscall (freebsd-arm), const IFT_TR008 ideal-int
+pkg syscall (freebsd-arm), const IFT_TRANSPHDLC ideal-int
+pkg syscall (freebsd-arm), const IFT_TUNNEL ideal-int
+pkg syscall (freebsd-arm), const IFT_ULTRA ideal-int
+pkg syscall (freebsd-arm), const IFT_USB ideal-int
+pkg syscall (freebsd-arm), const IFT_V11 ideal-int
+pkg syscall (freebsd-arm), const IFT_V35 ideal-int
+pkg syscall (freebsd-arm), const IFT_V36 ideal-int
+pkg syscall (freebsd-arm), const IFT_V37 ideal-int
+pkg syscall (freebsd-arm), const IFT_VDSL ideal-int
+pkg syscall (freebsd-arm), const IFT_VIRTUALIPADDRESS ideal-int
+pkg syscall (freebsd-arm), const IFT_VOICEEM ideal-int
+pkg syscall (freebsd-arm), const IFT_VOICEENCAP ideal-int
+pkg syscall (freebsd-arm), const IFT_VOICEFXO ideal-int
+pkg syscall (freebsd-arm), const IFT_VOICEFXS ideal-int
+pkg syscall (freebsd-arm), const IFT_VOICEOVERATM ideal-int
+pkg syscall (freebsd-arm), const IFT_VOICEOVERFRAMERELAY ideal-int
+pkg syscall (freebsd-arm), const IFT_VOICEOVERIP ideal-int
+pkg syscall (freebsd-arm), const IFT_X213 ideal-int
+pkg syscall (freebsd-arm), const IFT_X25 ideal-int
+pkg syscall (freebsd-arm), const IFT_X25DDN ideal-int
+pkg syscall (freebsd-arm), const IFT_X25HUNTGROUP ideal-int
+pkg syscall (freebsd-arm), const IFT_X25MLP ideal-int
+pkg syscall (freebsd-arm), const IFT_X25PLE ideal-int
+pkg syscall (freebsd-arm), const IFT_XETHER ideal-int
+pkg syscall (freebsd-arm), const IGNBRK ideal-int
+pkg syscall (freebsd-arm), const IGNCR ideal-int
+pkg syscall (freebsd-arm), const IGNPAR ideal-int
+pkg syscall (freebsd-arm), const IMAXBEL ideal-int
+pkg syscall (freebsd-arm), const INLCR ideal-int
+pkg syscall (freebsd-arm), const INPCK ideal-int
+pkg syscall (freebsd-arm), const IN_CLASSA_HOST ideal-int
+pkg syscall (freebsd-arm), const IN_CLASSA_MAX ideal-int
+pkg syscall (freebsd-arm), const IN_CLASSA_NET ideal-int
+pkg syscall (freebsd-arm), const IN_CLASSA_NSHIFT ideal-int
+pkg syscall (freebsd-arm), const IN_CLASSB_HOST ideal-int
+pkg syscall (freebsd-arm), const IN_CLASSB_MAX ideal-int
+pkg syscall (freebsd-arm), const IN_CLASSB_NET ideal-int
+pkg syscall (freebsd-arm), const IN_CLASSB_NSHIFT ideal-int
+pkg syscall (freebsd-arm), const IN_CLASSC_HOST ideal-int
+pkg syscall (freebsd-arm), const IN_CLASSC_NET ideal-int
+pkg syscall (freebsd-arm), const IN_CLASSC_NSHIFT ideal-int
+pkg syscall (freebsd-arm), const IN_CLASSD_HOST ideal-int
+pkg syscall (freebsd-arm), const IN_CLASSD_NET ideal-int
+pkg syscall (freebsd-arm), const IN_CLASSD_NSHIFT ideal-int
+pkg syscall (freebsd-arm), const IN_LOOPBACKNET ideal-int
+pkg syscall (freebsd-arm), const IN_RFC3021_MASK ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_3PC ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_ADFS ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_AH ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_AHIP ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_APES ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_ARGUS ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_AX25 ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_BHA ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_BLT ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_BRSATMON ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_CARP ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_CFTP ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_CHAOS ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_CMTP ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_CPHB ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_CPNX ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_DDP ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_DGP ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_DIVERT ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_DONE ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_DSTOPTS ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_EGP ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_EMCON ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_ENCAP ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_EON ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_ESP ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_ETHERIP ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_FRAGMENT ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_GGP ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_GMTP ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_GRE ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_HELLO ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_HMP ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_HOPOPTS ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_ICMP ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_ICMPV6 ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_IDP ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_IDPR ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_IDRP ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_IGMP ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_IGP ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_IGRP ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_IL ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_INLSP ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_INP ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_IPCOMP ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_IPCV ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_IPEIP ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_IPIP ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_IPPC ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_IPV4 ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_IRTP ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_KRYPTOLAN ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_LARP ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_LEAF1 ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_LEAF2 ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_MAX ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_MAXID ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_MEAS ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_MH ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_MHRP ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_MICP ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_MOBILE ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_MPLS ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_MTP ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_MUX ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_ND ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_NHRP ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_NONE ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_NSP ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_NVPII ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_OLD_DIVERT ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_OSPFIGP ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_PFSYNC ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_PGM ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_PIGP ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_PIM ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_PRM ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_PUP ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_PVP ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_RAW ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_RCCMON ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_RDP ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_ROUTING ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_RSVP ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_RVD ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_SATEXPAK ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_SATMON ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_SCCSP ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_SCTP ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_SDRP ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_SEND ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_SEP ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_SKIP ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_SPACER ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_SRPC ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_ST ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_SVMTP ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_SWIPE ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_TCF ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_TLSP ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_TP ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_TPXX ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_TRUNK1 ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_TRUNK2 ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_TTP ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_VINES ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_VISA ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_VMTP ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_WBEXPAK ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_WBMON ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_WSN ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_XNET ideal-int
+pkg syscall (freebsd-arm), const IPPROTO_XTP ideal-int
+pkg syscall (freebsd-arm), const IPV6_AUTOFLOWLABEL ideal-int
+pkg syscall (freebsd-arm), const IPV6_BINDANY ideal-int
+pkg syscall (freebsd-arm), const IPV6_BINDV6ONLY ideal-int
+pkg syscall (freebsd-arm), const IPV6_CHECKSUM ideal-int
+pkg syscall (freebsd-arm), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int
+pkg syscall (freebsd-arm), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int
+pkg syscall (freebsd-arm), const IPV6_DEFHLIM ideal-int
+pkg syscall (freebsd-arm), const IPV6_DONTFRAG ideal-int
+pkg syscall (freebsd-arm), const IPV6_DSTOPTS ideal-int
+pkg syscall (freebsd-arm), const IPV6_FAITH ideal-int
+pkg syscall (freebsd-arm), const IPV6_FLOWINFO_MASK ideal-int
+pkg syscall (freebsd-arm), const IPV6_FLOWLABEL_MASK ideal-int
+pkg syscall (freebsd-arm), const IPV6_FRAGTTL ideal-int
+pkg syscall (freebsd-arm), const IPV6_FW_ADD ideal-int
+pkg syscall (freebsd-arm), const IPV6_FW_DEL ideal-int
+pkg syscall (freebsd-arm), const IPV6_FW_FLUSH ideal-int
+pkg syscall (freebsd-arm), const IPV6_FW_GET ideal-int
+pkg syscall (freebsd-arm), const IPV6_FW_ZERO ideal-int
+pkg syscall (freebsd-arm), const IPV6_HLIMDEC ideal-int
+pkg syscall (freebsd-arm), const IPV6_HOPLIMIT ideal-int
+pkg syscall (freebsd-arm), const IPV6_HOPOPTS ideal-int
+pkg syscall (freebsd-arm), const IPV6_IPSEC_POLICY ideal-int
+pkg syscall (freebsd-arm), const IPV6_MAXHLIM ideal-int
+pkg syscall (freebsd-arm), const IPV6_MAXOPTHDR ideal-int
+pkg syscall (freebsd-arm), const IPV6_MAXPACKET ideal-int
+pkg syscall (freebsd-arm), const IPV6_MAX_GROUP_SRC_FILTER ideal-int
+pkg syscall (freebsd-arm), const IPV6_MAX_MEMBERSHIPS ideal-int
+pkg syscall (freebsd-arm), const IPV6_MAX_SOCK_SRC_FILTER ideal-int
+pkg syscall (freebsd-arm), const IPV6_MIN_MEMBERSHIPS ideal-int
+pkg syscall (freebsd-arm), const IPV6_MMTU ideal-int
+pkg syscall (freebsd-arm), const IPV6_MSFILTER ideal-int
+pkg syscall (freebsd-arm), const IPV6_NEXTHOP ideal-int
+pkg syscall (freebsd-arm), const IPV6_PATHMTU ideal-int
+pkg syscall (freebsd-arm), const IPV6_PKTINFO ideal-int
+pkg syscall (freebsd-arm), const IPV6_PORTRANGE ideal-int
+pkg syscall (freebsd-arm), const IPV6_PORTRANGE_DEFAULT ideal-int
+pkg syscall (freebsd-arm), const IPV6_PORTRANGE_HIGH ideal-int
+pkg syscall (freebsd-arm), const IPV6_PORTRANGE_LOW ideal-int
+pkg syscall (freebsd-arm), const IPV6_PREFER_TEMPADDR ideal-int
+pkg syscall (freebsd-arm), const IPV6_RECVDSTOPTS ideal-int
+pkg syscall (freebsd-arm), const IPV6_RECVHOPLIMIT ideal-int
+pkg syscall (freebsd-arm), const IPV6_RECVHOPOPTS ideal-int
+pkg syscall (freebsd-arm), const IPV6_RECVPATHMTU ideal-int
+pkg syscall (freebsd-arm), const IPV6_RECVPKTINFO ideal-int
+pkg syscall (freebsd-arm), const IPV6_RECVRTHDR ideal-int
+pkg syscall (freebsd-arm), const IPV6_RECVTCLASS ideal-int
+pkg syscall (freebsd-arm), const IPV6_RTHDR ideal-int
+pkg syscall (freebsd-arm), const IPV6_RTHDRDSTOPTS ideal-int
+pkg syscall (freebsd-arm), const IPV6_RTHDR_LOOSE ideal-int
+pkg syscall (freebsd-arm), const IPV6_RTHDR_STRICT ideal-int
+pkg syscall (freebsd-arm), const IPV6_RTHDR_TYPE_0 ideal-int
+pkg syscall (freebsd-arm), const IPV6_SOCKOPT_RESERVED1 ideal-int
+pkg syscall (freebsd-arm), const IPV6_TCLASS ideal-int
+pkg syscall (freebsd-arm), const IPV6_USE_MIN_MTU ideal-int
+pkg syscall (freebsd-arm), const IPV6_VERSION ideal-int
+pkg syscall (freebsd-arm), const IPV6_VERSION_MASK ideal-int
+pkg syscall (freebsd-arm), const IP_ADD_SOURCE_MEMBERSHIP ideal-int
+pkg syscall (freebsd-arm), const IP_BINDANY ideal-int
+pkg syscall (freebsd-arm), const IP_BLOCK_SOURCE ideal-int
+pkg syscall (freebsd-arm), const IP_DEFAULT_MULTICAST_LOOP ideal-int
+pkg syscall (freebsd-arm), const IP_DEFAULT_MULTICAST_TTL ideal-int
+pkg syscall (freebsd-arm), const IP_DF ideal-int
+pkg syscall (freebsd-arm), const IP_DONTFRAG ideal-int
+pkg syscall (freebsd-arm), const IP_DROP_SOURCE_MEMBERSHIP ideal-int
+pkg syscall (freebsd-arm), const IP_DUMMYNET3 ideal-int
+pkg syscall (freebsd-arm), const IP_DUMMYNET_CONFIGURE ideal-int
+pkg syscall (freebsd-arm), const IP_DUMMYNET_DEL ideal-int
+pkg syscall (freebsd-arm), const IP_DUMMYNET_FLUSH ideal-int
+pkg syscall (freebsd-arm), const IP_DUMMYNET_GET ideal-int
+pkg syscall (freebsd-arm), const IP_FAITH ideal-int
+pkg syscall (freebsd-arm), const IP_FW3 ideal-int
+pkg syscall (freebsd-arm), const IP_FW_ADD ideal-int
+pkg syscall (freebsd-arm), const IP_FW_DEL ideal-int
+pkg syscall (freebsd-arm), const IP_FW_FLUSH ideal-int
+pkg syscall (freebsd-arm), const IP_FW_GET ideal-int
+pkg syscall (freebsd-arm), const IP_FW_NAT_CFG ideal-int
+pkg syscall (freebsd-arm), const IP_FW_NAT_DEL ideal-int
+pkg syscall (freebsd-arm), const IP_FW_NAT_GET_CONFIG ideal-int
+pkg syscall (freebsd-arm), const IP_FW_NAT_GET_LOG ideal-int
+pkg syscall (freebsd-arm), const IP_FW_RESETLOG ideal-int
+pkg syscall (freebsd-arm), const IP_FW_TABLE_ADD ideal-int
+pkg syscall (freebsd-arm), const IP_FW_TABLE_DEL ideal-int
+pkg syscall (freebsd-arm), const IP_FW_TABLE_FLUSH ideal-int
+pkg syscall (freebsd-arm), const IP_FW_TABLE_GETSIZE ideal-int
+pkg syscall (freebsd-arm), const IP_FW_TABLE_LIST ideal-int
+pkg syscall (freebsd-arm), const IP_FW_ZERO ideal-int
+pkg syscall (freebsd-arm), const IP_HDRINCL ideal-int
+pkg syscall (freebsd-arm), const IP_IPSEC_POLICY ideal-int
+pkg syscall (freebsd-arm), const IP_MAXPACKET ideal-int
+pkg syscall (freebsd-arm), const IP_MAX_GROUP_SRC_FILTER ideal-int
+pkg syscall (freebsd-arm), const IP_MAX_MEMBERSHIPS ideal-int
+pkg syscall (freebsd-arm), const IP_MAX_SOCK_MUTE_FILTER ideal-int
+pkg syscall (freebsd-arm), const IP_MAX_SOCK_SRC_FILTER ideal-int
+pkg syscall (freebsd-arm), const IP_MAX_SOURCE_FILTER ideal-int
+pkg syscall (freebsd-arm), const IP_MF ideal-int
+pkg syscall (freebsd-arm), const IP_MINTTL ideal-int
+pkg syscall (freebsd-arm), const IP_MIN_MEMBERSHIPS ideal-int
+pkg syscall (freebsd-arm), const IP_MSFILTER ideal-int
+pkg syscall (freebsd-arm), const IP_MSS ideal-int
+pkg syscall (freebsd-arm), const IP_MULTICAST_VIF ideal-int
+pkg syscall (freebsd-arm), const IP_OFFMASK ideal-int
+pkg syscall (freebsd-arm), const IP_ONESBCAST ideal-int
+pkg syscall (freebsd-arm), const IP_OPTIONS ideal-int
+pkg syscall (freebsd-arm), const IP_PORTRANGE ideal-int
+pkg syscall (freebsd-arm), const IP_PORTRANGE_DEFAULT ideal-int
+pkg syscall (freebsd-arm), const IP_PORTRANGE_HIGH ideal-int
+pkg syscall (freebsd-arm), const IP_PORTRANGE_LOW ideal-int
+pkg syscall (freebsd-arm), const IP_RECVDSTADDR ideal-int
+pkg syscall (freebsd-arm), const IP_RECVIF ideal-int
+pkg syscall (freebsd-arm), const IP_RECVOPTS ideal-int
+pkg syscall (freebsd-arm), const IP_RECVRETOPTS ideal-int
+pkg syscall (freebsd-arm), const IP_RECVTOS ideal-int
+pkg syscall (freebsd-arm), const IP_RECVTTL ideal-int
+pkg syscall (freebsd-arm), const IP_RETOPTS ideal-int
+pkg syscall (freebsd-arm), const IP_RF ideal-int
+pkg syscall (freebsd-arm), const IP_RSVP_OFF ideal-int
+pkg syscall (freebsd-arm), const IP_RSVP_ON ideal-int
+pkg syscall (freebsd-arm), const IP_RSVP_VIF_OFF ideal-int
+pkg syscall (freebsd-arm), const IP_RSVP_VIF_ON ideal-int
+pkg syscall (freebsd-arm), const IP_SENDSRCADDR ideal-int
+pkg syscall (freebsd-arm), const IP_UNBLOCK_SOURCE ideal-int
+pkg syscall (freebsd-arm), const ISIG ideal-int
+pkg syscall (freebsd-arm), const ISTRIP ideal-int
+pkg syscall (freebsd-arm), const IXANY ideal-int
+pkg syscall (freebsd-arm), const IXOFF ideal-int
+pkg syscall (freebsd-arm), const IXON ideal-int
+pkg syscall (freebsd-arm), const LOCK_EX ideal-int
+pkg syscall (freebsd-arm), const LOCK_NB ideal-int
+pkg syscall (freebsd-arm), const LOCK_SH ideal-int
+pkg syscall (freebsd-arm), const LOCK_UN ideal-int
+pkg syscall (freebsd-arm), const MADV_AUTOSYNC ideal-int
+pkg syscall (freebsd-arm), const MADV_CORE ideal-int
+pkg syscall (freebsd-arm), const MADV_DONTNEED ideal-int
+pkg syscall (freebsd-arm), const MADV_FREE ideal-int
+pkg syscall (freebsd-arm), const MADV_NOCORE ideal-int
+pkg syscall (freebsd-arm), const MADV_NORMAL ideal-int
+pkg syscall (freebsd-arm), const MADV_NOSYNC ideal-int
+pkg syscall (freebsd-arm), const MADV_PROTECT ideal-int
+pkg syscall (freebsd-arm), const MADV_RANDOM ideal-int
+pkg syscall (freebsd-arm), const MADV_SEQUENTIAL ideal-int
+pkg syscall (freebsd-arm), const MADV_WILLNEED ideal-int
+pkg syscall (freebsd-arm), const MAP_ANON ideal-int
+pkg syscall (freebsd-arm), const MAP_ANONYMOUS ideal-int
+pkg syscall (freebsd-arm), const MAP_COPY ideal-int
+pkg syscall (freebsd-arm), const MAP_FILE ideal-int
+pkg syscall (freebsd-arm), const MAP_FIXED ideal-int
+pkg syscall (freebsd-arm), const MAP_HASSEMAPHORE ideal-int
+pkg syscall (freebsd-arm), const MAP_NOCORE ideal-int
+pkg syscall (freebsd-arm), const MAP_NORESERVE ideal-int
+pkg syscall (freebsd-arm), const MAP_NOSYNC ideal-int
+pkg syscall (freebsd-arm), const MAP_PREFAULT_READ ideal-int
+pkg syscall (freebsd-arm), const MAP_PRIVATE ideal-int
+pkg syscall (freebsd-arm), const MAP_RENAME ideal-int
+pkg syscall (freebsd-arm), const MAP_RESERVED0080 ideal-int
+pkg syscall (freebsd-arm), const MAP_RESERVED0100 ideal-int
+pkg syscall (freebsd-arm), const MAP_SHARED ideal-int
+pkg syscall (freebsd-arm), const MAP_STACK ideal-int
+pkg syscall (freebsd-arm), const MCL_CURRENT ideal-int
+pkg syscall (freebsd-arm), const MCL_FUTURE ideal-int
+pkg syscall (freebsd-arm), const MSG_COMPAT ideal-int
+pkg syscall (freebsd-arm), const MSG_CTRUNC ideal-int
+pkg syscall (freebsd-arm), const MSG_DONTROUTE ideal-int
+pkg syscall (freebsd-arm), const MSG_DONTWAIT ideal-int
+pkg syscall (freebsd-arm), const MSG_EOF ideal-int
+pkg syscall (freebsd-arm), const MSG_EOR ideal-int
+pkg syscall (freebsd-arm), const MSG_NBIO ideal-int
+pkg syscall (freebsd-arm), const MSG_NOSIGNAL ideal-int
+pkg syscall (freebsd-arm), const MSG_NOTIFICATION ideal-int
+pkg syscall (freebsd-arm), const MSG_OOB ideal-int
+pkg syscall (freebsd-arm), const MSG_PEEK ideal-int
+pkg syscall (freebsd-arm), const MSG_TRUNC ideal-int
+pkg syscall (freebsd-arm), const MSG_WAITALL ideal-int
+pkg syscall (freebsd-arm), const MS_ASYNC ideal-int
+pkg syscall (freebsd-arm), const MS_INVALIDATE ideal-int
+pkg syscall (freebsd-arm), const MS_SYNC ideal-int
+pkg syscall (freebsd-arm), const NET_RT_DUMP ideal-int
+pkg syscall (freebsd-arm), const NET_RT_FLAGS ideal-int
+pkg syscall (freebsd-arm), const NET_RT_IFLIST ideal-int
+pkg syscall (freebsd-arm), const NET_RT_IFLISTL ideal-int
+pkg syscall (freebsd-arm), const NET_RT_IFMALIST ideal-int
+pkg syscall (freebsd-arm), const NET_RT_MAXID ideal-int
+pkg syscall (freebsd-arm), const NOFLSH ideal-int
+pkg syscall (freebsd-arm), const NOTE_ATTRIB ideal-int
+pkg syscall (freebsd-arm), const NOTE_CHILD ideal-int
+pkg syscall (freebsd-arm), const NOTE_DELETE ideal-int
+pkg syscall (freebsd-arm), const NOTE_EXEC ideal-int
+pkg syscall (freebsd-arm), const NOTE_EXIT ideal-int
+pkg syscall (freebsd-arm), const NOTE_EXTEND ideal-int
+pkg syscall (freebsd-arm), const NOTE_FFAND ideal-int
+pkg syscall (freebsd-arm), const NOTE_FFCOPY ideal-int
+pkg syscall (freebsd-arm), const NOTE_FFCTRLMASK ideal-int
+pkg syscall (freebsd-arm), const NOTE_FFLAGSMASK ideal-int
+pkg syscall (freebsd-arm), const NOTE_FFNOP ideal-int
+pkg syscall (freebsd-arm), const NOTE_FFOR ideal-int
+pkg syscall (freebsd-arm), const NOTE_FORK ideal-int
+pkg syscall (freebsd-arm), const NOTE_LINK ideal-int
+pkg syscall (freebsd-arm), const NOTE_LOWAT ideal-int
+pkg syscall (freebsd-arm), const NOTE_PCTRLMASK ideal-int
+pkg syscall (freebsd-arm), const NOTE_PDATAMASK ideal-int
+pkg syscall (freebsd-arm), const NOTE_RENAME ideal-int
+pkg syscall (freebsd-arm), const NOTE_REVOKE ideal-int
+pkg syscall (freebsd-arm), const NOTE_TRACK ideal-int
+pkg syscall (freebsd-arm), const NOTE_TRACKERR ideal-int
+pkg syscall (freebsd-arm), const NOTE_TRIGGER ideal-int
+pkg syscall (freebsd-arm), const NOTE_WRITE ideal-int
+pkg syscall (freebsd-arm), const OCRNL ideal-int
+pkg syscall (freebsd-arm), const ONLCR ideal-int
+pkg syscall (freebsd-arm), const ONLRET ideal-int
+pkg syscall (freebsd-arm), const ONOCR ideal-int
+pkg syscall (freebsd-arm), const ONOEOT ideal-int
+pkg syscall (freebsd-arm), const OPOST ideal-int
+pkg syscall (freebsd-arm), const O_ACCMODE ideal-int
+pkg syscall (freebsd-arm), const O_DIRECT ideal-int
+pkg syscall (freebsd-arm), const O_DIRECTORY ideal-int
+pkg syscall (freebsd-arm), const O_EXEC ideal-int
+pkg syscall (freebsd-arm), const O_EXLOCK ideal-int
+pkg syscall (freebsd-arm), const O_FSYNC ideal-int
+pkg syscall (freebsd-arm), const O_NDELAY ideal-int
+pkg syscall (freebsd-arm), const O_NOFOLLOW ideal-int
+pkg syscall (freebsd-arm), const O_SHLOCK ideal-int
+pkg syscall (freebsd-arm), const O_TTY_INIT ideal-int
+pkg syscall (freebsd-arm), const PARENB ideal-int
+pkg syscall (freebsd-arm), const PARMRK ideal-int
+pkg syscall (freebsd-arm), const PARODD ideal-int
+pkg syscall (freebsd-arm), const PENDIN ideal-int
+pkg syscall (freebsd-arm), const PRIO_PGRP = 1
+pkg syscall (freebsd-arm), const PRIO_PGRP ideal-int
+pkg syscall (freebsd-arm), const PRIO_PROCESS = 0
+pkg syscall (freebsd-arm), const PRIO_PROCESS ideal-int
+pkg syscall (freebsd-arm), const PRIO_USER = 2
+pkg syscall (freebsd-arm), const PRIO_USER ideal-int
+pkg syscall (freebsd-arm), const PROT_EXEC ideal-int
+pkg syscall (freebsd-arm), const PROT_NONE ideal-int
+pkg syscall (freebsd-arm), const PROT_READ ideal-int
+pkg syscall (freebsd-arm), const PROT_WRITE ideal-int
+pkg syscall (freebsd-arm), const PTRACE_CONT ideal-int
+pkg syscall (freebsd-arm), const PTRACE_KILL ideal-int
+pkg syscall (freebsd-arm), const PTRACE_TRACEME ideal-int
+pkg syscall (freebsd-arm), const RLIMIT_AS ideal-int
+pkg syscall (freebsd-arm), const RLIMIT_CORE ideal-int
+pkg syscall (freebsd-arm), const RLIMIT_CPU ideal-int
+pkg syscall (freebsd-arm), const RLIMIT_DATA ideal-int
+pkg syscall (freebsd-arm), const RLIMIT_FSIZE ideal-int
+pkg syscall (freebsd-arm), const RLIMIT_NOFILE ideal-int
+pkg syscall (freebsd-arm), const RLIMIT_STACK ideal-int
+pkg syscall (freebsd-arm), const RLIM_INFINITY ideal-int
+pkg syscall (freebsd-arm), const RTAX_AUTHOR ideal-int
+pkg syscall (freebsd-arm), const RTAX_BRD ideal-int
+pkg syscall (freebsd-arm), const RTAX_DST ideal-int
+pkg syscall (freebsd-arm), const RTAX_GATEWAY ideal-int
+pkg syscall (freebsd-arm), const RTAX_GENMASK ideal-int
+pkg syscall (freebsd-arm), const RTAX_IFA ideal-int
+pkg syscall (freebsd-arm), const RTAX_IFP ideal-int
+pkg syscall (freebsd-arm), const RTAX_MAX ideal-int
+pkg syscall (freebsd-arm), const RTAX_NETMASK ideal-int
+pkg syscall (freebsd-arm), const RTA_AUTHOR ideal-int
+pkg syscall (freebsd-arm), const RTA_BRD ideal-int
+pkg syscall (freebsd-arm), const RTA_DST ideal-int
+pkg syscall (freebsd-arm), const RTA_GATEWAY ideal-int
+pkg syscall (freebsd-arm), const RTA_GENMASK ideal-int
+pkg syscall (freebsd-arm), const RTA_IFA ideal-int
+pkg syscall (freebsd-arm), const RTA_IFP ideal-int
+pkg syscall (freebsd-arm), const RTA_NETMASK ideal-int
+pkg syscall (freebsd-arm), const RTF_BLACKHOLE ideal-int
+pkg syscall (freebsd-arm), const RTF_BROADCAST ideal-int
+pkg syscall (freebsd-arm), const RTF_DONE ideal-int
+pkg syscall (freebsd-arm), const RTF_DYNAMIC ideal-int
+pkg syscall (freebsd-arm), const RTF_FMASK ideal-int
+pkg syscall (freebsd-arm), const RTF_GATEWAY ideal-int
+pkg syscall (freebsd-arm), const RTF_HOST ideal-int
+pkg syscall (freebsd-arm), const RTF_LLDATA ideal-int
+pkg syscall (freebsd-arm), const RTF_LLINFO ideal-int
+pkg syscall (freebsd-arm), const RTF_LOCAL ideal-int
+pkg syscall (freebsd-arm), const RTF_MODIFIED ideal-int
+pkg syscall (freebsd-arm), const RTF_MULTICAST ideal-int
+pkg syscall (freebsd-arm), const RTF_PINNED ideal-int
+pkg syscall (freebsd-arm), const RTF_PRCLONING ideal-int
+pkg syscall (freebsd-arm), const RTF_PROTO1 ideal-int
+pkg syscall (freebsd-arm), const RTF_PROTO2 ideal-int
+pkg syscall (freebsd-arm), const RTF_PROTO3 ideal-int
+pkg syscall (freebsd-arm), const RTF_REJECT ideal-int
+pkg syscall (freebsd-arm), const RTF_RNH_LOCKED ideal-int
+pkg syscall (freebsd-arm), const RTF_STATIC ideal-int
+pkg syscall (freebsd-arm), const RTF_STICKY ideal-int
+pkg syscall (freebsd-arm), const RTF_UP ideal-int
+pkg syscall (freebsd-arm), const RTF_XRESOLVE ideal-int
+pkg syscall (freebsd-arm), const RTM_ADD ideal-int
+pkg syscall (freebsd-arm), const RTM_CHANGE ideal-int
+pkg syscall (freebsd-arm), const RTM_DELADDR ideal-int
+pkg syscall (freebsd-arm), const RTM_DELETE ideal-int
+pkg syscall (freebsd-arm), const RTM_DELMADDR ideal-int
+pkg syscall (freebsd-arm), const RTM_GET ideal-int
+pkg syscall (freebsd-arm), const RTM_IEEE80211 ideal-int
+pkg syscall (freebsd-arm), const RTM_IFANNOUNCE ideal-int
+pkg syscall (freebsd-arm), const RTM_IFINFO ideal-int
+pkg syscall (freebsd-arm), const RTM_LOCK ideal-int
+pkg syscall (freebsd-arm), const RTM_LOSING ideal-int
+pkg syscall (freebsd-arm), const RTM_MISS ideal-int
+pkg syscall (freebsd-arm), const RTM_NEWADDR ideal-int
+pkg syscall (freebsd-arm), const RTM_NEWMADDR ideal-int
+pkg syscall (freebsd-arm), const RTM_OLDADD ideal-int
+pkg syscall (freebsd-arm), const RTM_OLDDEL ideal-int
+pkg syscall (freebsd-arm), const RTM_REDIRECT ideal-int
+pkg syscall (freebsd-arm), const RTM_RESOLVE ideal-int
+pkg syscall (freebsd-arm), const RTM_RTTUNIT ideal-int
+pkg syscall (freebsd-arm), const RTM_VERSION ideal-int
+pkg syscall (freebsd-arm), const RTV_EXPIRE ideal-int
+pkg syscall (freebsd-arm), const RTV_HOPCOUNT ideal-int
+pkg syscall (freebsd-arm), const RTV_MTU ideal-int
+pkg syscall (freebsd-arm), const RTV_RPIPE ideal-int
+pkg syscall (freebsd-arm), const RTV_RTT ideal-int
+pkg syscall (freebsd-arm), const RTV_RTTVAR ideal-int
+pkg syscall (freebsd-arm), const RTV_SPIPE ideal-int
+pkg syscall (freebsd-arm), const RTV_SSTHRESH ideal-int
+pkg syscall (freebsd-arm), const RTV_WEIGHT ideal-int
+pkg syscall (freebsd-arm), const RT_CACHING_CONTEXT ideal-int
+pkg syscall (freebsd-arm), const RT_DEFAULT_FIB ideal-int
+pkg syscall (freebsd-arm), const RT_NORTREF ideal-int
+pkg syscall (freebsd-arm), const RUSAGE_CHILDREN ideal-int
+pkg syscall (freebsd-arm), const RUSAGE_SELF ideal-int
+pkg syscall (freebsd-arm), const RUSAGE_THREAD ideal-int
+pkg syscall (freebsd-arm), const SCM_BINTIME ideal-int
+pkg syscall (freebsd-arm), const SCM_CREDS ideal-int
+pkg syscall (freebsd-arm), const SCM_RIGHTS ideal-int
+pkg syscall (freebsd-arm), const SCM_TIMESTAMP ideal-int
+pkg syscall (freebsd-arm), const SIGCHLD Signal
+pkg syscall (freebsd-arm), const SIGCONT Signal
+pkg syscall (freebsd-arm), const SIGEMT Signal
+pkg syscall (freebsd-arm), const SIGINFO Signal
+pkg syscall (freebsd-arm), const SIGIO Signal
+pkg syscall (freebsd-arm), const SIGIOT Signal
+pkg syscall (freebsd-arm), const SIGLIBRT Signal
+pkg syscall (freebsd-arm), const SIGLWP Signal
+pkg syscall (freebsd-arm), const SIGPROF Signal
+pkg syscall (freebsd-arm), const SIGSTOP Signal
+pkg syscall (freebsd-arm), const SIGSYS Signal
+pkg syscall (freebsd-arm), const SIGTHR Signal
+pkg syscall (freebsd-arm), const SIGTSTP Signal
+pkg syscall (freebsd-arm), const SIGTTIN Signal
+pkg syscall (freebsd-arm), const SIGTTOU Signal
+pkg syscall (freebsd-arm), const SIGURG Signal
+pkg syscall (freebsd-arm), const SIGUSR1 Signal
+pkg syscall (freebsd-arm), const SIGUSR2 Signal
+pkg syscall (freebsd-arm), const SIGVTALRM Signal
+pkg syscall (freebsd-arm), const SIGWINCH Signal
+pkg syscall (freebsd-arm), const SIGXCPU Signal
+pkg syscall (freebsd-arm), const SIGXFSZ Signal
+pkg syscall (freebsd-arm), const SIOCADDMULTI ideal-int
+pkg syscall (freebsd-arm), const SIOCADDRT ideal-int
+pkg syscall (freebsd-arm), const SIOCAIFADDR ideal-int
+pkg syscall (freebsd-arm), const SIOCAIFGROUP ideal-int
+pkg syscall (freebsd-arm), const SIOCALIFADDR ideal-int
+pkg syscall (freebsd-arm), const SIOCATMARK ideal-int
+pkg syscall (freebsd-arm), const SIOCDELMULTI ideal-int
+pkg syscall (freebsd-arm), const SIOCDELRT ideal-int
+pkg syscall (freebsd-arm), const SIOCDIFADDR ideal-int
+pkg syscall (freebsd-arm), const SIOCDIFGROUP ideal-int
+pkg syscall (freebsd-arm), const SIOCDIFPHYADDR ideal-int
+pkg syscall (freebsd-arm), const SIOCDLIFADDR ideal-int
+pkg syscall (freebsd-arm), const SIOCGDRVSPEC ideal-int
+pkg syscall (freebsd-arm), const SIOCGETSGCNT ideal-int
+pkg syscall (freebsd-arm), const SIOCGETVIFCNT ideal-int
+pkg syscall (freebsd-arm), const SIOCGHIWAT ideal-int
+pkg syscall (freebsd-arm), const SIOCGIFADDR ideal-int
+pkg syscall (freebsd-arm), const SIOCGIFBRDADDR ideal-int
+pkg syscall (freebsd-arm), const SIOCGIFCAP ideal-int
+pkg syscall (freebsd-arm), const SIOCGIFCONF ideal-int
+pkg syscall (freebsd-arm), const SIOCGIFDESCR ideal-int
+pkg syscall (freebsd-arm), const SIOCGIFDSTADDR ideal-int
+pkg syscall (freebsd-arm), const SIOCGIFFIB ideal-int
+pkg syscall (freebsd-arm), const SIOCGIFFLAGS ideal-int
+pkg syscall (freebsd-arm), const SIOCGIFGENERIC ideal-int
+pkg syscall (freebsd-arm), const SIOCGIFGMEMB ideal-int
+pkg syscall (freebsd-arm), const SIOCGIFGROUP ideal-int
+pkg syscall (freebsd-arm), const SIOCGIFINDEX ideal-int
+pkg syscall (freebsd-arm), const SIOCGIFMAC ideal-int
+pkg syscall (freebsd-arm), const SIOCGIFMEDIA ideal-int
+pkg syscall (freebsd-arm), const SIOCGIFMETRIC ideal-int
+pkg syscall (freebsd-arm), const SIOCGIFMTU ideal-int
+pkg syscall (freebsd-arm), const SIOCGIFNETMASK ideal-int
+pkg syscall (freebsd-arm), const SIOCGIFPDSTADDR ideal-int
+pkg syscall (freebsd-arm), const SIOCGIFPHYS ideal-int
+pkg syscall (freebsd-arm), const SIOCGIFPSRCADDR ideal-int
+pkg syscall (freebsd-arm), const SIOCGIFSTATUS ideal-int
+pkg syscall (freebsd-arm), const SIOCGLIFADDR ideal-int
+pkg syscall (freebsd-arm), const SIOCGLIFPHYADDR ideal-int
+pkg syscall (freebsd-arm), const SIOCGLOWAT ideal-int
+pkg syscall (freebsd-arm), const SIOCGPGRP ideal-int
+pkg syscall (freebsd-arm), const SIOCGPRIVATE_0 ideal-int
+pkg syscall (freebsd-arm), const SIOCGPRIVATE_1 ideal-int
+pkg syscall (freebsd-arm), const SIOCIFCREATE ideal-int
+pkg syscall (freebsd-arm), const SIOCIFCREATE2 ideal-int
+pkg syscall (freebsd-arm), const SIOCIFDESTROY ideal-int
+pkg syscall (freebsd-arm), const SIOCIFGCLONERS ideal-int
+pkg syscall (freebsd-arm), const SIOCSDRVSPEC ideal-int
+pkg syscall (freebsd-arm), const SIOCSHIWAT ideal-int
+pkg syscall (freebsd-arm), const SIOCSIFADDR ideal-int
+pkg syscall (freebsd-arm), const SIOCSIFBRDADDR ideal-int
+pkg syscall (freebsd-arm), const SIOCSIFCAP ideal-int
+pkg syscall (freebsd-arm), const SIOCSIFDESCR ideal-int
+pkg syscall (freebsd-arm), const SIOCSIFDSTADDR ideal-int
+pkg syscall (freebsd-arm), const SIOCSIFFIB ideal-int
+pkg syscall (freebsd-arm), const SIOCSIFFLAGS ideal-int
+pkg syscall (freebsd-arm), const SIOCSIFGENERIC ideal-int
+pkg syscall (freebsd-arm), const SIOCSIFLLADDR ideal-int
+pkg syscall (freebsd-arm), const SIOCSIFMAC ideal-int
+pkg syscall (freebsd-arm), const SIOCSIFMEDIA ideal-int
+pkg syscall (freebsd-arm), const SIOCSIFMETRIC ideal-int
+pkg syscall (freebsd-arm), const SIOCSIFMTU ideal-int
+pkg syscall (freebsd-arm), const SIOCSIFNAME ideal-int
+pkg syscall (freebsd-arm), const SIOCSIFNETMASK ideal-int
+pkg syscall (freebsd-arm), const SIOCSIFPHYADDR ideal-int
+pkg syscall (freebsd-arm), const SIOCSIFPHYS ideal-int
+pkg syscall (freebsd-arm), const SIOCSIFRVNET ideal-int
+pkg syscall (freebsd-arm), const SIOCSIFVNET ideal-int
+pkg syscall (freebsd-arm), const SIOCSLIFPHYADDR ideal-int
+pkg syscall (freebsd-arm), const SIOCSLOWAT ideal-int
+pkg syscall (freebsd-arm), const SIOCSPGRP ideal-int
+pkg syscall (freebsd-arm), const SOCK_MAXADDRLEN ideal-int
+pkg syscall (freebsd-arm), const SOCK_RDM ideal-int
+pkg syscall (freebsd-arm), const SO_ACCEPTCONN ideal-int
+pkg syscall (freebsd-arm), const SO_ACCEPTFILTER ideal-int
+pkg syscall (freebsd-arm), const SO_BINTIME ideal-int
+pkg syscall (freebsd-arm), const SO_DEBUG ideal-int
+pkg syscall (freebsd-arm), const SO_ERROR ideal-int
+pkg syscall (freebsd-arm), const SO_LABEL ideal-int
+pkg syscall (freebsd-arm), const SO_LISTENINCQLEN ideal-int
+pkg syscall (freebsd-arm), const SO_LISTENQLEN ideal-int
+pkg syscall (freebsd-arm), const SO_LISTENQLIMIT ideal-int
+pkg syscall (freebsd-arm), const SO_NOSIGPIPE ideal-int
+pkg syscall (freebsd-arm), const SO_NO_DDP ideal-int
+pkg syscall (freebsd-arm), const SO_NO_OFFLOAD ideal-int
+pkg syscall (freebsd-arm), const SO_OOBINLINE ideal-int
+pkg syscall (freebsd-arm), const SO_PEERLABEL ideal-int
+pkg syscall (freebsd-arm), const SO_PROTOCOL ideal-int
+pkg syscall (freebsd-arm), const SO_PROTOTYPE ideal-int
+pkg syscall (freebsd-arm), const SO_RCVLOWAT ideal-int
+pkg syscall (freebsd-arm), const SO_RCVTIMEO ideal-int
+pkg syscall (freebsd-arm), const SO_REUSEPORT ideal-int
+pkg syscall (freebsd-arm), const SO_SETFIB ideal-int
+pkg syscall (freebsd-arm), const SO_SNDLOWAT ideal-int
+pkg syscall (freebsd-arm), const SO_SNDTIMEO ideal-int
+pkg syscall (freebsd-arm), const SO_TIMESTAMP ideal-int
+pkg syscall (freebsd-arm), const SO_TYPE ideal-int
+pkg syscall (freebsd-arm), const SO_USELOOPBACK ideal-int
+pkg syscall (freebsd-arm), const SO_USER_COOKIE ideal-int
+pkg syscall (freebsd-arm), const SYS_ABORT2 ideal-int
+pkg syscall (freebsd-arm), const SYS_ACCEPT ideal-int
+pkg syscall (freebsd-arm), const SYS_ACCESS ideal-int
+pkg syscall (freebsd-arm), const SYS_ACCT ideal-int
+pkg syscall (freebsd-arm), const SYS_ADJTIME ideal-int
+pkg syscall (freebsd-arm), const SYS_AUDIT ideal-int
+pkg syscall (freebsd-arm), const SYS_AUDITCTL ideal-int
+pkg syscall (freebsd-arm), const SYS_AUDITON ideal-int
+pkg syscall (freebsd-arm), const SYS_BIND ideal-int
+pkg syscall (freebsd-arm), const SYS_CAP_ENTER ideal-int
+pkg syscall (freebsd-arm), const SYS_CAP_FCNTLS_GET ideal-int
+pkg syscall (freebsd-arm), const SYS_CAP_FCNTLS_LIMIT ideal-int
+pkg syscall (freebsd-arm), const SYS_CAP_GETMODE ideal-int
+pkg syscall (freebsd-arm), const SYS_CAP_IOCTLS_GET ideal-int
+pkg syscall (freebsd-arm), const SYS_CAP_IOCTLS_LIMIT ideal-int
+pkg syscall (freebsd-arm), const SYS_CAP_NEW ideal-int
+pkg syscall (freebsd-arm), const SYS_CAP_RIGHTS_GET ideal-int
+pkg syscall (freebsd-arm), const SYS_CAP_RIGHTS_LIMIT ideal-int
+pkg syscall (freebsd-arm), const SYS_CHDIR ideal-int
+pkg syscall (freebsd-arm), const SYS_CHFLAGS ideal-int
+pkg syscall (freebsd-arm), const SYS_CHMOD ideal-int
+pkg syscall (freebsd-arm), const SYS_CHOWN ideal-int
+pkg syscall (freebsd-arm), const SYS_CHROOT ideal-int
+pkg syscall (freebsd-arm), const SYS_CLOCK_GETCPUCLOCKID2 ideal-int
+pkg syscall (freebsd-arm), const SYS_CLOCK_GETRES ideal-int
+pkg syscall (freebsd-arm), const SYS_CLOCK_GETTIME ideal-int
+pkg syscall (freebsd-arm), const SYS_CLOCK_SETTIME ideal-int
+pkg syscall (freebsd-arm), const SYS_CLOSE ideal-int
+pkg syscall (freebsd-arm), const SYS_CLOSEFROM ideal-int
+pkg syscall (freebsd-arm), const SYS_CONNECT ideal-int
+pkg syscall (freebsd-arm), const SYS_CPUSET ideal-int
+pkg syscall (freebsd-arm), const SYS_CPUSET_GETAFFINITY ideal-int
+pkg syscall (freebsd-arm), const SYS_CPUSET_GETID ideal-int
+pkg syscall (freebsd-arm), const SYS_CPUSET_SETAFFINITY ideal-int
+pkg syscall (freebsd-arm), const SYS_CPUSET_SETID ideal-int
+pkg syscall (freebsd-arm), const SYS_DUP ideal-int
+pkg syscall (freebsd-arm), const SYS_DUP2 ideal-int
+pkg syscall (freebsd-arm), const SYS_EACCESS ideal-int
+pkg syscall (freebsd-arm), const SYS_EXECVE ideal-int
+pkg syscall (freebsd-arm), const SYS_EXIT ideal-int
+pkg syscall (freebsd-arm), const SYS_EXTATTRCTL ideal-int
+pkg syscall (freebsd-arm), const SYS_EXTATTR_DELETE_FD ideal-int
+pkg syscall (freebsd-arm), const SYS_EXTATTR_DELETE_FILE ideal-int
+pkg syscall (freebsd-arm), const SYS_EXTATTR_DELETE_LINK ideal-int
+pkg syscall (freebsd-arm), const SYS_EXTATTR_GET_FD ideal-int
+pkg syscall (freebsd-arm), const SYS_EXTATTR_GET_FILE ideal-int
+pkg syscall (freebsd-arm), const SYS_EXTATTR_GET_LINK ideal-int
+pkg syscall (freebsd-arm), const SYS_EXTATTR_LIST_FD ideal-int
+pkg syscall (freebsd-arm), const SYS_EXTATTR_LIST_FILE ideal-int
+pkg syscall (freebsd-arm), const SYS_EXTATTR_LIST_LINK ideal-int
+pkg syscall (freebsd-arm), const SYS_EXTATTR_SET_FD ideal-int
+pkg syscall (freebsd-arm), const SYS_EXTATTR_SET_FILE ideal-int
+pkg syscall (freebsd-arm), const SYS_EXTATTR_SET_LINK ideal-int
+pkg syscall (freebsd-arm), const SYS_FACCESSAT ideal-int
+pkg syscall (freebsd-arm), const SYS_FCHDIR ideal-int
+pkg syscall (freebsd-arm), const SYS_FCHFLAGS ideal-int
+pkg syscall (freebsd-arm), const SYS_FCHMOD ideal-int
+pkg syscall (freebsd-arm), const SYS_FCHMODAT ideal-int
+pkg syscall (freebsd-arm), const SYS_FCHOWN ideal-int
+pkg syscall (freebsd-arm), const SYS_FCHOWNAT ideal-int
+pkg syscall (freebsd-arm), const SYS_FCNTL ideal-int
+pkg syscall (freebsd-arm), const SYS_FEXECVE ideal-int
+pkg syscall (freebsd-arm), const SYS_FFCLOCK_GETCOUNTER ideal-int
+pkg syscall (freebsd-arm), const SYS_FFCLOCK_GETESTIMATE ideal-int
+pkg syscall (freebsd-arm), const SYS_FFCLOCK_SETESTIMATE ideal-int
+pkg syscall (freebsd-arm), const SYS_FHOPEN ideal-int
+pkg syscall (freebsd-arm), const SYS_FHSTAT ideal-int
+pkg syscall (freebsd-arm), const SYS_FHSTATFS ideal-int
+pkg syscall (freebsd-arm), const SYS_FLOCK ideal-int
+pkg syscall (freebsd-arm), const SYS_FORK ideal-int
+pkg syscall (freebsd-arm), const SYS_FPATHCONF ideal-int
+pkg syscall (freebsd-arm), const SYS_FREEBSD6_FTRUNCATE ideal-int
+pkg syscall (freebsd-arm), const SYS_FREEBSD6_LSEEK ideal-int
+pkg syscall (freebsd-arm), const SYS_FREEBSD6_MMAP ideal-int
+pkg syscall (freebsd-arm), const SYS_FREEBSD6_PREAD ideal-int
+pkg syscall (freebsd-arm), const SYS_FREEBSD6_PWRITE ideal-int
+pkg syscall (freebsd-arm), const SYS_FREEBSD6_TRUNCATE ideal-int
+pkg syscall (freebsd-arm), const SYS_FSTAT ideal-int
+pkg syscall (freebsd-arm), const SYS_FSTATAT ideal-int
+pkg syscall (freebsd-arm), const SYS_FSTATFS ideal-int
+pkg syscall (freebsd-arm), const SYS_FSYNC ideal-int
+pkg syscall (freebsd-arm), const SYS_FTRUNCATE ideal-int
+pkg syscall (freebsd-arm), const SYS_FUTIMES ideal-int
+pkg syscall (freebsd-arm), const SYS_FUTIMESAT ideal-int
+pkg syscall (freebsd-arm), const SYS_GETAUDIT ideal-int
+pkg syscall (freebsd-arm), const SYS_GETAUDIT_ADDR ideal-int
+pkg syscall (freebsd-arm), const SYS_GETAUID ideal-int
+pkg syscall (freebsd-arm), const SYS_GETCONTEXT ideal-int
+pkg syscall (freebsd-arm), const SYS_GETDENTS ideal-int
+pkg syscall (freebsd-arm), const SYS_GETDIRENTRIES ideal-int
+pkg syscall (freebsd-arm), const SYS_GETDTABLESIZE ideal-int
+pkg syscall (freebsd-arm), const SYS_GETEGID ideal-int
+pkg syscall (freebsd-arm), const SYS_GETEUID ideal-int
+pkg syscall (freebsd-arm), const SYS_GETFH ideal-int
+pkg syscall (freebsd-arm), const SYS_GETFSSTAT ideal-int
+pkg syscall (freebsd-arm), const SYS_GETGID ideal-int
+pkg syscall (freebsd-arm), const SYS_GETGROUPS ideal-int
+pkg syscall (freebsd-arm), const SYS_GETITIMER ideal-int
+pkg syscall (freebsd-arm), const SYS_GETLOGIN ideal-int
+pkg syscall (freebsd-arm), const SYS_GETLOGINCLASS ideal-int
+pkg syscall (freebsd-arm), const SYS_GETPEERNAME ideal-int
+pkg syscall (freebsd-arm), const SYS_GETPGID ideal-int
+pkg syscall (freebsd-arm), const SYS_GETPGRP ideal-int
+pkg syscall (freebsd-arm), const SYS_GETPID ideal-int
+pkg syscall (freebsd-arm), const SYS_GETPPID ideal-int
+pkg syscall (freebsd-arm), const SYS_GETPRIORITY ideal-int
+pkg syscall (freebsd-arm), const SYS_GETRESGID ideal-int
+pkg syscall (freebsd-arm), const SYS_GETRESUID ideal-int
+pkg syscall (freebsd-arm), const SYS_GETRLIMIT ideal-int
+pkg syscall (freebsd-arm), const SYS_GETRUSAGE ideal-int
+pkg syscall (freebsd-arm), const SYS_GETSID ideal-int
+pkg syscall (freebsd-arm), const SYS_GETSOCKNAME ideal-int
+pkg syscall (freebsd-arm), const SYS_GETSOCKOPT ideal-int
+pkg syscall (freebsd-arm), const SYS_GETTIMEOFDAY ideal-int
+pkg syscall (freebsd-arm), const SYS_GETUID ideal-int
+pkg syscall (freebsd-arm), const SYS_IOCTL ideal-int
+pkg syscall (freebsd-arm), const SYS_ISSETUGID ideal-int
+pkg syscall (freebsd-arm), const SYS_JAIL ideal-int
+pkg syscall (freebsd-arm), const SYS_JAIL_ATTACH ideal-int
+pkg syscall (freebsd-arm), const SYS_JAIL_GET ideal-int
+pkg syscall (freebsd-arm), const SYS_JAIL_REMOVE ideal-int
+pkg syscall (freebsd-arm), const SYS_JAIL_SET ideal-int
+pkg syscall (freebsd-arm), const SYS_KENV ideal-int
+pkg syscall (freebsd-arm), const SYS_KEVENT ideal-int
+pkg syscall (freebsd-arm), const SYS_KILL ideal-int
+pkg syscall (freebsd-arm), const SYS_KLDFIND ideal-int
+pkg syscall (freebsd-arm), const SYS_KLDFIRSTMOD ideal-int
+pkg syscall (freebsd-arm), const SYS_KLDLOAD ideal-int
+pkg syscall (freebsd-arm), const SYS_KLDNEXT ideal-int
+pkg syscall (freebsd-arm), const SYS_KLDSTAT ideal-int
+pkg syscall (freebsd-arm), const SYS_KLDSYM ideal-int
+pkg syscall (freebsd-arm), const SYS_KLDUNLOAD ideal-int
+pkg syscall (freebsd-arm), const SYS_KLDUNLOADF ideal-int
+pkg syscall (freebsd-arm), const SYS_KQUEUE ideal-int
+pkg syscall (freebsd-arm), const SYS_KTIMER_CREATE ideal-int
+pkg syscall (freebsd-arm), const SYS_KTIMER_DELETE ideal-int
+pkg syscall (freebsd-arm), const SYS_KTIMER_GETOVERRUN ideal-int
+pkg syscall (freebsd-arm), const SYS_KTIMER_GETTIME ideal-int
+pkg syscall (freebsd-arm), const SYS_KTIMER_SETTIME ideal-int
+pkg syscall (freebsd-arm), const SYS_KTRACE ideal-int
+pkg syscall (freebsd-arm), const SYS_LCHFLAGS ideal-int
+pkg syscall (freebsd-arm), const SYS_LCHMOD ideal-int
+pkg syscall (freebsd-arm), const SYS_LCHOWN ideal-int
+pkg syscall (freebsd-arm), const SYS_LGETFH ideal-int
+pkg syscall (freebsd-arm), const SYS_LINK ideal-int
+pkg syscall (freebsd-arm), const SYS_LINKAT ideal-int
+pkg syscall (freebsd-arm), const SYS_LISTEN ideal-int
+pkg syscall (freebsd-arm), const SYS_LPATHCONF ideal-int
+pkg syscall (freebsd-arm), const SYS_LSEEK ideal-int
+pkg syscall (freebsd-arm), const SYS_LSTAT ideal-int
+pkg syscall (freebsd-arm), const SYS_LUTIMES ideal-int
+pkg syscall (freebsd-arm), const SYS_MAC_SYSCALL ideal-int
+pkg syscall (freebsd-arm), const SYS_MADVISE ideal-int
+pkg syscall (freebsd-arm), const SYS_MINCORE ideal-int
+pkg syscall (freebsd-arm), const SYS_MINHERIT ideal-int
+pkg syscall (freebsd-arm), const SYS_MKDIR ideal-int
+pkg syscall (freebsd-arm), const SYS_MKDIRAT ideal-int
+pkg syscall (freebsd-arm), const SYS_MKFIFO ideal-int
+pkg syscall (freebsd-arm), const SYS_MKFIFOAT ideal-int
+pkg syscall (freebsd-arm), const SYS_MKNOD ideal-int
+pkg syscall (freebsd-arm), const SYS_MKNODAT ideal-int
+pkg syscall (freebsd-arm), const SYS_MLOCK ideal-int
+pkg syscall (freebsd-arm), const SYS_MLOCKALL ideal-int
+pkg syscall (freebsd-arm), const SYS_MMAP ideal-int
+pkg syscall (freebsd-arm), const SYS_MODFIND ideal-int
+pkg syscall (freebsd-arm), const SYS_MODFNEXT ideal-int
+pkg syscall (freebsd-arm), const SYS_MODNEXT ideal-int
+pkg syscall (freebsd-arm), const SYS_MODSTAT ideal-int
+pkg syscall (freebsd-arm), const SYS_MOUNT ideal-int
+pkg syscall (freebsd-arm), const SYS_MPROTECT ideal-int
+pkg syscall (freebsd-arm), const SYS_MSYNC ideal-int
+pkg syscall (freebsd-arm), const SYS_MUNLOCK ideal-int
+pkg syscall (freebsd-arm), const SYS_MUNLOCKALL ideal-int
+pkg syscall (freebsd-arm), const SYS_MUNMAP ideal-int
+pkg syscall (freebsd-arm), const SYS_NANOSLEEP ideal-int
+pkg syscall (freebsd-arm), const SYS_NFSTAT ideal-int
+pkg syscall (freebsd-arm), const SYS_NLSTAT ideal-int
+pkg syscall (freebsd-arm), const SYS_NMOUNT ideal-int
+pkg syscall (freebsd-arm), const SYS_NSTAT ideal-int
+pkg syscall (freebsd-arm), const SYS_NTP_ADJTIME ideal-int
+pkg syscall (freebsd-arm), const SYS_NTP_GETTIME ideal-int
+pkg syscall (freebsd-arm), const SYS_OBREAK ideal-int
+pkg syscall (freebsd-arm), const SYS_OPEN ideal-int
+pkg syscall (freebsd-arm), const SYS_OPENAT ideal-int
+pkg syscall (freebsd-arm), const SYS_OPENBSD_POLL ideal-int
+pkg syscall (freebsd-arm), const SYS_OVADVISE ideal-int
+pkg syscall (freebsd-arm), const SYS_PATHCONF ideal-int
+pkg syscall (freebsd-arm), const SYS_PDFORK ideal-int
+pkg syscall (freebsd-arm), const SYS_PDGETPID ideal-int
+pkg syscall (freebsd-arm), const SYS_PDKILL ideal-int
+pkg syscall (freebsd-arm), const SYS_PIPE ideal-int
+pkg syscall (freebsd-arm), const SYS_POLL ideal-int
+pkg syscall (freebsd-arm), const SYS_POSIX_FADVISE ideal-int
+pkg syscall (freebsd-arm), const SYS_POSIX_FALLOCATE ideal-int
+pkg syscall (freebsd-arm), const SYS_POSIX_OPENPT ideal-int
+pkg syscall (freebsd-arm), const SYS_PREAD ideal-int
+pkg syscall (freebsd-arm), const SYS_PREADV ideal-int
+pkg syscall (freebsd-arm), const SYS_PROFIL ideal-int
+pkg syscall (freebsd-arm), const SYS_PSELECT ideal-int
+pkg syscall (freebsd-arm), const SYS_PTRACE ideal-int
+pkg syscall (freebsd-arm), const SYS_PWRITE ideal-int
+pkg syscall (freebsd-arm), const SYS_PWRITEV ideal-int
+pkg syscall (freebsd-arm), const SYS_QUOTACTL ideal-int
+pkg syscall (freebsd-arm), const SYS_RCTL_ADD_RULE ideal-int
+pkg syscall (freebsd-arm), const SYS_RCTL_GET_LIMITS ideal-int
+pkg syscall (freebsd-arm), const SYS_RCTL_GET_RACCT ideal-int
+pkg syscall (freebsd-arm), const SYS_RCTL_GET_RULES ideal-int
+pkg syscall (freebsd-arm), const SYS_RCTL_REMOVE_RULE ideal-int
+pkg syscall (freebsd-arm), const SYS_READ ideal-int
+pkg syscall (freebsd-arm), const SYS_READLINK ideal-int
+pkg syscall (freebsd-arm), const SYS_READLINKAT ideal-int
+pkg syscall (freebsd-arm), const SYS_READV ideal-int
+pkg syscall (freebsd-arm), const SYS_REBOOT ideal-int
+pkg syscall (freebsd-arm), const SYS_RECVFROM ideal-int
+pkg syscall (freebsd-arm), const SYS_RECVMSG ideal-int
+pkg syscall (freebsd-arm), const SYS_RENAME ideal-int
+pkg syscall (freebsd-arm), const SYS_RENAMEAT ideal-int
+pkg syscall (freebsd-arm), const SYS_REVOKE ideal-int
+pkg syscall (freebsd-arm), const SYS_RFORK ideal-int
+pkg syscall (freebsd-arm), const SYS_RMDIR ideal-int
+pkg syscall (freebsd-arm), const SYS_RTPRIO ideal-int
+pkg syscall (freebsd-arm), const SYS_RTPRIO_THREAD ideal-int
+pkg syscall (freebsd-arm), const SYS_SBRK ideal-int
+pkg syscall (freebsd-arm), const SYS_SCHED_GETPARAM ideal-int
+pkg syscall (freebsd-arm), const SYS_SCHED_GETSCHEDULER ideal-int
+pkg syscall (freebsd-arm), const SYS_SCHED_GET_PRIORITY_MAX ideal-int
+pkg syscall (freebsd-arm), const SYS_SCHED_GET_PRIORITY_MIN ideal-int
+pkg syscall (freebsd-arm), const SYS_SCHED_RR_GET_INTERVAL ideal-int
+pkg syscall (freebsd-arm), const SYS_SCHED_SETPARAM ideal-int
+pkg syscall (freebsd-arm), const SYS_SCHED_SETSCHEDULER ideal-int
+pkg syscall (freebsd-arm), const SYS_SCHED_YIELD ideal-int
+pkg syscall (freebsd-arm), const SYS_SCTP_GENERIC_RECVMSG ideal-int
+pkg syscall (freebsd-arm), const SYS_SCTP_GENERIC_SENDMSG ideal-int
+pkg syscall (freebsd-arm), const SYS_SCTP_GENERIC_SENDMSG_IOV ideal-int
+pkg syscall (freebsd-arm), const SYS_SCTP_PEELOFF ideal-int
+pkg syscall (freebsd-arm), const SYS_SELECT ideal-int
+pkg syscall (freebsd-arm), const SYS_SENDFILE ideal-int
+pkg syscall (freebsd-arm), const SYS_SENDMSG ideal-int
+pkg syscall (freebsd-arm), const SYS_SENDTO ideal-int
+pkg syscall (freebsd-arm), const SYS_SETAUDIT ideal-int
+pkg syscall (freebsd-arm), const SYS_SETAUDIT_ADDR ideal-int
+pkg syscall (freebsd-arm), const SYS_SETAUID ideal-int
+pkg syscall (freebsd-arm), const SYS_SETCONTEXT ideal-int
+pkg syscall (freebsd-arm), const SYS_SETEGID ideal-int
+pkg syscall (freebsd-arm), const SYS_SETEUID ideal-int
+pkg syscall (freebsd-arm), const SYS_SETFIB ideal-int
+pkg syscall (freebsd-arm), const SYS_SETGID ideal-int
+pkg syscall (freebsd-arm), const SYS_SETGROUPS ideal-int
+pkg syscall (freebsd-arm), const SYS_SETITIMER ideal-int
+pkg syscall (freebsd-arm), const SYS_SETLOGIN ideal-int
+pkg syscall (freebsd-arm), const SYS_SETLOGINCLASS ideal-int
+pkg syscall (freebsd-arm), const SYS_SETPGID ideal-int
+pkg syscall (freebsd-arm), const SYS_SETPRIORITY ideal-int
+pkg syscall (freebsd-arm), const SYS_SETREGID ideal-int
+pkg syscall (freebsd-arm), const SYS_SETRESGID ideal-int
+pkg syscall (freebsd-arm), const SYS_SETRESUID ideal-int
+pkg syscall (freebsd-arm), const SYS_SETREUID ideal-int
+pkg syscall (freebsd-arm), const SYS_SETRLIMIT ideal-int
+pkg syscall (freebsd-arm), const SYS_SETSID ideal-int
+pkg syscall (freebsd-arm), const SYS_SETSOCKOPT ideal-int
+pkg syscall (freebsd-arm), const SYS_SETTIMEOFDAY ideal-int
+pkg syscall (freebsd-arm), const SYS_SETUID ideal-int
+pkg syscall (freebsd-arm), const SYS_SHM_OPEN ideal-int
+pkg syscall (freebsd-arm), const SYS_SHM_UNLINK ideal-int
+pkg syscall (freebsd-arm), const SYS_SHUTDOWN ideal-int
+pkg syscall (freebsd-arm), const SYS_SIGACTION ideal-int
+pkg syscall (freebsd-arm), const SYS_SIGALTSTACK ideal-int
+pkg syscall (freebsd-arm), const SYS_SIGPENDING ideal-int
+pkg syscall (freebsd-arm), const SYS_SIGPROCMASK ideal-int
+pkg syscall (freebsd-arm), const SYS_SIGQUEUE ideal-int
+pkg syscall (freebsd-arm), const SYS_SIGRETURN ideal-int
+pkg syscall (freebsd-arm), const SYS_SIGSUSPEND ideal-int
+pkg syscall (freebsd-arm), const SYS_SIGTIMEDWAIT ideal-int
+pkg syscall (freebsd-arm), const SYS_SIGWAIT ideal-int
+pkg syscall (freebsd-arm), const SYS_SIGWAITINFO ideal-int
+pkg syscall (freebsd-arm), const SYS_SOCKET ideal-int
+pkg syscall (freebsd-arm), const SYS_SOCKETPAIR ideal-int
+pkg syscall (freebsd-arm), const SYS_SSTK ideal-int
+pkg syscall (freebsd-arm), const SYS_STAT ideal-int
+pkg syscall (freebsd-arm), const SYS_STATFS ideal-int
+pkg syscall (freebsd-arm), const SYS_SWAPCONTEXT ideal-int
+pkg syscall (freebsd-arm), const SYS_SWAPOFF ideal-int
+pkg syscall (freebsd-arm), const SYS_SWAPON ideal-int
+pkg syscall (freebsd-arm), const SYS_SYMLINK ideal-int
+pkg syscall (freebsd-arm), const SYS_SYMLINKAT ideal-int
+pkg syscall (freebsd-arm), const SYS_SYNC ideal-int
+pkg syscall (freebsd-arm), const SYS_SYSARCH ideal-int
+pkg syscall (freebsd-arm), const SYS_THR_CREATE ideal-int
+pkg syscall (freebsd-arm), const SYS_THR_EXIT ideal-int
+pkg syscall (freebsd-arm), const SYS_THR_KILL ideal-int
+pkg syscall (freebsd-arm), const SYS_THR_KILL2 ideal-int
+pkg syscall (freebsd-arm), const SYS_THR_NEW ideal-int
+pkg syscall (freebsd-arm), const SYS_THR_SELF ideal-int
+pkg syscall (freebsd-arm), const SYS_THR_SET_NAME ideal-int
+pkg syscall (freebsd-arm), const SYS_THR_SUSPEND ideal-int
+pkg syscall (freebsd-arm), const SYS_THR_WAKE ideal-int
+pkg syscall (freebsd-arm), const SYS_TRUNCATE ideal-int
+pkg syscall (freebsd-arm), const SYS_UMASK ideal-int
+pkg syscall (freebsd-arm), const SYS_UNDELETE ideal-int
+pkg syscall (freebsd-arm), const SYS_UNLINK ideal-int
+pkg syscall (freebsd-arm), const SYS_UNLINKAT ideal-int
+pkg syscall (freebsd-arm), const SYS_UNMOUNT ideal-int
+pkg syscall (freebsd-arm), const SYS_UTIMES ideal-int
+pkg syscall (freebsd-arm), const SYS_UTRACE ideal-int
+pkg syscall (freebsd-arm), const SYS_UUIDGEN ideal-int
+pkg syscall (freebsd-arm), const SYS_VFORK ideal-int
+pkg syscall (freebsd-arm), const SYS_WAIT4 ideal-int
+pkg syscall (freebsd-arm), const SYS_WAIT6 ideal-int
+pkg syscall (freebsd-arm), const SYS_WRITE ideal-int
+pkg syscall (freebsd-arm), const SYS_WRITEV ideal-int
+pkg syscall (freebsd-arm), const SYS_YIELD ideal-int
+pkg syscall (freebsd-arm), const SYS__UMTX_LOCK ideal-int
+pkg syscall (freebsd-arm), const SYS__UMTX_OP ideal-int
+pkg syscall (freebsd-arm), const SYS__UMTX_UNLOCK ideal-int
+pkg syscall (freebsd-arm), const SYS___ACL_ACLCHECK_FD ideal-int
+pkg syscall (freebsd-arm), const SYS___ACL_ACLCHECK_FILE ideal-int
+pkg syscall (freebsd-arm), const SYS___ACL_ACLCHECK_LINK ideal-int
+pkg syscall (freebsd-arm), const SYS___ACL_DELETE_FD ideal-int
+pkg syscall (freebsd-arm), const SYS___ACL_DELETE_FILE ideal-int
+pkg syscall (freebsd-arm), const SYS___ACL_DELETE_LINK ideal-int
+pkg syscall (freebsd-arm), const SYS___ACL_GET_FD ideal-int
+pkg syscall (freebsd-arm), const SYS___ACL_GET_FILE ideal-int
+pkg syscall (freebsd-arm), const SYS___ACL_GET_LINK ideal-int
+pkg syscall (freebsd-arm), const SYS___ACL_SET_FD ideal-int
+pkg syscall (freebsd-arm), const SYS___ACL_SET_FILE ideal-int
+pkg syscall (freebsd-arm), const SYS___ACL_SET_LINK ideal-int
+pkg syscall (freebsd-arm), const SYS___GETCWD ideal-int
+pkg syscall (freebsd-arm), const SYS___MAC_EXECVE ideal-int
+pkg syscall (freebsd-arm), const SYS___MAC_GET_FD ideal-int
+pkg syscall (freebsd-arm), const SYS___MAC_GET_FILE ideal-int
+pkg syscall (freebsd-arm), const SYS___MAC_GET_LINK ideal-int
+pkg syscall (freebsd-arm), const SYS___MAC_GET_PID ideal-int
+pkg syscall (freebsd-arm), const SYS___MAC_GET_PROC ideal-int
+pkg syscall (freebsd-arm), const SYS___MAC_SET_FD ideal-int
+pkg syscall (freebsd-arm), const SYS___MAC_SET_FILE ideal-int
+pkg syscall (freebsd-arm), const SYS___MAC_SET_LINK ideal-int
+pkg syscall (freebsd-arm), const SYS___MAC_SET_PROC ideal-int
+pkg syscall (freebsd-arm), const SYS___SETUGID ideal-int
+pkg syscall (freebsd-arm), const SYS___SYSCTL ideal-int
+pkg syscall (freebsd-arm), const SizeofBpfHdr ideal-int
+pkg syscall (freebsd-arm), const SizeofBpfInsn ideal-int
+pkg syscall (freebsd-arm), const SizeofBpfProgram ideal-int
+pkg syscall (freebsd-arm), const SizeofBpfStat ideal-int
+pkg syscall (freebsd-arm), const SizeofBpfVersion ideal-int
+pkg syscall (freebsd-arm), const SizeofBpfZbuf ideal-int
+pkg syscall (freebsd-arm), const SizeofBpfZbufHeader ideal-int
+pkg syscall (freebsd-arm), const SizeofCmsghdr ideal-int
+pkg syscall (freebsd-arm), const SizeofICMPv6Filter = 32
+pkg syscall (freebsd-arm), const SizeofICMPv6Filter ideal-int
+pkg syscall (freebsd-arm), const SizeofIPMreq ideal-int
+pkg syscall (freebsd-arm), const SizeofIPMreqn ideal-int
+pkg syscall (freebsd-arm), const SizeofIPv6MTUInfo = 32
+pkg syscall (freebsd-arm), const SizeofIPv6MTUInfo ideal-int
+pkg syscall (freebsd-arm), const SizeofIPv6Mreq ideal-int
+pkg syscall (freebsd-arm), const SizeofIfAnnounceMsghdr ideal-int
+pkg syscall (freebsd-arm), const SizeofIfData ideal-int
+pkg syscall (freebsd-arm), const SizeofIfMsghdr ideal-int
+pkg syscall (freebsd-arm), const SizeofIfaMsghdr ideal-int
+pkg syscall (freebsd-arm), const SizeofIfmaMsghdr ideal-int
+pkg syscall (freebsd-arm), const SizeofInet6Pktinfo ideal-int
+pkg syscall (freebsd-arm), const SizeofLinger ideal-int
+pkg syscall (freebsd-arm), const SizeofMsghdr ideal-int
+pkg syscall (freebsd-arm), const SizeofRtMetrics ideal-int
+pkg syscall (freebsd-arm), const SizeofRtMsghdr ideal-int
+pkg syscall (freebsd-arm), const SizeofSockaddrAny ideal-int
+pkg syscall (freebsd-arm), const SizeofSockaddrDatalink ideal-int
+pkg syscall (freebsd-arm), const SizeofSockaddrInet4 ideal-int
+pkg syscall (freebsd-arm), const SizeofSockaddrInet6 ideal-int
+pkg syscall (freebsd-arm), const SizeofSockaddrUnix ideal-int
+pkg syscall (freebsd-arm), const TCIFLUSH ideal-int
+pkg syscall (freebsd-arm), const TCIOFLUSH ideal-int
+pkg syscall (freebsd-arm), const TCOFLUSH ideal-int
+pkg syscall (freebsd-arm), const TCP_CA_NAME_MAX ideal-int
+pkg syscall (freebsd-arm), const TCP_CONGESTION ideal-int
+pkg syscall (freebsd-arm), const TCP_INFO ideal-int
+pkg syscall (freebsd-arm), const TCP_KEEPCNT ideal-int
+pkg syscall (freebsd-arm), const TCP_KEEPIDLE ideal-int
+pkg syscall (freebsd-arm), const TCP_KEEPINIT ideal-int
+pkg syscall (freebsd-arm), const TCP_KEEPINTVL ideal-int
+pkg syscall (freebsd-arm), const TCP_MAXBURST ideal-int
+pkg syscall (freebsd-arm), const TCP_MAXHLEN ideal-int
+pkg syscall (freebsd-arm), const TCP_MAXOLEN ideal-int
+pkg syscall (freebsd-arm), const TCP_MAXSEG ideal-int
+pkg syscall (freebsd-arm), const TCP_MAXWIN ideal-int
+pkg syscall (freebsd-arm), const TCP_MAX_SACK ideal-int
+pkg syscall (freebsd-arm), const TCP_MAX_WINSHIFT ideal-int
+pkg syscall (freebsd-arm), const TCP_MD5SIG ideal-int
+pkg syscall (freebsd-arm), const TCP_MINMSS ideal-int
+pkg syscall (freebsd-arm), const TCP_MSS ideal-int
+pkg syscall (freebsd-arm), const TCP_NOOPT ideal-int
+pkg syscall (freebsd-arm), const TCP_NOPUSH ideal-int
+pkg syscall (freebsd-arm), const TCSAFLUSH ideal-int
+pkg syscall (freebsd-arm), const TIOCCBRK ideal-int
+pkg syscall (freebsd-arm), const TIOCCDTR ideal-int
+pkg syscall (freebsd-arm), const TIOCCONS ideal-int
+pkg syscall (freebsd-arm), const TIOCDRAIN ideal-int
+pkg syscall (freebsd-arm), const TIOCEXCL ideal-int
+pkg syscall (freebsd-arm), const TIOCEXT ideal-int
+pkg syscall (freebsd-arm), const TIOCFLUSH ideal-int
+pkg syscall (freebsd-arm), const TIOCGDRAINWAIT ideal-int
+pkg syscall (freebsd-arm), const TIOCGETA ideal-int
+pkg syscall (freebsd-arm), const TIOCGETD ideal-int
+pkg syscall (freebsd-arm), const TIOCGPGRP ideal-int
+pkg syscall (freebsd-arm), const TIOCGPTN ideal-int
+pkg syscall (freebsd-arm), const TIOCGSID ideal-int
+pkg syscall (freebsd-arm), const TIOCGWINSZ ideal-int
+pkg syscall (freebsd-arm), const TIOCMBIC ideal-int
+pkg syscall (freebsd-arm), const TIOCMBIS ideal-int
+pkg syscall (freebsd-arm), const TIOCMGDTRWAIT ideal-int
+pkg syscall (freebsd-arm), const TIOCMGET ideal-int
+pkg syscall (freebsd-arm), const TIOCMSDTRWAIT ideal-int
+pkg syscall (freebsd-arm), const TIOCMSET ideal-int
+pkg syscall (freebsd-arm), const TIOCM_CAR ideal-int
+pkg syscall (freebsd-arm), const TIOCM_CD ideal-int
+pkg syscall (freebsd-arm), const TIOCM_CTS ideal-int
+pkg syscall (freebsd-arm), const TIOCM_DCD ideal-int
+pkg syscall (freebsd-arm), const TIOCM_DSR ideal-int
+pkg syscall (freebsd-arm), const TIOCM_DTR ideal-int
+pkg syscall (freebsd-arm), const TIOCM_LE ideal-int
+pkg syscall (freebsd-arm), const TIOCM_RI ideal-int
+pkg syscall (freebsd-arm), const TIOCM_RNG ideal-int
+pkg syscall (freebsd-arm), const TIOCM_RTS ideal-int
+pkg syscall (freebsd-arm), const TIOCM_SR ideal-int
+pkg syscall (freebsd-arm), const TIOCM_ST ideal-int
+pkg syscall (freebsd-arm), const TIOCNOTTY ideal-int
+pkg syscall (freebsd-arm), const TIOCNXCL ideal-int
+pkg syscall (freebsd-arm), const TIOCOUTQ ideal-int
+pkg syscall (freebsd-arm), const TIOCPKT ideal-int
+pkg syscall (freebsd-arm), const TIOCPKT_DATA ideal-int
+pkg syscall (freebsd-arm), const TIOCPKT_DOSTOP ideal-int
+pkg syscall (freebsd-arm), const TIOCPKT_FLUSHREAD ideal-int
+pkg syscall (freebsd-arm), const TIOCPKT_FLUSHWRITE ideal-int
+pkg syscall (freebsd-arm), const TIOCPKT_IOCTL ideal-int
+pkg syscall (freebsd-arm), const TIOCPKT_NOSTOP ideal-int
+pkg syscall (freebsd-arm), const TIOCPKT_START ideal-int
+pkg syscall (freebsd-arm), const TIOCPKT_STOP ideal-int
+pkg syscall (freebsd-arm), const TIOCPTMASTER ideal-int
+pkg syscall (freebsd-arm), const TIOCSBRK ideal-int
+pkg syscall (freebsd-arm), const TIOCSCTTY ideal-int
+pkg syscall (freebsd-arm), const TIOCSDRAINWAIT ideal-int
+pkg syscall (freebsd-arm), const TIOCSDTR ideal-int
+pkg syscall (freebsd-arm), const TIOCSETA ideal-int
+pkg syscall (freebsd-arm), const TIOCSETAF ideal-int
+pkg syscall (freebsd-arm), const TIOCSETAW ideal-int
+pkg syscall (freebsd-arm), const TIOCSETD ideal-int
+pkg syscall (freebsd-arm), const TIOCSIG ideal-int
+pkg syscall (freebsd-arm), const TIOCSPGRP ideal-int
+pkg syscall (freebsd-arm), const TIOCSTART ideal-int
+pkg syscall (freebsd-arm), const TIOCSTAT ideal-int
+pkg syscall (freebsd-arm), const TIOCSTI ideal-int
+pkg syscall (freebsd-arm), const TIOCSTOP ideal-int
+pkg syscall (freebsd-arm), const TIOCSWINSZ ideal-int
+pkg syscall (freebsd-arm), const TIOCTIMESTAMP ideal-int
+pkg syscall (freebsd-arm), const TIOCUCNTL ideal-int
+pkg syscall (freebsd-arm), const TOSTOP ideal-int
+pkg syscall (freebsd-arm), const VDISCARD ideal-int
+pkg syscall (freebsd-arm), const VDSUSP ideal-int
+pkg syscall (freebsd-arm), const VEOF ideal-int
+pkg syscall (freebsd-arm), const VEOL ideal-int
+pkg syscall (freebsd-arm), const VEOL2 ideal-int
+pkg syscall (freebsd-arm), const VERASE ideal-int
+pkg syscall (freebsd-arm), const VERASE2 ideal-int
+pkg syscall (freebsd-arm), const VINTR ideal-int
+pkg syscall (freebsd-arm), const VKILL ideal-int
+pkg syscall (freebsd-arm), const VLNEXT ideal-int
+pkg syscall (freebsd-arm), const VMIN ideal-int
+pkg syscall (freebsd-arm), const VQUIT ideal-int
+pkg syscall (freebsd-arm), const VREPRINT ideal-int
+pkg syscall (freebsd-arm), const VSTART ideal-int
+pkg syscall (freebsd-arm), const VSTATUS ideal-int
+pkg syscall (freebsd-arm), const VSTOP ideal-int
+pkg syscall (freebsd-arm), const VSUSP ideal-int
+pkg syscall (freebsd-arm), const VTIME ideal-int
+pkg syscall (freebsd-arm), const VWERASE ideal-int
+pkg syscall (freebsd-arm), const WCONTINUED ideal-int
+pkg syscall (freebsd-arm), const WCOREFLAG ideal-int
+pkg syscall (freebsd-arm), const WEXITED ideal-int
+pkg syscall (freebsd-arm), const WLINUXCLONE ideal-int
+pkg syscall (freebsd-arm), const WNOHANG ideal-int
+pkg syscall (freebsd-arm), const WNOWAIT ideal-int
+pkg syscall (freebsd-arm), const WSTOPPED ideal-int
+pkg syscall (freebsd-arm), const WTRAPPED ideal-int
+pkg syscall (freebsd-arm), const WUNTRACED ideal-int
+pkg syscall (freebsd-arm), func Accept(int) (int, Sockaddr, error)
+pkg syscall (freebsd-arm), func Access(string, uint32) error
+pkg syscall (freebsd-arm), func Adjtime(*Timeval, *Timeval) error
+pkg syscall (freebsd-arm), func Bind(int, Sockaddr) error
+pkg syscall (freebsd-arm), func BpfBuflen(int) (int, error)
+pkg syscall (freebsd-arm), func BpfDatalink(int) (int, error)
+pkg syscall (freebsd-arm), func BpfHeadercmpl(int) (int, error)
+pkg syscall (freebsd-arm), func BpfInterface(int, string) (string, error)
+pkg syscall (freebsd-arm), func BpfJump(int, int, int, int) *BpfInsn
+pkg syscall (freebsd-arm), func BpfStats(int) (*BpfStat, error)
+pkg syscall (freebsd-arm), func BpfStmt(int, int) *BpfInsn
+pkg syscall (freebsd-arm), func BpfTimeout(int) (*Timeval, error)
+pkg syscall (freebsd-arm), func CheckBpfVersion(int) error
+pkg syscall (freebsd-arm), func Chflags(string, int) error
+pkg syscall (freebsd-arm), func Chroot(string) error
+pkg syscall (freebsd-arm), func Close(int) error
+pkg syscall (freebsd-arm), func CloseOnExec(int)
+pkg syscall (freebsd-arm), func CmsgLen(int) int
+pkg syscall (freebsd-arm), func CmsgSpace(int) int
+pkg syscall (freebsd-arm), func Connect(int, Sockaddr) error
+pkg syscall (freebsd-arm), func Dup(int) (int, error)
+pkg syscall (freebsd-arm), func Dup2(int, int) error
+pkg syscall (freebsd-arm), func Fchdir(int) error
+pkg syscall (freebsd-arm), func Fchflags(string, int) error
+pkg syscall (freebsd-arm), func Fchmod(int, uint32) error
+pkg syscall (freebsd-arm), func Fchown(int, int, int) error
+pkg syscall (freebsd-arm), func Flock(int, int) error
+pkg syscall (freebsd-arm), func FlushBpf(int) error
+pkg syscall (freebsd-arm), func ForkExec(string, []string, *ProcAttr) (int, error)
+pkg syscall (freebsd-arm), func Fpathconf(int, int) (int, error)
+pkg syscall (freebsd-arm), func Fstat(int, *Stat_t) error
+pkg syscall (freebsd-arm), func Fstatfs(int, *Statfs_t) error
+pkg syscall (freebsd-arm), func Fsync(int) error
+pkg syscall (freebsd-arm), func Ftruncate(int, int64) error
+pkg syscall (freebsd-arm), func Futimes(int, []Timeval) error
+pkg syscall (freebsd-arm), func Getdirentries(int, []uint8, *uintptr) (int, error)
+pkg syscall (freebsd-arm), func Getdtablesize() int
+pkg syscall (freebsd-arm), func Getfsstat([]Statfs_t, int) (int, error)
+pkg syscall (freebsd-arm), func Getpeername(int) (Sockaddr, error)
+pkg syscall (freebsd-arm), func Getpgid(int) (int, error)
+pkg syscall (freebsd-arm), func Getpgrp() int
+pkg syscall (freebsd-arm), func Getpriority(int, int) (int, error)
+pkg syscall (freebsd-arm), func Getrlimit(int, *Rlimit) error
+pkg syscall (freebsd-arm), func Getrusage(int, *Rusage) error
+pkg syscall (freebsd-arm), func Getsid(int) (int, error)
+pkg syscall (freebsd-arm), func Getsockname(int) (Sockaddr, error)
+pkg syscall (freebsd-arm), func GetsockoptByte(int, int, int) (uint8, error)
+pkg syscall (freebsd-arm), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
+pkg syscall (freebsd-arm), func GetsockoptIPMreq(int, int, int) (*IPMreq, error)
+pkg syscall (freebsd-arm), func GetsockoptIPMreqn(int, int, int) (*IPMreqn, error)
+pkg syscall (freebsd-arm), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
+pkg syscall (freebsd-arm), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error)
+pkg syscall (freebsd-arm), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error)
+pkg syscall (freebsd-arm), func GetsockoptInt(int, int, int) (int, error)
+pkg syscall (freebsd-arm), func Issetugid() bool
+pkg syscall (freebsd-arm), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error)
+pkg syscall (freebsd-arm), func Kill(int, Signal) error
+pkg syscall (freebsd-arm), func Kqueue() (int, error)
+pkg syscall (freebsd-arm), func Listen(int, int) error
+pkg syscall (freebsd-arm), func Lstat(string, *Stat_t) error
+pkg syscall (freebsd-arm), func Mkfifo(string, uint32) error
+pkg syscall (freebsd-arm), func Mknod(string, uint32, int) error
+pkg syscall (freebsd-arm), func Mmap(int, int64, int, int, int) ([]uint8, error)
+pkg syscall (freebsd-arm), func Munmap([]uint8) error
+pkg syscall (freebsd-arm), func Nanosleep(*Timespec, *Timespec) error
+pkg syscall (freebsd-arm), func Open(string, int, uint32) (int, error)
+pkg syscall (freebsd-arm), func ParseDirent([]uint8, int, []string) (int, int, []string)
+pkg syscall (freebsd-arm), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error)
+pkg syscall (freebsd-arm), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error)
+pkg syscall (freebsd-arm), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error)
+pkg syscall (freebsd-arm), func ParseUnixRights(*SocketControlMessage) ([]int, error)
+pkg syscall (freebsd-arm), func Pathconf(string, int) (int, error)
+pkg syscall (freebsd-arm), func Pipe([]int) error
+pkg syscall (freebsd-arm), func Pread(int, []uint8, int64) (int, error)
+pkg syscall (freebsd-arm), func Pwrite(int, []uint8, int64) (int, error)
+pkg syscall (freebsd-arm), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (freebsd-arm), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (freebsd-arm), func Read(int, []uint8) (int, error)
+pkg syscall (freebsd-arm), func ReadDirent(int, []uint8) (int, error)
+pkg syscall (freebsd-arm), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
+pkg syscall (freebsd-arm), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
+pkg syscall (freebsd-arm), func Revoke(string) error
+pkg syscall (freebsd-arm), func RouteRIB(int, int) ([]uint8, error)
+pkg syscall (freebsd-arm), func Seek(int, int64, int) (int64, error)
+pkg syscall (freebsd-arm), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error
+pkg syscall (freebsd-arm), func Sendfile(int, int, *int64, int) (int, error)
+pkg syscall (freebsd-arm), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
+pkg syscall (freebsd-arm), func Sendto(int, []uint8, int, Sockaddr) error
+pkg syscall (freebsd-arm), func SetBpf(int, []BpfInsn) error
+pkg syscall (freebsd-arm), func SetBpfBuflen(int, int) (int, error)
+pkg syscall (freebsd-arm), func SetBpfDatalink(int, int) (int, error)
+pkg syscall (freebsd-arm), func SetBpfHeadercmpl(int, int) error
+pkg syscall (freebsd-arm), func SetBpfImmediate(int, int) error
+pkg syscall (freebsd-arm), func SetBpfInterface(int, string) error
+pkg syscall (freebsd-arm), func SetBpfPromisc(int, int) error
+pkg syscall (freebsd-arm), func SetBpfTimeout(int, *Timeval) error
+pkg syscall (freebsd-arm), func SetKevent(*Kevent_t, int, int, int)
+pkg syscall (freebsd-arm), func SetNonblock(int, bool) error
+pkg syscall (freebsd-arm), func Setegid(int) error
+pkg syscall (freebsd-arm), func Seteuid(int) error
+pkg syscall (freebsd-arm), func Setgid(int) error
+pkg syscall (freebsd-arm), func Setgroups([]int) error
+pkg syscall (freebsd-arm), func Setlogin(string) error
+pkg syscall (freebsd-arm), func Setpgid(int, int) error
+pkg syscall (freebsd-arm), func Setpriority(int, int, int) error
+pkg syscall (freebsd-arm), func Setregid(int, int) error
+pkg syscall (freebsd-arm), func Setreuid(int, int) error
+pkg syscall (freebsd-arm), func Setrlimit(int, *Rlimit) error
+pkg syscall (freebsd-arm), func Setsid() (int, error)
+pkg syscall (freebsd-arm), func SetsockoptByte(int, int, int, uint8) error
+pkg syscall (freebsd-arm), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
+pkg syscall (freebsd-arm), func SetsockoptIPMreq(int, int, int, *IPMreq) error
+pkg syscall (freebsd-arm), func SetsockoptIPMreqn(int, int, int, *IPMreqn) error
+pkg syscall (freebsd-arm), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error
+pkg syscall (freebsd-arm), func SetsockoptInet4Addr(int, int, int, [4]uint8) error
+pkg syscall (freebsd-arm), func SetsockoptInt(int, int, int, int) error
+pkg syscall (freebsd-arm), func SetsockoptLinger(int, int, int, *Linger) error
+pkg syscall (freebsd-arm), func SetsockoptString(int, int, int, string) error
+pkg syscall (freebsd-arm), func SetsockoptTimeval(int, int, int, *Timeval) error
+pkg syscall (freebsd-arm), func Settimeofday(*Timeval) error
+pkg syscall (freebsd-arm), func Setuid(int) error
+pkg syscall (freebsd-arm), func Shutdown(int, int) error
+pkg syscall (freebsd-arm), func SlicePtrFromStrings([]string) ([]*uint8, error)
+pkg syscall (freebsd-arm), func Socket(int, int, int) (int, error)
+pkg syscall (freebsd-arm), func Socketpair(int, int, int) ([2]int, error)
+pkg syscall (freebsd-arm), func Stat(string, *Stat_t) error
+pkg syscall (freebsd-arm), func Statfs(string, *Statfs_t) error
+pkg syscall (freebsd-arm), func StringSlicePtr([]string) []*uint8
+pkg syscall (freebsd-arm), func Sync() error
+pkg syscall (freebsd-arm), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (freebsd-arm), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (freebsd-arm), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (freebsd-arm), func Sysctl(string) (string, error)
+pkg syscall (freebsd-arm), func SysctlUint32(string) (uint32, error)
+pkg syscall (freebsd-arm), func TimevalToNsec(Timeval) int64
+pkg syscall (freebsd-arm), func Truncate(string, int64) error
+pkg syscall (freebsd-arm), func Umask(int) int
+pkg syscall (freebsd-arm), func Undelete(string) error
+pkg syscall (freebsd-arm), func UnixRights(...int) []uint8
+pkg syscall (freebsd-arm), func Unmount(string, int) error
+pkg syscall (freebsd-arm), func Wait4(int, *WaitStatus, int, *Rusage) (int, error)
+pkg syscall (freebsd-arm), func Write(int, []uint8) (int, error)
+pkg syscall (freebsd-arm), method (*Cmsghdr) SetLen(int)
+pkg syscall (freebsd-arm), method (*Iovec) SetLen(int)
+pkg syscall (freebsd-arm), method (*Msghdr) SetControllen(int)
+pkg syscall (freebsd-arm), type BpfHdr struct
+pkg syscall (freebsd-arm), type BpfHdr struct, Caplen uint32
+pkg syscall (freebsd-arm), type BpfHdr struct, Datalen uint32
+pkg syscall (freebsd-arm), type BpfHdr struct, Hdrlen uint16
+pkg syscall (freebsd-arm), type BpfHdr struct, Pad_cgo_0 [2]uint8
+pkg syscall (freebsd-arm), type BpfHdr struct, Tstamp Timeval
+pkg syscall (freebsd-arm), type BpfInsn struct
+pkg syscall (freebsd-arm), type BpfInsn struct, Code uint16
+pkg syscall (freebsd-arm), type BpfInsn struct, Jf uint8
+pkg syscall (freebsd-arm), type BpfInsn struct, Jt uint8
+pkg syscall (freebsd-arm), type BpfInsn struct, K uint32
+pkg syscall (freebsd-arm), type BpfProgram struct
+pkg syscall (freebsd-arm), type BpfProgram struct, Insns *BpfInsn
+pkg syscall (freebsd-arm), type BpfProgram struct, Len uint32
+pkg syscall (freebsd-arm), type BpfStat struct
+pkg syscall (freebsd-arm), type BpfStat struct, Drop uint32
+pkg syscall (freebsd-arm), type BpfStat struct, Recv uint32
+pkg syscall (freebsd-arm), type BpfVersion struct
+pkg syscall (freebsd-arm), type BpfVersion struct, Major uint16
+pkg syscall (freebsd-arm), type BpfVersion struct, Minor uint16
+pkg syscall (freebsd-arm), type BpfZbuf struct
+pkg syscall (freebsd-arm), type BpfZbuf struct, Bufa *uint8
+pkg syscall (freebsd-arm), type BpfZbuf struct, Bufb *uint8
+pkg syscall (freebsd-arm), type BpfZbuf struct, Buflen uint32
+pkg syscall (freebsd-arm), type BpfZbufHeader struct
+pkg syscall (freebsd-arm), type BpfZbufHeader struct, Kernel_gen uint32
+pkg syscall (freebsd-arm), type BpfZbufHeader struct, Kernel_len uint32
+pkg syscall (freebsd-arm), type BpfZbufHeader struct, User_gen uint32
+pkg syscall (freebsd-arm), type BpfZbufHeader struct, X_bzh_pad [5]uint32
+pkg syscall (freebsd-arm), type Cmsghdr struct
+pkg syscall (freebsd-arm), type Cmsghdr struct, Len uint32
+pkg syscall (freebsd-arm), type Cmsghdr struct, Level int32
+pkg syscall (freebsd-arm), type Cmsghdr struct, Type int32
+pkg syscall (freebsd-arm), type Credential struct
+pkg syscall (freebsd-arm), type Credential struct, Gid uint32
+pkg syscall (freebsd-arm), type Credential struct, Groups []uint32
+pkg syscall (freebsd-arm), type Credential struct, Uid uint32
+pkg syscall (freebsd-arm), type Dirent struct
+pkg syscall (freebsd-arm), type Dirent struct, Fileno uint32
+pkg syscall (freebsd-arm), type Dirent struct, Name [256]int8
+pkg syscall (freebsd-arm), type Dirent struct, Namlen uint8
+pkg syscall (freebsd-arm), type Dirent struct, Reclen uint16
+pkg syscall (freebsd-arm), type Dirent struct, Type uint8
+pkg syscall (freebsd-arm), type FdSet struct
+pkg syscall (freebsd-arm), type FdSet struct, X__fds_bits [32]uint32
+pkg syscall (freebsd-arm), type Flock_t struct
+pkg syscall (freebsd-arm), type Flock_t struct, Len int64
+pkg syscall (freebsd-arm), type Flock_t struct, Pid int32
+pkg syscall (freebsd-arm), type Flock_t struct, Start int64
+pkg syscall (freebsd-arm), type Flock_t struct, Sysid int32
+pkg syscall (freebsd-arm), type Flock_t struct, Type int16
+pkg syscall (freebsd-arm), type Flock_t struct, Whence int16
+pkg syscall (freebsd-arm), type Fsid struct
+pkg syscall (freebsd-arm), type Fsid struct, Val [2]int32
+pkg syscall (freebsd-arm), type ICMPv6Filter struct
+pkg syscall (freebsd-arm), type ICMPv6Filter struct, Filt [8]uint32
+pkg syscall (freebsd-arm), type IPMreqn struct
+pkg syscall (freebsd-arm), type IPMreqn struct, Address [4]uint8
+pkg syscall (freebsd-arm), type IPMreqn struct, Ifindex int32
+pkg syscall (freebsd-arm), type IPMreqn struct, Multiaddr [4]uint8
+pkg syscall (freebsd-arm), type IPv6MTUInfo struct
+pkg syscall (freebsd-arm), type IPv6MTUInfo struct, Addr RawSockaddrInet6
+pkg syscall (freebsd-arm), type IPv6MTUInfo struct, Mtu uint32
+pkg syscall (freebsd-arm), type IfAnnounceMsghdr struct
+pkg syscall (freebsd-arm), type IfAnnounceMsghdr struct, Index uint16
+pkg syscall (freebsd-arm), type IfAnnounceMsghdr struct, Msglen uint16
+pkg syscall (freebsd-arm), type IfAnnounceMsghdr struct, Name [16]int8
+pkg syscall (freebsd-arm), type IfAnnounceMsghdr struct, Type uint8
+pkg syscall (freebsd-arm), type IfAnnounceMsghdr struct, Version uint8
+pkg syscall (freebsd-arm), type IfAnnounceMsghdr struct, What uint16
+pkg syscall (freebsd-arm), type IfData struct
+pkg syscall (freebsd-arm), type IfData struct, Addrlen uint8
+pkg syscall (freebsd-arm), type IfData struct, Baudrate uint32
+pkg syscall (freebsd-arm), type IfData struct, Collisions uint32
+pkg syscall (freebsd-arm), type IfData struct, Datalen uint8
+pkg syscall (freebsd-arm), type IfData struct, Epoch int64
+pkg syscall (freebsd-arm), type IfData struct, Hdrlen uint8
+pkg syscall (freebsd-arm), type IfData struct, Hwassist uint32
+pkg syscall (freebsd-arm), type IfData struct, Ibytes uint32
+pkg syscall (freebsd-arm), type IfData struct, Ierrors uint32
+pkg syscall (freebsd-arm), type IfData struct, Imcasts uint32
+pkg syscall (freebsd-arm), type IfData struct, Ipackets uint32
+pkg syscall (freebsd-arm), type IfData struct, Iqdrops uint32
+pkg syscall (freebsd-arm), type IfData struct, Lastchange Timeval
+pkg syscall (freebsd-arm), type IfData struct, Link_state uint8
+pkg syscall (freebsd-arm), type IfData struct, Metric uint32
+pkg syscall (freebsd-arm), type IfData struct, Mtu uint32
+pkg syscall (freebsd-arm), type IfData struct, Noproto uint32
+pkg syscall (freebsd-arm), type IfData struct, Obytes uint32
+pkg syscall (freebsd-arm), type IfData struct, Oerrors uint32
+pkg syscall (freebsd-arm), type IfData struct, Omcasts uint32
+pkg syscall (freebsd-arm), type IfData struct, Opackets uint32
+pkg syscall (freebsd-arm), type IfData struct, Physical uint8
+pkg syscall (freebsd-arm), type IfData struct, Spare_char1 uint8
+pkg syscall (freebsd-arm), type IfData struct, Spare_char2 uint8
+pkg syscall (freebsd-arm), type IfData struct, Type uint8
+pkg syscall (freebsd-arm), type IfMsghdr struct
+pkg syscall (freebsd-arm), type IfMsghdr struct, Addrs int32
+pkg syscall (freebsd-arm), type IfMsghdr struct, Data IfData
+pkg syscall (freebsd-arm), type IfMsghdr struct, Flags int32
+pkg syscall (freebsd-arm), type IfMsghdr struct, Index uint16
+pkg syscall (freebsd-arm), type IfMsghdr struct, Msglen uint16
+pkg syscall (freebsd-arm), type IfMsghdr struct, Pad_cgo_0 [2]uint8
+pkg syscall (freebsd-arm), type IfMsghdr struct, Type uint8
+pkg syscall (freebsd-arm), type IfMsghdr struct, Version uint8
+pkg syscall (freebsd-arm), type IfaMsghdr struct
+pkg syscall (freebsd-arm), type IfaMsghdr struct, Addrs int32
+pkg syscall (freebsd-arm), type IfaMsghdr struct, Flags int32
+pkg syscall (freebsd-arm), type IfaMsghdr struct, Index uint16
+pkg syscall (freebsd-arm), type IfaMsghdr struct, Metric int32
+pkg syscall (freebsd-arm), type IfaMsghdr struct, Msglen uint16
+pkg syscall (freebsd-arm), type IfaMsghdr struct, Pad_cgo_0 [2]uint8
+pkg syscall (freebsd-arm), type IfaMsghdr struct, Type uint8
+pkg syscall (freebsd-arm), type IfaMsghdr struct, Version uint8
+pkg syscall (freebsd-arm), type IfmaMsghdr struct
+pkg syscall (freebsd-arm), type IfmaMsghdr struct, Addrs int32
+pkg syscall (freebsd-arm), type IfmaMsghdr struct, Flags int32
+pkg syscall (freebsd-arm), type IfmaMsghdr struct, Index uint16
+pkg syscall (freebsd-arm), type IfmaMsghdr struct, Msglen uint16
+pkg syscall (freebsd-arm), type IfmaMsghdr struct, Pad_cgo_0 [2]uint8
+pkg syscall (freebsd-arm), type IfmaMsghdr struct, Type uint8
+pkg syscall (freebsd-arm), type IfmaMsghdr struct, Version uint8
+pkg syscall (freebsd-arm), type Inet6Pktinfo struct
+pkg syscall (freebsd-arm), type Inet6Pktinfo struct, Addr [16]uint8
+pkg syscall (freebsd-arm), type Inet6Pktinfo struct, Ifindex uint32
+pkg syscall (freebsd-arm), type InterfaceAddrMessage struct
+pkg syscall (freebsd-arm), type InterfaceAddrMessage struct, Data []uint8
+pkg syscall (freebsd-arm), type InterfaceAddrMessage struct, Header IfaMsghdr
+pkg syscall (freebsd-arm), type InterfaceAnnounceMessage struct
+pkg syscall (freebsd-arm), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr
+pkg syscall (freebsd-arm), type InterfaceMessage struct
+pkg syscall (freebsd-arm), type InterfaceMessage struct, Data []uint8
+pkg syscall (freebsd-arm), type InterfaceMessage struct, Header IfMsghdr
+pkg syscall (freebsd-arm), type InterfaceMulticastAddrMessage struct
+pkg syscall (freebsd-arm), type InterfaceMulticastAddrMessage struct, Data []uint8
+pkg syscall (freebsd-arm), type InterfaceMulticastAddrMessage struct, Header IfmaMsghdr
+pkg syscall (freebsd-arm), type Iovec struct
+pkg syscall (freebsd-arm), type Iovec struct, Base *uint8
+pkg syscall (freebsd-arm), type Iovec struct, Len uint32
+pkg syscall (freebsd-arm), type Kevent_t struct
+pkg syscall (freebsd-arm), type Kevent_t struct, Data int32
+pkg syscall (freebsd-arm), type Kevent_t struct, Fflags uint32
+pkg syscall (freebsd-arm), type Kevent_t struct, Filter int16
+pkg syscall (freebsd-arm), type Kevent_t struct, Flags uint16
+pkg syscall (freebsd-arm), type Kevent_t struct, Ident uint32
+pkg syscall (freebsd-arm), type Kevent_t struct, Udata *uint8
+pkg syscall (freebsd-arm), type Msghdr struct
+pkg syscall (freebsd-arm), type Msghdr struct, Control *uint8
+pkg syscall (freebsd-arm), type Msghdr struct, Controllen uint32
+pkg syscall (freebsd-arm), type Msghdr struct, Flags int32
+pkg syscall (freebsd-arm), type Msghdr struct, Iov *Iovec
+pkg syscall (freebsd-arm), type Msghdr struct, Iovlen int32
+pkg syscall (freebsd-arm), type Msghdr struct, Name *uint8
+pkg syscall (freebsd-arm), type Msghdr struct, Namelen uint32
+pkg syscall (freebsd-arm), type RawSockaddr struct, Data [14]int8
+pkg syscall (freebsd-arm), type RawSockaddr struct, Family uint8
+pkg syscall (freebsd-arm), type RawSockaddr struct, Len uint8
+pkg syscall (freebsd-arm), type RawSockaddrAny struct, Pad [92]int8
+pkg syscall (freebsd-arm), type RawSockaddrDatalink struct
+pkg syscall (freebsd-arm), type RawSockaddrDatalink struct, Alen uint8
+pkg syscall (freebsd-arm), type RawSockaddrDatalink struct, Data [46]int8
+pkg syscall (freebsd-arm), type RawSockaddrDatalink struct, Family uint8
+pkg syscall (freebsd-arm), type RawSockaddrDatalink struct, Index uint16
+pkg syscall (freebsd-arm), type RawSockaddrDatalink struct, Len uint8
+pkg syscall (freebsd-arm), type RawSockaddrDatalink struct, Nlen uint8
+pkg syscall (freebsd-arm), type RawSockaddrDatalink struct, Pad_cgo_0 [2]uint8
+pkg syscall (freebsd-arm), type RawSockaddrDatalink struct, Slen uint8
+pkg syscall (freebsd-arm), type RawSockaddrDatalink struct, Type uint8
+pkg syscall (freebsd-arm), type RawSockaddrInet4 struct, Family uint8
+pkg syscall (freebsd-arm), type RawSockaddrInet4 struct, Len uint8
+pkg syscall (freebsd-arm), type RawSockaddrInet4 struct, Zero [8]int8
+pkg syscall (freebsd-arm), type RawSockaddrInet6 struct, Family uint8
+pkg syscall (freebsd-arm), type RawSockaddrInet6 struct, Len uint8
+pkg syscall (freebsd-arm), type RawSockaddrUnix struct
+pkg syscall (freebsd-arm), type RawSockaddrUnix struct, Family uint8
+pkg syscall (freebsd-arm), type RawSockaddrUnix struct, Len uint8
+pkg syscall (freebsd-arm), type RawSockaddrUnix struct, Pad_cgo_0 [2]uint8
+pkg syscall (freebsd-arm), type RawSockaddrUnix struct, Path [104]int8
+pkg syscall (freebsd-arm), type Rlimit struct
+pkg syscall (freebsd-arm), type Rlimit struct, Cur int64
+pkg syscall (freebsd-arm), type Rlimit struct, Max int64
+pkg syscall (freebsd-arm), type RouteMessage struct
+pkg syscall (freebsd-arm), type RouteMessage struct, Data []uint8
+pkg syscall (freebsd-arm), type RouteMessage struct, Header RtMsghdr
+pkg syscall (freebsd-arm), type RoutingMessage interface, unexported methods
+pkg syscall (freebsd-arm), type RtMetrics struct
+pkg syscall (freebsd-arm), type RtMetrics struct, Expire uint32
+pkg syscall (freebsd-arm), type RtMetrics struct, Filler [3]uint32
+pkg syscall (freebsd-arm), type RtMetrics struct, Hopcount uint32
+pkg syscall (freebsd-arm), type RtMetrics struct, Locks uint32
+pkg syscall (freebsd-arm), type RtMetrics struct, Mtu uint32
+pkg syscall (freebsd-arm), type RtMetrics struct, Pksent uint32
+pkg syscall (freebsd-arm), type RtMetrics struct, Recvpipe uint32
+pkg syscall (freebsd-arm), type RtMetrics struct, Rtt uint32
+pkg syscall (freebsd-arm), type RtMetrics struct, Rttvar uint32
+pkg syscall (freebsd-arm), type RtMetrics struct, Sendpipe uint32
+pkg syscall (freebsd-arm), type RtMetrics struct, Ssthresh uint32
+pkg syscall (freebsd-arm), type RtMetrics struct, Weight uint32
+pkg syscall (freebsd-arm), type RtMsghdr struct
+pkg syscall (freebsd-arm), type RtMsghdr struct, Addrs int32
+pkg syscall (freebsd-arm), type RtMsghdr struct, Errno int32
+pkg syscall (freebsd-arm), type RtMsghdr struct, Flags int32
+pkg syscall (freebsd-arm), type RtMsghdr struct, Fmask int32
+pkg syscall (freebsd-arm), type RtMsghdr struct, Index uint16
+pkg syscall (freebsd-arm), type RtMsghdr struct, Inits uint32
+pkg syscall (freebsd-arm), type RtMsghdr struct, Msglen uint16
+pkg syscall (freebsd-arm), type RtMsghdr struct, Pad_cgo_0 [2]uint8
+pkg syscall (freebsd-arm), type RtMsghdr struct, Pid int32
+pkg syscall (freebsd-arm), type RtMsghdr struct, Rmx RtMetrics
+pkg syscall (freebsd-arm), type RtMsghdr struct, Seq int32
+pkg syscall (freebsd-arm), type RtMsghdr struct, Type uint8
+pkg syscall (freebsd-arm), type RtMsghdr struct, Version uint8
+pkg syscall (freebsd-arm), type Rusage struct, Idrss int32
+pkg syscall (freebsd-arm), type Rusage struct, Inblock int32
+pkg syscall (freebsd-arm), type Rusage struct, Isrss int32
+pkg syscall (freebsd-arm), type Rusage struct, Ixrss int32
+pkg syscall (freebsd-arm), type Rusage struct, Majflt int32
+pkg syscall (freebsd-arm), type Rusage struct, Maxrss int32
+pkg syscall (freebsd-arm), type Rusage struct, Minflt int32
+pkg syscall (freebsd-arm), type Rusage struct, Msgrcv int32
+pkg syscall (freebsd-arm), type Rusage struct, Msgsnd int32
+pkg syscall (freebsd-arm), type Rusage struct, Nivcsw int32
+pkg syscall (freebsd-arm), type Rusage struct, Nsignals int32
+pkg syscall (freebsd-arm), type Rusage struct, Nswap int32
+pkg syscall (freebsd-arm), type Rusage struct, Nvcsw int32
+pkg syscall (freebsd-arm), type Rusage struct, Oublock int32
+pkg syscall (freebsd-arm), type Rusage struct, Stime Timeval
+pkg syscall (freebsd-arm), type Rusage struct, Utime Timeval
+pkg syscall (freebsd-arm), type SockaddrDatalink struct
+pkg syscall (freebsd-arm), type SockaddrDatalink struct, Alen uint8
+pkg syscall (freebsd-arm), type SockaddrDatalink struct, Data [46]int8
+pkg syscall (freebsd-arm), type SockaddrDatalink struct, Family uint8
+pkg syscall (freebsd-arm), type SockaddrDatalink struct, Index uint16
+pkg syscall (freebsd-arm), type SockaddrDatalink struct, Len uint8
+pkg syscall (freebsd-arm), type SockaddrDatalink struct, Nlen uint8
+pkg syscall (freebsd-arm), type SockaddrDatalink struct, Slen uint8
+pkg syscall (freebsd-arm), type SockaddrDatalink struct, Type uint8
+pkg syscall (freebsd-arm), type SocketControlMessage struct
+pkg syscall (freebsd-arm), type SocketControlMessage struct, Data []uint8
+pkg syscall (freebsd-arm), type SocketControlMessage struct, Header Cmsghdr
+pkg syscall (freebsd-arm), type Stat_t struct
+pkg syscall (freebsd-arm), type Stat_t struct, Atimespec Timespec
+pkg syscall (freebsd-arm), type Stat_t struct, Birthtimespec Timespec
+pkg syscall (freebsd-arm), type Stat_t struct, Blksize uint32
+pkg syscall (freebsd-arm), type Stat_t struct, Blocks int64
+pkg syscall (freebsd-arm), type Stat_t struct, Ctimespec Timespec
+pkg syscall (freebsd-arm), type Stat_t struct, Dev uint32
+pkg syscall (freebsd-arm), type Stat_t struct, Flags uint32
+pkg syscall (freebsd-arm), type Stat_t struct, Gen uint32
+pkg syscall (freebsd-arm), type Stat_t struct, Gid uint32
+pkg syscall (freebsd-arm), type Stat_t struct, Ino uint32
+pkg syscall (freebsd-arm), type Stat_t struct, Lspare int32
+pkg syscall (freebsd-arm), type Stat_t struct, Mode uint16
+pkg syscall (freebsd-arm), type Stat_t struct, Mtimespec Timespec
+pkg syscall (freebsd-arm), type Stat_t struct, Nlink uint16
+pkg syscall (freebsd-arm), type Stat_t struct, Pad_cgo_0 [4]uint8
+pkg syscall (freebsd-arm), type Stat_t struct, Rdev uint32
+pkg syscall (freebsd-arm), type Stat_t struct, Size int64
+pkg syscall (freebsd-arm), type Stat_t struct, Uid uint32
+pkg syscall (freebsd-arm), type Statfs_t struct
+pkg syscall (freebsd-arm), type Statfs_t struct, Asyncreads uint64
+pkg syscall (freebsd-arm), type Statfs_t struct, Asyncwrites uint64
+pkg syscall (freebsd-arm), type Statfs_t struct, Bavail int64
+pkg syscall (freebsd-arm), type Statfs_t struct, Bfree uint64
+pkg syscall (freebsd-arm), type Statfs_t struct, Blocks uint64
+pkg syscall (freebsd-arm), type Statfs_t struct, Bsize uint64
+pkg syscall (freebsd-arm), type Statfs_t struct, Charspare [80]int8
+pkg syscall (freebsd-arm), type Statfs_t struct, Ffree int64
+pkg syscall (freebsd-arm), type Statfs_t struct, Files uint64
+pkg syscall (freebsd-arm), type Statfs_t struct, Flags uint64
+pkg syscall (freebsd-arm), type Statfs_t struct, Fsid Fsid
+pkg syscall (freebsd-arm), type Statfs_t struct, Fstypename [16]int8
+pkg syscall (freebsd-arm), type Statfs_t struct, Iosize uint64
+pkg syscall (freebsd-arm), type Statfs_t struct, Mntfromname [88]int8
+pkg syscall (freebsd-arm), type Statfs_t struct, Mntonname [88]int8
+pkg syscall (freebsd-arm), type Statfs_t struct, Namemax uint32
+pkg syscall (freebsd-arm), type Statfs_t struct, Owner uint32
+pkg syscall (freebsd-arm), type Statfs_t struct, Spare [10]uint64
+pkg syscall (freebsd-arm), type Statfs_t struct, Syncreads uint64
+pkg syscall (freebsd-arm), type Statfs_t struct, Syncwrites uint64
+pkg syscall (freebsd-arm), type Statfs_t struct, Type uint32
+pkg syscall (freebsd-arm), type Statfs_t struct, Version uint32
+pkg syscall (freebsd-arm), type SysProcAttr struct, Chroot string
+pkg syscall (freebsd-arm), type SysProcAttr struct, Credential *Credential
+pkg syscall (freebsd-arm), type SysProcAttr struct, Noctty bool
+pkg syscall (freebsd-arm), type SysProcAttr struct, Ptrace bool
+pkg syscall (freebsd-arm), type SysProcAttr struct, Setctty bool
+pkg syscall (freebsd-arm), type SysProcAttr struct, Setpgid bool
+pkg syscall (freebsd-arm), type SysProcAttr struct, Setsid bool
+pkg syscall (freebsd-arm), type Timespec struct, Nsec int32
+pkg syscall (freebsd-arm), type Timespec struct, Sec int64
+pkg syscall (freebsd-arm), type Timeval struct, Sec int64
+pkg syscall (freebsd-arm), type Timeval struct, Usec int32
+pkg syscall (freebsd-arm), type WaitStatus uint32
+pkg syscall (freebsd-arm), var Stderr int
+pkg syscall (freebsd-arm), var Stdin int
+pkg syscall (freebsd-arm), var Stdout int
+pkg syscall (freebsd-arm-cgo), const AF_APPLETALK ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_ARP ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_ATM ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_BLUETOOTH ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_CCITT ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_CHAOS ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_CNT ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_COIP ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_DATAKIT ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_DECnet ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_DLI ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_E164 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_ECMA ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_HYLINK ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_IEEE80211 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_IMPLINK ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_IPX ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_ISDN ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_ISO ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_LAT ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_LINK ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_LOCAL ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_MAX ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_NATM ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_NETBIOS ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_NETGRAPH ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_OSI ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_PUP ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_ROUTE ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_SCLUSTER ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_SIP ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_SLOW ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_SNA ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_VENDOR00 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_VENDOR01 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_VENDOR02 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_VENDOR03 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_VENDOR04 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_VENDOR05 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_VENDOR06 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_VENDOR07 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_VENDOR08 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_VENDOR09 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_VENDOR10 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_VENDOR11 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_VENDOR12 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_VENDOR13 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_VENDOR14 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_VENDOR15 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_VENDOR16 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_VENDOR17 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_VENDOR18 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_VENDOR19 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_VENDOR20 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_VENDOR21 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_VENDOR22 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_VENDOR23 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_VENDOR24 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_VENDOR25 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_VENDOR26 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_VENDOR27 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_VENDOR28 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_VENDOR29 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_VENDOR30 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_VENDOR31 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_VENDOR32 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_VENDOR33 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_VENDOR34 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_VENDOR35 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_VENDOR36 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_VENDOR37 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_VENDOR38 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_VENDOR39 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_VENDOR40 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_VENDOR41 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_VENDOR42 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_VENDOR43 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_VENDOR44 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_VENDOR45 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_VENDOR46 ideal-int
+pkg syscall (freebsd-arm-cgo), const AF_VENDOR47 ideal-int
+pkg syscall (freebsd-arm-cgo), const B0 ideal-int
+pkg syscall (freebsd-arm-cgo), const B110 ideal-int
+pkg syscall (freebsd-arm-cgo), const B115200 ideal-int
+pkg syscall (freebsd-arm-cgo), const B1200 ideal-int
+pkg syscall (freebsd-arm-cgo), const B134 ideal-int
+pkg syscall (freebsd-arm-cgo), const B14400 ideal-int
+pkg syscall (freebsd-arm-cgo), const B150 ideal-int
+pkg syscall (freebsd-arm-cgo), const B1800 ideal-int
+pkg syscall (freebsd-arm-cgo), const B19200 ideal-int
+pkg syscall (freebsd-arm-cgo), const B200 ideal-int
+pkg syscall (freebsd-arm-cgo), const B230400 ideal-int
+pkg syscall (freebsd-arm-cgo), const B2400 ideal-int
+pkg syscall (freebsd-arm-cgo), const B28800 ideal-int
+pkg syscall (freebsd-arm-cgo), const B300 ideal-int
+pkg syscall (freebsd-arm-cgo), const B38400 ideal-int
+pkg syscall (freebsd-arm-cgo), const B460800 ideal-int
+pkg syscall (freebsd-arm-cgo), const B4800 ideal-int
+pkg syscall (freebsd-arm-cgo), const B50 ideal-int
+pkg syscall (freebsd-arm-cgo), const B57600 ideal-int
+pkg syscall (freebsd-arm-cgo), const B600 ideal-int
+pkg syscall (freebsd-arm-cgo), const B7200 ideal-int
+pkg syscall (freebsd-arm-cgo), const B75 ideal-int
+pkg syscall (freebsd-arm-cgo), const B76800 ideal-int
+pkg syscall (freebsd-arm-cgo), const B921600 ideal-int
+pkg syscall (freebsd-arm-cgo), const B9600 ideal-int
+pkg syscall (freebsd-arm-cgo), const BIOCFEEDBACK ideal-int
+pkg syscall (freebsd-arm-cgo), const BIOCFLUSH ideal-int
+pkg syscall (freebsd-arm-cgo), const BIOCGBLEN ideal-int
+pkg syscall (freebsd-arm-cgo), const BIOCGDIRECTION ideal-int
+pkg syscall (freebsd-arm-cgo), const BIOCGDLT ideal-int
+pkg syscall (freebsd-arm-cgo), const BIOCGDLTLIST ideal-int
+pkg syscall (freebsd-arm-cgo), const BIOCGETBUFMODE ideal-int
+pkg syscall (freebsd-arm-cgo), const BIOCGETIF ideal-int
+pkg syscall (freebsd-arm-cgo), const BIOCGETZMAX ideal-int
+pkg syscall (freebsd-arm-cgo), const BIOCGHDRCMPLT ideal-int
+pkg syscall (freebsd-arm-cgo), const BIOCGRSIG ideal-int
+pkg syscall (freebsd-arm-cgo), const BIOCGRTIMEOUT ideal-int
+pkg syscall (freebsd-arm-cgo), const BIOCGSEESENT ideal-int
+pkg syscall (freebsd-arm-cgo), const BIOCGSTATS ideal-int
+pkg syscall (freebsd-arm-cgo), const BIOCGTSTAMP ideal-int
+pkg syscall (freebsd-arm-cgo), const BIOCIMMEDIATE ideal-int
+pkg syscall (freebsd-arm-cgo), const BIOCLOCK ideal-int
+pkg syscall (freebsd-arm-cgo), const BIOCPROMISC ideal-int
+pkg syscall (freebsd-arm-cgo), const BIOCROTZBUF ideal-int
+pkg syscall (freebsd-arm-cgo), const BIOCSBLEN ideal-int
+pkg syscall (freebsd-arm-cgo), const BIOCSDIRECTION ideal-int
+pkg syscall (freebsd-arm-cgo), const BIOCSDLT ideal-int
+pkg syscall (freebsd-arm-cgo), const BIOCSETBUFMODE ideal-int
+pkg syscall (freebsd-arm-cgo), const BIOCSETF ideal-int
+pkg syscall (freebsd-arm-cgo), const BIOCSETFNR ideal-int
+pkg syscall (freebsd-arm-cgo), const BIOCSETIF ideal-int
+pkg syscall (freebsd-arm-cgo), const BIOCSETWF ideal-int
+pkg syscall (freebsd-arm-cgo), const BIOCSETZBUF ideal-int
+pkg syscall (freebsd-arm-cgo), const BIOCSHDRCMPLT ideal-int
+pkg syscall (freebsd-arm-cgo), const BIOCSRSIG ideal-int
+pkg syscall (freebsd-arm-cgo), const BIOCSRTIMEOUT ideal-int
+pkg syscall (freebsd-arm-cgo), const BIOCSSEESENT ideal-int
+pkg syscall (freebsd-arm-cgo), const BIOCSTSTAMP ideal-int
+pkg syscall (freebsd-arm-cgo), const BIOCVERSION ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_A ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_ABS ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_ADD ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_ALIGNMENT ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_ALU ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_AND ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_B ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_BUFMODE_BUFFER ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_BUFMODE_ZBUF ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_DIV ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_H ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_IMM ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_IND ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_JA ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_JEQ ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_JGE ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_JGT ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_JMP ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_JSET ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_K ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_LD ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_LDX ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_LEN ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_LSH ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_MAJOR_VERSION ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_MAXBUFSIZE ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_MAXINSNS ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_MEM ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_MEMWORDS ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_MINBUFSIZE ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_MINOR_VERSION ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_MISC ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_MSH ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_MUL ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_NEG ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_OR ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_RELEASE ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_RET ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_RSH ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_ST ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_STX ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_SUB ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_TAX ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_TXA ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_T_BINTIME ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_T_BINTIME_FAST ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_T_BINTIME_MONOTONIC ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_T_BINTIME_MONOTONIC_FAST ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_T_FAST ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_T_FLAG_MASK ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_T_FORMAT_MASK ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_T_MICROTIME ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_T_MICROTIME_FAST ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_T_MICROTIME_MONOTONIC ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_T_MICROTIME_MONOTONIC_FAST ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_T_MONOTONIC ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_T_MONOTONIC_FAST ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_T_NANOTIME ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_T_NANOTIME_FAST ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_T_NANOTIME_MONOTONIC ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_T_NANOTIME_MONOTONIC_FAST ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_T_NONE ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_T_NORMAL ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_W ideal-int
+pkg syscall (freebsd-arm-cgo), const BPF_X ideal-int
+pkg syscall (freebsd-arm-cgo), const BRKINT ideal-int
+pkg syscall (freebsd-arm-cgo), const CFLUSH ideal-int
+pkg syscall (freebsd-arm-cgo), const CLOCAL ideal-int
+pkg syscall (freebsd-arm-cgo), const CREAD ideal-int
+pkg syscall (freebsd-arm-cgo), const CS5 ideal-int
+pkg syscall (freebsd-arm-cgo), const CS6 ideal-int
+pkg syscall (freebsd-arm-cgo), const CS7 ideal-int
+pkg syscall (freebsd-arm-cgo), const CS8 ideal-int
+pkg syscall (freebsd-arm-cgo), const CSIZE ideal-int
+pkg syscall (freebsd-arm-cgo), const CSTART ideal-int
+pkg syscall (freebsd-arm-cgo), const CSTATUS ideal-int
+pkg syscall (freebsd-arm-cgo), const CSTOP ideal-int
+pkg syscall (freebsd-arm-cgo), const CSTOPB ideal-int
+pkg syscall (freebsd-arm-cgo), const CSUSP ideal-int
+pkg syscall (freebsd-arm-cgo), const CTL_MAXNAME ideal-int
+pkg syscall (freebsd-arm-cgo), const CTL_NET ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_A429 ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_A653_ICM ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_AIRONET_HEADER ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_AOS ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_ARCNET ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_ARCNET_LINUX ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_ATM_CLIP ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_ATM_RFC1483 ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_AURORA ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_AX25 ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_AX25_KISS ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_BACNET_MS_TP ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_BLUETOOTH_HCI_H4 ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_CAN20B ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_CAN_SOCKETCAN ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_CHAOS ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_CHDLC ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_CISCO_IOS ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_C_HDLC ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_C_HDLC_WITH_DIR ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_DBUS ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_DECT ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_DOCSIS ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_DVB_CI ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_ECONET ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_EN10MB ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_EN3MB ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_ENC ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_ERF ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_ERF_ETH ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_ERF_POS ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_FC_2 ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_FC_2_WITH_FRAME_DELIMS ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_FDDI ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_FLEXRAY ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_FRELAY ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_FRELAY_WITH_DIR ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_GCOM_SERIAL ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_GCOM_T1E1 ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_GPF_F ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_GPF_T ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_GPRS_LLC ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_GSMTAP_ABIS ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_GSMTAP_UM ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_HHDLC ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_IBM_SN ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_IBM_SP ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_IEEE802 ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_IEEE802_11 ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_IEEE802_11_RADIO ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_IEEE802_11_RADIO_AVS ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_IEEE802_15_4 ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_IEEE802_15_4_LINUX ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_IEEE802_15_4_NOFCS ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_IEEE802_15_4_NONASK_PHY ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_IEEE802_16_MAC_CPS ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_IEEE802_16_MAC_CPS_RADIO ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_IPFILTER ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_IPMB ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_IPMB_LINUX ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_IPNET ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_IPOIB ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_IPV4 ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_IPV6 ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_IP_OVER_FC ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_ATM1 ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_ATM2 ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_ATM_CEMIC ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_CHDLC ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_ES ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_ETHER ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_FIBRECHANNEL ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_FRELAY ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_GGSN ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_ISM ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_MFR ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_MLFR ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_MLPPP ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_MONITOR ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_PIC_PEER ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_PPP ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_PPPOE ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_PPPOE_ATM ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_SERVICES ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_SRX_E2E ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_ST ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_VP ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_VS ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_LAPB_WITH_DIR ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_LAPD ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_LIN ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_LINUX_EVDEV ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_LINUX_IRDA ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_LINUX_LAPD ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_LINUX_PPP_WITHDIRECTION ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_LINUX_SLL ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_LOOP ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_LTALK ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_MATCHING_MAX ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_MATCHING_MIN ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_MFR ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_MOST ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_MPEG_2_TS ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_MPLS ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_MTP2 ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_MTP2_WITH_PHDR ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_MTP3 ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_MUX27010 ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_NETANALYZER ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_NETANALYZER_TRANSPARENT ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_NFC_LLCP ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_NFLOG ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_NG40 ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_NULL ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_PCI_EXP ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_PFLOG ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_PFSYNC ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_PPI ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_PPP ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_PPP_BSDOS ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_PPP_ETHER ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_PPP_PPPD ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_PPP_SERIAL ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_PPP_WITH_DIR ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_PPP_WITH_DIRECTION ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_PRISM_HEADER ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_PRONET ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_RAIF1 ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_RAW ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_RIO ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_SCCP ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_SITA ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_SLIP ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_SLIP_BSDOS ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_STANAG_5066_D_PDU ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_SUNATM ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_SYMANTEC_FIREWALL ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_TZSP ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_USB ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_USB_LINUX ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_USB_LINUX_MMAPPED ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_USER0 ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_USER1 ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_USER10 ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_USER11 ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_USER12 ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_USER13 ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_USER14 ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_USER15 ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_USER2 ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_USER3 ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_USER4 ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_USER5 ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_USER6 ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_USER7 ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_USER8 ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_USER9 ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_WIHART ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_X2E_SERIAL ideal-int
+pkg syscall (freebsd-arm-cgo), const DLT_X2E_XORAYA ideal-int
+pkg syscall (freebsd-arm-cgo), const DT_BLK ideal-int
+pkg syscall (freebsd-arm-cgo), const DT_CHR ideal-int
+pkg syscall (freebsd-arm-cgo), const DT_DIR ideal-int
+pkg syscall (freebsd-arm-cgo), const DT_FIFO ideal-int
+pkg syscall (freebsd-arm-cgo), const DT_LNK ideal-int
+pkg syscall (freebsd-arm-cgo), const DT_REG ideal-int
+pkg syscall (freebsd-arm-cgo), const DT_SOCK ideal-int
+pkg syscall (freebsd-arm-cgo), const DT_UNKNOWN ideal-int
+pkg syscall (freebsd-arm-cgo), const DT_WHT ideal-int
+pkg syscall (freebsd-arm-cgo), const EAUTH Errno
+pkg syscall (freebsd-arm-cgo), const EBADMSG Errno
+pkg syscall (freebsd-arm-cgo), const EBADRPC Errno
+pkg syscall (freebsd-arm-cgo), const ECAPMODE Errno
+pkg syscall (freebsd-arm-cgo), const ECHO ideal-int
+pkg syscall (freebsd-arm-cgo), const ECHOCTL ideal-int
+pkg syscall (freebsd-arm-cgo), const ECHOE ideal-int
+pkg syscall (freebsd-arm-cgo), const ECHOK ideal-int
+pkg syscall (freebsd-arm-cgo), const ECHOKE ideal-int
+pkg syscall (freebsd-arm-cgo), const ECHONL ideal-int
+pkg syscall (freebsd-arm-cgo), const ECHOPRT ideal-int
+pkg syscall (freebsd-arm-cgo), const EDOOFUS Errno
+pkg syscall (freebsd-arm-cgo), const EFTYPE Errno
+pkg syscall (freebsd-arm-cgo), const ELAST Errno
+pkg syscall (freebsd-arm-cgo), const EMULTIHOP Errno
+pkg syscall (freebsd-arm-cgo), const ENEEDAUTH Errno
+pkg syscall (freebsd-arm-cgo), const ENOATTR Errno
+pkg syscall (freebsd-arm-cgo), const ENOLINK Errno
+pkg syscall (freebsd-arm-cgo), const ENOTCAPABLE Errno
+pkg syscall (freebsd-arm-cgo), const EPROCLIM Errno
+pkg syscall (freebsd-arm-cgo), const EPROCUNAVAIL Errno
+pkg syscall (freebsd-arm-cgo), const EPROGMISMATCH Errno
+pkg syscall (freebsd-arm-cgo), const EPROGUNAVAIL Errno
+pkg syscall (freebsd-arm-cgo), const EPROTO Errno
+pkg syscall (freebsd-arm-cgo), const ERPCMISMATCH Errno
+pkg syscall (freebsd-arm-cgo), const EVFILT_AIO ideal-int
+pkg syscall (freebsd-arm-cgo), const EVFILT_FS ideal-int
+pkg syscall (freebsd-arm-cgo), const EVFILT_LIO ideal-int
+pkg syscall (freebsd-arm-cgo), const EVFILT_PROC ideal-int
+pkg syscall (freebsd-arm-cgo), const EVFILT_READ ideal-int
+pkg syscall (freebsd-arm-cgo), const EVFILT_SIGNAL ideal-int
+pkg syscall (freebsd-arm-cgo), const EVFILT_SYSCOUNT ideal-int
+pkg syscall (freebsd-arm-cgo), const EVFILT_TIMER ideal-int
+pkg syscall (freebsd-arm-cgo), const EVFILT_USER ideal-int
+pkg syscall (freebsd-arm-cgo), const EVFILT_VNODE ideal-int
+pkg syscall (freebsd-arm-cgo), const EVFILT_WRITE ideal-int
+pkg syscall (freebsd-arm-cgo), const EV_ADD ideal-int
+pkg syscall (freebsd-arm-cgo), const EV_CLEAR ideal-int
+pkg syscall (freebsd-arm-cgo), const EV_DELETE ideal-int
+pkg syscall (freebsd-arm-cgo), const EV_DISABLE ideal-int
+pkg syscall (freebsd-arm-cgo), const EV_DISPATCH ideal-int
+pkg syscall (freebsd-arm-cgo), const EV_ENABLE ideal-int
+pkg syscall (freebsd-arm-cgo), const EV_EOF ideal-int
+pkg syscall (freebsd-arm-cgo), const EV_ERROR ideal-int
+pkg syscall (freebsd-arm-cgo), const EV_FLAG1 ideal-int
+pkg syscall (freebsd-arm-cgo), const EV_ONESHOT ideal-int
+pkg syscall (freebsd-arm-cgo), const EV_RECEIPT ideal-int
+pkg syscall (freebsd-arm-cgo), const EV_SYSFLAGS ideal-int
+pkg syscall (freebsd-arm-cgo), const EXTA ideal-int
+pkg syscall (freebsd-arm-cgo), const EXTB ideal-int
+pkg syscall (freebsd-arm-cgo), const EXTPROC ideal-int
+pkg syscall (freebsd-arm-cgo), const FD_CLOEXEC ideal-int
+pkg syscall (freebsd-arm-cgo), const FD_SETSIZE ideal-int
+pkg syscall (freebsd-arm-cgo), const FLUSHO ideal-int
+pkg syscall (freebsd-arm-cgo), const F_CANCEL ideal-int
+pkg syscall (freebsd-arm-cgo), const F_DUP2FD ideal-int
+pkg syscall (freebsd-arm-cgo), const F_DUP2FD_CLOEXEC ideal-int
+pkg syscall (freebsd-arm-cgo), const F_DUPFD ideal-int
+pkg syscall (freebsd-arm-cgo), const F_DUPFD_CLOEXEC ideal-int
+pkg syscall (freebsd-arm-cgo), const F_GETFD ideal-int
+pkg syscall (freebsd-arm-cgo), const F_GETFL ideal-int
+pkg syscall (freebsd-arm-cgo), const F_GETLK ideal-int
+pkg syscall (freebsd-arm-cgo), const F_GETOWN ideal-int
+pkg syscall (freebsd-arm-cgo), const F_OGETLK ideal-int
+pkg syscall (freebsd-arm-cgo), const F_OK ideal-int
+pkg syscall (freebsd-arm-cgo), const F_OSETLK ideal-int
+pkg syscall (freebsd-arm-cgo), const F_OSETLKW ideal-int
+pkg syscall (freebsd-arm-cgo), const F_RDAHEAD ideal-int
+pkg syscall (freebsd-arm-cgo), const F_RDLCK ideal-int
+pkg syscall (freebsd-arm-cgo), const F_READAHEAD ideal-int
+pkg syscall (freebsd-arm-cgo), const F_SETFD ideal-int
+pkg syscall (freebsd-arm-cgo), const F_SETFL ideal-int
+pkg syscall (freebsd-arm-cgo), const F_SETLK ideal-int
+pkg syscall (freebsd-arm-cgo), const F_SETLKW ideal-int
+pkg syscall (freebsd-arm-cgo), const F_SETLK_REMOTE ideal-int
+pkg syscall (freebsd-arm-cgo), const F_SETOWN ideal-int
+pkg syscall (freebsd-arm-cgo), const F_UNLCK ideal-int
+pkg syscall (freebsd-arm-cgo), const F_UNLCKSYS ideal-int
+pkg syscall (freebsd-arm-cgo), const F_WRLCK ideal-int
+pkg syscall (freebsd-arm-cgo), const HUPCL ideal-int
+pkg syscall (freebsd-arm-cgo), const ICANON ideal-int
+pkg syscall (freebsd-arm-cgo), const ICMP6_FILTER = 18
+pkg syscall (freebsd-arm-cgo), const ICMP6_FILTER ideal-int
+pkg syscall (freebsd-arm-cgo), const ICRNL ideal-int
+pkg syscall (freebsd-arm-cgo), const IEXTEN ideal-int
+pkg syscall (freebsd-arm-cgo), const IFAN_ARRIVAL ideal-int
+pkg syscall (freebsd-arm-cgo), const IFAN_DEPARTURE ideal-int
+pkg syscall (freebsd-arm-cgo), const IFF_ALLMULTI ideal-int
+pkg syscall (freebsd-arm-cgo), const IFF_ALTPHYS ideal-int
+pkg syscall (freebsd-arm-cgo), const IFF_CANTCHANGE ideal-int
+pkg syscall (freebsd-arm-cgo), const IFF_CANTCONFIG ideal-int
+pkg syscall (freebsd-arm-cgo), const IFF_DEBUG ideal-int
+pkg syscall (freebsd-arm-cgo), const IFF_DRV_OACTIVE ideal-int
+pkg syscall (freebsd-arm-cgo), const IFF_DRV_RUNNING ideal-int
+pkg syscall (freebsd-arm-cgo), const IFF_DYING ideal-int
+pkg syscall (freebsd-arm-cgo), const IFF_LINK0 ideal-int
+pkg syscall (freebsd-arm-cgo), const IFF_LINK1 ideal-int
+pkg syscall (freebsd-arm-cgo), const IFF_LINK2 ideal-int
+pkg syscall (freebsd-arm-cgo), const IFF_MONITOR ideal-int
+pkg syscall (freebsd-arm-cgo), const IFF_NOARP ideal-int
+pkg syscall (freebsd-arm-cgo), const IFF_OACTIVE ideal-int
+pkg syscall (freebsd-arm-cgo), const IFF_POINTOPOINT ideal-int
+pkg syscall (freebsd-arm-cgo), const IFF_PPROMISC ideal-int
+pkg syscall (freebsd-arm-cgo), const IFF_PROMISC ideal-int
+pkg syscall (freebsd-arm-cgo), const IFF_RENAMING ideal-int
+pkg syscall (freebsd-arm-cgo), const IFF_RUNNING ideal-int
+pkg syscall (freebsd-arm-cgo), const IFF_SIMPLEX ideal-int
+pkg syscall (freebsd-arm-cgo), const IFF_SMART ideal-int
+pkg syscall (freebsd-arm-cgo), const IFF_STATICARP ideal-int
+pkg syscall (freebsd-arm-cgo), const IFNAMSIZ ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_1822 ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_A12MPPSWITCH ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_AAL2 ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_AAL5 ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_ADSL ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_AFLANE8023 ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_AFLANE8025 ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_ARAP ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_ARCNET ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_ARCNETPLUS ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_ASYNC ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_ATM ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_ATMDXI ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_ATMFUNI ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_ATMIMA ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_ATMLOGICAL ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_ATMRADIO ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_ATMSUBINTERFACE ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_ATMVCIENDPT ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_ATMVIRTUAL ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_BGPPOLICYACCOUNTING ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_BRIDGE ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_BSC ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_CCTEMUL ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_CEPT ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_CES ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_CHANNEL ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_CNR ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_COFFEE ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_COMPOSITELINK ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_DCN ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_DIGITALPOWERLINE ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_DLSW ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_DOCSCABLEDOWNSTREAM ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_DOCSCABLEMACLAYER ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_DOCSCABLEUPSTREAM ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_DS0 ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_DS0BUNDLE ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_DS1FDL ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_DS3 ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_DTM ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_DVBASILN ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_DVBASIOUT ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_DVBRCCDOWNSTREAM ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_DVBRCCMACLAYER ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_DVBRCCUPSTREAM ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_ENC ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_EON ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_EPLRS ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_ESCON ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_ETHER ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_FAITH ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_FAST ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_FASTETHER ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_FASTETHERFX ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_FDDI ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_FIBRECHANNEL ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_FRAMERELAYINTERCONNECT ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_FRAMERELAYMPI ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_FRDLCIENDPT ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_FRELAY ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_FRELAYDCE ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_FRF16MFRBUNDLE ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_FRFORWARD ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_G703AT2MB ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_G703AT64K ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_GIF ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_GIGABITETHERNET ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_GR303IDT ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_GR303RDT ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_H323GATEKEEPER ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_H323PROXY ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_HDH1822 ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_HDLC ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_HDSL2 ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_HIPERLAN2 ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_HIPPI ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_HIPPIINTERFACE ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_HOSTPAD ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_HSSI ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_HY ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_IBM370PARCHAN ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_IDSL ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_IEEE1394 ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_IEEE80211 ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_IEEE80212 ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_IEEE8023ADLAG ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_IFGSN ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_IMT ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_INFINIBAND ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_INTERLEAVE ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_IP ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_IPFORWARD ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_IPOVERATM ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_IPOVERCDLC ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_IPOVERCLAW ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_IPSWITCH ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_IPXIP ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_ISDN ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_ISDNBASIC ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_ISDNPRIMARY ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_ISDNS ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_ISDNU ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_ISO88022LLC ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_ISO88023 ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_ISO88024 ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_ISO88025 ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_ISO88025CRFPINT ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_ISO88025DTR ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_ISO88025FIBER ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_ISO88026 ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_ISUP ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_L2VLAN ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_L3IPVLAN ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_L3IPXVLAN ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_LAPB ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_LAPD ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_LAPF ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_LOCALTALK ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_LOOP ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_MEDIAMAILOVERIP ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_MFSIGLINK ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_MIOX25 ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_MODEM ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_MPC ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_MPLS ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_MPLSTUNNEL ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_MSDSL ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_MVL ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_MYRINET ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_NFAS ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_NSIP ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_OPTICALCHANNEL ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_OPTICALTRANSPORT ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_OTHER ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_P10 ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_P80 ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_PARA ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_PFLOG ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_PFSYNC ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_PLC ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_POS ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_PPP ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_PPPMULTILINKBUNDLE ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_PROPBWAP2MP ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_PROPCNLS ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_PROPMUX ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_PROPVIRTUAL ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_PROPWIRELESSP2P ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_PTPSERIAL ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_PVC ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_QLLC ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_RADIOMAC ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_RADSL ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_REACHDSL ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_RFC1483 ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_RS232 ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_RSRB ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_SDLC ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_SDSL ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_SHDSL ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_SIP ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_SLIP ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_SMDSDXI ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_SMDSICIP ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_SONET ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_SONETOVERHEADCHANNEL ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_SONETPATH ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_SONETVT ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_SRP ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_SS7SIGLINK ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_STACKTOSTACK ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_STARLAN ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_STF ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_T1 ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_TDLC ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_TERMPAD ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_TR008 ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_TRANSPHDLC ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_TUNNEL ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_ULTRA ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_USB ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_V11 ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_V35 ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_V36 ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_V37 ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_VDSL ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_VIRTUALIPADDRESS ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_VOICEEM ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_VOICEENCAP ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_VOICEFXO ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_VOICEFXS ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_VOICEOVERATM ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_VOICEOVERFRAMERELAY ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_VOICEOVERIP ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_X213 ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_X25 ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_X25DDN ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_X25HUNTGROUP ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_X25MLP ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_X25PLE ideal-int
+pkg syscall (freebsd-arm-cgo), const IFT_XETHER ideal-int
+pkg syscall (freebsd-arm-cgo), const IGNBRK ideal-int
+pkg syscall (freebsd-arm-cgo), const IGNCR ideal-int
+pkg syscall (freebsd-arm-cgo), const IGNPAR ideal-int
+pkg syscall (freebsd-arm-cgo), const IMAXBEL ideal-int
+pkg syscall (freebsd-arm-cgo), const INLCR ideal-int
+pkg syscall (freebsd-arm-cgo), const INPCK ideal-int
+pkg syscall (freebsd-arm-cgo), const IN_CLASSA_HOST ideal-int
+pkg syscall (freebsd-arm-cgo), const IN_CLASSA_MAX ideal-int
+pkg syscall (freebsd-arm-cgo), const IN_CLASSA_NET ideal-int
+pkg syscall (freebsd-arm-cgo), const IN_CLASSA_NSHIFT ideal-int
+pkg syscall (freebsd-arm-cgo), const IN_CLASSB_HOST ideal-int
+pkg syscall (freebsd-arm-cgo), const IN_CLASSB_MAX ideal-int
+pkg syscall (freebsd-arm-cgo), const IN_CLASSB_NET ideal-int
+pkg syscall (freebsd-arm-cgo), const IN_CLASSB_NSHIFT ideal-int
+pkg syscall (freebsd-arm-cgo), const IN_CLASSC_HOST ideal-int
+pkg syscall (freebsd-arm-cgo), const IN_CLASSC_NET ideal-int
+pkg syscall (freebsd-arm-cgo), const IN_CLASSC_NSHIFT ideal-int
+pkg syscall (freebsd-arm-cgo), const IN_CLASSD_HOST ideal-int
+pkg syscall (freebsd-arm-cgo), const IN_CLASSD_NET ideal-int
+pkg syscall (freebsd-arm-cgo), const IN_CLASSD_NSHIFT ideal-int
+pkg syscall (freebsd-arm-cgo), const IN_LOOPBACKNET ideal-int
+pkg syscall (freebsd-arm-cgo), const IN_RFC3021_MASK ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_3PC ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_ADFS ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_AH ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_AHIP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_APES ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_ARGUS ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_AX25 ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_BHA ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_BLT ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_BRSATMON ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_CARP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_CFTP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_CHAOS ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_CMTP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_CPHB ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_CPNX ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_DDP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_DGP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_DIVERT ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_DONE ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_DSTOPTS ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_EGP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_EMCON ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_ENCAP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_EON ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_ESP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_ETHERIP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_FRAGMENT ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_GGP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_GMTP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_GRE ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_HELLO ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_HMP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_HOPOPTS ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_ICMP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_ICMPV6 ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_IDP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_IDPR ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_IDRP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_IGMP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_IGP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_IGRP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_IL ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_INLSP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_INP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_IPCOMP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_IPCV ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_IPEIP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_IPIP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_IPPC ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_IPV4 ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_IRTP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_KRYPTOLAN ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_LARP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_LEAF1 ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_LEAF2 ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_MAX ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_MAXID ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_MEAS ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_MH ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_MHRP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_MICP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_MOBILE ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_MPLS ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_MTP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_MUX ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_ND ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_NHRP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_NONE ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_NSP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_NVPII ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_OLD_DIVERT ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_OSPFIGP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_PFSYNC ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_PGM ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_PIGP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_PIM ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_PRM ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_PUP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_PVP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_RAW ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_RCCMON ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_RDP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_ROUTING ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_RSVP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_RVD ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_SATEXPAK ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_SATMON ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_SCCSP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_SCTP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_SDRP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_SEND ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_SEP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_SKIP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_SPACER ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_SRPC ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_ST ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_SVMTP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_SWIPE ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_TCF ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_TLSP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_TP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_TPXX ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_TRUNK1 ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_TRUNK2 ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_TTP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_VINES ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_VISA ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_VMTP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_WBEXPAK ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_WBMON ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_WSN ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_XNET ideal-int
+pkg syscall (freebsd-arm-cgo), const IPPROTO_XTP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_AUTOFLOWLABEL ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_BINDANY ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_BINDV6ONLY ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_CHECKSUM ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_DEFHLIM ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_DONTFRAG ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_DSTOPTS ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_FAITH ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_FLOWINFO_MASK ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_FLOWLABEL_MASK ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_FRAGTTL ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_FW_ADD ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_FW_DEL ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_FW_FLUSH ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_FW_GET ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_FW_ZERO ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_HLIMDEC ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_HOPLIMIT ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_HOPOPTS ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_IPSEC_POLICY ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_MAXHLIM ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_MAXOPTHDR ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_MAXPACKET ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_MAX_GROUP_SRC_FILTER ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_MAX_MEMBERSHIPS ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_MAX_SOCK_SRC_FILTER ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_MIN_MEMBERSHIPS ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_MMTU ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_MSFILTER ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_NEXTHOP ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_PATHMTU ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_PKTINFO ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_PORTRANGE ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_PORTRANGE_DEFAULT ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_PORTRANGE_HIGH ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_PORTRANGE_LOW ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_PREFER_TEMPADDR ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_RECVDSTOPTS ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_RECVHOPLIMIT ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_RECVHOPOPTS ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_RECVPATHMTU ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_RECVPKTINFO ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_RECVRTHDR ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_RECVTCLASS ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_RTHDR ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_RTHDRDSTOPTS ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_RTHDR_LOOSE ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_RTHDR_STRICT ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_RTHDR_TYPE_0 ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_SOCKOPT_RESERVED1 ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_TCLASS ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_USE_MIN_MTU ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_VERSION ideal-int
+pkg syscall (freebsd-arm-cgo), const IPV6_VERSION_MASK ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_ADD_SOURCE_MEMBERSHIP ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_BINDANY ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_BLOCK_SOURCE ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_DEFAULT_MULTICAST_LOOP ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_DEFAULT_MULTICAST_TTL ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_DF ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_DONTFRAG ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_DROP_SOURCE_MEMBERSHIP ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_DUMMYNET3 ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_DUMMYNET_CONFIGURE ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_DUMMYNET_DEL ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_DUMMYNET_FLUSH ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_DUMMYNET_GET ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_FAITH ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_FW3 ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_FW_ADD ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_FW_DEL ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_FW_FLUSH ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_FW_GET ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_FW_NAT_CFG ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_FW_NAT_DEL ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_FW_NAT_GET_CONFIG ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_FW_NAT_GET_LOG ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_FW_RESETLOG ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_FW_TABLE_ADD ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_FW_TABLE_DEL ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_FW_TABLE_FLUSH ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_FW_TABLE_GETSIZE ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_FW_TABLE_LIST ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_FW_ZERO ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_HDRINCL ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_IPSEC_POLICY ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_MAXPACKET ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_MAX_GROUP_SRC_FILTER ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_MAX_MEMBERSHIPS ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_MAX_SOCK_MUTE_FILTER ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_MAX_SOCK_SRC_FILTER ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_MAX_SOURCE_FILTER ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_MF ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_MINTTL ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_MIN_MEMBERSHIPS ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_MSFILTER ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_MSS ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_MULTICAST_VIF ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_OFFMASK ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_ONESBCAST ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_OPTIONS ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_PORTRANGE ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_PORTRANGE_DEFAULT ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_PORTRANGE_HIGH ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_PORTRANGE_LOW ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_RECVDSTADDR ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_RECVIF ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_RECVOPTS ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_RECVRETOPTS ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_RECVTOS ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_RECVTTL ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_RETOPTS ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_RF ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_RSVP_OFF ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_RSVP_ON ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_RSVP_VIF_OFF ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_RSVP_VIF_ON ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_SENDSRCADDR ideal-int
+pkg syscall (freebsd-arm-cgo), const IP_UNBLOCK_SOURCE ideal-int
+pkg syscall (freebsd-arm-cgo), const ISIG ideal-int
+pkg syscall (freebsd-arm-cgo), const ISTRIP ideal-int
+pkg syscall (freebsd-arm-cgo), const IXANY ideal-int
+pkg syscall (freebsd-arm-cgo), const IXOFF ideal-int
+pkg syscall (freebsd-arm-cgo), const IXON ideal-int
+pkg syscall (freebsd-arm-cgo), const LOCK_EX ideal-int
+pkg syscall (freebsd-arm-cgo), const LOCK_NB ideal-int
+pkg syscall (freebsd-arm-cgo), const LOCK_SH ideal-int
+pkg syscall (freebsd-arm-cgo), const LOCK_UN ideal-int
+pkg syscall (freebsd-arm-cgo), const MADV_AUTOSYNC ideal-int
+pkg syscall (freebsd-arm-cgo), const MADV_CORE ideal-int
+pkg syscall (freebsd-arm-cgo), const MADV_DONTNEED ideal-int
+pkg syscall (freebsd-arm-cgo), const MADV_FREE ideal-int
+pkg syscall (freebsd-arm-cgo), const MADV_NOCORE ideal-int
+pkg syscall (freebsd-arm-cgo), const MADV_NORMAL ideal-int
+pkg syscall (freebsd-arm-cgo), const MADV_NOSYNC ideal-int
+pkg syscall (freebsd-arm-cgo), const MADV_PROTECT ideal-int
+pkg syscall (freebsd-arm-cgo), const MADV_RANDOM ideal-int
+pkg syscall (freebsd-arm-cgo), const MADV_SEQUENTIAL ideal-int
+pkg syscall (freebsd-arm-cgo), const MADV_WILLNEED ideal-int
+pkg syscall (freebsd-arm-cgo), const MAP_ANON ideal-int
+pkg syscall (freebsd-arm-cgo), const MAP_ANONYMOUS ideal-int
+pkg syscall (freebsd-arm-cgo), const MAP_COPY ideal-int
+pkg syscall (freebsd-arm-cgo), const MAP_FILE ideal-int
+pkg syscall (freebsd-arm-cgo), const MAP_FIXED ideal-int
+pkg syscall (freebsd-arm-cgo), const MAP_HASSEMAPHORE ideal-int
+pkg syscall (freebsd-arm-cgo), const MAP_NOCORE ideal-int
+pkg syscall (freebsd-arm-cgo), const MAP_NORESERVE ideal-int
+pkg syscall (freebsd-arm-cgo), const MAP_NOSYNC ideal-int
+pkg syscall (freebsd-arm-cgo), const MAP_PREFAULT_READ ideal-int
+pkg syscall (freebsd-arm-cgo), const MAP_PRIVATE ideal-int
+pkg syscall (freebsd-arm-cgo), const MAP_RENAME ideal-int
+pkg syscall (freebsd-arm-cgo), const MAP_RESERVED0080 ideal-int
+pkg syscall (freebsd-arm-cgo), const MAP_RESERVED0100 ideal-int
+pkg syscall (freebsd-arm-cgo), const MAP_SHARED ideal-int
+pkg syscall (freebsd-arm-cgo), const MAP_STACK ideal-int
+pkg syscall (freebsd-arm-cgo), const MCL_CURRENT ideal-int
+pkg syscall (freebsd-arm-cgo), const MCL_FUTURE ideal-int
+pkg syscall (freebsd-arm-cgo), const MSG_COMPAT ideal-int
+pkg syscall (freebsd-arm-cgo), const MSG_CTRUNC ideal-int
+pkg syscall (freebsd-arm-cgo), const MSG_DONTROUTE ideal-int
+pkg syscall (freebsd-arm-cgo), const MSG_DONTWAIT ideal-int
+pkg syscall (freebsd-arm-cgo), const MSG_EOF ideal-int
+pkg syscall (freebsd-arm-cgo), const MSG_EOR ideal-int
+pkg syscall (freebsd-arm-cgo), const MSG_NBIO ideal-int
+pkg syscall (freebsd-arm-cgo), const MSG_NOSIGNAL ideal-int
+pkg syscall (freebsd-arm-cgo), const MSG_NOTIFICATION ideal-int
+pkg syscall (freebsd-arm-cgo), const MSG_OOB ideal-int
+pkg syscall (freebsd-arm-cgo), const MSG_PEEK ideal-int
+pkg syscall (freebsd-arm-cgo), const MSG_TRUNC ideal-int
+pkg syscall (freebsd-arm-cgo), const MSG_WAITALL ideal-int
+pkg syscall (freebsd-arm-cgo), const MS_ASYNC ideal-int
+pkg syscall (freebsd-arm-cgo), const MS_INVALIDATE ideal-int
+pkg syscall (freebsd-arm-cgo), const MS_SYNC ideal-int
+pkg syscall (freebsd-arm-cgo), const NET_RT_DUMP ideal-int
+pkg syscall (freebsd-arm-cgo), const NET_RT_FLAGS ideal-int
+pkg syscall (freebsd-arm-cgo), const NET_RT_IFLIST ideal-int
+pkg syscall (freebsd-arm-cgo), const NET_RT_IFLISTL ideal-int
+pkg syscall (freebsd-arm-cgo), const NET_RT_IFMALIST ideal-int
+pkg syscall (freebsd-arm-cgo), const NET_RT_MAXID ideal-int
+pkg syscall (freebsd-arm-cgo), const NOFLSH ideal-int
+pkg syscall (freebsd-arm-cgo), const NOTE_ATTRIB ideal-int
+pkg syscall (freebsd-arm-cgo), const NOTE_CHILD ideal-int
+pkg syscall (freebsd-arm-cgo), const NOTE_DELETE ideal-int
+pkg syscall (freebsd-arm-cgo), const NOTE_EXEC ideal-int
+pkg syscall (freebsd-arm-cgo), const NOTE_EXIT ideal-int
+pkg syscall (freebsd-arm-cgo), const NOTE_EXTEND ideal-int
+pkg syscall (freebsd-arm-cgo), const NOTE_FFAND ideal-int
+pkg syscall (freebsd-arm-cgo), const NOTE_FFCOPY ideal-int
+pkg syscall (freebsd-arm-cgo), const NOTE_FFCTRLMASK ideal-int
+pkg syscall (freebsd-arm-cgo), const NOTE_FFLAGSMASK ideal-int
+pkg syscall (freebsd-arm-cgo), const NOTE_FFNOP ideal-int
+pkg syscall (freebsd-arm-cgo), const NOTE_FFOR ideal-int
+pkg syscall (freebsd-arm-cgo), const NOTE_FORK ideal-int
+pkg syscall (freebsd-arm-cgo), const NOTE_LINK ideal-int
+pkg syscall (freebsd-arm-cgo), const NOTE_LOWAT ideal-int
+pkg syscall (freebsd-arm-cgo), const NOTE_PCTRLMASK ideal-int
+pkg syscall (freebsd-arm-cgo), const NOTE_PDATAMASK ideal-int
+pkg syscall (freebsd-arm-cgo), const NOTE_RENAME ideal-int
+pkg syscall (freebsd-arm-cgo), const NOTE_REVOKE ideal-int
+pkg syscall (freebsd-arm-cgo), const NOTE_TRACK ideal-int
+pkg syscall (freebsd-arm-cgo), const NOTE_TRACKERR ideal-int
+pkg syscall (freebsd-arm-cgo), const NOTE_TRIGGER ideal-int
+pkg syscall (freebsd-arm-cgo), const NOTE_WRITE ideal-int
+pkg syscall (freebsd-arm-cgo), const OCRNL ideal-int
+pkg syscall (freebsd-arm-cgo), const ONLCR ideal-int
+pkg syscall (freebsd-arm-cgo), const ONLRET ideal-int
+pkg syscall (freebsd-arm-cgo), const ONOCR ideal-int
+pkg syscall (freebsd-arm-cgo), const ONOEOT ideal-int
+pkg syscall (freebsd-arm-cgo), const OPOST ideal-int
+pkg syscall (freebsd-arm-cgo), const O_ACCMODE ideal-int
+pkg syscall (freebsd-arm-cgo), const O_DIRECT ideal-int
+pkg syscall (freebsd-arm-cgo), const O_DIRECTORY ideal-int
+pkg syscall (freebsd-arm-cgo), const O_EXEC ideal-int
+pkg syscall (freebsd-arm-cgo), const O_EXLOCK ideal-int
+pkg syscall (freebsd-arm-cgo), const O_FSYNC ideal-int
+pkg syscall (freebsd-arm-cgo), const O_NDELAY ideal-int
+pkg syscall (freebsd-arm-cgo), const O_NOFOLLOW ideal-int
+pkg syscall (freebsd-arm-cgo), const O_SHLOCK ideal-int
+pkg syscall (freebsd-arm-cgo), const O_TTY_INIT ideal-int
+pkg syscall (freebsd-arm-cgo), const PARENB ideal-int
+pkg syscall (freebsd-arm-cgo), const PARMRK ideal-int
+pkg syscall (freebsd-arm-cgo), const PARODD ideal-int
+pkg syscall (freebsd-arm-cgo), const PENDIN ideal-int
+pkg syscall (freebsd-arm-cgo), const PRIO_PGRP = 1
+pkg syscall (freebsd-arm-cgo), const PRIO_PGRP ideal-int
+pkg syscall (freebsd-arm-cgo), const PRIO_PROCESS = 0
+pkg syscall (freebsd-arm-cgo), const PRIO_PROCESS ideal-int
+pkg syscall (freebsd-arm-cgo), const PRIO_USER = 2
+pkg syscall (freebsd-arm-cgo), const PRIO_USER ideal-int
+pkg syscall (freebsd-arm-cgo), const PROT_EXEC ideal-int
+pkg syscall (freebsd-arm-cgo), const PROT_NONE ideal-int
+pkg syscall (freebsd-arm-cgo), const PROT_READ ideal-int
+pkg syscall (freebsd-arm-cgo), const PROT_WRITE ideal-int
+pkg syscall (freebsd-arm-cgo), const PTRACE_CONT ideal-int
+pkg syscall (freebsd-arm-cgo), const PTRACE_KILL ideal-int
+pkg syscall (freebsd-arm-cgo), const PTRACE_TRACEME ideal-int
+pkg syscall (freebsd-arm-cgo), const RLIMIT_AS ideal-int
+pkg syscall (freebsd-arm-cgo), const RLIMIT_CORE ideal-int
+pkg syscall (freebsd-arm-cgo), const RLIMIT_CPU ideal-int
+pkg syscall (freebsd-arm-cgo), const RLIMIT_DATA ideal-int
+pkg syscall (freebsd-arm-cgo), const RLIMIT_FSIZE ideal-int
+pkg syscall (freebsd-arm-cgo), const RLIMIT_NOFILE ideal-int
+pkg syscall (freebsd-arm-cgo), const RLIMIT_STACK ideal-int
+pkg syscall (freebsd-arm-cgo), const RLIM_INFINITY ideal-int
+pkg syscall (freebsd-arm-cgo), const RTAX_AUTHOR ideal-int
+pkg syscall (freebsd-arm-cgo), const RTAX_BRD ideal-int
+pkg syscall (freebsd-arm-cgo), const RTAX_DST ideal-int
+pkg syscall (freebsd-arm-cgo), const RTAX_GATEWAY ideal-int
+pkg syscall (freebsd-arm-cgo), const RTAX_GENMASK ideal-int
+pkg syscall (freebsd-arm-cgo), const RTAX_IFA ideal-int
+pkg syscall (freebsd-arm-cgo), const RTAX_IFP ideal-int
+pkg syscall (freebsd-arm-cgo), const RTAX_MAX ideal-int
+pkg syscall (freebsd-arm-cgo), const RTAX_NETMASK ideal-int
+pkg syscall (freebsd-arm-cgo), const RTA_AUTHOR ideal-int
+pkg syscall (freebsd-arm-cgo), const RTA_BRD ideal-int
+pkg syscall (freebsd-arm-cgo), const RTA_DST ideal-int
+pkg syscall (freebsd-arm-cgo), const RTA_GATEWAY ideal-int
+pkg syscall (freebsd-arm-cgo), const RTA_GENMASK ideal-int
+pkg syscall (freebsd-arm-cgo), const RTA_IFA ideal-int
+pkg syscall (freebsd-arm-cgo), const RTA_IFP ideal-int
+pkg syscall (freebsd-arm-cgo), const RTA_NETMASK ideal-int
+pkg syscall (freebsd-arm-cgo), const RTF_BLACKHOLE ideal-int
+pkg syscall (freebsd-arm-cgo), const RTF_BROADCAST ideal-int
+pkg syscall (freebsd-arm-cgo), const RTF_DONE ideal-int
+pkg syscall (freebsd-arm-cgo), const RTF_DYNAMIC ideal-int
+pkg syscall (freebsd-arm-cgo), const RTF_FMASK ideal-int
+pkg syscall (freebsd-arm-cgo), const RTF_GATEWAY ideal-int
+pkg syscall (freebsd-arm-cgo), const RTF_HOST ideal-int
+pkg syscall (freebsd-arm-cgo), const RTF_LLDATA ideal-int
+pkg syscall (freebsd-arm-cgo), const RTF_LLINFO ideal-int
+pkg syscall (freebsd-arm-cgo), const RTF_LOCAL ideal-int
+pkg syscall (freebsd-arm-cgo), const RTF_MODIFIED ideal-int
+pkg syscall (freebsd-arm-cgo), const RTF_MULTICAST ideal-int
+pkg syscall (freebsd-arm-cgo), const RTF_PINNED ideal-int
+pkg syscall (freebsd-arm-cgo), const RTF_PRCLONING ideal-int
+pkg syscall (freebsd-arm-cgo), const RTF_PROTO1 ideal-int
+pkg syscall (freebsd-arm-cgo), const RTF_PROTO2 ideal-int
+pkg syscall (freebsd-arm-cgo), const RTF_PROTO3 ideal-int
+pkg syscall (freebsd-arm-cgo), const RTF_REJECT ideal-int
+pkg syscall (freebsd-arm-cgo), const RTF_RNH_LOCKED ideal-int
+pkg syscall (freebsd-arm-cgo), const RTF_STATIC ideal-int
+pkg syscall (freebsd-arm-cgo), const RTF_STICKY ideal-int
+pkg syscall (freebsd-arm-cgo), const RTF_UP ideal-int
+pkg syscall (freebsd-arm-cgo), const RTF_XRESOLVE ideal-int
+pkg syscall (freebsd-arm-cgo), const RTM_ADD ideal-int
+pkg syscall (freebsd-arm-cgo), const RTM_CHANGE ideal-int
+pkg syscall (freebsd-arm-cgo), const RTM_DELADDR ideal-int
+pkg syscall (freebsd-arm-cgo), const RTM_DELETE ideal-int
+pkg syscall (freebsd-arm-cgo), const RTM_DELMADDR ideal-int
+pkg syscall (freebsd-arm-cgo), const RTM_GET ideal-int
+pkg syscall (freebsd-arm-cgo), const RTM_IEEE80211 ideal-int
+pkg syscall (freebsd-arm-cgo), const RTM_IFANNOUNCE ideal-int
+pkg syscall (freebsd-arm-cgo), const RTM_IFINFO ideal-int
+pkg syscall (freebsd-arm-cgo), const RTM_LOCK ideal-int
+pkg syscall (freebsd-arm-cgo), const RTM_LOSING ideal-int
+pkg syscall (freebsd-arm-cgo), const RTM_MISS ideal-int
+pkg syscall (freebsd-arm-cgo), const RTM_NEWADDR ideal-int
+pkg syscall (freebsd-arm-cgo), const RTM_NEWMADDR ideal-int
+pkg syscall (freebsd-arm-cgo), const RTM_OLDADD ideal-int
+pkg syscall (freebsd-arm-cgo), const RTM_OLDDEL ideal-int
+pkg syscall (freebsd-arm-cgo), const RTM_REDIRECT ideal-int
+pkg syscall (freebsd-arm-cgo), const RTM_RESOLVE ideal-int
+pkg syscall (freebsd-arm-cgo), const RTM_RTTUNIT ideal-int
+pkg syscall (freebsd-arm-cgo), const RTM_VERSION ideal-int
+pkg syscall (freebsd-arm-cgo), const RTV_EXPIRE ideal-int
+pkg syscall (freebsd-arm-cgo), const RTV_HOPCOUNT ideal-int
+pkg syscall (freebsd-arm-cgo), const RTV_MTU ideal-int
+pkg syscall (freebsd-arm-cgo), const RTV_RPIPE ideal-int
+pkg syscall (freebsd-arm-cgo), const RTV_RTT ideal-int
+pkg syscall (freebsd-arm-cgo), const RTV_RTTVAR ideal-int
+pkg syscall (freebsd-arm-cgo), const RTV_SPIPE ideal-int
+pkg syscall (freebsd-arm-cgo), const RTV_SSTHRESH ideal-int
+pkg syscall (freebsd-arm-cgo), const RTV_WEIGHT ideal-int
+pkg syscall (freebsd-arm-cgo), const RT_CACHING_CONTEXT ideal-int
+pkg syscall (freebsd-arm-cgo), const RT_DEFAULT_FIB ideal-int
+pkg syscall (freebsd-arm-cgo), const RT_NORTREF ideal-int
+pkg syscall (freebsd-arm-cgo), const RUSAGE_CHILDREN ideal-int
+pkg syscall (freebsd-arm-cgo), const RUSAGE_SELF ideal-int
+pkg syscall (freebsd-arm-cgo), const RUSAGE_THREAD ideal-int
+pkg syscall (freebsd-arm-cgo), const SCM_BINTIME ideal-int
+pkg syscall (freebsd-arm-cgo), const SCM_CREDS ideal-int
+pkg syscall (freebsd-arm-cgo), const SCM_RIGHTS ideal-int
+pkg syscall (freebsd-arm-cgo), const SCM_TIMESTAMP ideal-int
+pkg syscall (freebsd-arm-cgo), const SIGCHLD Signal
+pkg syscall (freebsd-arm-cgo), const SIGCONT Signal
+pkg syscall (freebsd-arm-cgo), const SIGEMT Signal
+pkg syscall (freebsd-arm-cgo), const SIGINFO Signal
+pkg syscall (freebsd-arm-cgo), const SIGIO Signal
+pkg syscall (freebsd-arm-cgo), const SIGIOT Signal
+pkg syscall (freebsd-arm-cgo), const SIGLIBRT Signal
+pkg syscall (freebsd-arm-cgo), const SIGLWP Signal
+pkg syscall (freebsd-arm-cgo), const SIGPROF Signal
+pkg syscall (freebsd-arm-cgo), const SIGSTOP Signal
+pkg syscall (freebsd-arm-cgo), const SIGSYS Signal
+pkg syscall (freebsd-arm-cgo), const SIGTHR Signal
+pkg syscall (freebsd-arm-cgo), const SIGTSTP Signal
+pkg syscall (freebsd-arm-cgo), const SIGTTIN Signal
+pkg syscall (freebsd-arm-cgo), const SIGTTOU Signal
+pkg syscall (freebsd-arm-cgo), const SIGURG Signal
+pkg syscall (freebsd-arm-cgo), const SIGUSR1 Signal
+pkg syscall (freebsd-arm-cgo), const SIGUSR2 Signal
+pkg syscall (freebsd-arm-cgo), const SIGVTALRM Signal
+pkg syscall (freebsd-arm-cgo), const SIGWINCH Signal
+pkg syscall (freebsd-arm-cgo), const SIGXCPU Signal
+pkg syscall (freebsd-arm-cgo), const SIGXFSZ Signal
+pkg syscall (freebsd-arm-cgo), const SIOCADDMULTI ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCADDRT ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCAIFADDR ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCAIFGROUP ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCALIFADDR ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCATMARK ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCDELMULTI ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCDELRT ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCDIFADDR ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCDIFGROUP ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCDIFPHYADDR ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCDLIFADDR ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCGDRVSPEC ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCGETSGCNT ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCGETVIFCNT ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCGHIWAT ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCGIFADDR ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCGIFBRDADDR ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCGIFCAP ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCGIFCONF ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCGIFDESCR ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCGIFDSTADDR ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCGIFFIB ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCGIFFLAGS ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCGIFGENERIC ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCGIFGMEMB ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCGIFGROUP ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCGIFINDEX ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCGIFMAC ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCGIFMEDIA ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCGIFMETRIC ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCGIFMTU ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCGIFNETMASK ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCGIFPDSTADDR ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCGIFPHYS ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCGIFPSRCADDR ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCGIFSTATUS ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCGLIFADDR ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCGLIFPHYADDR ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCGLOWAT ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCGPGRP ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCGPRIVATE_0 ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCGPRIVATE_1 ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCIFCREATE ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCIFCREATE2 ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCIFDESTROY ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCIFGCLONERS ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCSDRVSPEC ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCSHIWAT ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCSIFADDR ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCSIFBRDADDR ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCSIFCAP ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCSIFDESCR ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCSIFDSTADDR ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCSIFFIB ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCSIFFLAGS ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCSIFGENERIC ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCSIFLLADDR ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCSIFMAC ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCSIFMEDIA ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCSIFMETRIC ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCSIFMTU ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCSIFNAME ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCSIFNETMASK ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCSIFPHYADDR ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCSIFPHYS ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCSIFRVNET ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCSIFVNET ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCSLIFPHYADDR ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCSLOWAT ideal-int
+pkg syscall (freebsd-arm-cgo), const SIOCSPGRP ideal-int
+pkg syscall (freebsd-arm-cgo), const SOCK_MAXADDRLEN ideal-int
+pkg syscall (freebsd-arm-cgo), const SOCK_RDM ideal-int
+pkg syscall (freebsd-arm-cgo), const SO_ACCEPTCONN ideal-int
+pkg syscall (freebsd-arm-cgo), const SO_ACCEPTFILTER ideal-int
+pkg syscall (freebsd-arm-cgo), const SO_BINTIME ideal-int
+pkg syscall (freebsd-arm-cgo), const SO_DEBUG ideal-int
+pkg syscall (freebsd-arm-cgo), const SO_ERROR ideal-int
+pkg syscall (freebsd-arm-cgo), const SO_LABEL ideal-int
+pkg syscall (freebsd-arm-cgo), const SO_LISTENINCQLEN ideal-int
+pkg syscall (freebsd-arm-cgo), const SO_LISTENQLEN ideal-int
+pkg syscall (freebsd-arm-cgo), const SO_LISTENQLIMIT ideal-int
+pkg syscall (freebsd-arm-cgo), const SO_NOSIGPIPE ideal-int
+pkg syscall (freebsd-arm-cgo), const SO_NO_DDP ideal-int
+pkg syscall (freebsd-arm-cgo), const SO_NO_OFFLOAD ideal-int
+pkg syscall (freebsd-arm-cgo), const SO_OOBINLINE ideal-int
+pkg syscall (freebsd-arm-cgo), const SO_PEERLABEL ideal-int
+pkg syscall (freebsd-arm-cgo), const SO_PROTOCOL ideal-int
+pkg syscall (freebsd-arm-cgo), const SO_PROTOTYPE ideal-int
+pkg syscall (freebsd-arm-cgo), const SO_RCVLOWAT ideal-int
+pkg syscall (freebsd-arm-cgo), const SO_RCVTIMEO ideal-int
+pkg syscall (freebsd-arm-cgo), const SO_REUSEPORT ideal-int
+pkg syscall (freebsd-arm-cgo), const SO_SETFIB ideal-int
+pkg syscall (freebsd-arm-cgo), const SO_SNDLOWAT ideal-int
+pkg syscall (freebsd-arm-cgo), const SO_SNDTIMEO ideal-int
+pkg syscall (freebsd-arm-cgo), const SO_TIMESTAMP ideal-int
+pkg syscall (freebsd-arm-cgo), const SO_TYPE ideal-int
+pkg syscall (freebsd-arm-cgo), const SO_USELOOPBACK ideal-int
+pkg syscall (freebsd-arm-cgo), const SO_USER_COOKIE ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_ABORT2 ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_ACCEPT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_ACCESS ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_ACCT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_ADJTIME ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_AUDIT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_AUDITCTL ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_AUDITON ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_BIND ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_CAP_ENTER ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_CAP_FCNTLS_GET ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_CAP_FCNTLS_LIMIT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_CAP_GETMODE ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_CAP_IOCTLS_GET ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_CAP_IOCTLS_LIMIT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_CAP_NEW ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_CAP_RIGHTS_GET ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_CAP_RIGHTS_LIMIT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_CHDIR ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_CHFLAGS ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_CHMOD ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_CHOWN ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_CHROOT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_CLOCK_GETCPUCLOCKID2 ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_CLOCK_GETRES ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_CLOCK_GETTIME ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_CLOCK_SETTIME ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_CLOSE ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_CLOSEFROM ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_CONNECT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_CPUSET ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_CPUSET_GETAFFINITY ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_CPUSET_GETID ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_CPUSET_SETAFFINITY ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_CPUSET_SETID ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_DUP ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_DUP2 ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_EACCESS ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_EXECVE ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_EXIT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_EXTATTRCTL ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_EXTATTR_DELETE_FD ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_EXTATTR_DELETE_FILE ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_EXTATTR_DELETE_LINK ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_EXTATTR_GET_FD ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_EXTATTR_GET_FILE ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_EXTATTR_GET_LINK ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_EXTATTR_LIST_FD ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_EXTATTR_LIST_FILE ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_EXTATTR_LIST_LINK ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_EXTATTR_SET_FD ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_EXTATTR_SET_FILE ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_EXTATTR_SET_LINK ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_FACCESSAT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_FCHDIR ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_FCHFLAGS ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_FCHMOD ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_FCHMODAT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_FCHOWN ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_FCHOWNAT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_FCNTL ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_FEXECVE ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_FFCLOCK_GETCOUNTER ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_FFCLOCK_GETESTIMATE ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_FFCLOCK_SETESTIMATE ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_FHOPEN ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_FHSTAT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_FHSTATFS ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_FLOCK ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_FORK ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_FPATHCONF ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_FREEBSD6_FTRUNCATE ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_FREEBSD6_LSEEK ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_FREEBSD6_MMAP ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_FREEBSD6_PREAD ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_FREEBSD6_PWRITE ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_FREEBSD6_TRUNCATE ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_FSTAT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_FSTATAT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_FSTATFS ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_FSYNC ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_FTRUNCATE ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_FUTIMES ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_FUTIMESAT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_GETAUDIT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_GETAUDIT_ADDR ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_GETAUID ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_GETCONTEXT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_GETDENTS ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_GETDIRENTRIES ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_GETDTABLESIZE ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_GETEGID ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_GETEUID ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_GETFH ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_GETFSSTAT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_GETGID ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_GETGROUPS ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_GETITIMER ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_GETLOGIN ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_GETLOGINCLASS ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_GETPEERNAME ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_GETPGID ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_GETPGRP ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_GETPID ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_GETPPID ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_GETPRIORITY ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_GETRESGID ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_GETRESUID ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_GETRLIMIT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_GETRUSAGE ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_GETSID ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_GETSOCKNAME ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_GETSOCKOPT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_GETTIMEOFDAY ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_GETUID ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_IOCTL ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_ISSETUGID ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_JAIL ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_JAIL_ATTACH ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_JAIL_GET ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_JAIL_REMOVE ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_JAIL_SET ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_KENV ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_KEVENT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_KILL ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_KLDFIND ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_KLDFIRSTMOD ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_KLDLOAD ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_KLDNEXT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_KLDSTAT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_KLDSYM ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_KLDUNLOAD ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_KLDUNLOADF ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_KQUEUE ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_KTIMER_CREATE ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_KTIMER_DELETE ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_KTIMER_GETOVERRUN ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_KTIMER_GETTIME ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_KTIMER_SETTIME ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_KTRACE ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_LCHFLAGS ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_LCHMOD ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_LCHOWN ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_LGETFH ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_LINK ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_LINKAT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_LISTEN ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_LPATHCONF ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_LSEEK ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_LSTAT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_LUTIMES ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_MAC_SYSCALL ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_MADVISE ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_MINCORE ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_MINHERIT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_MKDIR ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_MKDIRAT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_MKFIFO ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_MKFIFOAT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_MKNOD ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_MKNODAT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_MLOCK ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_MLOCKALL ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_MMAP ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_MODFIND ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_MODFNEXT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_MODNEXT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_MODSTAT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_MOUNT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_MPROTECT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_MSYNC ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_MUNLOCK ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_MUNLOCKALL ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_MUNMAP ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_NANOSLEEP ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_NFSTAT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_NLSTAT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_NMOUNT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_NSTAT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_NTP_ADJTIME ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_NTP_GETTIME ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_OBREAK ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_OPEN ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_OPENAT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_OPENBSD_POLL ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_OVADVISE ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_PATHCONF ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_PDFORK ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_PDGETPID ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_PDKILL ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_PIPE ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_POLL ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_POSIX_FADVISE ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_POSIX_FALLOCATE ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_POSIX_OPENPT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_PREAD ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_PREADV ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_PROFIL ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_PSELECT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_PTRACE ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_PWRITE ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_PWRITEV ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_QUOTACTL ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_RCTL_ADD_RULE ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_RCTL_GET_LIMITS ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_RCTL_GET_RACCT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_RCTL_GET_RULES ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_RCTL_REMOVE_RULE ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_READ ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_READLINK ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_READLINKAT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_READV ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_REBOOT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_RECVFROM ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_RECVMSG ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_RENAME ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_RENAMEAT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_REVOKE ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_RFORK ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_RMDIR ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_RTPRIO ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_RTPRIO_THREAD ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SBRK ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SCHED_GETPARAM ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SCHED_GETSCHEDULER ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SCHED_GET_PRIORITY_MAX ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SCHED_GET_PRIORITY_MIN ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SCHED_RR_GET_INTERVAL ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SCHED_SETPARAM ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SCHED_SETSCHEDULER ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SCHED_YIELD ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SCTP_GENERIC_RECVMSG ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SCTP_GENERIC_SENDMSG ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SCTP_GENERIC_SENDMSG_IOV ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SCTP_PEELOFF ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SELECT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SENDFILE ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SENDMSG ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SENDTO ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SETAUDIT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SETAUDIT_ADDR ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SETAUID ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SETCONTEXT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SETEGID ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SETEUID ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SETFIB ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SETGID ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SETGROUPS ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SETITIMER ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SETLOGIN ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SETLOGINCLASS ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SETPGID ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SETPRIORITY ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SETREGID ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SETRESGID ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SETRESUID ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SETREUID ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SETRLIMIT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SETSID ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SETSOCKOPT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SETTIMEOFDAY ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SETUID ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SHM_OPEN ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SHM_UNLINK ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SHUTDOWN ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SIGACTION ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SIGALTSTACK ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SIGPENDING ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SIGPROCMASK ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SIGQUEUE ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SIGRETURN ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SIGSUSPEND ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SIGTIMEDWAIT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SIGWAIT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SIGWAITINFO ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SOCKET ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SOCKETPAIR ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SSTK ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_STAT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_STATFS ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SWAPCONTEXT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SWAPOFF ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SWAPON ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SYMLINK ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SYMLINKAT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SYNC ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_SYSARCH ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_THR_CREATE ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_THR_EXIT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_THR_KILL ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_THR_KILL2 ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_THR_NEW ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_THR_SELF ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_THR_SET_NAME ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_THR_SUSPEND ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_THR_WAKE ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_TRUNCATE ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_UMASK ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_UNDELETE ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_UNLINK ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_UNLINKAT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_UNMOUNT ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_UTIMES ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_UTRACE ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_UUIDGEN ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_VFORK ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_WAIT4 ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_WAIT6 ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_WRITE ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_WRITEV ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS_YIELD ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS__UMTX_LOCK ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS__UMTX_OP ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS__UMTX_UNLOCK ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS___ACL_ACLCHECK_FD ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS___ACL_ACLCHECK_FILE ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS___ACL_ACLCHECK_LINK ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS___ACL_DELETE_FD ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS___ACL_DELETE_FILE ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS___ACL_DELETE_LINK ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS___ACL_GET_FD ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS___ACL_GET_FILE ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS___ACL_GET_LINK ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS___ACL_SET_FD ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS___ACL_SET_FILE ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS___ACL_SET_LINK ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS___GETCWD ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS___MAC_EXECVE ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS___MAC_GET_FD ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS___MAC_GET_FILE ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS___MAC_GET_LINK ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS___MAC_GET_PID ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS___MAC_GET_PROC ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS___MAC_SET_FD ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS___MAC_SET_FILE ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS___MAC_SET_LINK ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS___MAC_SET_PROC ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS___SETUGID ideal-int
+pkg syscall (freebsd-arm-cgo), const SYS___SYSCTL ideal-int
+pkg syscall (freebsd-arm-cgo), const SizeofBpfHdr ideal-int
+pkg syscall (freebsd-arm-cgo), const SizeofBpfInsn ideal-int
+pkg syscall (freebsd-arm-cgo), const SizeofBpfProgram ideal-int
+pkg syscall (freebsd-arm-cgo), const SizeofBpfStat ideal-int
+pkg syscall (freebsd-arm-cgo), const SizeofBpfVersion ideal-int
+pkg syscall (freebsd-arm-cgo), const SizeofBpfZbuf ideal-int
+pkg syscall (freebsd-arm-cgo), const SizeofBpfZbufHeader ideal-int
+pkg syscall (freebsd-arm-cgo), const SizeofCmsghdr ideal-int
+pkg syscall (freebsd-arm-cgo), const SizeofICMPv6Filter = 32
+pkg syscall (freebsd-arm-cgo), const SizeofICMPv6Filter ideal-int
+pkg syscall (freebsd-arm-cgo), const SizeofIPMreq ideal-int
+pkg syscall (freebsd-arm-cgo), const SizeofIPMreqn ideal-int
+pkg syscall (freebsd-arm-cgo), const SizeofIPv6MTUInfo = 32
+pkg syscall (freebsd-arm-cgo), const SizeofIPv6MTUInfo ideal-int
+pkg syscall (freebsd-arm-cgo), const SizeofIPv6Mreq ideal-int
+pkg syscall (freebsd-arm-cgo), const SizeofIfAnnounceMsghdr ideal-int
+pkg syscall (freebsd-arm-cgo), const SizeofIfData ideal-int
+pkg syscall (freebsd-arm-cgo), const SizeofIfMsghdr ideal-int
+pkg syscall (freebsd-arm-cgo), const SizeofIfaMsghdr ideal-int
+pkg syscall (freebsd-arm-cgo), const SizeofIfmaMsghdr ideal-int
+pkg syscall (freebsd-arm-cgo), const SizeofInet6Pktinfo ideal-int
+pkg syscall (freebsd-arm-cgo), const SizeofLinger ideal-int
+pkg syscall (freebsd-arm-cgo), const SizeofMsghdr ideal-int
+pkg syscall (freebsd-arm-cgo), const SizeofRtMetrics ideal-int
+pkg syscall (freebsd-arm-cgo), const SizeofRtMsghdr ideal-int
+pkg syscall (freebsd-arm-cgo), const SizeofSockaddrAny ideal-int
+pkg syscall (freebsd-arm-cgo), const SizeofSockaddrDatalink ideal-int
+pkg syscall (freebsd-arm-cgo), const SizeofSockaddrInet4 ideal-int
+pkg syscall (freebsd-arm-cgo), const SizeofSockaddrInet6 ideal-int
+pkg syscall (freebsd-arm-cgo), const SizeofSockaddrUnix ideal-int
+pkg syscall (freebsd-arm-cgo), const TCIFLUSH ideal-int
+pkg syscall (freebsd-arm-cgo), const TCIOFLUSH ideal-int
+pkg syscall (freebsd-arm-cgo), const TCOFLUSH ideal-int
+pkg syscall (freebsd-arm-cgo), const TCP_CA_NAME_MAX ideal-int
+pkg syscall (freebsd-arm-cgo), const TCP_CONGESTION ideal-int
+pkg syscall (freebsd-arm-cgo), const TCP_INFO ideal-int
+pkg syscall (freebsd-arm-cgo), const TCP_KEEPCNT ideal-int
+pkg syscall (freebsd-arm-cgo), const TCP_KEEPIDLE ideal-int
+pkg syscall (freebsd-arm-cgo), const TCP_KEEPINIT ideal-int
+pkg syscall (freebsd-arm-cgo), const TCP_KEEPINTVL ideal-int
+pkg syscall (freebsd-arm-cgo), const TCP_MAXBURST ideal-int
+pkg syscall (freebsd-arm-cgo), const TCP_MAXHLEN ideal-int
+pkg syscall (freebsd-arm-cgo), const TCP_MAXOLEN ideal-int
+pkg syscall (freebsd-arm-cgo), const TCP_MAXSEG ideal-int
+pkg syscall (freebsd-arm-cgo), const TCP_MAXWIN ideal-int
+pkg syscall (freebsd-arm-cgo), const TCP_MAX_SACK ideal-int
+pkg syscall (freebsd-arm-cgo), const TCP_MAX_WINSHIFT ideal-int
+pkg syscall (freebsd-arm-cgo), const TCP_MD5SIG ideal-int
+pkg syscall (freebsd-arm-cgo), const TCP_MINMSS ideal-int
+pkg syscall (freebsd-arm-cgo), const TCP_MSS ideal-int
+pkg syscall (freebsd-arm-cgo), const TCP_NOOPT ideal-int
+pkg syscall (freebsd-arm-cgo), const TCP_NOPUSH ideal-int
+pkg syscall (freebsd-arm-cgo), const TCSAFLUSH ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCCBRK ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCCDTR ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCCONS ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCDRAIN ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCEXCL ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCEXT ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCFLUSH ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCGDRAINWAIT ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCGETA ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCGETD ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCGPGRP ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCGPTN ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCGSID ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCGWINSZ ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCMBIC ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCMBIS ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCMGDTRWAIT ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCMGET ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCMSDTRWAIT ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCMSET ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCM_CAR ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCM_CD ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCM_CTS ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCM_DCD ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCM_DSR ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCM_DTR ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCM_LE ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCM_RI ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCM_RNG ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCM_RTS ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCM_SR ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCM_ST ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCNOTTY ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCNXCL ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCOUTQ ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCPKT ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCPKT_DATA ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCPKT_DOSTOP ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCPKT_FLUSHREAD ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCPKT_FLUSHWRITE ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCPKT_IOCTL ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCPKT_NOSTOP ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCPKT_START ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCPKT_STOP ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCPTMASTER ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCSBRK ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCSCTTY ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCSDRAINWAIT ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCSDTR ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCSETA ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCSETAF ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCSETAW ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCSETD ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCSIG ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCSPGRP ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCSTART ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCSTAT ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCSTI ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCSTOP ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCSWINSZ ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCTIMESTAMP ideal-int
+pkg syscall (freebsd-arm-cgo), const TIOCUCNTL ideal-int
+pkg syscall (freebsd-arm-cgo), const TOSTOP ideal-int
+pkg syscall (freebsd-arm-cgo), const VDISCARD ideal-int
+pkg syscall (freebsd-arm-cgo), const VDSUSP ideal-int
+pkg syscall (freebsd-arm-cgo), const VEOF ideal-int
+pkg syscall (freebsd-arm-cgo), const VEOL ideal-int
+pkg syscall (freebsd-arm-cgo), const VEOL2 ideal-int
+pkg syscall (freebsd-arm-cgo), const VERASE ideal-int
+pkg syscall (freebsd-arm-cgo), const VERASE2 ideal-int
+pkg syscall (freebsd-arm-cgo), const VINTR ideal-int
+pkg syscall (freebsd-arm-cgo), const VKILL ideal-int
+pkg syscall (freebsd-arm-cgo), const VLNEXT ideal-int
+pkg syscall (freebsd-arm-cgo), const VMIN ideal-int
+pkg syscall (freebsd-arm-cgo), const VQUIT ideal-int
+pkg syscall (freebsd-arm-cgo), const VREPRINT ideal-int
+pkg syscall (freebsd-arm-cgo), const VSTART ideal-int
+pkg syscall (freebsd-arm-cgo), const VSTATUS ideal-int
+pkg syscall (freebsd-arm-cgo), const VSTOP ideal-int
+pkg syscall (freebsd-arm-cgo), const VSUSP ideal-int
+pkg syscall (freebsd-arm-cgo), const VTIME ideal-int
+pkg syscall (freebsd-arm-cgo), const VWERASE ideal-int
+pkg syscall (freebsd-arm-cgo), const WCONTINUED ideal-int
+pkg syscall (freebsd-arm-cgo), const WCOREFLAG ideal-int
+pkg syscall (freebsd-arm-cgo), const WEXITED ideal-int
+pkg syscall (freebsd-arm-cgo), const WLINUXCLONE ideal-int
+pkg syscall (freebsd-arm-cgo), const WNOHANG ideal-int
+pkg syscall (freebsd-arm-cgo), const WNOWAIT ideal-int
+pkg syscall (freebsd-arm-cgo), const WSTOPPED ideal-int
+pkg syscall (freebsd-arm-cgo), const WTRAPPED ideal-int
+pkg syscall (freebsd-arm-cgo), const WUNTRACED ideal-int
+pkg syscall (freebsd-arm-cgo), func Accept(int) (int, Sockaddr, error)
+pkg syscall (freebsd-arm-cgo), func Access(string, uint32) error
+pkg syscall (freebsd-arm-cgo), func Adjtime(*Timeval, *Timeval) error
+pkg syscall (freebsd-arm-cgo), func Bind(int, Sockaddr) error
+pkg syscall (freebsd-arm-cgo), func BpfBuflen(int) (int, error)
+pkg syscall (freebsd-arm-cgo), func BpfDatalink(int) (int, error)
+pkg syscall (freebsd-arm-cgo), func BpfHeadercmpl(int) (int, error)
+pkg syscall (freebsd-arm-cgo), func BpfInterface(int, string) (string, error)
+pkg syscall (freebsd-arm-cgo), func BpfJump(int, int, int, int) *BpfInsn
+pkg syscall (freebsd-arm-cgo), func BpfStats(int) (*BpfStat, error)
+pkg syscall (freebsd-arm-cgo), func BpfStmt(int, int) *BpfInsn
+pkg syscall (freebsd-arm-cgo), func BpfTimeout(int) (*Timeval, error)
+pkg syscall (freebsd-arm-cgo), func CheckBpfVersion(int) error
+pkg syscall (freebsd-arm-cgo), func Chflags(string, int) error
+pkg syscall (freebsd-arm-cgo), func Chroot(string) error
+pkg syscall (freebsd-arm-cgo), func Close(int) error
+pkg syscall (freebsd-arm-cgo), func CloseOnExec(int)
+pkg syscall (freebsd-arm-cgo), func CmsgLen(int) int
+pkg syscall (freebsd-arm-cgo), func CmsgSpace(int) int
+pkg syscall (freebsd-arm-cgo), func Connect(int, Sockaddr) error
+pkg syscall (freebsd-arm-cgo), func Dup(int) (int, error)
+pkg syscall (freebsd-arm-cgo), func Dup2(int, int) error
+pkg syscall (freebsd-arm-cgo), func Fchdir(int) error
+pkg syscall (freebsd-arm-cgo), func Fchflags(string, int) error
+pkg syscall (freebsd-arm-cgo), func Fchmod(int, uint32) error
+pkg syscall (freebsd-arm-cgo), func Fchown(int, int, int) error
+pkg syscall (freebsd-arm-cgo), func Flock(int, int) error
+pkg syscall (freebsd-arm-cgo), func FlushBpf(int) error
+pkg syscall (freebsd-arm-cgo), func ForkExec(string, []string, *ProcAttr) (int, error)
+pkg syscall (freebsd-arm-cgo), func Fpathconf(int, int) (int, error)
+pkg syscall (freebsd-arm-cgo), func Fstat(int, *Stat_t) error
+pkg syscall (freebsd-arm-cgo), func Fstatfs(int, *Statfs_t) error
+pkg syscall (freebsd-arm-cgo), func Fsync(int) error
+pkg syscall (freebsd-arm-cgo), func Ftruncate(int, int64) error
+pkg syscall (freebsd-arm-cgo), func Futimes(int, []Timeval) error
+pkg syscall (freebsd-arm-cgo), func Getdirentries(int, []uint8, *uintptr) (int, error)
+pkg syscall (freebsd-arm-cgo), func Getdtablesize() int
+pkg syscall (freebsd-arm-cgo), func Getfsstat([]Statfs_t, int) (int, error)
+pkg syscall (freebsd-arm-cgo), func Getpeername(int) (Sockaddr, error)
+pkg syscall (freebsd-arm-cgo), func Getpgid(int) (int, error)
+pkg syscall (freebsd-arm-cgo), func Getpgrp() int
+pkg syscall (freebsd-arm-cgo), func Getpriority(int, int) (int, error)
+pkg syscall (freebsd-arm-cgo), func Getrlimit(int, *Rlimit) error
+pkg syscall (freebsd-arm-cgo), func Getrusage(int, *Rusage) error
+pkg syscall (freebsd-arm-cgo), func Getsid(int) (int, error)
+pkg syscall (freebsd-arm-cgo), func Getsockname(int) (Sockaddr, error)
+pkg syscall (freebsd-arm-cgo), func GetsockoptByte(int, int, int) (uint8, error)
+pkg syscall (freebsd-arm-cgo), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
+pkg syscall (freebsd-arm-cgo), func GetsockoptIPMreq(int, int, int) (*IPMreq, error)
+pkg syscall (freebsd-arm-cgo), func GetsockoptIPMreqn(int, int, int) (*IPMreqn, error)
+pkg syscall (freebsd-arm-cgo), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
+pkg syscall (freebsd-arm-cgo), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error)
+pkg syscall (freebsd-arm-cgo), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error)
+pkg syscall (freebsd-arm-cgo), func GetsockoptInt(int, int, int) (int, error)
+pkg syscall (freebsd-arm-cgo), func Issetugid() bool
+pkg syscall (freebsd-arm-cgo), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error)
+pkg syscall (freebsd-arm-cgo), func Kill(int, Signal) error
+pkg syscall (freebsd-arm-cgo), func Kqueue() (int, error)
+pkg syscall (freebsd-arm-cgo), func Listen(int, int) error
+pkg syscall (freebsd-arm-cgo), func Lstat(string, *Stat_t) error
+pkg syscall (freebsd-arm-cgo), func Mkfifo(string, uint32) error
+pkg syscall (freebsd-arm-cgo), func Mknod(string, uint32, int) error
+pkg syscall (freebsd-arm-cgo), func Mmap(int, int64, int, int, int) ([]uint8, error)
+pkg syscall (freebsd-arm-cgo), func Munmap([]uint8) error
+pkg syscall (freebsd-arm-cgo), func Nanosleep(*Timespec, *Timespec) error
+pkg syscall (freebsd-arm-cgo), func Open(string, int, uint32) (int, error)
+pkg syscall (freebsd-arm-cgo), func ParseDirent([]uint8, int, []string) (int, int, []string)
+pkg syscall (freebsd-arm-cgo), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error)
+pkg syscall (freebsd-arm-cgo), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error)
+pkg syscall (freebsd-arm-cgo), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error)
+pkg syscall (freebsd-arm-cgo), func ParseUnixRights(*SocketControlMessage) ([]int, error)
+pkg syscall (freebsd-arm-cgo), func Pathconf(string, int) (int, error)
+pkg syscall (freebsd-arm-cgo), func Pipe([]int) error
+pkg syscall (freebsd-arm-cgo), func Pread(int, []uint8, int64) (int, error)
+pkg syscall (freebsd-arm-cgo), func Pwrite(int, []uint8, int64) (int, error)
+pkg syscall (freebsd-arm-cgo), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (freebsd-arm-cgo), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (freebsd-arm-cgo), func Read(int, []uint8) (int, error)
+pkg syscall (freebsd-arm-cgo), func ReadDirent(int, []uint8) (int, error)
+pkg syscall (freebsd-arm-cgo), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
+pkg syscall (freebsd-arm-cgo), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
+pkg syscall (freebsd-arm-cgo), func Revoke(string) error
+pkg syscall (freebsd-arm-cgo), func RouteRIB(int, int) ([]uint8, error)
+pkg syscall (freebsd-arm-cgo), func Seek(int, int64, int) (int64, error)
+pkg syscall (freebsd-arm-cgo), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error
+pkg syscall (freebsd-arm-cgo), func Sendfile(int, int, *int64, int) (int, error)
+pkg syscall (freebsd-arm-cgo), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
+pkg syscall (freebsd-arm-cgo), func Sendto(int, []uint8, int, Sockaddr) error
+pkg syscall (freebsd-arm-cgo), func SetBpf(int, []BpfInsn) error
+pkg syscall (freebsd-arm-cgo), func SetBpfBuflen(int, int) (int, error)
+pkg syscall (freebsd-arm-cgo), func SetBpfDatalink(int, int) (int, error)
+pkg syscall (freebsd-arm-cgo), func SetBpfHeadercmpl(int, int) error
+pkg syscall (freebsd-arm-cgo), func SetBpfImmediate(int, int) error
+pkg syscall (freebsd-arm-cgo), func SetBpfInterface(int, string) error
+pkg syscall (freebsd-arm-cgo), func SetBpfPromisc(int, int) error
+pkg syscall (freebsd-arm-cgo), func SetBpfTimeout(int, *Timeval) error
+pkg syscall (freebsd-arm-cgo), func SetKevent(*Kevent_t, int, int, int)
+pkg syscall (freebsd-arm-cgo), func SetNonblock(int, bool) error
+pkg syscall (freebsd-arm-cgo), func Setegid(int) error
+pkg syscall (freebsd-arm-cgo), func Seteuid(int) error
+pkg syscall (freebsd-arm-cgo), func Setgid(int) error
+pkg syscall (freebsd-arm-cgo), func Setgroups([]int) error
+pkg syscall (freebsd-arm-cgo), func Setlogin(string) error
+pkg syscall (freebsd-arm-cgo), func Setpgid(int, int) error
+pkg syscall (freebsd-arm-cgo), func Setpriority(int, int, int) error
+pkg syscall (freebsd-arm-cgo), func Setregid(int, int) error
+pkg syscall (freebsd-arm-cgo), func Setreuid(int, int) error
+pkg syscall (freebsd-arm-cgo), func Setrlimit(int, *Rlimit) error
+pkg syscall (freebsd-arm-cgo), func Setsid() (int, error)
+pkg syscall (freebsd-arm-cgo), func SetsockoptByte(int, int, int, uint8) error
+pkg syscall (freebsd-arm-cgo), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
+pkg syscall (freebsd-arm-cgo), func SetsockoptIPMreq(int, int, int, *IPMreq) error
+pkg syscall (freebsd-arm-cgo), func SetsockoptIPMreqn(int, int, int, *IPMreqn) error
+pkg syscall (freebsd-arm-cgo), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error
+pkg syscall (freebsd-arm-cgo), func SetsockoptInet4Addr(int, int, int, [4]uint8) error
+pkg syscall (freebsd-arm-cgo), func SetsockoptInt(int, int, int, int) error
+pkg syscall (freebsd-arm-cgo), func SetsockoptLinger(int, int, int, *Linger) error
+pkg syscall (freebsd-arm-cgo), func SetsockoptString(int, int, int, string) error
+pkg syscall (freebsd-arm-cgo), func SetsockoptTimeval(int, int, int, *Timeval) error
+pkg syscall (freebsd-arm-cgo), func Settimeofday(*Timeval) error
+pkg syscall (freebsd-arm-cgo), func Setuid(int) error
+pkg syscall (freebsd-arm-cgo), func Shutdown(int, int) error
+pkg syscall (freebsd-arm-cgo), func SlicePtrFromStrings([]string) ([]*uint8, error)
+pkg syscall (freebsd-arm-cgo), func Socket(int, int, int) (int, error)
+pkg syscall (freebsd-arm-cgo), func Socketpair(int, int, int) ([2]int, error)
+pkg syscall (freebsd-arm-cgo), func Stat(string, *Stat_t) error
+pkg syscall (freebsd-arm-cgo), func Statfs(string, *Statfs_t) error
+pkg syscall (freebsd-arm-cgo), func StringSlicePtr([]string) []*uint8
+pkg syscall (freebsd-arm-cgo), func Sync() error
+pkg syscall (freebsd-arm-cgo), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (freebsd-arm-cgo), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (freebsd-arm-cgo), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (freebsd-arm-cgo), func Sysctl(string) (string, error)
+pkg syscall (freebsd-arm-cgo), func SysctlUint32(string) (uint32, error)
+pkg syscall (freebsd-arm-cgo), func TimevalToNsec(Timeval) int64
+pkg syscall (freebsd-arm-cgo), func Truncate(string, int64) error
+pkg syscall (freebsd-arm-cgo), func Umask(int) int
+pkg syscall (freebsd-arm-cgo), func Undelete(string) error
+pkg syscall (freebsd-arm-cgo), func UnixRights(...int) []uint8
+pkg syscall (freebsd-arm-cgo), func Unmount(string, int) error
+pkg syscall (freebsd-arm-cgo), func Wait4(int, *WaitStatus, int, *Rusage) (int, error)
+pkg syscall (freebsd-arm-cgo), func Write(int, []uint8) (int, error)
+pkg syscall (freebsd-arm-cgo), method (*Cmsghdr) SetLen(int)
+pkg syscall (freebsd-arm-cgo), method (*Iovec) SetLen(int)
+pkg syscall (freebsd-arm-cgo), method (*Msghdr) SetControllen(int)
+pkg syscall (freebsd-arm-cgo), type BpfHdr struct
+pkg syscall (freebsd-arm-cgo), type BpfHdr struct, Caplen uint32
+pkg syscall (freebsd-arm-cgo), type BpfHdr struct, Datalen uint32
+pkg syscall (freebsd-arm-cgo), type BpfHdr struct, Hdrlen uint16
+pkg syscall (freebsd-arm-cgo), type BpfHdr struct, Pad_cgo_0 [2]uint8
+pkg syscall (freebsd-arm-cgo), type BpfHdr struct, Tstamp Timeval
+pkg syscall (freebsd-arm-cgo), type BpfInsn struct
+pkg syscall (freebsd-arm-cgo), type BpfInsn struct, Code uint16
+pkg syscall (freebsd-arm-cgo), type BpfInsn struct, Jf uint8
+pkg syscall (freebsd-arm-cgo), type BpfInsn struct, Jt uint8
+pkg syscall (freebsd-arm-cgo), type BpfInsn struct, K uint32
+pkg syscall (freebsd-arm-cgo), type BpfProgram struct
+pkg syscall (freebsd-arm-cgo), type BpfProgram struct, Insns *BpfInsn
+pkg syscall (freebsd-arm-cgo), type BpfProgram struct, Len uint32
+pkg syscall (freebsd-arm-cgo), type BpfStat struct
+pkg syscall (freebsd-arm-cgo), type BpfStat struct, Drop uint32
+pkg syscall (freebsd-arm-cgo), type BpfStat struct, Recv uint32
+pkg syscall (freebsd-arm-cgo), type BpfVersion struct
+pkg syscall (freebsd-arm-cgo), type BpfVersion struct, Major uint16
+pkg syscall (freebsd-arm-cgo), type BpfVersion struct, Minor uint16
+pkg syscall (freebsd-arm-cgo), type BpfZbuf struct
+pkg syscall (freebsd-arm-cgo), type BpfZbuf struct, Bufa *uint8
+pkg syscall (freebsd-arm-cgo), type BpfZbuf struct, Bufb *uint8
+pkg syscall (freebsd-arm-cgo), type BpfZbuf struct, Buflen uint32
+pkg syscall (freebsd-arm-cgo), type BpfZbufHeader struct
+pkg syscall (freebsd-arm-cgo), type BpfZbufHeader struct, Kernel_gen uint32
+pkg syscall (freebsd-arm-cgo), type BpfZbufHeader struct, Kernel_len uint32
+pkg syscall (freebsd-arm-cgo), type BpfZbufHeader struct, User_gen uint32
+pkg syscall (freebsd-arm-cgo), type BpfZbufHeader struct, X_bzh_pad [5]uint32
+pkg syscall (freebsd-arm-cgo), type Cmsghdr struct
+pkg syscall (freebsd-arm-cgo), type Cmsghdr struct, Len uint32
+pkg syscall (freebsd-arm-cgo), type Cmsghdr struct, Level int32
+pkg syscall (freebsd-arm-cgo), type Cmsghdr struct, Type int32
+pkg syscall (freebsd-arm-cgo), type Credential struct
+pkg syscall (freebsd-arm-cgo), type Credential struct, Gid uint32
+pkg syscall (freebsd-arm-cgo), type Credential struct, Groups []uint32
+pkg syscall (freebsd-arm-cgo), type Credential struct, Uid uint32
+pkg syscall (freebsd-arm-cgo), type Dirent struct
+pkg syscall (freebsd-arm-cgo), type Dirent struct, Fileno uint32
+pkg syscall (freebsd-arm-cgo), type Dirent struct, Name [256]int8
+pkg syscall (freebsd-arm-cgo), type Dirent struct, Namlen uint8
+pkg syscall (freebsd-arm-cgo), type Dirent struct, Reclen uint16
+pkg syscall (freebsd-arm-cgo), type Dirent struct, Type uint8
+pkg syscall (freebsd-arm-cgo), type FdSet struct
+pkg syscall (freebsd-arm-cgo), type FdSet struct, X__fds_bits [32]uint32
+pkg syscall (freebsd-arm-cgo), type Flock_t struct
+pkg syscall (freebsd-arm-cgo), type Flock_t struct, Len int64
+pkg syscall (freebsd-arm-cgo), type Flock_t struct, Pid int32
+pkg syscall (freebsd-arm-cgo), type Flock_t struct, Start int64
+pkg syscall (freebsd-arm-cgo), type Flock_t struct, Sysid int32
+pkg syscall (freebsd-arm-cgo), type Flock_t struct, Type int16
+pkg syscall (freebsd-arm-cgo), type Flock_t struct, Whence int16
+pkg syscall (freebsd-arm-cgo), type Fsid struct
+pkg syscall (freebsd-arm-cgo), type Fsid struct, Val [2]int32
+pkg syscall (freebsd-arm-cgo), type ICMPv6Filter struct
+pkg syscall (freebsd-arm-cgo), type ICMPv6Filter struct, Filt [8]uint32
+pkg syscall (freebsd-arm-cgo), type IPMreqn struct
+pkg syscall (freebsd-arm-cgo), type IPMreqn struct, Address [4]uint8
+pkg syscall (freebsd-arm-cgo), type IPMreqn struct, Ifindex int32
+pkg syscall (freebsd-arm-cgo), type IPMreqn struct, Multiaddr [4]uint8
+pkg syscall (freebsd-arm-cgo), type IPv6MTUInfo struct
+pkg syscall (freebsd-arm-cgo), type IPv6MTUInfo struct, Addr RawSockaddrInet6
+pkg syscall (freebsd-arm-cgo), type IPv6MTUInfo struct, Mtu uint32
+pkg syscall (freebsd-arm-cgo), type IfAnnounceMsghdr struct
+pkg syscall (freebsd-arm-cgo), type IfAnnounceMsghdr struct, Index uint16
+pkg syscall (freebsd-arm-cgo), type IfAnnounceMsghdr struct, Msglen uint16
+pkg syscall (freebsd-arm-cgo), type IfAnnounceMsghdr struct, Name [16]int8
+pkg syscall (freebsd-arm-cgo), type IfAnnounceMsghdr struct, Type uint8
+pkg syscall (freebsd-arm-cgo), type IfAnnounceMsghdr struct, Version uint8
+pkg syscall (freebsd-arm-cgo), type IfAnnounceMsghdr struct, What uint16
+pkg syscall (freebsd-arm-cgo), type IfData struct
+pkg syscall (freebsd-arm-cgo), type IfData struct, Addrlen uint8
+pkg syscall (freebsd-arm-cgo), type IfData struct, Baudrate uint32
+pkg syscall (freebsd-arm-cgo), type IfData struct, Collisions uint32
+pkg syscall (freebsd-arm-cgo), type IfData struct, Datalen uint8
+pkg syscall (freebsd-arm-cgo), type IfData struct, Epoch int64
+pkg syscall (freebsd-arm-cgo), type IfData struct, Hdrlen uint8
+pkg syscall (freebsd-arm-cgo), type IfData struct, Hwassist uint32
+pkg syscall (freebsd-arm-cgo), type IfData struct, Ibytes uint32
+pkg syscall (freebsd-arm-cgo), type IfData struct, Ierrors uint32
+pkg syscall (freebsd-arm-cgo), type IfData struct, Imcasts uint32
+pkg syscall (freebsd-arm-cgo), type IfData struct, Ipackets uint32
+pkg syscall (freebsd-arm-cgo), type IfData struct, Iqdrops uint32
+pkg syscall (freebsd-arm-cgo), type IfData struct, Lastchange Timeval
+pkg syscall (freebsd-arm-cgo), type IfData struct, Link_state uint8
+pkg syscall (freebsd-arm-cgo), type IfData struct, Metric uint32
+pkg syscall (freebsd-arm-cgo), type IfData struct, Mtu uint32
+pkg syscall (freebsd-arm-cgo), type IfData struct, Noproto uint32
+pkg syscall (freebsd-arm-cgo), type IfData struct, Obytes uint32
+pkg syscall (freebsd-arm-cgo), type IfData struct, Oerrors uint32
+pkg syscall (freebsd-arm-cgo), type IfData struct, Omcasts uint32
+pkg syscall (freebsd-arm-cgo), type IfData struct, Opackets uint32
+pkg syscall (freebsd-arm-cgo), type IfData struct, Physical uint8
+pkg syscall (freebsd-arm-cgo), type IfData struct, Spare_char1 uint8
+pkg syscall (freebsd-arm-cgo), type IfData struct, Spare_char2 uint8
+pkg syscall (freebsd-arm-cgo), type IfData struct, Type uint8
+pkg syscall (freebsd-arm-cgo), type IfMsghdr struct
+pkg syscall (freebsd-arm-cgo), type IfMsghdr struct, Addrs int32
+pkg syscall (freebsd-arm-cgo), type IfMsghdr struct, Data IfData
+pkg syscall (freebsd-arm-cgo), type IfMsghdr struct, Flags int32
+pkg syscall (freebsd-arm-cgo), type IfMsghdr struct, Index uint16
+pkg syscall (freebsd-arm-cgo), type IfMsghdr struct, Msglen uint16
+pkg syscall (freebsd-arm-cgo), type IfMsghdr struct, Pad_cgo_0 [2]uint8
+pkg syscall (freebsd-arm-cgo), type IfMsghdr struct, Type uint8
+pkg syscall (freebsd-arm-cgo), type IfMsghdr struct, Version uint8
+pkg syscall (freebsd-arm-cgo), type IfaMsghdr struct
+pkg syscall (freebsd-arm-cgo), type IfaMsghdr struct, Addrs int32
+pkg syscall (freebsd-arm-cgo), type IfaMsghdr struct, Flags int32
+pkg syscall (freebsd-arm-cgo), type IfaMsghdr struct, Index uint16
+pkg syscall (freebsd-arm-cgo), type IfaMsghdr struct, Metric int32
+pkg syscall (freebsd-arm-cgo), type IfaMsghdr struct, Msglen uint16
+pkg syscall (freebsd-arm-cgo), type IfaMsghdr struct, Pad_cgo_0 [2]uint8
+pkg syscall (freebsd-arm-cgo), type IfaMsghdr struct, Type uint8
+pkg syscall (freebsd-arm-cgo), type IfaMsghdr struct, Version uint8
+pkg syscall (freebsd-arm-cgo), type IfmaMsghdr struct
+pkg syscall (freebsd-arm-cgo), type IfmaMsghdr struct, Addrs int32
+pkg syscall (freebsd-arm-cgo), type IfmaMsghdr struct, Flags int32
+pkg syscall (freebsd-arm-cgo), type IfmaMsghdr struct, Index uint16
+pkg syscall (freebsd-arm-cgo), type IfmaMsghdr struct, Msglen uint16
+pkg syscall (freebsd-arm-cgo), type IfmaMsghdr struct, Pad_cgo_0 [2]uint8
+pkg syscall (freebsd-arm-cgo), type IfmaMsghdr struct, Type uint8
+pkg syscall (freebsd-arm-cgo), type IfmaMsghdr struct, Version uint8
+pkg syscall (freebsd-arm-cgo), type Inet6Pktinfo struct
+pkg syscall (freebsd-arm-cgo), type Inet6Pktinfo struct, Addr [16]uint8
+pkg syscall (freebsd-arm-cgo), type Inet6Pktinfo struct, Ifindex uint32
+pkg syscall (freebsd-arm-cgo), type InterfaceAddrMessage struct
+pkg syscall (freebsd-arm-cgo), type InterfaceAddrMessage struct, Data []uint8
+pkg syscall (freebsd-arm-cgo), type InterfaceAddrMessage struct, Header IfaMsghdr
+pkg syscall (freebsd-arm-cgo), type InterfaceAnnounceMessage struct
+pkg syscall (freebsd-arm-cgo), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr
+pkg syscall (freebsd-arm-cgo), type InterfaceMessage struct
+pkg syscall (freebsd-arm-cgo), type InterfaceMessage struct, Data []uint8
+pkg syscall (freebsd-arm-cgo), type InterfaceMessage struct, Header IfMsghdr
+pkg syscall (freebsd-arm-cgo), type InterfaceMulticastAddrMessage struct
+pkg syscall (freebsd-arm-cgo), type InterfaceMulticastAddrMessage struct, Data []uint8
+pkg syscall (freebsd-arm-cgo), type InterfaceMulticastAddrMessage struct, Header IfmaMsghdr
+pkg syscall (freebsd-arm-cgo), type Iovec struct
+pkg syscall (freebsd-arm-cgo), type Iovec struct, Base *uint8
+pkg syscall (freebsd-arm-cgo), type Iovec struct, Len uint32
+pkg syscall (freebsd-arm-cgo), type Kevent_t struct
+pkg syscall (freebsd-arm-cgo), type Kevent_t struct, Data int32
+pkg syscall (freebsd-arm-cgo), type Kevent_t struct, Fflags uint32
+pkg syscall (freebsd-arm-cgo), type Kevent_t struct, Filter int16
+pkg syscall (freebsd-arm-cgo), type Kevent_t struct, Flags uint16
+pkg syscall (freebsd-arm-cgo), type Kevent_t struct, Ident uint32
+pkg syscall (freebsd-arm-cgo), type Kevent_t struct, Udata *uint8
+pkg syscall (freebsd-arm-cgo), type Msghdr struct
+pkg syscall (freebsd-arm-cgo), type Msghdr struct, Control *uint8
+pkg syscall (freebsd-arm-cgo), type Msghdr struct, Controllen uint32
+pkg syscall (freebsd-arm-cgo), type Msghdr struct, Flags int32
+pkg syscall (freebsd-arm-cgo), type Msghdr struct, Iov *Iovec
+pkg syscall (freebsd-arm-cgo), type Msghdr struct, Iovlen int32
+pkg syscall (freebsd-arm-cgo), type Msghdr struct, Name *uint8
+pkg syscall (freebsd-arm-cgo), type Msghdr struct, Namelen uint32
+pkg syscall (freebsd-arm-cgo), type RawSockaddr struct, Data [14]int8
+pkg syscall (freebsd-arm-cgo), type RawSockaddr struct, Family uint8
+pkg syscall (freebsd-arm-cgo), type RawSockaddr struct, Len uint8
+pkg syscall (freebsd-arm-cgo), type RawSockaddrAny struct, Pad [92]int8
+pkg syscall (freebsd-arm-cgo), type RawSockaddrDatalink struct
+pkg syscall (freebsd-arm-cgo), type RawSockaddrDatalink struct, Alen uint8
+pkg syscall (freebsd-arm-cgo), type RawSockaddrDatalink struct, Data [46]int8
+pkg syscall (freebsd-arm-cgo), type RawSockaddrDatalink struct, Family uint8
+pkg syscall (freebsd-arm-cgo), type RawSockaddrDatalink struct, Index uint16
+pkg syscall (freebsd-arm-cgo), type RawSockaddrDatalink struct, Len uint8
+pkg syscall (freebsd-arm-cgo), type RawSockaddrDatalink struct, Nlen uint8
+pkg syscall (freebsd-arm-cgo), type RawSockaddrDatalink struct, Pad_cgo_0 [2]uint8
+pkg syscall (freebsd-arm-cgo), type RawSockaddrDatalink struct, Slen uint8
+pkg syscall (freebsd-arm-cgo), type RawSockaddrDatalink struct, Type uint8
+pkg syscall (freebsd-arm-cgo), type RawSockaddrInet4 struct, Family uint8
+pkg syscall (freebsd-arm-cgo), type RawSockaddrInet4 struct, Len uint8
+pkg syscall (freebsd-arm-cgo), type RawSockaddrInet4 struct, Zero [8]int8
+pkg syscall (freebsd-arm-cgo), type RawSockaddrInet6 struct, Family uint8
+pkg syscall (freebsd-arm-cgo), type RawSockaddrInet6 struct, Len uint8
+pkg syscall (freebsd-arm-cgo), type RawSockaddrUnix struct
+pkg syscall (freebsd-arm-cgo), type RawSockaddrUnix struct, Family uint8
+pkg syscall (freebsd-arm-cgo), type RawSockaddrUnix struct, Len uint8
+pkg syscall (freebsd-arm-cgo), type RawSockaddrUnix struct, Pad_cgo_0 [2]uint8
+pkg syscall (freebsd-arm-cgo), type RawSockaddrUnix struct, Path [104]int8
+pkg syscall (freebsd-arm-cgo), type Rlimit struct
+pkg syscall (freebsd-arm-cgo), type Rlimit struct, Cur int64
+pkg syscall (freebsd-arm-cgo), type Rlimit struct, Max int64
+pkg syscall (freebsd-arm-cgo), type RouteMessage struct
+pkg syscall (freebsd-arm-cgo), type RouteMessage struct, Data []uint8
+pkg syscall (freebsd-arm-cgo), type RouteMessage struct, Header RtMsghdr
+pkg syscall (freebsd-arm-cgo), type RoutingMessage interface, unexported methods
+pkg syscall (freebsd-arm-cgo), type RtMetrics struct
+pkg syscall (freebsd-arm-cgo), type RtMetrics struct, Expire uint32
+pkg syscall (freebsd-arm-cgo), type RtMetrics struct, Filler [3]uint32
+pkg syscall (freebsd-arm-cgo), type RtMetrics struct, Hopcount uint32
+pkg syscall (freebsd-arm-cgo), type RtMetrics struct, Locks uint32
+pkg syscall (freebsd-arm-cgo), type RtMetrics struct, Mtu uint32
+pkg syscall (freebsd-arm-cgo), type RtMetrics struct, Pksent uint32
+pkg syscall (freebsd-arm-cgo), type RtMetrics struct, Recvpipe uint32
+pkg syscall (freebsd-arm-cgo), type RtMetrics struct, Rtt uint32
+pkg syscall (freebsd-arm-cgo), type RtMetrics struct, Rttvar uint32
+pkg syscall (freebsd-arm-cgo), type RtMetrics struct, Sendpipe uint32
+pkg syscall (freebsd-arm-cgo), type RtMetrics struct, Ssthresh uint32
+pkg syscall (freebsd-arm-cgo), type RtMetrics struct, Weight uint32
+pkg syscall (freebsd-arm-cgo), type RtMsghdr struct
+pkg syscall (freebsd-arm-cgo), type RtMsghdr struct, Addrs int32
+pkg syscall (freebsd-arm-cgo), type RtMsghdr struct, Errno int32
+pkg syscall (freebsd-arm-cgo), type RtMsghdr struct, Flags int32
+pkg syscall (freebsd-arm-cgo), type RtMsghdr struct, Fmask int32
+pkg syscall (freebsd-arm-cgo), type RtMsghdr struct, Index uint16
+pkg syscall (freebsd-arm-cgo), type RtMsghdr struct, Inits uint32
+pkg syscall (freebsd-arm-cgo), type RtMsghdr struct, Msglen uint16
+pkg syscall (freebsd-arm-cgo), type RtMsghdr struct, Pad_cgo_0 [2]uint8
+pkg syscall (freebsd-arm-cgo), type RtMsghdr struct, Pid int32
+pkg syscall (freebsd-arm-cgo), type RtMsghdr struct, Rmx RtMetrics
+pkg syscall (freebsd-arm-cgo), type RtMsghdr struct, Seq int32
+pkg syscall (freebsd-arm-cgo), type RtMsghdr struct, Type uint8
+pkg syscall (freebsd-arm-cgo), type RtMsghdr struct, Version uint8
+pkg syscall (freebsd-arm-cgo), type Rusage struct, Idrss int32
+pkg syscall (freebsd-arm-cgo), type Rusage struct, Inblock int32
+pkg syscall (freebsd-arm-cgo), type Rusage struct, Isrss int32
+pkg syscall (freebsd-arm-cgo), type Rusage struct, Ixrss int32
+pkg syscall (freebsd-arm-cgo), type Rusage struct, Majflt int32
+pkg syscall (freebsd-arm-cgo), type Rusage struct, Maxrss int32
+pkg syscall (freebsd-arm-cgo), type Rusage struct, Minflt int32
+pkg syscall (freebsd-arm-cgo), type Rusage struct, Msgrcv int32
+pkg syscall (freebsd-arm-cgo), type Rusage struct, Msgsnd int32
+pkg syscall (freebsd-arm-cgo), type Rusage struct, Nivcsw int32
+pkg syscall (freebsd-arm-cgo), type Rusage struct, Nsignals int32
+pkg syscall (freebsd-arm-cgo), type Rusage struct, Nswap int32
+pkg syscall (freebsd-arm-cgo), type Rusage struct, Nvcsw int32
+pkg syscall (freebsd-arm-cgo), type Rusage struct, Oublock int32
+pkg syscall (freebsd-arm-cgo), type Rusage struct, Stime Timeval
+pkg syscall (freebsd-arm-cgo), type Rusage struct, Utime Timeval
+pkg syscall (freebsd-arm-cgo), type SockaddrDatalink struct
+pkg syscall (freebsd-arm-cgo), type SockaddrDatalink struct, Alen uint8
+pkg syscall (freebsd-arm-cgo), type SockaddrDatalink struct, Data [46]int8
+pkg syscall (freebsd-arm-cgo), type SockaddrDatalink struct, Family uint8
+pkg syscall (freebsd-arm-cgo), type SockaddrDatalink struct, Index uint16
+pkg syscall (freebsd-arm-cgo), type SockaddrDatalink struct, Len uint8
+pkg syscall (freebsd-arm-cgo), type SockaddrDatalink struct, Nlen uint8
+pkg syscall (freebsd-arm-cgo), type SockaddrDatalink struct, Slen uint8
+pkg syscall (freebsd-arm-cgo), type SockaddrDatalink struct, Type uint8
+pkg syscall (freebsd-arm-cgo), type SocketControlMessage struct
+pkg syscall (freebsd-arm-cgo), type SocketControlMessage struct, Data []uint8
+pkg syscall (freebsd-arm-cgo), type SocketControlMessage struct, Header Cmsghdr
+pkg syscall (freebsd-arm-cgo), type Stat_t struct
+pkg syscall (freebsd-arm-cgo), type Stat_t struct, Atimespec Timespec
+pkg syscall (freebsd-arm-cgo), type Stat_t struct, Birthtimespec Timespec
+pkg syscall (freebsd-arm-cgo), type Stat_t struct, Blksize uint32
+pkg syscall (freebsd-arm-cgo), type Stat_t struct, Blocks int64
+pkg syscall (freebsd-arm-cgo), type Stat_t struct, Ctimespec Timespec
+pkg syscall (freebsd-arm-cgo), type Stat_t struct, Dev uint32
+pkg syscall (freebsd-arm-cgo), type Stat_t struct, Flags uint32
+pkg syscall (freebsd-arm-cgo), type Stat_t struct, Gen uint32
+pkg syscall (freebsd-arm-cgo), type Stat_t struct, Gid uint32
+pkg syscall (freebsd-arm-cgo), type Stat_t struct, Ino uint32
+pkg syscall (freebsd-arm-cgo), type Stat_t struct, Lspare int32
+pkg syscall (freebsd-arm-cgo), type Stat_t struct, Mode uint16
+pkg syscall (freebsd-arm-cgo), type Stat_t struct, Mtimespec Timespec
+pkg syscall (freebsd-arm-cgo), type Stat_t struct, Nlink uint16
+pkg syscall (freebsd-arm-cgo), type Stat_t struct, Pad_cgo_0 [4]uint8
+pkg syscall (freebsd-arm-cgo), type Stat_t struct, Rdev uint32
+pkg syscall (freebsd-arm-cgo), type Stat_t struct, Size int64
+pkg syscall (freebsd-arm-cgo), type Stat_t struct, Uid uint32
+pkg syscall (freebsd-arm-cgo), type Statfs_t struct
+pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Asyncreads uint64
+pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Asyncwrites uint64
+pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Bavail int64
+pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Bfree uint64
+pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Blocks uint64
+pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Bsize uint64
+pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Charspare [80]int8
+pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Ffree int64
+pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Files uint64
+pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Flags uint64
+pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Fsid Fsid
+pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Fstypename [16]int8
+pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Iosize uint64
+pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Mntfromname [88]int8
+pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Mntonname [88]int8
+pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Namemax uint32
+pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Owner uint32
+pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Spare [10]uint64
+pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Syncreads uint64
+pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Syncwrites uint64
+pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Type uint32
+pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Version uint32
+pkg syscall (freebsd-arm-cgo), type SysProcAttr struct, Chroot string
+pkg syscall (freebsd-arm-cgo), type SysProcAttr struct, Credential *Credential
+pkg syscall (freebsd-arm-cgo), type SysProcAttr struct, Noctty bool
+pkg syscall (freebsd-arm-cgo), type SysProcAttr struct, Ptrace bool
+pkg syscall (freebsd-arm-cgo), type SysProcAttr struct, Setctty bool
+pkg syscall (freebsd-arm-cgo), type SysProcAttr struct, Setpgid bool
+pkg syscall (freebsd-arm-cgo), type SysProcAttr struct, Setsid bool
+pkg syscall (freebsd-arm-cgo), type Timespec struct, Nsec int32
+pkg syscall (freebsd-arm-cgo), type Timespec struct, Sec int64
+pkg syscall (freebsd-arm-cgo), type Timeval struct, Sec int64
+pkg syscall (freebsd-arm-cgo), type Timeval struct, Usec int32
+pkg syscall (freebsd-arm-cgo), type WaitStatus uint32
+pkg syscall (freebsd-arm-cgo), var Stderr int
+pkg syscall (freebsd-arm-cgo), var Stdin int
+pkg syscall (freebsd-arm-cgo), var Stdout int
+pkg syscall (linux-386), const CLONE_CHILD_CLEARTID = 2097152
+pkg syscall (linux-386), const CLONE_CHILD_CLEARTID ideal-int
+pkg syscall (linux-386), const CLONE_CHILD_SETTID = 16777216
+pkg syscall (linux-386), const CLONE_CHILD_SETTID ideal-int
+pkg syscall (linux-386), const CLONE_DETACHED = 4194304
+pkg syscall (linux-386), const CLONE_DETACHED ideal-int
+pkg syscall (linux-386), const CLONE_FILES = 1024
+pkg syscall (linux-386), const CLONE_FILES ideal-int
+pkg syscall (linux-386), const CLONE_FS = 512
+pkg syscall (linux-386), const CLONE_FS ideal-int
+pkg syscall (linux-386), const CLONE_IO = 2147483648
+pkg syscall (linux-386), const CLONE_IO ideal-int
+pkg syscall (linux-386), const CLONE_NEWIPC = 134217728
+pkg syscall (linux-386), const CLONE_NEWIPC ideal-int
+pkg syscall (linux-386), const CLONE_NEWNET = 1073741824
+pkg syscall (linux-386), const CLONE_NEWNET ideal-int
+pkg syscall (linux-386), const CLONE_NEWNS = 131072
+pkg syscall (linux-386), const CLONE_NEWNS ideal-int
+pkg syscall (linux-386), const CLONE_NEWPID = 536870912
+pkg syscall (linux-386), const CLONE_NEWPID ideal-int
+pkg syscall (linux-386), const CLONE_NEWUSER = 268435456
+pkg syscall (linux-386), const CLONE_NEWUSER ideal-int
+pkg syscall (linux-386), const CLONE_NEWUTS = 67108864
+pkg syscall (linux-386), const CLONE_NEWUTS ideal-int
+pkg syscall (linux-386), const CLONE_PARENT = 32768
+pkg syscall (linux-386), const CLONE_PARENT ideal-int
+pkg syscall (linux-386), const CLONE_PARENT_SETTID = 1048576
+pkg syscall (linux-386), const CLONE_PARENT_SETTID ideal-int
+pkg syscall (linux-386), const CLONE_PTRACE = 8192
+pkg syscall (linux-386), const CLONE_PTRACE ideal-int
+pkg syscall (linux-386), const CLONE_SETTLS = 524288
+pkg syscall (linux-386), const CLONE_SETTLS ideal-int
+pkg syscall (linux-386), const CLONE_SIGHAND = 2048
+pkg syscall (linux-386), const CLONE_SIGHAND ideal-int
+pkg syscall (linux-386), const CLONE_SYSVSEM = 262144
+pkg syscall (linux-386), const CLONE_SYSVSEM ideal-int
+pkg syscall (linux-386), const CLONE_THREAD = 65536
+pkg syscall (linux-386), const CLONE_THREAD ideal-int
+pkg syscall (linux-386), const CLONE_UNTRACED = 8388608
+pkg syscall (linux-386), const CLONE_UNTRACED ideal-int
+pkg syscall (linux-386), const CLONE_VFORK = 16384
+pkg syscall (linux-386), const CLONE_VFORK ideal-int
+pkg syscall (linux-386), const CLONE_VM = 256
+pkg syscall (linux-386), const CLONE_VM ideal-int
+pkg syscall (linux-386), const ICMPV6_FILTER = 1
+pkg syscall (linux-386), const ICMPV6_FILTER ideal-int
+pkg syscall (linux-386), const PRIO_PGRP = 1
+pkg syscall (linux-386), const PRIO_PGRP ideal-int
+pkg syscall (linux-386), const PRIO_PROCESS = 0
+pkg syscall (linux-386), const PRIO_PROCESS ideal-int
+pkg syscall (linux-386), const PRIO_USER = 2
+pkg syscall (linux-386), const PRIO_USER ideal-int
+pkg syscall (linux-386), const SizeofICMPv6Filter = 32
+pkg syscall (linux-386), const SizeofICMPv6Filter ideal-int
+pkg syscall (linux-386), const SizeofIPv6MTUInfo = 32
+pkg syscall (linux-386), const SizeofIPv6MTUInfo ideal-int
+pkg syscall (linux-386), const TCIFLUSH = 0
+pkg syscall (linux-386), const TCIFLUSH ideal-int
+pkg syscall (linux-386), const TCIOFLUSH = 2
+pkg syscall (linux-386), const TCIOFLUSH ideal-int
+pkg syscall (linux-386), const TCOFLUSH = 1
+pkg syscall (linux-386), const TCOFLUSH ideal-int
+pkg syscall (linux-386), func Dup3(int, int, int) error
+pkg syscall (linux-386), func Getpriority(int, int) (int, error)
+pkg syscall (linux-386), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
+pkg syscall (linux-386), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
+pkg syscall (linux-386), func Setpriority(int, int, int) error
+pkg syscall (linux-386), func SetsockoptByte(int, int, int, uint8) error
+pkg syscall (linux-386), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
+pkg syscall (linux-386), type ICMPv6Filter struct
+pkg syscall (linux-386), type ICMPv6Filter struct, Data [8]uint32
+pkg syscall (linux-386), type IPv6MTUInfo struct
+pkg syscall (linux-386), type IPv6MTUInfo struct, Addr RawSockaddrInet6
+pkg syscall (linux-386), type IPv6MTUInfo struct, Mtu uint32
+pkg syscall (linux-386), type SysProcAttr struct, Cloneflags uintptr
+pkg syscall (linux-386-cgo), const CLONE_CHILD_CLEARTID = 2097152
+pkg syscall (linux-386-cgo), const CLONE_CHILD_CLEARTID ideal-int
+pkg syscall (linux-386-cgo), const CLONE_CHILD_SETTID = 16777216
+pkg syscall (linux-386-cgo), const CLONE_CHILD_SETTID ideal-int
+pkg syscall (linux-386-cgo), const CLONE_DETACHED = 4194304
+pkg syscall (linux-386-cgo), const CLONE_DETACHED ideal-int
+pkg syscall (linux-386-cgo), const CLONE_FILES = 1024
+pkg syscall (linux-386-cgo), const CLONE_FILES ideal-int
+pkg syscall (linux-386-cgo), const CLONE_FS = 512
+pkg syscall (linux-386-cgo), const CLONE_FS ideal-int
+pkg syscall (linux-386-cgo), const CLONE_IO = 2147483648
+pkg syscall (linux-386-cgo), const CLONE_IO ideal-int
+pkg syscall (linux-386-cgo), const CLONE_NEWIPC = 134217728
+pkg syscall (linux-386-cgo), const CLONE_NEWIPC ideal-int
+pkg syscall (linux-386-cgo), const CLONE_NEWNET = 1073741824
+pkg syscall (linux-386-cgo), const CLONE_NEWNET ideal-int
+pkg syscall (linux-386-cgo), const CLONE_NEWNS = 131072
+pkg syscall (linux-386-cgo), const CLONE_NEWNS ideal-int
+pkg syscall (linux-386-cgo), const CLONE_NEWPID = 536870912
+pkg syscall (linux-386-cgo), const CLONE_NEWPID ideal-int
+pkg syscall (linux-386-cgo), const CLONE_NEWUSER = 268435456
+pkg syscall (linux-386-cgo), const CLONE_NEWUSER ideal-int
+pkg syscall (linux-386-cgo), const CLONE_NEWUTS = 67108864
+pkg syscall (linux-386-cgo), const CLONE_NEWUTS ideal-int
+pkg syscall (linux-386-cgo), const CLONE_PARENT = 32768
+pkg syscall (linux-386-cgo), const CLONE_PARENT ideal-int
+pkg syscall (linux-386-cgo), const CLONE_PARENT_SETTID = 1048576
+pkg syscall (linux-386-cgo), const CLONE_PARENT_SETTID ideal-int
+pkg syscall (linux-386-cgo), const CLONE_PTRACE = 8192
+pkg syscall (linux-386-cgo), const CLONE_PTRACE ideal-int
+pkg syscall (linux-386-cgo), const CLONE_SETTLS = 524288
+pkg syscall (linux-386-cgo), const CLONE_SETTLS ideal-int
+pkg syscall (linux-386-cgo), const CLONE_SIGHAND = 2048
+pkg syscall (linux-386-cgo), const CLONE_SIGHAND ideal-int
+pkg syscall (linux-386-cgo), const CLONE_SYSVSEM = 262144
+pkg syscall (linux-386-cgo), const CLONE_SYSVSEM ideal-int
+pkg syscall (linux-386-cgo), const CLONE_THREAD = 65536
+pkg syscall (linux-386-cgo), const CLONE_THREAD ideal-int
+pkg syscall (linux-386-cgo), const CLONE_UNTRACED = 8388608
+pkg syscall (linux-386-cgo), const CLONE_UNTRACED ideal-int
+pkg syscall (linux-386-cgo), const CLONE_VFORK = 16384
+pkg syscall (linux-386-cgo), const CLONE_VFORK ideal-int
+pkg syscall (linux-386-cgo), const CLONE_VM = 256
+pkg syscall (linux-386-cgo), const CLONE_VM ideal-int
+pkg syscall (linux-386-cgo), const ICMPV6_FILTER = 1
+pkg syscall (linux-386-cgo), const ICMPV6_FILTER ideal-int
+pkg syscall (linux-386-cgo), const PRIO_PGRP = 1
+pkg syscall (linux-386-cgo), const PRIO_PGRP ideal-int
+pkg syscall (linux-386-cgo), const PRIO_PROCESS = 0
+pkg syscall (linux-386-cgo), const PRIO_PROCESS ideal-int
+pkg syscall (linux-386-cgo), const PRIO_USER = 2
+pkg syscall (linux-386-cgo), const PRIO_USER ideal-int
+pkg syscall (linux-386-cgo), const SizeofICMPv6Filter = 32
+pkg syscall (linux-386-cgo), const SizeofICMPv6Filter ideal-int
+pkg syscall (linux-386-cgo), const SizeofIPv6MTUInfo = 32
+pkg syscall (linux-386-cgo), const SizeofIPv6MTUInfo ideal-int
+pkg syscall (linux-386-cgo), const TCIFLUSH = 0
+pkg syscall (linux-386-cgo), const TCIFLUSH ideal-int
+pkg syscall (linux-386-cgo), const TCIOFLUSH = 2
+pkg syscall (linux-386-cgo), const TCIOFLUSH ideal-int
+pkg syscall (linux-386-cgo), const TCOFLUSH = 1
+pkg syscall (linux-386-cgo), const TCOFLUSH ideal-int
+pkg syscall (linux-386-cgo), func Dup3(int, int, int) error
+pkg syscall (linux-386-cgo), func Getpriority(int, int) (int, error)
+pkg syscall (linux-386-cgo), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
+pkg syscall (linux-386-cgo), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
+pkg syscall (linux-386-cgo), func Setpriority(int, int, int) error
+pkg syscall (linux-386-cgo), func SetsockoptByte(int, int, int, uint8) error
+pkg syscall (linux-386-cgo), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
+pkg syscall (linux-386-cgo), type ICMPv6Filter struct
+pkg syscall (linux-386-cgo), type ICMPv6Filter struct, Data [8]uint32
+pkg syscall (linux-386-cgo), type IPv6MTUInfo struct
+pkg syscall (linux-386-cgo), type IPv6MTUInfo struct, Addr RawSockaddrInet6
+pkg syscall (linux-386-cgo), type IPv6MTUInfo struct, Mtu uint32
+pkg syscall (linux-386-cgo), type SysProcAttr struct, Cloneflags uintptr
+pkg syscall (linux-amd64), const CLONE_CHILD_CLEARTID = 2097152
+pkg syscall (linux-amd64), const CLONE_CHILD_CLEARTID ideal-int
+pkg syscall (linux-amd64), const CLONE_CHILD_SETTID = 16777216
+pkg syscall (linux-amd64), const CLONE_CHILD_SETTID ideal-int
+pkg syscall (linux-amd64), const CLONE_DETACHED = 4194304
+pkg syscall (linux-amd64), const CLONE_DETACHED ideal-int
+pkg syscall (linux-amd64), const CLONE_FILES = 1024
+pkg syscall (linux-amd64), const CLONE_FILES ideal-int
+pkg syscall (linux-amd64), const CLONE_FS = 512
+pkg syscall (linux-amd64), const CLONE_FS ideal-int
+pkg syscall (linux-amd64), const CLONE_IO = 2147483648
+pkg syscall (linux-amd64), const CLONE_IO ideal-int
+pkg syscall (linux-amd64), const CLONE_NEWIPC = 134217728
+pkg syscall (linux-amd64), const CLONE_NEWIPC ideal-int
+pkg syscall (linux-amd64), const CLONE_NEWNET = 1073741824
+pkg syscall (linux-amd64), const CLONE_NEWNET ideal-int
+pkg syscall (linux-amd64), const CLONE_NEWNS = 131072
+pkg syscall (linux-amd64), const CLONE_NEWNS ideal-int
+pkg syscall (linux-amd64), const CLONE_NEWPID = 536870912
+pkg syscall (linux-amd64), const CLONE_NEWPID ideal-int
+pkg syscall (linux-amd64), const CLONE_NEWUSER = 268435456
+pkg syscall (linux-amd64), const CLONE_NEWUSER ideal-int
+pkg syscall (linux-amd64), const CLONE_NEWUTS = 67108864
+pkg syscall (linux-amd64), const CLONE_NEWUTS ideal-int
+pkg syscall (linux-amd64), const CLONE_PARENT = 32768
+pkg syscall (linux-amd64), const CLONE_PARENT ideal-int
+pkg syscall (linux-amd64), const CLONE_PARENT_SETTID = 1048576
+pkg syscall (linux-amd64), const CLONE_PARENT_SETTID ideal-int
+pkg syscall (linux-amd64), const CLONE_PTRACE = 8192
+pkg syscall (linux-amd64), const CLONE_PTRACE ideal-int
+pkg syscall (linux-amd64), const CLONE_SETTLS = 524288
+pkg syscall (linux-amd64), const CLONE_SETTLS ideal-int
+pkg syscall (linux-amd64), const CLONE_SIGHAND = 2048
+pkg syscall (linux-amd64), const CLONE_SIGHAND ideal-int
+pkg syscall (linux-amd64), const CLONE_SYSVSEM = 262144
+pkg syscall (linux-amd64), const CLONE_SYSVSEM ideal-int
+pkg syscall (linux-amd64), const CLONE_THREAD = 65536
+pkg syscall (linux-amd64), const CLONE_THREAD ideal-int
+pkg syscall (linux-amd64), const CLONE_UNTRACED = 8388608
+pkg syscall (linux-amd64), const CLONE_UNTRACED ideal-int
+pkg syscall (linux-amd64), const CLONE_VFORK = 16384
+pkg syscall (linux-amd64), const CLONE_VFORK ideal-int
+pkg syscall (linux-amd64), const CLONE_VM = 256
+pkg syscall (linux-amd64), const CLONE_VM ideal-int
+pkg syscall (linux-amd64), const ICMPV6_FILTER = 1
+pkg syscall (linux-amd64), const ICMPV6_FILTER ideal-int
+pkg syscall (linux-amd64), const PRIO_PGRP = 1
+pkg syscall (linux-amd64), const PRIO_PGRP ideal-int
+pkg syscall (linux-amd64), const PRIO_PROCESS = 0
+pkg syscall (linux-amd64), const PRIO_PROCESS ideal-int
+pkg syscall (linux-amd64), const PRIO_USER = 2
+pkg syscall (linux-amd64), const PRIO_USER ideal-int
+pkg syscall (linux-amd64), const SizeofICMPv6Filter = 32
+pkg syscall (linux-amd64), const SizeofICMPv6Filter ideal-int
+pkg syscall (linux-amd64), const SizeofIPv6MTUInfo = 32
+pkg syscall (linux-amd64), const SizeofIPv6MTUInfo ideal-int
+pkg syscall (linux-amd64), const TCIFLUSH = 0
+pkg syscall (linux-amd64), const TCIFLUSH ideal-int
+pkg syscall (linux-amd64), const TCIOFLUSH = 2
+pkg syscall (linux-amd64), const TCIOFLUSH ideal-int
+pkg syscall (linux-amd64), const TCOFLUSH = 1
+pkg syscall (linux-amd64), const TCOFLUSH ideal-int
+pkg syscall (linux-amd64), func Dup3(int, int, int) error
+pkg syscall (linux-amd64), func Getpriority(int, int) (int, error)
+pkg syscall (linux-amd64), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
+pkg syscall (linux-amd64), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
+pkg syscall (linux-amd64), func Setpriority(int, int, int) error
+pkg syscall (linux-amd64), func SetsockoptByte(int, int, int, uint8) error
+pkg syscall (linux-amd64), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
+pkg syscall (linux-amd64), type ICMPv6Filter struct
+pkg syscall (linux-amd64), type ICMPv6Filter struct, Data [8]uint32
+pkg syscall (linux-amd64), type IPv6MTUInfo struct
+pkg syscall (linux-amd64), type IPv6MTUInfo struct, Addr RawSockaddrInet6
+pkg syscall (linux-amd64), type IPv6MTUInfo struct, Mtu uint32
+pkg syscall (linux-amd64), type SysProcAttr struct, Cloneflags uintptr
+pkg syscall (linux-amd64-cgo), const CLONE_CHILD_CLEARTID = 2097152
+pkg syscall (linux-amd64-cgo), const CLONE_CHILD_CLEARTID ideal-int
+pkg syscall (linux-amd64-cgo), const CLONE_CHILD_SETTID = 16777216
+pkg syscall (linux-amd64-cgo), const CLONE_CHILD_SETTID ideal-int
+pkg syscall (linux-amd64-cgo), const CLONE_DETACHED = 4194304
+pkg syscall (linux-amd64-cgo), const CLONE_DETACHED ideal-int
+pkg syscall (linux-amd64-cgo), const CLONE_FILES = 1024
+pkg syscall (linux-amd64-cgo), const CLONE_FILES ideal-int
+pkg syscall (linux-amd64-cgo), const CLONE_FS = 512
+pkg syscall (linux-amd64-cgo), const CLONE_FS ideal-int
+pkg syscall (linux-amd64-cgo), const CLONE_IO = 2147483648
+pkg syscall (linux-amd64-cgo), const CLONE_IO ideal-int
+pkg syscall (linux-amd64-cgo), const CLONE_NEWIPC = 134217728
+pkg syscall (linux-amd64-cgo), const CLONE_NEWIPC ideal-int
+pkg syscall (linux-amd64-cgo), const CLONE_NEWNET = 1073741824
+pkg syscall (linux-amd64-cgo), const CLONE_NEWNET ideal-int
+pkg syscall (linux-amd64-cgo), const CLONE_NEWNS = 131072
+pkg syscall (linux-amd64-cgo), const CLONE_NEWNS ideal-int
+pkg syscall (linux-amd64-cgo), const CLONE_NEWPID = 536870912
+pkg syscall (linux-amd64-cgo), const CLONE_NEWPID ideal-int
+pkg syscall (linux-amd64-cgo), const CLONE_NEWUSER = 268435456
+pkg syscall (linux-amd64-cgo), const CLONE_NEWUSER ideal-int
+pkg syscall (linux-amd64-cgo), const CLONE_NEWUTS = 67108864
+pkg syscall (linux-amd64-cgo), const CLONE_NEWUTS ideal-int
+pkg syscall (linux-amd64-cgo), const CLONE_PARENT = 32768
+pkg syscall (linux-amd64-cgo), const CLONE_PARENT ideal-int
+pkg syscall (linux-amd64-cgo), const CLONE_PARENT_SETTID = 1048576
+pkg syscall (linux-amd64-cgo), const CLONE_PARENT_SETTID ideal-int
+pkg syscall (linux-amd64-cgo), const CLONE_PTRACE = 8192
+pkg syscall (linux-amd64-cgo), const CLONE_PTRACE ideal-int
+pkg syscall (linux-amd64-cgo), const CLONE_SETTLS = 524288
+pkg syscall (linux-amd64-cgo), const CLONE_SETTLS ideal-int
+pkg syscall (linux-amd64-cgo), const CLONE_SIGHAND = 2048
+pkg syscall (linux-amd64-cgo), const CLONE_SIGHAND ideal-int
+pkg syscall (linux-amd64-cgo), const CLONE_SYSVSEM = 262144
+pkg syscall (linux-amd64-cgo), const CLONE_SYSVSEM ideal-int
+pkg syscall (linux-amd64-cgo), const CLONE_THREAD = 65536
+pkg syscall (linux-amd64-cgo), const CLONE_THREAD ideal-int
+pkg syscall (linux-amd64-cgo), const CLONE_UNTRACED = 8388608
+pkg syscall (linux-amd64-cgo), const CLONE_UNTRACED ideal-int
+pkg syscall (linux-amd64-cgo), const CLONE_VFORK = 16384
+pkg syscall (linux-amd64-cgo), const CLONE_VFORK ideal-int
+pkg syscall (linux-amd64-cgo), const CLONE_VM = 256
+pkg syscall (linux-amd64-cgo), const CLONE_VM ideal-int
+pkg syscall (linux-amd64-cgo), const ICMPV6_FILTER = 1
+pkg syscall (linux-amd64-cgo), const ICMPV6_FILTER ideal-int
+pkg syscall (linux-amd64-cgo), const PRIO_PGRP = 1
+pkg syscall (linux-amd64-cgo), const PRIO_PGRP ideal-int
+pkg syscall (linux-amd64-cgo), const PRIO_PROCESS = 0
+pkg syscall (linux-amd64-cgo), const PRIO_PROCESS ideal-int
+pkg syscall (linux-amd64-cgo), const PRIO_USER = 2
+pkg syscall (linux-amd64-cgo), const PRIO_USER ideal-int
+pkg syscall (linux-amd64-cgo), const SizeofICMPv6Filter = 32
+pkg syscall (linux-amd64-cgo), const SizeofICMPv6Filter ideal-int
+pkg syscall (linux-amd64-cgo), const SizeofIPv6MTUInfo = 32
+pkg syscall (linux-amd64-cgo), const SizeofIPv6MTUInfo ideal-int
+pkg syscall (linux-amd64-cgo), const TCIFLUSH = 0
+pkg syscall (linux-amd64-cgo), const TCIFLUSH ideal-int
+pkg syscall (linux-amd64-cgo), const TCIOFLUSH = 2
+pkg syscall (linux-amd64-cgo), const TCIOFLUSH ideal-int
+pkg syscall (linux-amd64-cgo), const TCOFLUSH = 1
+pkg syscall (linux-amd64-cgo), const TCOFLUSH ideal-int
+pkg syscall (linux-amd64-cgo), func Dup3(int, int, int) error
+pkg syscall (linux-amd64-cgo), func Getpriority(int, int) (int, error)
+pkg syscall (linux-amd64-cgo), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
+pkg syscall (linux-amd64-cgo), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
+pkg syscall (linux-amd64-cgo), func Setpriority(int, int, int) error
+pkg syscall (linux-amd64-cgo), func SetsockoptByte(int, int, int, uint8) error
+pkg syscall (linux-amd64-cgo), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
+pkg syscall (linux-amd64-cgo), type ICMPv6Filter struct
+pkg syscall (linux-amd64-cgo), type ICMPv6Filter struct, Data [8]uint32
+pkg syscall (linux-amd64-cgo), type IPv6MTUInfo struct
+pkg syscall (linux-amd64-cgo), type IPv6MTUInfo struct, Addr RawSockaddrInet6
+pkg syscall (linux-amd64-cgo), type IPv6MTUInfo struct, Mtu uint32
+pkg syscall (linux-amd64-cgo), type SysProcAttr struct, Cloneflags uintptr
+pkg syscall (linux-arm), const CLONE_CHILD_CLEARTID = 2097152
+pkg syscall (linux-arm), const CLONE_CHILD_CLEARTID ideal-int
+pkg syscall (linux-arm), const CLONE_CHILD_SETTID = 16777216
+pkg syscall (linux-arm), const CLONE_CHILD_SETTID ideal-int
+pkg syscall (linux-arm), const CLONE_DETACHED = 4194304
+pkg syscall (linux-arm), const CLONE_DETACHED ideal-int
+pkg syscall (linux-arm), const CLONE_FILES = 1024
+pkg syscall (linux-arm), const CLONE_FILES ideal-int
+pkg syscall (linux-arm), const CLONE_FS = 512
+pkg syscall (linux-arm), const CLONE_FS ideal-int
+pkg syscall (linux-arm), const CLONE_IO = 2147483648
+pkg syscall (linux-arm), const CLONE_IO ideal-int
+pkg syscall (linux-arm), const CLONE_NEWIPC = 134217728
+pkg syscall (linux-arm), const CLONE_NEWIPC ideal-int
+pkg syscall (linux-arm), const CLONE_NEWNET = 1073741824
+pkg syscall (linux-arm), const CLONE_NEWNET ideal-int
+pkg syscall (linux-arm), const CLONE_NEWNS = 131072
+pkg syscall (linux-arm), const CLONE_NEWNS ideal-int
+pkg syscall (linux-arm), const CLONE_NEWPID = 536870912
+pkg syscall (linux-arm), const CLONE_NEWPID ideal-int
+pkg syscall (linux-arm), const CLONE_NEWUSER = 268435456
+pkg syscall (linux-arm), const CLONE_NEWUSER ideal-int
+pkg syscall (linux-arm), const CLONE_NEWUTS = 67108864
+pkg syscall (linux-arm), const CLONE_NEWUTS ideal-int
+pkg syscall (linux-arm), const CLONE_PARENT = 32768
+pkg syscall (linux-arm), const CLONE_PARENT ideal-int
+pkg syscall (linux-arm), const CLONE_PARENT_SETTID = 1048576
+pkg syscall (linux-arm), const CLONE_PARENT_SETTID ideal-int
+pkg syscall (linux-arm), const CLONE_PTRACE = 8192
+pkg syscall (linux-arm), const CLONE_PTRACE ideal-int
+pkg syscall (linux-arm), const CLONE_SETTLS = 524288
+pkg syscall (linux-arm), const CLONE_SETTLS ideal-int
+pkg syscall (linux-arm), const CLONE_SIGHAND = 2048
+pkg syscall (linux-arm), const CLONE_SIGHAND ideal-int
+pkg syscall (linux-arm), const CLONE_SYSVSEM = 262144
+pkg syscall (linux-arm), const CLONE_SYSVSEM ideal-int
+pkg syscall (linux-arm), const CLONE_THREAD = 65536
+pkg syscall (linux-arm), const CLONE_THREAD ideal-int
+pkg syscall (linux-arm), const CLONE_UNTRACED = 8388608
+pkg syscall (linux-arm), const CLONE_UNTRACED ideal-int
+pkg syscall (linux-arm), const CLONE_VFORK = 16384
+pkg syscall (linux-arm), const CLONE_VFORK ideal-int
+pkg syscall (linux-arm), const CLONE_VM = 256
+pkg syscall (linux-arm), const CLONE_VM ideal-int
+pkg syscall (linux-arm), const ICMPV6_FILTER = 1
+pkg syscall (linux-arm), const ICMPV6_FILTER ideal-int
+pkg syscall (linux-arm), const PRIO_PGRP = 1
+pkg syscall (linux-arm), const PRIO_PGRP ideal-int
+pkg syscall (linux-arm), const PRIO_PROCESS = 0
+pkg syscall (linux-arm), const PRIO_PROCESS ideal-int
+pkg syscall (linux-arm), const PRIO_USER = 2
+pkg syscall (linux-arm), const PRIO_USER ideal-int
+pkg syscall (linux-arm), const SizeofICMPv6Filter = 32
+pkg syscall (linux-arm), const SizeofICMPv6Filter ideal-int
+pkg syscall (linux-arm), const SizeofIPv6MTUInfo = 32
+pkg syscall (linux-arm), const SizeofIPv6MTUInfo ideal-int
+pkg syscall (linux-arm), const TCIFLUSH = 0
+pkg syscall (linux-arm), const TCIFLUSH ideal-int
+pkg syscall (linux-arm), const TCIOFLUSH = 2
+pkg syscall (linux-arm), const TCIOFLUSH ideal-int
+pkg syscall (linux-arm), const TCOFLUSH = 1
+pkg syscall (linux-arm), const TCOFLUSH ideal-int
+pkg syscall (linux-arm), func Dup3(int, int, int) error
+pkg syscall (linux-arm), func Getpriority(int, int) (int, error)
+pkg syscall (linux-arm), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
+pkg syscall (linux-arm), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
+pkg syscall (linux-arm), func Setpriority(int, int, int) error
+pkg syscall (linux-arm), func SetsockoptByte(int, int, int, uint8) error
+pkg syscall (linux-arm), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
+pkg syscall (linux-arm), type ICMPv6Filter struct
+pkg syscall (linux-arm), type ICMPv6Filter struct, Data [8]uint32
+pkg syscall (linux-arm), type IPv6MTUInfo struct
+pkg syscall (linux-arm), type IPv6MTUInfo struct, Addr RawSockaddrInet6
+pkg syscall (linux-arm), type IPv6MTUInfo struct, Mtu uint32
+pkg syscall (linux-arm), type SysProcAttr struct, Cloneflags uintptr
+pkg syscall (linux-arm-cgo), const AF_ALG ideal-int
+pkg syscall (linux-arm-cgo), const AF_APPLETALK ideal-int
+pkg syscall (linux-arm-cgo), const AF_ASH ideal-int
+pkg syscall (linux-arm-cgo), const AF_ATMPVC ideal-int
+pkg syscall (linux-arm-cgo), const AF_ATMSVC ideal-int
+pkg syscall (linux-arm-cgo), const AF_AX25 ideal-int
+pkg syscall (linux-arm-cgo), const AF_BLUETOOTH ideal-int
+pkg syscall (linux-arm-cgo), const AF_BRIDGE ideal-int
+pkg syscall (linux-arm-cgo), const AF_CAIF ideal-int
+pkg syscall (linux-arm-cgo), const AF_CAN ideal-int
+pkg syscall (linux-arm-cgo), const AF_DECnet ideal-int
+pkg syscall (linux-arm-cgo), const AF_ECONET ideal-int
+pkg syscall (linux-arm-cgo), const AF_FILE ideal-int
+pkg syscall (linux-arm-cgo), const AF_IEEE802154 ideal-int
+pkg syscall (linux-arm-cgo), const AF_IPX ideal-int
+pkg syscall (linux-arm-cgo), const AF_IRDA ideal-int
+pkg syscall (linux-arm-cgo), const AF_ISDN ideal-int
+pkg syscall (linux-arm-cgo), const AF_IUCV ideal-int
+pkg syscall (linux-arm-cgo), const AF_KEY ideal-int
+pkg syscall (linux-arm-cgo), const AF_LLC ideal-int
+pkg syscall (linux-arm-cgo), const AF_LOCAL ideal-int
+pkg syscall (linux-arm-cgo), const AF_MAX ideal-int
+pkg syscall (linux-arm-cgo), const AF_NETBEUI ideal-int
+pkg syscall (linux-arm-cgo), const AF_NETLINK ideal-int
+pkg syscall (linux-arm-cgo), const AF_NETROM ideal-int
+pkg syscall (linux-arm-cgo), const AF_PACKET ideal-int
+pkg syscall (linux-arm-cgo), const AF_PHONET ideal-int
+pkg syscall (linux-arm-cgo), const AF_PPPOX ideal-int
+pkg syscall (linux-arm-cgo), const AF_RDS ideal-int
+pkg syscall (linux-arm-cgo), const AF_ROSE ideal-int
+pkg syscall (linux-arm-cgo), const AF_ROUTE ideal-int
+pkg syscall (linux-arm-cgo), const AF_RXRPC ideal-int
+pkg syscall (linux-arm-cgo), const AF_SECURITY ideal-int
+pkg syscall (linux-arm-cgo), const AF_SNA ideal-int
+pkg syscall (linux-arm-cgo), const AF_TIPC ideal-int
+pkg syscall (linux-arm-cgo), const AF_WANPIPE ideal-int
+pkg syscall (linux-arm-cgo), const AF_X25 ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_ADAPT ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_APPLETLK ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_ARCNET ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_ASH ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_ATM ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_AX25 ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_BIF ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_CHAOS ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_CISCO ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_CSLIP ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_CSLIP6 ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_DDCMP ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_DLCI ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_ECONET ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_EETHER ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_ETHER ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_EUI64 ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_FCAL ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_FCFABRIC ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_FCPL ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_FCPP ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_FDDI ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_FRAD ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_HDLC ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_HIPPI ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_HWX25 ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_IEEE1394 ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_IEEE802 ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_IEEE80211 ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_IEEE80211_PRISM ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_IEEE80211_RADIOTAP ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_IEEE802154 ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_IEEE802154_PHY ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_IEEE802_TR ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_INFINIBAND ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_IPDDP ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_IPGRE ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_IRDA ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_LAPB ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_LOCALTLK ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_LOOPBACK ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_METRICOM ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_NETROM ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_NONE ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_PIMREG ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_PPP ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_PRONET ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_RAWHDLC ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_ROSE ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_RSRVD ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_SIT ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_SKIP ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_SLIP ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_SLIP6 ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_TUNNEL ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_TUNNEL6 ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_VOID ideal-int
+pkg syscall (linux-arm-cgo), const ARPHRD_X25 ideal-int
+pkg syscall (linux-arm-cgo), const B0 ideal-int
+pkg syscall (linux-arm-cgo), const B1000000 ideal-int
+pkg syscall (linux-arm-cgo), const B110 ideal-int
+pkg syscall (linux-arm-cgo), const B115200 ideal-int
+pkg syscall (linux-arm-cgo), const B1152000 ideal-int
+pkg syscall (linux-arm-cgo), const B1200 ideal-int
+pkg syscall (linux-arm-cgo), const B134 ideal-int
+pkg syscall (linux-arm-cgo), const B150 ideal-int
+pkg syscall (linux-arm-cgo), const B1500000 ideal-int
+pkg syscall (linux-arm-cgo), const B1800 ideal-int
+pkg syscall (linux-arm-cgo), const B19200 ideal-int
+pkg syscall (linux-arm-cgo), const B200 ideal-int
+pkg syscall (linux-arm-cgo), const B2000000 ideal-int
+pkg syscall (linux-arm-cgo), const B230400 ideal-int
+pkg syscall (linux-arm-cgo), const B2400 ideal-int
+pkg syscall (linux-arm-cgo), const B2500000 ideal-int
+pkg syscall (linux-arm-cgo), const B300 ideal-int
+pkg syscall (linux-arm-cgo), const B3000000 ideal-int
+pkg syscall (linux-arm-cgo), const B3500000 ideal-int
+pkg syscall (linux-arm-cgo), const B38400 ideal-int
+pkg syscall (linux-arm-cgo), const B4000000 ideal-int
+pkg syscall (linux-arm-cgo), const B460800 ideal-int
+pkg syscall (linux-arm-cgo), const B4800 ideal-int
+pkg syscall (linux-arm-cgo), const B50 ideal-int
+pkg syscall (linux-arm-cgo), const B500000 ideal-int
+pkg syscall (linux-arm-cgo), const B57600 ideal-int
+pkg syscall (linux-arm-cgo), const B576000 ideal-int
+pkg syscall (linux-arm-cgo), const B600 ideal-int
+pkg syscall (linux-arm-cgo), const B75 ideal-int
+pkg syscall (linux-arm-cgo), const B921600 ideal-int
+pkg syscall (linux-arm-cgo), const B9600 ideal-int
+pkg syscall (linux-arm-cgo), const BPF_A ideal-int
+pkg syscall (linux-arm-cgo), const BPF_ABS ideal-int
+pkg syscall (linux-arm-cgo), const BPF_ADD ideal-int
+pkg syscall (linux-arm-cgo), const BPF_ALU ideal-int
+pkg syscall (linux-arm-cgo), const BPF_AND ideal-int
+pkg syscall (linux-arm-cgo), const BPF_B ideal-int
+pkg syscall (linux-arm-cgo), const BPF_DIV ideal-int
+pkg syscall (linux-arm-cgo), const BPF_H ideal-int
+pkg syscall (linux-arm-cgo), const BPF_IMM ideal-int
+pkg syscall (linux-arm-cgo), const BPF_IND ideal-int
+pkg syscall (linux-arm-cgo), const BPF_JA ideal-int
+pkg syscall (linux-arm-cgo), const BPF_JEQ ideal-int
+pkg syscall (linux-arm-cgo), const BPF_JGE ideal-int
+pkg syscall (linux-arm-cgo), const BPF_JGT ideal-int
+pkg syscall (linux-arm-cgo), const BPF_JMP ideal-int
+pkg syscall (linux-arm-cgo), const BPF_JSET ideal-int
+pkg syscall (linux-arm-cgo), const BPF_K ideal-int
+pkg syscall (linux-arm-cgo), const BPF_LD ideal-int
+pkg syscall (linux-arm-cgo), const BPF_LDX ideal-int
+pkg syscall (linux-arm-cgo), const BPF_LEN ideal-int
+pkg syscall (linux-arm-cgo), const BPF_LSH ideal-int
+pkg syscall (linux-arm-cgo), const BPF_MAJOR_VERSION ideal-int
+pkg syscall (linux-arm-cgo), const BPF_MAXINSNS ideal-int
+pkg syscall (linux-arm-cgo), const BPF_MEM ideal-int
+pkg syscall (linux-arm-cgo), const BPF_MEMWORDS ideal-int
+pkg syscall (linux-arm-cgo), const BPF_MINOR_VERSION ideal-int
+pkg syscall (linux-arm-cgo), const BPF_MISC ideal-int
+pkg syscall (linux-arm-cgo), const BPF_MSH ideal-int
+pkg syscall (linux-arm-cgo), const BPF_MUL ideal-int
+pkg syscall (linux-arm-cgo), const BPF_NEG ideal-int
+pkg syscall (linux-arm-cgo), const BPF_OR ideal-int
+pkg syscall (linux-arm-cgo), const BPF_RET ideal-int
+pkg syscall (linux-arm-cgo), const BPF_RSH ideal-int
+pkg syscall (linux-arm-cgo), const BPF_ST ideal-int
+pkg syscall (linux-arm-cgo), const BPF_STX ideal-int
+pkg syscall (linux-arm-cgo), const BPF_SUB ideal-int
+pkg syscall (linux-arm-cgo), const BPF_TAX ideal-int
+pkg syscall (linux-arm-cgo), const BPF_TXA ideal-int
+pkg syscall (linux-arm-cgo), const BPF_W ideal-int
+pkg syscall (linux-arm-cgo), const BPF_X ideal-int
+pkg syscall (linux-arm-cgo), const BRKINT ideal-int
+pkg syscall (linux-arm-cgo), const CLOCAL ideal-int
+pkg syscall (linux-arm-cgo), const CLONE_CHILD_CLEARTID = 2097152
+pkg syscall (linux-arm-cgo), const CLONE_CHILD_CLEARTID ideal-int
+pkg syscall (linux-arm-cgo), const CLONE_CHILD_SETTID = 16777216
+pkg syscall (linux-arm-cgo), const CLONE_CHILD_SETTID ideal-int
+pkg syscall (linux-arm-cgo), const CLONE_DETACHED = 4194304
+pkg syscall (linux-arm-cgo), const CLONE_DETACHED ideal-int
+pkg syscall (linux-arm-cgo), const CLONE_FILES = 1024
+pkg syscall (linux-arm-cgo), const CLONE_FILES ideal-int
+pkg syscall (linux-arm-cgo), const CLONE_FS = 512
+pkg syscall (linux-arm-cgo), const CLONE_FS ideal-int
+pkg syscall (linux-arm-cgo), const CLONE_IO = 2147483648
+pkg syscall (linux-arm-cgo), const CLONE_IO ideal-int
+pkg syscall (linux-arm-cgo), const CLONE_NEWIPC = 134217728
+pkg syscall (linux-arm-cgo), const CLONE_NEWIPC ideal-int
+pkg syscall (linux-arm-cgo), const CLONE_NEWNET = 1073741824
+pkg syscall (linux-arm-cgo), const CLONE_NEWNET ideal-int
+pkg syscall (linux-arm-cgo), const CLONE_NEWNS = 131072
+pkg syscall (linux-arm-cgo), const CLONE_NEWNS ideal-int
+pkg syscall (linux-arm-cgo), const CLONE_NEWPID = 536870912
+pkg syscall (linux-arm-cgo), const CLONE_NEWPID ideal-int
+pkg syscall (linux-arm-cgo), const CLONE_NEWUSER = 268435456
+pkg syscall (linux-arm-cgo), const CLONE_NEWUSER ideal-int
+pkg syscall (linux-arm-cgo), const CLONE_NEWUTS = 67108864
+pkg syscall (linux-arm-cgo), const CLONE_NEWUTS ideal-int
+pkg syscall (linux-arm-cgo), const CLONE_PARENT = 32768
+pkg syscall (linux-arm-cgo), const CLONE_PARENT ideal-int
+pkg syscall (linux-arm-cgo), const CLONE_PARENT_SETTID = 1048576
+pkg syscall (linux-arm-cgo), const CLONE_PARENT_SETTID ideal-int
+pkg syscall (linux-arm-cgo), const CLONE_PTRACE = 8192
+pkg syscall (linux-arm-cgo), const CLONE_PTRACE ideal-int
+pkg syscall (linux-arm-cgo), const CLONE_SETTLS = 524288
+pkg syscall (linux-arm-cgo), const CLONE_SETTLS ideal-int
+pkg syscall (linux-arm-cgo), const CLONE_SIGHAND = 2048
+pkg syscall (linux-arm-cgo), const CLONE_SIGHAND ideal-int
+pkg syscall (linux-arm-cgo), const CLONE_SYSVSEM = 262144
+pkg syscall (linux-arm-cgo), const CLONE_SYSVSEM ideal-int
+pkg syscall (linux-arm-cgo), const CLONE_THREAD = 65536
+pkg syscall (linux-arm-cgo), const CLONE_THREAD ideal-int
+pkg syscall (linux-arm-cgo), const CLONE_UNTRACED = 8388608
+pkg syscall (linux-arm-cgo), const CLONE_UNTRACED ideal-int
+pkg syscall (linux-arm-cgo), const CLONE_VFORK = 16384
+pkg syscall (linux-arm-cgo), const CLONE_VFORK ideal-int
+pkg syscall (linux-arm-cgo), const CLONE_VM = 256
+pkg syscall (linux-arm-cgo), const CLONE_VM ideal-int
+pkg syscall (linux-arm-cgo), const CREAD ideal-int
+pkg syscall (linux-arm-cgo), const CS5 ideal-int
+pkg syscall (linux-arm-cgo), const CS6 ideal-int
+pkg syscall (linux-arm-cgo), const CS7 ideal-int
+pkg syscall (linux-arm-cgo), const CS8 ideal-int
+pkg syscall (linux-arm-cgo), const CSIZE ideal-int
+pkg syscall (linux-arm-cgo), const CSTOPB ideal-int
+pkg syscall (linux-arm-cgo), const DT_BLK ideal-int
+pkg syscall (linux-arm-cgo), const DT_CHR ideal-int
+pkg syscall (linux-arm-cgo), const DT_DIR ideal-int
+pkg syscall (linux-arm-cgo), const DT_FIFO ideal-int
+pkg syscall (linux-arm-cgo), const DT_LNK ideal-int
+pkg syscall (linux-arm-cgo), const DT_REG ideal-int
+pkg syscall (linux-arm-cgo), const DT_SOCK ideal-int
+pkg syscall (linux-arm-cgo), const DT_UNKNOWN ideal-int
+pkg syscall (linux-arm-cgo), const DT_WHT ideal-int
+pkg syscall (linux-arm-cgo), const EADV Errno
+pkg syscall (linux-arm-cgo), const EBADE Errno
+pkg syscall (linux-arm-cgo), const EBADFD Errno
+pkg syscall (linux-arm-cgo), const EBADMSG Errno
+pkg syscall (linux-arm-cgo), const EBADR Errno
+pkg syscall (linux-arm-cgo), const EBADRQC Errno
+pkg syscall (linux-arm-cgo), const EBADSLT Errno
+pkg syscall (linux-arm-cgo), const EBFONT Errno
+pkg syscall (linux-arm-cgo), const ECHO ideal-int
+pkg syscall (linux-arm-cgo), const ECHOCTL ideal-int
+pkg syscall (linux-arm-cgo), const ECHOE ideal-int
+pkg syscall (linux-arm-cgo), const ECHOK ideal-int
+pkg syscall (linux-arm-cgo), const ECHOKE ideal-int
+pkg syscall (linux-arm-cgo), const ECHONL ideal-int
+pkg syscall (linux-arm-cgo), const ECHOPRT ideal-int
+pkg syscall (linux-arm-cgo), const ECHRNG Errno
+pkg syscall (linux-arm-cgo), const ECOMM Errno
+pkg syscall (linux-arm-cgo), const EDEADLOCK Errno
+pkg syscall (linux-arm-cgo), const EDOTDOT Errno
+pkg syscall (linux-arm-cgo), const EHWPOISON Errno
+pkg syscall (linux-arm-cgo), const EISNAM Errno
+pkg syscall (linux-arm-cgo), const EKEYEXPIRED Errno
+pkg syscall (linux-arm-cgo), const EKEYREJECTED Errno
+pkg syscall (linux-arm-cgo), const EKEYREVOKED Errno
+pkg syscall (linux-arm-cgo), const EL2HLT Errno
+pkg syscall (linux-arm-cgo), const EL2NSYNC Errno
+pkg syscall (linux-arm-cgo), const EL3HLT Errno
+pkg syscall (linux-arm-cgo), const EL3RST Errno
+pkg syscall (linux-arm-cgo), const ELF_NGREG ideal-int
+pkg syscall (linux-arm-cgo), const ELF_PRARGSZ ideal-int
+pkg syscall (linux-arm-cgo), const ELIBACC Errno
+pkg syscall (linux-arm-cgo), const ELIBBAD Errno
+pkg syscall (linux-arm-cgo), const ELIBEXEC Errno
+pkg syscall (linux-arm-cgo), const ELIBMAX Errno
+pkg syscall (linux-arm-cgo), const ELIBSCN Errno
+pkg syscall (linux-arm-cgo), const ELNRNG Errno
+pkg syscall (linux-arm-cgo), const EMEDIUMTYPE Errno
+pkg syscall (linux-arm-cgo), const EMULTIHOP Errno
+pkg syscall (linux-arm-cgo), const ENAVAIL Errno
+pkg syscall (linux-arm-cgo), const ENOANO Errno
+pkg syscall (linux-arm-cgo), const ENOCSI Errno
+pkg syscall (linux-arm-cgo), const ENODATA Errno
+pkg syscall (linux-arm-cgo), const ENOKEY Errno
+pkg syscall (linux-arm-cgo), const ENOLINK Errno
+pkg syscall (linux-arm-cgo), const ENOMEDIUM Errno
+pkg syscall (linux-arm-cgo), const ENONET Errno
+pkg syscall (linux-arm-cgo), const ENOPKG Errno
+pkg syscall (linux-arm-cgo), const ENOSR Errno
+pkg syscall (linux-arm-cgo), const ENOSTR Errno
+pkg syscall (linux-arm-cgo), const ENOTNAM Errno
+pkg syscall (linux-arm-cgo), const ENOTRECOVERABLE Errno
+pkg syscall (linux-arm-cgo), const ENOTUNIQ Errno
+pkg syscall (linux-arm-cgo), const EOWNERDEAD Errno
+pkg syscall (linux-arm-cgo), const EPOLLERR ideal-int
+pkg syscall (linux-arm-cgo), const EPOLLET ideal-int
+pkg syscall (linux-arm-cgo), const EPOLLHUP ideal-int
+pkg syscall (linux-arm-cgo), const EPOLLIN ideal-int
+pkg syscall (linux-arm-cgo), const EPOLLMSG ideal-int
+pkg syscall (linux-arm-cgo), const EPOLLONESHOT ideal-int
+pkg syscall (linux-arm-cgo), const EPOLLOUT ideal-int
+pkg syscall (linux-arm-cgo), const EPOLLPRI ideal-int
+pkg syscall (linux-arm-cgo), const EPOLLRDBAND ideal-int
+pkg syscall (linux-arm-cgo), const EPOLLRDHUP ideal-int
+pkg syscall (linux-arm-cgo), const EPOLLRDNORM ideal-int
+pkg syscall (linux-arm-cgo), const EPOLLWRBAND ideal-int
+pkg syscall (linux-arm-cgo), const EPOLLWRNORM ideal-int
+pkg syscall (linux-arm-cgo), const EPOLL_CLOEXEC ideal-int
+pkg syscall (linux-arm-cgo), const EPOLL_CTL_ADD ideal-int
+pkg syscall (linux-arm-cgo), const EPOLL_CTL_DEL ideal-int
+pkg syscall (linux-arm-cgo), const EPOLL_CTL_MOD ideal-int
+pkg syscall (linux-arm-cgo), const EPOLL_NONBLOCK ideal-int
+pkg syscall (linux-arm-cgo), const EPROTO Errno
+pkg syscall (linux-arm-cgo), const EREMCHG Errno
+pkg syscall (linux-arm-cgo), const EREMOTEIO Errno
+pkg syscall (linux-arm-cgo), const ERESTART Errno
+pkg syscall (linux-arm-cgo), const ERFKILL Errno
+pkg syscall (linux-arm-cgo), const ESRMNT Errno
+pkg syscall (linux-arm-cgo), const ESTRPIPE Errno
+pkg syscall (linux-arm-cgo), const ETH_P_1588 ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_8021Q ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_802_2 ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_802_3 ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_AARP ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_ALL ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_AOE ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_ARCNET ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_ARP ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_ATALK ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_ATMFATE ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_ATMMPOA ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_AX25 ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_BPQ ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_CAIF ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_CAN ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_CONTROL ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_CUST ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_DDCMP ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_DEC ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_DIAG ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_DNA_DL ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_DNA_RC ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_DNA_RT ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_DSA ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_ECONET ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_EDSA ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_FCOE ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_FIP ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_HDLC ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_IEEE802154 ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_IEEEPUP ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_IEEEPUPAT ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_IP ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_IPV6 ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_IPX ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_IRDA ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_LAT ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_LINK_CTL ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_LOCALTALK ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_LOOP ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_MOBITEX ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_MPLS_MC ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_MPLS_UC ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_PAE ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_PAUSE ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_PHONET ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_PPPTALK ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_PPP_DISC ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_PPP_MP ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_PPP_SES ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_PUP ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_PUPAT ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_RARP ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_SCA ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_SLOW ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_SNAP ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_TEB ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_TIPC ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_TRAILER ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_TR_802_2 ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_WAN_PPP ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_WCCP ideal-int
+pkg syscall (linux-arm-cgo), const ETH_P_X25 ideal-int
+pkg syscall (linux-arm-cgo), const ETIME Errno
+pkg syscall (linux-arm-cgo), const EUCLEAN Errno
+pkg syscall (linux-arm-cgo), const EUNATCH Errno
+pkg syscall (linux-arm-cgo), const EXFULL Errno
+pkg syscall (linux-arm-cgo), const FD_CLOEXEC ideal-int
+pkg syscall (linux-arm-cgo), const FD_SETSIZE ideal-int
+pkg syscall (linux-arm-cgo), const FLUSHO ideal-int
+pkg syscall (linux-arm-cgo), const F_DUPFD ideal-int
+pkg syscall (linux-arm-cgo), const F_DUPFD_CLOEXEC ideal-int
+pkg syscall (linux-arm-cgo), const F_EXLCK ideal-int
+pkg syscall (linux-arm-cgo), const F_GETFD ideal-int
+pkg syscall (linux-arm-cgo), const F_GETFL ideal-int
+pkg syscall (linux-arm-cgo), const F_GETLEASE ideal-int
+pkg syscall (linux-arm-cgo), const F_GETLK ideal-int
+pkg syscall (linux-arm-cgo), const F_GETLK64 ideal-int
+pkg syscall (linux-arm-cgo), const F_GETOWN ideal-int
+pkg syscall (linux-arm-cgo), const F_GETOWN_EX ideal-int
+pkg syscall (linux-arm-cgo), const F_GETPIPE_SZ ideal-int
+pkg syscall (linux-arm-cgo), const F_GETSIG ideal-int
+pkg syscall (linux-arm-cgo), const F_LOCK ideal-int
+pkg syscall (linux-arm-cgo), const F_NOTIFY ideal-int
+pkg syscall (linux-arm-cgo), const F_OK ideal-int
+pkg syscall (linux-arm-cgo), const F_RDLCK ideal-int
+pkg syscall (linux-arm-cgo), const F_SETFD ideal-int
+pkg syscall (linux-arm-cgo), const F_SETFL ideal-int
+pkg syscall (linux-arm-cgo), const F_SETLEASE ideal-int
+pkg syscall (linux-arm-cgo), const F_SETLK ideal-int
+pkg syscall (linux-arm-cgo), const F_SETLK64 ideal-int
+pkg syscall (linux-arm-cgo), const F_SETLKW ideal-int
+pkg syscall (linux-arm-cgo), const F_SETLKW64 ideal-int
+pkg syscall (linux-arm-cgo), const F_SETOWN ideal-int
+pkg syscall (linux-arm-cgo), const F_SETOWN_EX ideal-int
+pkg syscall (linux-arm-cgo), const F_SETPIPE_SZ ideal-int
+pkg syscall (linux-arm-cgo), const F_SETSIG ideal-int
+pkg syscall (linux-arm-cgo), const F_SHLCK ideal-int
+pkg syscall (linux-arm-cgo), const F_TEST ideal-int
+pkg syscall (linux-arm-cgo), const F_TLOCK ideal-int
+pkg syscall (linux-arm-cgo), const F_ULOCK ideal-int
+pkg syscall (linux-arm-cgo), const F_UNLCK ideal-int
+pkg syscall (linux-arm-cgo), const F_WRLCK ideal-int
+pkg syscall (linux-arm-cgo), const HUPCL ideal-int
+pkg syscall (linux-arm-cgo), const ICANON ideal-int
+pkg syscall (linux-arm-cgo), const ICMPV6_FILTER = 1
+pkg syscall (linux-arm-cgo), const ICMPV6_FILTER ideal-int
+pkg syscall (linux-arm-cgo), const ICRNL ideal-int
+pkg syscall (linux-arm-cgo), const IEXTEN ideal-int
+pkg syscall (linux-arm-cgo), const IFA_ADDRESS ideal-int
+pkg syscall (linux-arm-cgo), const IFA_ANYCAST ideal-int
+pkg syscall (linux-arm-cgo), const IFA_BROADCAST ideal-int
+pkg syscall (linux-arm-cgo), const IFA_CACHEINFO ideal-int
+pkg syscall (linux-arm-cgo), const IFA_F_DADFAILED ideal-int
+pkg syscall (linux-arm-cgo), const IFA_F_DEPRECATED ideal-int
+pkg syscall (linux-arm-cgo), const IFA_F_HOMEADDRESS ideal-int
+pkg syscall (linux-arm-cgo), const IFA_F_NODAD ideal-int
+pkg syscall (linux-arm-cgo), const IFA_F_OPTIMISTIC ideal-int
+pkg syscall (linux-arm-cgo), const IFA_F_PERMANENT ideal-int
+pkg syscall (linux-arm-cgo), const IFA_F_SECONDARY ideal-int
+pkg syscall (linux-arm-cgo), const IFA_F_TEMPORARY ideal-int
+pkg syscall (linux-arm-cgo), const IFA_F_TENTATIVE ideal-int
+pkg syscall (linux-arm-cgo), const IFA_LABEL ideal-int
+pkg syscall (linux-arm-cgo), const IFA_LOCAL ideal-int
+pkg syscall (linux-arm-cgo), const IFA_MAX ideal-int
+pkg syscall (linux-arm-cgo), const IFA_MULTICAST ideal-int
+pkg syscall (linux-arm-cgo), const IFA_UNSPEC ideal-int
+pkg syscall (linux-arm-cgo), const IFF_ALLMULTI ideal-int
+pkg syscall (linux-arm-cgo), const IFF_AUTOMEDIA ideal-int
+pkg syscall (linux-arm-cgo), const IFF_DEBUG ideal-int
+pkg syscall (linux-arm-cgo), const IFF_DYNAMIC ideal-int
+pkg syscall (linux-arm-cgo), const IFF_MASTER ideal-int
+pkg syscall (linux-arm-cgo), const IFF_NOARP ideal-int
+pkg syscall (linux-arm-cgo), const IFF_NOTRAILERS ideal-int
+pkg syscall (linux-arm-cgo), const IFF_NO_PI ideal-int
+pkg syscall (linux-arm-cgo), const IFF_ONE_QUEUE ideal-int
+pkg syscall (linux-arm-cgo), const IFF_POINTOPOINT ideal-int
+pkg syscall (linux-arm-cgo), const IFF_PORTSEL ideal-int
+pkg syscall (linux-arm-cgo), const IFF_PROMISC ideal-int
+pkg syscall (linux-arm-cgo), const IFF_RUNNING ideal-int
+pkg syscall (linux-arm-cgo), const IFF_SLAVE ideal-int
+pkg syscall (linux-arm-cgo), const IFF_TAP ideal-int
+pkg syscall (linux-arm-cgo), const IFF_TUN ideal-int
+pkg syscall (linux-arm-cgo), const IFF_TUN_EXCL ideal-int
+pkg syscall (linux-arm-cgo), const IFF_VNET_HDR ideal-int
+pkg syscall (linux-arm-cgo), const IFLA_ADDRESS ideal-int
+pkg syscall (linux-arm-cgo), const IFLA_BROADCAST ideal-int
+pkg syscall (linux-arm-cgo), const IFLA_COST ideal-int
+pkg syscall (linux-arm-cgo), const IFLA_IFALIAS ideal-int
+pkg syscall (linux-arm-cgo), const IFLA_IFNAME ideal-int
+pkg syscall (linux-arm-cgo), const IFLA_LINK ideal-int
+pkg syscall (linux-arm-cgo), const IFLA_LINKINFO ideal-int
+pkg syscall (linux-arm-cgo), const IFLA_LINKMODE ideal-int
+pkg syscall (linux-arm-cgo), const IFLA_MAP ideal-int
+pkg syscall (linux-arm-cgo), const IFLA_MASTER ideal-int
+pkg syscall (linux-arm-cgo), const IFLA_MAX ideal-int
+pkg syscall (linux-arm-cgo), const IFLA_MTU ideal-int
+pkg syscall (linux-arm-cgo), const IFLA_NET_NS_PID ideal-int
+pkg syscall (linux-arm-cgo), const IFLA_OPERSTATE ideal-int
+pkg syscall (linux-arm-cgo), const IFLA_PRIORITY ideal-int
+pkg syscall (linux-arm-cgo), const IFLA_PROTINFO ideal-int
+pkg syscall (linux-arm-cgo), const IFLA_QDISC ideal-int
+pkg syscall (linux-arm-cgo), const IFLA_STATS ideal-int
+pkg syscall (linux-arm-cgo), const IFLA_TXQLEN ideal-int
+pkg syscall (linux-arm-cgo), const IFLA_UNSPEC ideal-int
+pkg syscall (linux-arm-cgo), const IFLA_WEIGHT ideal-int
+pkg syscall (linux-arm-cgo), const IFLA_WIRELESS ideal-int
+pkg syscall (linux-arm-cgo), const IFNAMSIZ ideal-int
+pkg syscall (linux-arm-cgo), const IGNBRK ideal-int
+pkg syscall (linux-arm-cgo), const IGNCR ideal-int
+pkg syscall (linux-arm-cgo), const IGNPAR ideal-int
+pkg syscall (linux-arm-cgo), const IMAXBEL ideal-int
+pkg syscall (linux-arm-cgo), const INLCR ideal-int
+pkg syscall (linux-arm-cgo), const INPCK ideal-int
+pkg syscall (linux-arm-cgo), const IN_ACCESS ideal-int
+pkg syscall (linux-arm-cgo), const IN_ALL_EVENTS ideal-int
+pkg syscall (linux-arm-cgo), const IN_ATTRIB ideal-int
+pkg syscall (linux-arm-cgo), const IN_CLASSA_HOST ideal-int
+pkg syscall (linux-arm-cgo), const IN_CLASSA_MAX ideal-int
+pkg syscall (linux-arm-cgo), const IN_CLASSA_NET ideal-int
+pkg syscall (linux-arm-cgo), const IN_CLASSA_NSHIFT ideal-int
+pkg syscall (linux-arm-cgo), const IN_CLASSB_HOST ideal-int
+pkg syscall (linux-arm-cgo), const IN_CLASSB_MAX ideal-int
+pkg syscall (linux-arm-cgo), const IN_CLASSB_NET ideal-int
+pkg syscall (linux-arm-cgo), const IN_CLASSB_NSHIFT ideal-int
+pkg syscall (linux-arm-cgo), const IN_CLASSC_HOST ideal-int
+pkg syscall (linux-arm-cgo), const IN_CLASSC_NET ideal-int
+pkg syscall (linux-arm-cgo), const IN_CLASSC_NSHIFT ideal-int
+pkg syscall (linux-arm-cgo), const IN_CLOEXEC ideal-int
+pkg syscall (linux-arm-cgo), const IN_CLOSE ideal-int
+pkg syscall (linux-arm-cgo), const IN_CLOSE_NOWRITE ideal-int
+pkg syscall (linux-arm-cgo), const IN_CLOSE_WRITE ideal-int
+pkg syscall (linux-arm-cgo), const IN_CREATE ideal-int
+pkg syscall (linux-arm-cgo), const IN_DELETE ideal-int
+pkg syscall (linux-arm-cgo), const IN_DELETE_SELF ideal-int
+pkg syscall (linux-arm-cgo), const IN_DONT_FOLLOW ideal-int
+pkg syscall (linux-arm-cgo), const IN_EXCL_UNLINK ideal-int
+pkg syscall (linux-arm-cgo), const IN_IGNORED ideal-int
+pkg syscall (linux-arm-cgo), const IN_ISDIR ideal-int
+pkg syscall (linux-arm-cgo), const IN_LOOPBACKNET ideal-int
+pkg syscall (linux-arm-cgo), const IN_MASK_ADD ideal-int
+pkg syscall (linux-arm-cgo), const IN_MODIFY ideal-int
+pkg syscall (linux-arm-cgo), const IN_MOVE ideal-int
+pkg syscall (linux-arm-cgo), const IN_MOVED_FROM ideal-int
+pkg syscall (linux-arm-cgo), const IN_MOVED_TO ideal-int
+pkg syscall (linux-arm-cgo), const IN_MOVE_SELF ideal-int
+pkg syscall (linux-arm-cgo), const IN_NONBLOCK ideal-int
+pkg syscall (linux-arm-cgo), const IN_ONESHOT ideal-int
+pkg syscall (linux-arm-cgo), const IN_ONLYDIR ideal-int
+pkg syscall (linux-arm-cgo), const IN_OPEN ideal-int
+pkg syscall (linux-arm-cgo), const IN_Q_OVERFLOW ideal-int
+pkg syscall (linux-arm-cgo), const IN_UNMOUNT ideal-int
+pkg syscall (linux-arm-cgo), const IPPROTO_AH ideal-int
+pkg syscall (linux-arm-cgo), const IPPROTO_COMP ideal-int
+pkg syscall (linux-arm-cgo), const IPPROTO_DCCP ideal-int
+pkg syscall (linux-arm-cgo), const IPPROTO_DSTOPTS ideal-int
+pkg syscall (linux-arm-cgo), const IPPROTO_EGP ideal-int
+pkg syscall (linux-arm-cgo), const IPPROTO_ENCAP ideal-int
+pkg syscall (linux-arm-cgo), const IPPROTO_ESP ideal-int
+pkg syscall (linux-arm-cgo), const IPPROTO_FRAGMENT ideal-int
+pkg syscall (linux-arm-cgo), const IPPROTO_GRE ideal-int
+pkg syscall (linux-arm-cgo), const IPPROTO_HOPOPTS ideal-int
+pkg syscall (linux-arm-cgo), const IPPROTO_ICMP ideal-int
+pkg syscall (linux-arm-cgo), const IPPROTO_ICMPV6 ideal-int
+pkg syscall (linux-arm-cgo), const IPPROTO_IDP ideal-int
+pkg syscall (linux-arm-cgo), const IPPROTO_IGMP ideal-int
+pkg syscall (linux-arm-cgo), const IPPROTO_IPIP ideal-int
+pkg syscall (linux-arm-cgo), const IPPROTO_MTP ideal-int
+pkg syscall (linux-arm-cgo), const IPPROTO_NONE ideal-int
+pkg syscall (linux-arm-cgo), const IPPROTO_PIM ideal-int
+pkg syscall (linux-arm-cgo), const IPPROTO_PUP ideal-int
+pkg syscall (linux-arm-cgo), const IPPROTO_RAW ideal-int
+pkg syscall (linux-arm-cgo), const IPPROTO_ROUTING ideal-int
+pkg syscall (linux-arm-cgo), const IPPROTO_RSVP ideal-int
+pkg syscall (linux-arm-cgo), const IPPROTO_SCTP ideal-int
+pkg syscall (linux-arm-cgo), const IPPROTO_TP ideal-int
+pkg syscall (linux-arm-cgo), const IPPROTO_UDPLITE ideal-int
+pkg syscall (linux-arm-cgo), const IPV6_2292DSTOPTS ideal-int
+pkg syscall (linux-arm-cgo), const IPV6_2292HOPLIMIT ideal-int
+pkg syscall (linux-arm-cgo), const IPV6_2292HOPOPTS ideal-int
+pkg syscall (linux-arm-cgo), const IPV6_2292PKTINFO ideal-int
+pkg syscall (linux-arm-cgo), const IPV6_2292PKTOPTIONS ideal-int
+pkg syscall (linux-arm-cgo), const IPV6_2292RTHDR ideal-int
+pkg syscall (linux-arm-cgo), const IPV6_ADDRFORM ideal-int
+pkg syscall (linux-arm-cgo), const IPV6_ADD_MEMBERSHIP ideal-int
+pkg syscall (linux-arm-cgo), const IPV6_AUTHHDR ideal-int
+pkg syscall (linux-arm-cgo), const IPV6_CHECKSUM ideal-int
+pkg syscall (linux-arm-cgo), const IPV6_DROP_MEMBERSHIP ideal-int
+pkg syscall (linux-arm-cgo), const IPV6_DSTOPTS ideal-int
+pkg syscall (linux-arm-cgo), const IPV6_HOPLIMIT ideal-int
+pkg syscall (linux-arm-cgo), const IPV6_HOPOPTS ideal-int
+pkg syscall (linux-arm-cgo), const IPV6_IPSEC_POLICY ideal-int
+pkg syscall (linux-arm-cgo), const IPV6_JOIN_ANYCAST ideal-int
+pkg syscall (linux-arm-cgo), const IPV6_LEAVE_ANYCAST ideal-int
+pkg syscall (linux-arm-cgo), const IPV6_MTU ideal-int
+pkg syscall (linux-arm-cgo), const IPV6_MTU_DISCOVER ideal-int
+pkg syscall (linux-arm-cgo), const IPV6_NEXTHOP ideal-int
+pkg syscall (linux-arm-cgo), const IPV6_PKTINFO ideal-int
+pkg syscall (linux-arm-cgo), const IPV6_PMTUDISC_DO ideal-int
+pkg syscall (linux-arm-cgo), const IPV6_PMTUDISC_DONT ideal-int
+pkg syscall (linux-arm-cgo), const IPV6_PMTUDISC_PROBE ideal-int
+pkg syscall (linux-arm-cgo), const IPV6_PMTUDISC_WANT ideal-int
+pkg syscall (linux-arm-cgo), const IPV6_RECVDSTOPTS ideal-int
+pkg syscall (linux-arm-cgo), const IPV6_RECVERR ideal-int
+pkg syscall (linux-arm-cgo), const IPV6_RECVHOPLIMIT ideal-int
+pkg syscall (linux-arm-cgo), const IPV6_RECVHOPOPTS ideal-int
+pkg syscall (linux-arm-cgo), const IPV6_RECVPKTINFO ideal-int
+pkg syscall (linux-arm-cgo), const IPV6_RECVRTHDR ideal-int
+pkg syscall (linux-arm-cgo), const IPV6_RECVTCLASS ideal-int
+pkg syscall (linux-arm-cgo), const IPV6_ROUTER_ALERT ideal-int
+pkg syscall (linux-arm-cgo), const IPV6_RTHDR ideal-int
+pkg syscall (linux-arm-cgo), const IPV6_RTHDRDSTOPTS ideal-int
+pkg syscall (linux-arm-cgo), const IPV6_RTHDR_LOOSE ideal-int
+pkg syscall (linux-arm-cgo), const IPV6_RTHDR_STRICT ideal-int
+pkg syscall (linux-arm-cgo), const IPV6_RTHDR_TYPE_0 ideal-int
+pkg syscall (linux-arm-cgo), const IPV6_RXDSTOPTS ideal-int
+pkg syscall (linux-arm-cgo), const IPV6_RXHOPOPTS ideal-int
+pkg syscall (linux-arm-cgo), const IPV6_TCLASS ideal-int
+pkg syscall (linux-arm-cgo), const IPV6_XFRM_POLICY ideal-int
+pkg syscall (linux-arm-cgo), const IP_ADD_SOURCE_MEMBERSHIP ideal-int
+pkg syscall (linux-arm-cgo), const IP_BLOCK_SOURCE ideal-int
+pkg syscall (linux-arm-cgo), const IP_DEFAULT_MULTICAST_LOOP ideal-int
+pkg syscall (linux-arm-cgo), const IP_DEFAULT_MULTICAST_TTL ideal-int
+pkg syscall (linux-arm-cgo), const IP_DF ideal-int
+pkg syscall (linux-arm-cgo), const IP_DROP_SOURCE_MEMBERSHIP ideal-int
+pkg syscall (linux-arm-cgo), const IP_FREEBIND ideal-int
+pkg syscall (linux-arm-cgo), const IP_HDRINCL ideal-int
+pkg syscall (linux-arm-cgo), const IP_IPSEC_POLICY ideal-int
+pkg syscall (linux-arm-cgo), const IP_MAXPACKET ideal-int
+pkg syscall (linux-arm-cgo), const IP_MAX_MEMBERSHIPS ideal-int
+pkg syscall (linux-arm-cgo), const IP_MF ideal-int
+pkg syscall (linux-arm-cgo), const IP_MINTTL ideal-int
+pkg syscall (linux-arm-cgo), const IP_MSFILTER ideal-int
+pkg syscall (linux-arm-cgo), const IP_MSS ideal-int
+pkg syscall (linux-arm-cgo), const IP_MTU ideal-int
+pkg syscall (linux-arm-cgo), const IP_MTU_DISCOVER ideal-int
+pkg syscall (linux-arm-cgo), const IP_OFFMASK ideal-int
+pkg syscall (linux-arm-cgo), const IP_OPTIONS ideal-int
+pkg syscall (linux-arm-cgo), const IP_ORIGDSTADDR ideal-int
+pkg syscall (linux-arm-cgo), const IP_PASSSEC ideal-int
+pkg syscall (linux-arm-cgo), const IP_PKTINFO ideal-int
+pkg syscall (linux-arm-cgo), const IP_PKTOPTIONS ideal-int
+pkg syscall (linux-arm-cgo), const IP_PMTUDISC ideal-int
+pkg syscall (linux-arm-cgo), const IP_PMTUDISC_DO ideal-int
+pkg syscall (linux-arm-cgo), const IP_PMTUDISC_DONT ideal-int
+pkg syscall (linux-arm-cgo), const IP_PMTUDISC_PROBE ideal-int
+pkg syscall (linux-arm-cgo), const IP_PMTUDISC_WANT ideal-int
+pkg syscall (linux-arm-cgo), const IP_RECVERR ideal-int
+pkg syscall (linux-arm-cgo), const IP_RECVOPTS ideal-int
+pkg syscall (linux-arm-cgo), const IP_RECVORIGDSTADDR ideal-int
+pkg syscall (linux-arm-cgo), const IP_RECVRETOPTS ideal-int
+pkg syscall (linux-arm-cgo), const IP_RECVTOS ideal-int
+pkg syscall (linux-arm-cgo), const IP_RECVTTL ideal-int
+pkg syscall (linux-arm-cgo), const IP_RETOPTS ideal-int
+pkg syscall (linux-arm-cgo), const IP_RF ideal-int
+pkg syscall (linux-arm-cgo), const IP_ROUTER_ALERT ideal-int
+pkg syscall (linux-arm-cgo), const IP_TRANSPARENT ideal-int
+pkg syscall (linux-arm-cgo), const IP_UNBLOCK_SOURCE ideal-int
+pkg syscall (linux-arm-cgo), const IP_XFRM_POLICY ideal-int
+pkg syscall (linux-arm-cgo), const ISIG ideal-int
+pkg syscall (linux-arm-cgo), const ISTRIP ideal-int
+pkg syscall (linux-arm-cgo), const IUCLC ideal-int
+pkg syscall (linux-arm-cgo), const IUTF8 ideal-int
+pkg syscall (linux-arm-cgo), const IXANY ideal-int
+pkg syscall (linux-arm-cgo), const IXOFF ideal-int
+pkg syscall (linux-arm-cgo), const IXON ideal-int
+pkg syscall (linux-arm-cgo), const LINUX_REBOOT_CMD_CAD_OFF ideal-int
+pkg syscall (linux-arm-cgo), const LINUX_REBOOT_CMD_CAD_ON ideal-int
+pkg syscall (linux-arm-cgo), const LINUX_REBOOT_CMD_HALT ideal-int
+pkg syscall (linux-arm-cgo), const LINUX_REBOOT_CMD_KEXEC ideal-int
+pkg syscall (linux-arm-cgo), const LINUX_REBOOT_CMD_POWER_OFF ideal-int
+pkg syscall (linux-arm-cgo), const LINUX_REBOOT_CMD_RESTART ideal-int
+pkg syscall (linux-arm-cgo), const LINUX_REBOOT_CMD_RESTART2 ideal-int
+pkg syscall (linux-arm-cgo), const LINUX_REBOOT_CMD_SW_SUSPEND ideal-int
+pkg syscall (linux-arm-cgo), const LINUX_REBOOT_MAGIC1 ideal-int
+pkg syscall (linux-arm-cgo), const LINUX_REBOOT_MAGIC2 ideal-int
+pkg syscall (linux-arm-cgo), const LOCK_EX ideal-int
+pkg syscall (linux-arm-cgo), const LOCK_NB ideal-int
+pkg syscall (linux-arm-cgo), const LOCK_SH ideal-int
+pkg syscall (linux-arm-cgo), const LOCK_UN ideal-int
+pkg syscall (linux-arm-cgo), const MADV_DOFORK ideal-int
+pkg syscall (linux-arm-cgo), const MADV_DONTFORK ideal-int
+pkg syscall (linux-arm-cgo), const MADV_DONTNEED ideal-int
+pkg syscall (linux-arm-cgo), const MADV_HUGEPAGE ideal-int
+pkg syscall (linux-arm-cgo), const MADV_HWPOISON ideal-int
+pkg syscall (linux-arm-cgo), const MADV_MERGEABLE ideal-int
+pkg syscall (linux-arm-cgo), const MADV_NOHUGEPAGE ideal-int
+pkg syscall (linux-arm-cgo), const MADV_NORMAL ideal-int
+pkg syscall (linux-arm-cgo), const MADV_RANDOM ideal-int
+pkg syscall (linux-arm-cgo), const MADV_REMOVE ideal-int
+pkg syscall (linux-arm-cgo), const MADV_SEQUENTIAL ideal-int
+pkg syscall (linux-arm-cgo), const MADV_UNMERGEABLE ideal-int
+pkg syscall (linux-arm-cgo), const MADV_WILLNEED ideal-int
+pkg syscall (linux-arm-cgo), const MAP_ANON ideal-int
+pkg syscall (linux-arm-cgo), const MAP_ANONYMOUS ideal-int
+pkg syscall (linux-arm-cgo), const MAP_DENYWRITE ideal-int
+pkg syscall (linux-arm-cgo), const MAP_EXECUTABLE ideal-int
+pkg syscall (linux-arm-cgo), const MAP_FILE ideal-int
+pkg syscall (linux-arm-cgo), const MAP_FIXED ideal-int
+pkg syscall (linux-arm-cgo), const MAP_GROWSDOWN ideal-int
+pkg syscall (linux-arm-cgo), const MAP_LOCKED ideal-int
+pkg syscall (linux-arm-cgo), const MAP_NONBLOCK ideal-int
+pkg syscall (linux-arm-cgo), const MAP_NORESERVE ideal-int
+pkg syscall (linux-arm-cgo), const MAP_POPULATE ideal-int
+pkg syscall (linux-arm-cgo), const MAP_PRIVATE ideal-int
+pkg syscall (linux-arm-cgo), const MAP_SHARED ideal-int
+pkg syscall (linux-arm-cgo), const MAP_TYPE ideal-int
+pkg syscall (linux-arm-cgo), const MCL_CURRENT ideal-int
+pkg syscall (linux-arm-cgo), const MCL_FUTURE ideal-int
+pkg syscall (linux-arm-cgo), const MNT_DETACH ideal-int
+pkg syscall (linux-arm-cgo), const MNT_EXPIRE ideal-int
+pkg syscall (linux-arm-cgo), const MNT_FORCE ideal-int
+pkg syscall (linux-arm-cgo), const MSG_CMSG_CLOEXEC ideal-int
+pkg syscall (linux-arm-cgo), const MSG_CONFIRM ideal-int
+pkg syscall (linux-arm-cgo), const MSG_CTRUNC ideal-int
+pkg syscall (linux-arm-cgo), const MSG_DONTROUTE ideal-int
+pkg syscall (linux-arm-cgo), const MSG_DONTWAIT ideal-int
+pkg syscall (linux-arm-cgo), const MSG_EOR ideal-int
+pkg syscall (linux-arm-cgo), const MSG_ERRQUEUE ideal-int
+pkg syscall (linux-arm-cgo), const MSG_FASTOPEN ideal-int
+pkg syscall (linux-arm-cgo), const MSG_FIN ideal-int
+pkg syscall (linux-arm-cgo), const MSG_MORE ideal-int
+pkg syscall (linux-arm-cgo), const MSG_NOSIGNAL ideal-int
+pkg syscall (linux-arm-cgo), const MSG_OOB ideal-int
+pkg syscall (linux-arm-cgo), const MSG_PEEK ideal-int
+pkg syscall (linux-arm-cgo), const MSG_PROXY ideal-int
+pkg syscall (linux-arm-cgo), const MSG_RST ideal-int
+pkg syscall (linux-arm-cgo), const MSG_SYN ideal-int
+pkg syscall (linux-arm-cgo), const MSG_TRUNC ideal-int
+pkg syscall (linux-arm-cgo), const MSG_TRYHARD ideal-int
+pkg syscall (linux-arm-cgo), const MSG_WAITALL ideal-int
+pkg syscall (linux-arm-cgo), const MSG_WAITFORONE ideal-int
+pkg syscall (linux-arm-cgo), const MS_ACTIVE ideal-int
+pkg syscall (linux-arm-cgo), const MS_ASYNC ideal-int
+pkg syscall (linux-arm-cgo), const MS_BIND ideal-int
+pkg syscall (linux-arm-cgo), const MS_DIRSYNC ideal-int
+pkg syscall (linux-arm-cgo), const MS_INVALIDATE ideal-int
+pkg syscall (linux-arm-cgo), const MS_I_VERSION ideal-int
+pkg syscall (linux-arm-cgo), const MS_KERNMOUNT ideal-int
+pkg syscall (linux-arm-cgo), const MS_MANDLOCK ideal-int
+pkg syscall (linux-arm-cgo), const MS_MGC_MSK ideal-int
+pkg syscall (linux-arm-cgo), const MS_MGC_VAL ideal-int
+pkg syscall (linux-arm-cgo), const MS_MOVE ideal-int
+pkg syscall (linux-arm-cgo), const MS_NOATIME ideal-int
+pkg syscall (linux-arm-cgo), const MS_NODEV ideal-int
+pkg syscall (linux-arm-cgo), const MS_NODIRATIME ideal-int
+pkg syscall (linux-arm-cgo), const MS_NOEXEC ideal-int
+pkg syscall (linux-arm-cgo), const MS_NOSUID ideal-int
+pkg syscall (linux-arm-cgo), const MS_NOUSER ideal-int
+pkg syscall (linux-arm-cgo), const MS_POSIXACL ideal-int
+pkg syscall (linux-arm-cgo), const MS_PRIVATE ideal-int
+pkg syscall (linux-arm-cgo), const MS_RDONLY ideal-int
+pkg syscall (linux-arm-cgo), const MS_REC ideal-int
+pkg syscall (linux-arm-cgo), const MS_RELATIME ideal-int
+pkg syscall (linux-arm-cgo), const MS_REMOUNT ideal-int
+pkg syscall (linux-arm-cgo), const MS_RMT_MASK ideal-int
+pkg syscall (linux-arm-cgo), const MS_SHARED ideal-int
+pkg syscall (linux-arm-cgo), const MS_SILENT ideal-int
+pkg syscall (linux-arm-cgo), const MS_SLAVE ideal-int
+pkg syscall (linux-arm-cgo), const MS_STRICTATIME ideal-int
+pkg syscall (linux-arm-cgo), const MS_SYNC ideal-int
+pkg syscall (linux-arm-cgo), const MS_SYNCHRONOUS ideal-int
+pkg syscall (linux-arm-cgo), const MS_UNBINDABLE ideal-int
+pkg syscall (linux-arm-cgo), const NAME_MAX ideal-int
+pkg syscall (linux-arm-cgo), const NETLINK_ADD_MEMBERSHIP ideal-int
+pkg syscall (linux-arm-cgo), const NETLINK_AUDIT ideal-int
+pkg syscall (linux-arm-cgo), const NETLINK_BROADCAST_ERROR ideal-int
+pkg syscall (linux-arm-cgo), const NETLINK_CONNECTOR ideal-int
+pkg syscall (linux-arm-cgo), const NETLINK_DNRTMSG ideal-int
+pkg syscall (linux-arm-cgo), const NETLINK_DROP_MEMBERSHIP ideal-int
+pkg syscall (linux-arm-cgo), const NETLINK_ECRYPTFS ideal-int
+pkg syscall (linux-arm-cgo), const NETLINK_FIB_LOOKUP ideal-int
+pkg syscall (linux-arm-cgo), const NETLINK_FIREWALL ideal-int
+pkg syscall (linux-arm-cgo), const NETLINK_GENERIC ideal-int
+pkg syscall (linux-arm-cgo), const NETLINK_INET_DIAG ideal-int
+pkg syscall (linux-arm-cgo), const NETLINK_IP6_FW ideal-int
+pkg syscall (linux-arm-cgo), const NETLINK_ISCSI ideal-int
+pkg syscall (linux-arm-cgo), const NETLINK_KOBJECT_UEVENT ideal-int
+pkg syscall (linux-arm-cgo), const NETLINK_NETFILTER ideal-int
+pkg syscall (linux-arm-cgo), const NETLINK_NFLOG ideal-int
+pkg syscall (linux-arm-cgo), const NETLINK_NO_ENOBUFS ideal-int
+pkg syscall (linux-arm-cgo), const NETLINK_PKTINFO ideal-int
+pkg syscall (linux-arm-cgo), const NETLINK_RDMA ideal-int
+pkg syscall (linux-arm-cgo), const NETLINK_ROUTE ideal-int
+pkg syscall (linux-arm-cgo), const NETLINK_SCSITRANSPORT ideal-int
+pkg syscall (linux-arm-cgo), const NETLINK_SELINUX ideal-int
+pkg syscall (linux-arm-cgo), const NETLINK_UNUSED ideal-int
+pkg syscall (linux-arm-cgo), const NETLINK_USERSOCK ideal-int
+pkg syscall (linux-arm-cgo), const NETLINK_XFRM ideal-int
+pkg syscall (linux-arm-cgo), const NLA_ALIGNTO ideal-int
+pkg syscall (linux-arm-cgo), const NLA_F_NESTED ideal-int
+pkg syscall (linux-arm-cgo), const NLA_F_NET_BYTEORDER ideal-int
+pkg syscall (linux-arm-cgo), const NLA_HDRLEN ideal-int
+pkg syscall (linux-arm-cgo), const NLMSG_ALIGNTO ideal-int
+pkg syscall (linux-arm-cgo), const NLMSG_DONE ideal-int
+pkg syscall (linux-arm-cgo), const NLMSG_ERROR ideal-int
+pkg syscall (linux-arm-cgo), const NLMSG_HDRLEN ideal-int
+pkg syscall (linux-arm-cgo), const NLMSG_MIN_TYPE ideal-int
+pkg syscall (linux-arm-cgo), const NLMSG_NOOP ideal-int
+pkg syscall (linux-arm-cgo), const NLMSG_OVERRUN ideal-int
+pkg syscall (linux-arm-cgo), const NLM_F_ACK ideal-int
+pkg syscall (linux-arm-cgo), const NLM_F_APPEND ideal-int
+pkg syscall (linux-arm-cgo), const NLM_F_ATOMIC ideal-int
+pkg syscall (linux-arm-cgo), const NLM_F_CREATE ideal-int
+pkg syscall (linux-arm-cgo), const NLM_F_DUMP ideal-int
+pkg syscall (linux-arm-cgo), const NLM_F_ECHO ideal-int
+pkg syscall (linux-arm-cgo), const NLM_F_EXCL ideal-int
+pkg syscall (linux-arm-cgo), const NLM_F_MATCH ideal-int
+pkg syscall (linux-arm-cgo), const NLM_F_MULTI ideal-int
+pkg syscall (linux-arm-cgo), const NLM_F_REPLACE ideal-int
+pkg syscall (linux-arm-cgo), const NLM_F_REQUEST ideal-int
+pkg syscall (linux-arm-cgo), const NLM_F_ROOT ideal-int
+pkg syscall (linux-arm-cgo), const NOFLSH ideal-int
+pkg syscall (linux-arm-cgo), const OCRNL ideal-int
+pkg syscall (linux-arm-cgo), const OFDEL ideal-int
+pkg syscall (linux-arm-cgo), const OFILL ideal-int
+pkg syscall (linux-arm-cgo), const OLCUC ideal-int
+pkg syscall (linux-arm-cgo), const ONLCR ideal-int
+pkg syscall (linux-arm-cgo), const ONLRET ideal-int
+pkg syscall (linux-arm-cgo), const ONOCR ideal-int
+pkg syscall (linux-arm-cgo), const OPOST ideal-int
+pkg syscall (linux-arm-cgo), const O_ACCMODE ideal-int
+pkg syscall (linux-arm-cgo), const O_DIRECT ideal-int
+pkg syscall (linux-arm-cgo), const O_DIRECTORY ideal-int
+pkg syscall (linux-arm-cgo), const O_DSYNC ideal-int
+pkg syscall (linux-arm-cgo), const O_FSYNC ideal-int
+pkg syscall (linux-arm-cgo), const O_LARGEFILE ideal-int
+pkg syscall (linux-arm-cgo), const O_NDELAY ideal-int
+pkg syscall (linux-arm-cgo), const O_NOATIME ideal-int
+pkg syscall (linux-arm-cgo), const O_NOFOLLOW ideal-int
+pkg syscall (linux-arm-cgo), const O_RSYNC ideal-int
+pkg syscall (linux-arm-cgo), const PACKET_ADD_MEMBERSHIP ideal-int
+pkg syscall (linux-arm-cgo), const PACKET_BROADCAST ideal-int
+pkg syscall (linux-arm-cgo), const PACKET_DROP_MEMBERSHIP ideal-int
+pkg syscall (linux-arm-cgo), const PACKET_FASTROUTE ideal-int
+pkg syscall (linux-arm-cgo), const PACKET_HOST ideal-int
+pkg syscall (linux-arm-cgo), const PACKET_LOOPBACK ideal-int
+pkg syscall (linux-arm-cgo), const PACKET_MR_ALLMULTI ideal-int
+pkg syscall (linux-arm-cgo), const PACKET_MR_MULTICAST ideal-int
+pkg syscall (linux-arm-cgo), const PACKET_MR_PROMISC ideal-int
+pkg syscall (linux-arm-cgo), const PACKET_MULTICAST ideal-int
+pkg syscall (linux-arm-cgo), const PACKET_OTHERHOST ideal-int
+pkg syscall (linux-arm-cgo), const PACKET_OUTGOING ideal-int
+pkg syscall (linux-arm-cgo), const PACKET_RECV_OUTPUT ideal-int
+pkg syscall (linux-arm-cgo), const PACKET_RX_RING ideal-int
+pkg syscall (linux-arm-cgo), const PACKET_STATISTICS ideal-int
+pkg syscall (linux-arm-cgo), const PARENB ideal-int
+pkg syscall (linux-arm-cgo), const PARMRK ideal-int
+pkg syscall (linux-arm-cgo), const PARODD ideal-int
+pkg syscall (linux-arm-cgo), const PENDIN ideal-int
+pkg syscall (linux-arm-cgo), const PRIO_PGRP = 1
+pkg syscall (linux-arm-cgo), const PRIO_PGRP ideal-int
+pkg syscall (linux-arm-cgo), const PRIO_PROCESS = 0
+pkg syscall (linux-arm-cgo), const PRIO_PROCESS ideal-int
+pkg syscall (linux-arm-cgo), const PRIO_USER = 2
+pkg syscall (linux-arm-cgo), const PRIO_USER ideal-int
+pkg syscall (linux-arm-cgo), const PROT_EXEC ideal-int
+pkg syscall (linux-arm-cgo), const PROT_GROWSDOWN ideal-int
+pkg syscall (linux-arm-cgo), const PROT_GROWSUP ideal-int
+pkg syscall (linux-arm-cgo), const PROT_NONE ideal-int
+pkg syscall (linux-arm-cgo), const PROT_READ ideal-int
+pkg syscall (linux-arm-cgo), const PROT_WRITE ideal-int
+pkg syscall (linux-arm-cgo), const PR_CAPBSET_DROP ideal-int
+pkg syscall (linux-arm-cgo), const PR_CAPBSET_READ ideal-int
+pkg syscall (linux-arm-cgo), const PR_CLEAR_SECCOMP_FILTER ideal-int
+pkg syscall (linux-arm-cgo), const PR_ENDIAN_BIG ideal-int
+pkg syscall (linux-arm-cgo), const PR_ENDIAN_LITTLE ideal-int
+pkg syscall (linux-arm-cgo), const PR_ENDIAN_PPC_LITTLE ideal-int
+pkg syscall (linux-arm-cgo), const PR_FPEMU_NOPRINT ideal-int
+pkg syscall (linux-arm-cgo), const PR_FPEMU_SIGFPE ideal-int
+pkg syscall (linux-arm-cgo), const PR_FP_EXC_ASYNC ideal-int
+pkg syscall (linux-arm-cgo), const PR_FP_EXC_DISABLED ideal-int
+pkg syscall (linux-arm-cgo), const PR_FP_EXC_DIV ideal-int
+pkg syscall (linux-arm-cgo), const PR_FP_EXC_INV ideal-int
+pkg syscall (linux-arm-cgo), const PR_FP_EXC_NONRECOV ideal-int
+pkg syscall (linux-arm-cgo), const PR_FP_EXC_OVF ideal-int
+pkg syscall (linux-arm-cgo), const PR_FP_EXC_PRECISE ideal-int
+pkg syscall (linux-arm-cgo), const PR_FP_EXC_RES ideal-int
+pkg syscall (linux-arm-cgo), const PR_FP_EXC_SW_ENABLE ideal-int
+pkg syscall (linux-arm-cgo), const PR_FP_EXC_UND ideal-int
+pkg syscall (linux-arm-cgo), const PR_GET_DUMPABLE ideal-int
+pkg syscall (linux-arm-cgo), const PR_GET_ENDIAN ideal-int
+pkg syscall (linux-arm-cgo), const PR_GET_FPEMU ideal-int
+pkg syscall (linux-arm-cgo), const PR_GET_FPEXC ideal-int
+pkg syscall (linux-arm-cgo), const PR_GET_KEEPCAPS ideal-int
+pkg syscall (linux-arm-cgo), const PR_GET_NAME ideal-int
+pkg syscall (linux-arm-cgo), const PR_GET_PDEATHSIG ideal-int
+pkg syscall (linux-arm-cgo), const PR_GET_SECCOMP ideal-int
+pkg syscall (linux-arm-cgo), const PR_GET_SECCOMP_FILTER ideal-int
+pkg syscall (linux-arm-cgo), const PR_GET_SECUREBITS ideal-int
+pkg syscall (linux-arm-cgo), const PR_GET_TIMERSLACK ideal-int
+pkg syscall (linux-arm-cgo), const PR_GET_TIMING ideal-int
+pkg syscall (linux-arm-cgo), const PR_GET_TSC ideal-int
+pkg syscall (linux-arm-cgo), const PR_GET_UNALIGN ideal-int
+pkg syscall (linux-arm-cgo), const PR_MCE_KILL ideal-int
+pkg syscall (linux-arm-cgo), const PR_MCE_KILL_CLEAR ideal-int
+pkg syscall (linux-arm-cgo), const PR_MCE_KILL_DEFAULT ideal-int
+pkg syscall (linux-arm-cgo), const PR_MCE_KILL_EARLY ideal-int
+pkg syscall (linux-arm-cgo), const PR_MCE_KILL_GET ideal-int
+pkg syscall (linux-arm-cgo), const PR_MCE_KILL_LATE ideal-int
+pkg syscall (linux-arm-cgo), const PR_MCE_KILL_SET ideal-int
+pkg syscall (linux-arm-cgo), const PR_SECCOMP_FILTER_EVENT ideal-int
+pkg syscall (linux-arm-cgo), const PR_SECCOMP_FILTER_SYSCALL ideal-int
+pkg syscall (linux-arm-cgo), const PR_SET_DUMPABLE ideal-int
+pkg syscall (linux-arm-cgo), const PR_SET_ENDIAN ideal-int
+pkg syscall (linux-arm-cgo), const PR_SET_FPEMU ideal-int
+pkg syscall (linux-arm-cgo), const PR_SET_FPEXC ideal-int
+pkg syscall (linux-arm-cgo), const PR_SET_KEEPCAPS ideal-int
+pkg syscall (linux-arm-cgo), const PR_SET_NAME ideal-int
+pkg syscall (linux-arm-cgo), const PR_SET_PDEATHSIG ideal-int
+pkg syscall (linux-arm-cgo), const PR_SET_PTRACER ideal-int
+pkg syscall (linux-arm-cgo), const PR_SET_SECCOMP ideal-int
+pkg syscall (linux-arm-cgo), const PR_SET_SECCOMP_FILTER ideal-int
+pkg syscall (linux-arm-cgo), const PR_SET_SECUREBITS ideal-int
+pkg syscall (linux-arm-cgo), const PR_SET_TIMERSLACK ideal-int
+pkg syscall (linux-arm-cgo), const PR_SET_TIMING ideal-int
+pkg syscall (linux-arm-cgo), const PR_SET_TSC ideal-int
+pkg syscall (linux-arm-cgo), const PR_SET_UNALIGN ideal-int
+pkg syscall (linux-arm-cgo), const PR_TASK_PERF_EVENTS_DISABLE ideal-int
+pkg syscall (linux-arm-cgo), const PR_TASK_PERF_EVENTS_ENABLE ideal-int
+pkg syscall (linux-arm-cgo), const PR_TIMING_STATISTICAL ideal-int
+pkg syscall (linux-arm-cgo), const PR_TIMING_TIMESTAMP ideal-int
+pkg syscall (linux-arm-cgo), const PR_TSC_ENABLE ideal-int
+pkg syscall (linux-arm-cgo), const PR_TSC_SIGSEGV ideal-int
+pkg syscall (linux-arm-cgo), const PR_UNALIGN_NOPRINT ideal-int
+pkg syscall (linux-arm-cgo), const PR_UNALIGN_SIGBUS ideal-int
+pkg syscall (linux-arm-cgo), const PTRACE_ATTACH ideal-int
+pkg syscall (linux-arm-cgo), const PTRACE_CONT ideal-int
+pkg syscall (linux-arm-cgo), const PTRACE_DETACH ideal-int
+pkg syscall (linux-arm-cgo), const PTRACE_EVENT_CLONE ideal-int
+pkg syscall (linux-arm-cgo), const PTRACE_EVENT_EXEC ideal-int
+pkg syscall (linux-arm-cgo), const PTRACE_EVENT_EXIT ideal-int
+pkg syscall (linux-arm-cgo), const PTRACE_EVENT_FORK ideal-int
+pkg syscall (linux-arm-cgo), const PTRACE_EVENT_VFORK ideal-int
+pkg syscall (linux-arm-cgo), const PTRACE_EVENT_VFORK_DONE ideal-int
+pkg syscall (linux-arm-cgo), const PTRACE_GETCRUNCHREGS ideal-int
+pkg syscall (linux-arm-cgo), const PTRACE_GETEVENTMSG ideal-int
+pkg syscall (linux-arm-cgo), const PTRACE_GETFPREGS ideal-int
+pkg syscall (linux-arm-cgo), const PTRACE_GETHBPREGS ideal-int
+pkg syscall (linux-arm-cgo), const PTRACE_GETREGS ideal-int
+pkg syscall (linux-arm-cgo), const PTRACE_GETREGSET ideal-int
+pkg syscall (linux-arm-cgo), const PTRACE_GETSIGINFO ideal-int
+pkg syscall (linux-arm-cgo), const PTRACE_GETVFPREGS ideal-int
+pkg syscall (linux-arm-cgo), const PTRACE_GETWMMXREGS ideal-int
+pkg syscall (linux-arm-cgo), const PTRACE_GET_THREAD_AREA ideal-int
+pkg syscall (linux-arm-cgo), const PTRACE_KILL ideal-int
+pkg syscall (linux-arm-cgo), const PTRACE_OLDSETOPTIONS ideal-int
+pkg syscall (linux-arm-cgo), const PTRACE_O_MASK ideal-int
+pkg syscall (linux-arm-cgo), const PTRACE_O_TRACECLONE ideal-int
+pkg syscall (linux-arm-cgo), const PTRACE_O_TRACEEXEC ideal-int
+pkg syscall (linux-arm-cgo), const PTRACE_O_TRACEEXIT ideal-int
+pkg syscall (linux-arm-cgo), const PTRACE_O_TRACEFORK ideal-int
+pkg syscall (linux-arm-cgo), const PTRACE_O_TRACESYSGOOD ideal-int
+pkg syscall (linux-arm-cgo), const PTRACE_O_TRACEVFORK ideal-int
+pkg syscall (linux-arm-cgo), const PTRACE_O_TRACEVFORKDONE ideal-int
+pkg syscall (linux-arm-cgo), const PTRACE_PEEKDATA ideal-int
+pkg syscall (linux-arm-cgo), const PTRACE_PEEKTEXT ideal-int
+pkg syscall (linux-arm-cgo), const PTRACE_PEEKUSR ideal-int
+pkg syscall (linux-arm-cgo), const PTRACE_POKEDATA ideal-int
+pkg syscall (linux-arm-cgo), const PTRACE_POKETEXT ideal-int
+pkg syscall (linux-arm-cgo), const PTRACE_POKEUSR ideal-int
+pkg syscall (linux-arm-cgo), const PTRACE_SETCRUNCHREGS ideal-int
+pkg syscall (linux-arm-cgo), const PTRACE_SETFPREGS ideal-int
+pkg syscall (linux-arm-cgo), const PTRACE_SETHBPREGS ideal-int
+pkg syscall (linux-arm-cgo), const PTRACE_SETOPTIONS ideal-int
+pkg syscall (linux-arm-cgo), const PTRACE_SETREGS ideal-int
+pkg syscall (linux-arm-cgo), const PTRACE_SETREGSET ideal-int
+pkg syscall (linux-arm-cgo), const PTRACE_SETSIGINFO ideal-int
+pkg syscall (linux-arm-cgo), const PTRACE_SETVFPREGS ideal-int
+pkg syscall (linux-arm-cgo), const PTRACE_SETWMMXREGS ideal-int
+pkg syscall (linux-arm-cgo), const PTRACE_SET_SYSCALL ideal-int
+pkg syscall (linux-arm-cgo), const PTRACE_SINGLESTEP ideal-int
+pkg syscall (linux-arm-cgo), const PTRACE_SYSCALL ideal-int
+pkg syscall (linux-arm-cgo), const PTRACE_TRACEME ideal-int
+pkg syscall (linux-arm-cgo), const PT_DATA_ADDR ideal-int
+pkg syscall (linux-arm-cgo), const PT_TEXT_ADDR ideal-int
+pkg syscall (linux-arm-cgo), const PT_TEXT_END_ADDR ideal-int
+pkg syscall (linux-arm-cgo), const PathMax ideal-int
+pkg syscall (linux-arm-cgo), const RLIMIT_AS ideal-int
+pkg syscall (linux-arm-cgo), const RLIMIT_CORE ideal-int
+pkg syscall (linux-arm-cgo), const RLIMIT_CPU ideal-int
+pkg syscall (linux-arm-cgo), const RLIMIT_DATA ideal-int
+pkg syscall (linux-arm-cgo), const RLIMIT_FSIZE ideal-int
+pkg syscall (linux-arm-cgo), const RLIMIT_NOFILE ideal-int
+pkg syscall (linux-arm-cgo), const RLIMIT_STACK ideal-int
+pkg syscall (linux-arm-cgo), const RLIM_INFINITY ideal-int
+pkg syscall (linux-arm-cgo), const RTAX_ADVMSS ideal-int
+pkg syscall (linux-arm-cgo), const RTAX_CWND ideal-int
+pkg syscall (linux-arm-cgo), const RTAX_FEATURES ideal-int
+pkg syscall (linux-arm-cgo), const RTAX_FEATURE_ALLFRAG ideal-int
+pkg syscall (linux-arm-cgo), const RTAX_FEATURE_ECN ideal-int
+pkg syscall (linux-arm-cgo), const RTAX_FEATURE_SACK ideal-int
+pkg syscall (linux-arm-cgo), const RTAX_FEATURE_TIMESTAMP ideal-int
+pkg syscall (linux-arm-cgo), const RTAX_HOPLIMIT ideal-int
+pkg syscall (linux-arm-cgo), const RTAX_INITCWND ideal-int
+pkg syscall (linux-arm-cgo), const RTAX_INITRWND ideal-int
+pkg syscall (linux-arm-cgo), const RTAX_LOCK ideal-int
+pkg syscall (linux-arm-cgo), const RTAX_MAX ideal-int
+pkg syscall (linux-arm-cgo), const RTAX_MTU ideal-int
+pkg syscall (linux-arm-cgo), const RTAX_REORDERING ideal-int
+pkg syscall (linux-arm-cgo), const RTAX_RTO_MIN ideal-int
+pkg syscall (linux-arm-cgo), const RTAX_RTT ideal-int
+pkg syscall (linux-arm-cgo), const RTAX_RTTVAR ideal-int
+pkg syscall (linux-arm-cgo), const RTAX_SSTHRESH ideal-int
+pkg syscall (linux-arm-cgo), const RTAX_UNSPEC ideal-int
+pkg syscall (linux-arm-cgo), const RTAX_WINDOW ideal-int
+pkg syscall (linux-arm-cgo), const RTA_ALIGNTO ideal-int
+pkg syscall (linux-arm-cgo), const RTA_CACHEINFO ideal-int
+pkg syscall (linux-arm-cgo), const RTA_DST ideal-int
+pkg syscall (linux-arm-cgo), const RTA_FLOW ideal-int
+pkg syscall (linux-arm-cgo), const RTA_GATEWAY ideal-int
+pkg syscall (linux-arm-cgo), const RTA_IIF ideal-int
+pkg syscall (linux-arm-cgo), const RTA_MAX ideal-int
+pkg syscall (linux-arm-cgo), const RTA_METRICS ideal-int
+pkg syscall (linux-arm-cgo), const RTA_MULTIPATH ideal-int
+pkg syscall (linux-arm-cgo), const RTA_OIF ideal-int
+pkg syscall (linux-arm-cgo), const RTA_PREFSRC ideal-int
+pkg syscall (linux-arm-cgo), const RTA_PRIORITY ideal-int
+pkg syscall (linux-arm-cgo), const RTA_SRC ideal-int
+pkg syscall (linux-arm-cgo), const RTA_TABLE ideal-int
+pkg syscall (linux-arm-cgo), const RTA_UNSPEC ideal-int
+pkg syscall (linux-arm-cgo), const RTCF_DIRECTSRC ideal-int
+pkg syscall (linux-arm-cgo), const RTCF_DOREDIRECT ideal-int
+pkg syscall (linux-arm-cgo), const RTCF_LOG ideal-int
+pkg syscall (linux-arm-cgo), const RTCF_MASQ ideal-int
+pkg syscall (linux-arm-cgo), const RTCF_NAT ideal-int
+pkg syscall (linux-arm-cgo), const RTCF_VALVE ideal-int
+pkg syscall (linux-arm-cgo), const RTF_ADDRCLASSMASK ideal-int
+pkg syscall (linux-arm-cgo), const RTF_ADDRCONF ideal-int
+pkg syscall (linux-arm-cgo), const RTF_ALLONLINK ideal-int
+pkg syscall (linux-arm-cgo), const RTF_BROADCAST ideal-int
+pkg syscall (linux-arm-cgo), const RTF_CACHE ideal-int
+pkg syscall (linux-arm-cgo), const RTF_DEFAULT ideal-int
+pkg syscall (linux-arm-cgo), const RTF_DYNAMIC ideal-int
+pkg syscall (linux-arm-cgo), const RTF_FLOW ideal-int
+pkg syscall (linux-arm-cgo), const RTF_GATEWAY ideal-int
+pkg syscall (linux-arm-cgo), const RTF_HOST ideal-int
+pkg syscall (linux-arm-cgo), const RTF_INTERFACE ideal-int
+pkg syscall (linux-arm-cgo), const RTF_IRTT ideal-int
+pkg syscall (linux-arm-cgo), const RTF_LINKRT ideal-int
+pkg syscall (linux-arm-cgo), const RTF_LOCAL ideal-int
+pkg syscall (linux-arm-cgo), const RTF_MODIFIED ideal-int
+pkg syscall (linux-arm-cgo), const RTF_MSS ideal-int
+pkg syscall (linux-arm-cgo), const RTF_MTU ideal-int
+pkg syscall (linux-arm-cgo), const RTF_MULTICAST ideal-int
+pkg syscall (linux-arm-cgo), const RTF_NAT ideal-int
+pkg syscall (linux-arm-cgo), const RTF_NOFORWARD ideal-int
+pkg syscall (linux-arm-cgo), const RTF_NONEXTHOP ideal-int
+pkg syscall (linux-arm-cgo), const RTF_NOPMTUDISC ideal-int
+pkg syscall (linux-arm-cgo), const RTF_POLICY ideal-int
+pkg syscall (linux-arm-cgo), const RTF_REINSTATE ideal-int
+pkg syscall (linux-arm-cgo), const RTF_REJECT ideal-int
+pkg syscall (linux-arm-cgo), const RTF_STATIC ideal-int
+pkg syscall (linux-arm-cgo), const RTF_THROW ideal-int
+pkg syscall (linux-arm-cgo), const RTF_UP ideal-int
+pkg syscall (linux-arm-cgo), const RTF_WINDOW ideal-int
+pkg syscall (linux-arm-cgo), const RTF_XRESOLVE ideal-int
+pkg syscall (linux-arm-cgo), const RTM_BASE ideal-int
+pkg syscall (linux-arm-cgo), const RTM_DELACTION ideal-int
+pkg syscall (linux-arm-cgo), const RTM_DELADDR ideal-int
+pkg syscall (linux-arm-cgo), const RTM_DELADDRLABEL ideal-int
+pkg syscall (linux-arm-cgo), const RTM_DELLINK ideal-int
+pkg syscall (linux-arm-cgo), const RTM_DELNEIGH ideal-int
+pkg syscall (linux-arm-cgo), const RTM_DELQDISC ideal-int
+pkg syscall (linux-arm-cgo), const RTM_DELROUTE ideal-int
+pkg syscall (linux-arm-cgo), const RTM_DELRULE ideal-int
+pkg syscall (linux-arm-cgo), const RTM_DELTCLASS ideal-int
+pkg syscall (linux-arm-cgo), const RTM_DELTFILTER ideal-int
+pkg syscall (linux-arm-cgo), const RTM_F_CLONED ideal-int
+pkg syscall (linux-arm-cgo), const RTM_F_EQUALIZE ideal-int
+pkg syscall (linux-arm-cgo), const RTM_F_NOTIFY ideal-int
+pkg syscall (linux-arm-cgo), const RTM_F_PREFIX ideal-int
+pkg syscall (linux-arm-cgo), const RTM_GETACTION ideal-int
+pkg syscall (linux-arm-cgo), const RTM_GETADDR ideal-int
+pkg syscall (linux-arm-cgo), const RTM_GETADDRLABEL ideal-int
+pkg syscall (linux-arm-cgo), const RTM_GETANYCAST ideal-int
+pkg syscall (linux-arm-cgo), const RTM_GETDCB ideal-int
+pkg syscall (linux-arm-cgo), const RTM_GETLINK ideal-int
+pkg syscall (linux-arm-cgo), const RTM_GETMULTICAST ideal-int
+pkg syscall (linux-arm-cgo), const RTM_GETNEIGH ideal-int
+pkg syscall (linux-arm-cgo), const RTM_GETNEIGHTBL ideal-int
+pkg syscall (linux-arm-cgo), const RTM_GETQDISC ideal-int
+pkg syscall (linux-arm-cgo), const RTM_GETROUTE ideal-int
+pkg syscall (linux-arm-cgo), const RTM_GETRULE ideal-int
+pkg syscall (linux-arm-cgo), const RTM_GETTCLASS ideal-int
+pkg syscall (linux-arm-cgo), const RTM_GETTFILTER ideal-int
+pkg syscall (linux-arm-cgo), const RTM_MAX ideal-int
+pkg syscall (linux-arm-cgo), const RTM_NEWACTION ideal-int
+pkg syscall (linux-arm-cgo), const RTM_NEWADDR ideal-int
+pkg syscall (linux-arm-cgo), const RTM_NEWADDRLABEL ideal-int
+pkg syscall (linux-arm-cgo), const RTM_NEWLINK ideal-int
+pkg syscall (linux-arm-cgo), const RTM_NEWNDUSEROPT ideal-int
+pkg syscall (linux-arm-cgo), const RTM_NEWNEIGH ideal-int
+pkg syscall (linux-arm-cgo), const RTM_NEWNEIGHTBL ideal-int
+pkg syscall (linux-arm-cgo), const RTM_NEWPREFIX ideal-int
+pkg syscall (linux-arm-cgo), const RTM_NEWQDISC ideal-int
+pkg syscall (linux-arm-cgo), const RTM_NEWROUTE ideal-int
+pkg syscall (linux-arm-cgo), const RTM_NEWRULE ideal-int
+pkg syscall (linux-arm-cgo), const RTM_NEWTCLASS ideal-int
+pkg syscall (linux-arm-cgo), const RTM_NEWTFILTER ideal-int
+pkg syscall (linux-arm-cgo), const RTM_NR_FAMILIES ideal-int
+pkg syscall (linux-arm-cgo), const RTM_NR_MSGTYPES ideal-int
+pkg syscall (linux-arm-cgo), const RTM_SETDCB ideal-int
+pkg syscall (linux-arm-cgo), const RTM_SETLINK ideal-int
+pkg syscall (linux-arm-cgo), const RTM_SETNEIGHTBL ideal-int
+pkg syscall (linux-arm-cgo), const RTNH_ALIGNTO ideal-int
+pkg syscall (linux-arm-cgo), const RTNH_F_DEAD ideal-int
+pkg syscall (linux-arm-cgo), const RTNH_F_ONLINK ideal-int
+pkg syscall (linux-arm-cgo), const RTNH_F_PERVASIVE ideal-int
+pkg syscall (linux-arm-cgo), const RTNLGRP_IPV4_IFADDR ideal-int
+pkg syscall (linux-arm-cgo), const RTNLGRP_IPV4_MROUTE ideal-int
+pkg syscall (linux-arm-cgo), const RTNLGRP_IPV4_ROUTE ideal-int
+pkg syscall (linux-arm-cgo), const RTNLGRP_IPV4_RULE ideal-int
+pkg syscall (linux-arm-cgo), const RTNLGRP_IPV6_IFADDR ideal-int
+pkg syscall (linux-arm-cgo), const RTNLGRP_IPV6_IFINFO ideal-int
+pkg syscall (linux-arm-cgo), const RTNLGRP_IPV6_MROUTE ideal-int
+pkg syscall (linux-arm-cgo), const RTNLGRP_IPV6_PREFIX ideal-int
+pkg syscall (linux-arm-cgo), const RTNLGRP_IPV6_ROUTE ideal-int
+pkg syscall (linux-arm-cgo), const RTNLGRP_IPV6_RULE ideal-int
+pkg syscall (linux-arm-cgo), const RTNLGRP_LINK ideal-int
+pkg syscall (linux-arm-cgo), const RTNLGRP_ND_USEROPT ideal-int
+pkg syscall (linux-arm-cgo), const RTNLGRP_NEIGH ideal-int
+pkg syscall (linux-arm-cgo), const RTNLGRP_NONE ideal-int
+pkg syscall (linux-arm-cgo), const RTNLGRP_NOTIFY ideal-int
+pkg syscall (linux-arm-cgo), const RTNLGRP_TC ideal-int
+pkg syscall (linux-arm-cgo), const RTN_ANYCAST ideal-int
+pkg syscall (linux-arm-cgo), const RTN_BLACKHOLE ideal-int
+pkg syscall (linux-arm-cgo), const RTN_BROADCAST ideal-int
+pkg syscall (linux-arm-cgo), const RTN_LOCAL ideal-int
+pkg syscall (linux-arm-cgo), const RTN_MAX ideal-int
+pkg syscall (linux-arm-cgo), const RTN_MULTICAST ideal-int
+pkg syscall (linux-arm-cgo), const RTN_NAT ideal-int
+pkg syscall (linux-arm-cgo), const RTN_PROHIBIT ideal-int
+pkg syscall (linux-arm-cgo), const RTN_THROW ideal-int
+pkg syscall (linux-arm-cgo), const RTN_UNICAST ideal-int
+pkg syscall (linux-arm-cgo), const RTN_UNREACHABLE ideal-int
+pkg syscall (linux-arm-cgo), const RTN_UNSPEC ideal-int
+pkg syscall (linux-arm-cgo), const RTN_XRESOLVE ideal-int
+pkg syscall (linux-arm-cgo), const RTPROT_BIRD ideal-int
+pkg syscall (linux-arm-cgo), const RTPROT_BOOT ideal-int
+pkg syscall (linux-arm-cgo), const RTPROT_DHCP ideal-int
+pkg syscall (linux-arm-cgo), const RTPROT_DNROUTED ideal-int
+pkg syscall (linux-arm-cgo), const RTPROT_GATED ideal-int
+pkg syscall (linux-arm-cgo), const RTPROT_KERNEL ideal-int
+pkg syscall (linux-arm-cgo), const RTPROT_MRT ideal-int
+pkg syscall (linux-arm-cgo), const RTPROT_NTK ideal-int
+pkg syscall (linux-arm-cgo), const RTPROT_RA ideal-int
+pkg syscall (linux-arm-cgo), const RTPROT_REDIRECT ideal-int
+pkg syscall (linux-arm-cgo), const RTPROT_STATIC ideal-int
+pkg syscall (linux-arm-cgo), const RTPROT_UNSPEC ideal-int
+pkg syscall (linux-arm-cgo), const RTPROT_XORP ideal-int
+pkg syscall (linux-arm-cgo), const RTPROT_ZEBRA ideal-int
+pkg syscall (linux-arm-cgo), const RT_CLASS_DEFAULT ideal-int
+pkg syscall (linux-arm-cgo), const RT_CLASS_LOCAL ideal-int
+pkg syscall (linux-arm-cgo), const RT_CLASS_MAIN ideal-int
+pkg syscall (linux-arm-cgo), const RT_CLASS_MAX ideal-int
+pkg syscall (linux-arm-cgo), const RT_CLASS_UNSPEC ideal-int
+pkg syscall (linux-arm-cgo), const RT_SCOPE_HOST ideal-int
+pkg syscall (linux-arm-cgo), const RT_SCOPE_LINK ideal-int
+pkg syscall (linux-arm-cgo), const RT_SCOPE_NOWHERE ideal-int
+pkg syscall (linux-arm-cgo), const RT_SCOPE_SITE ideal-int
+pkg syscall (linux-arm-cgo), const RT_SCOPE_UNIVERSE ideal-int
+pkg syscall (linux-arm-cgo), const RT_TABLE_COMPAT ideal-int
+pkg syscall (linux-arm-cgo), const RT_TABLE_DEFAULT ideal-int
+pkg syscall (linux-arm-cgo), const RT_TABLE_LOCAL ideal-int
+pkg syscall (linux-arm-cgo), const RT_TABLE_MAIN ideal-int
+pkg syscall (linux-arm-cgo), const RT_TABLE_MAX ideal-int
+pkg syscall (linux-arm-cgo), const RT_TABLE_UNSPEC ideal-int
+pkg syscall (linux-arm-cgo), const RUSAGE_CHILDREN ideal-int
+pkg syscall (linux-arm-cgo), const RUSAGE_SELF ideal-int
+pkg syscall (linux-arm-cgo), const RUSAGE_THREAD ideal-int
+pkg syscall (linux-arm-cgo), const SCM_CREDENTIALS ideal-int
+pkg syscall (linux-arm-cgo), const SCM_RIGHTS ideal-int
+pkg syscall (linux-arm-cgo), const SCM_TIMESTAMP ideal-int
+pkg syscall (linux-arm-cgo), const SCM_TIMESTAMPING ideal-int
+pkg syscall (linux-arm-cgo), const SCM_TIMESTAMPNS ideal-int
+pkg syscall (linux-arm-cgo), const SIGCHLD Signal
+pkg syscall (linux-arm-cgo), const SIGCLD Signal
+pkg syscall (linux-arm-cgo), const SIGCONT Signal
+pkg syscall (linux-arm-cgo), const SIGIO Signal
+pkg syscall (linux-arm-cgo), const SIGIOT Signal
+pkg syscall (linux-arm-cgo), const SIGPOLL Signal
+pkg syscall (linux-arm-cgo), const SIGPROF Signal
+pkg syscall (linux-arm-cgo), const SIGPWR Signal
+pkg syscall (linux-arm-cgo), const SIGSTKFLT Signal
+pkg syscall (linux-arm-cgo), const SIGSTOP Signal
+pkg syscall (linux-arm-cgo), const SIGSYS Signal
+pkg syscall (linux-arm-cgo), const SIGTSTP Signal
+pkg syscall (linux-arm-cgo), const SIGTTIN Signal
+pkg syscall (linux-arm-cgo), const SIGTTOU Signal
+pkg syscall (linux-arm-cgo), const SIGUNUSED Signal
+pkg syscall (linux-arm-cgo), const SIGURG Signal
+pkg syscall (linux-arm-cgo), const SIGUSR1 Signal
+pkg syscall (linux-arm-cgo), const SIGUSR2 Signal
+pkg syscall (linux-arm-cgo), const SIGVTALRM Signal
+pkg syscall (linux-arm-cgo), const SIGWINCH Signal
+pkg syscall (linux-arm-cgo), const SIGXCPU Signal
+pkg syscall (linux-arm-cgo), const SIGXFSZ Signal
+pkg syscall (linux-arm-cgo), const SIOCADDDLCI ideal-int
+pkg syscall (linux-arm-cgo), const SIOCADDMULTI ideal-int
+pkg syscall (linux-arm-cgo), const SIOCADDRT ideal-int
+pkg syscall (linux-arm-cgo), const SIOCATMARK ideal-int
+pkg syscall (linux-arm-cgo), const SIOCDARP ideal-int
+pkg syscall (linux-arm-cgo), const SIOCDELDLCI ideal-int
+pkg syscall (linux-arm-cgo), const SIOCDELMULTI ideal-int
+pkg syscall (linux-arm-cgo), const SIOCDELRT ideal-int
+pkg syscall (linux-arm-cgo), const SIOCDEVPRIVATE ideal-int
+pkg syscall (linux-arm-cgo), const SIOCDIFADDR ideal-int
+pkg syscall (linux-arm-cgo), const SIOCDRARP ideal-int
+pkg syscall (linux-arm-cgo), const SIOCGARP ideal-int
+pkg syscall (linux-arm-cgo), const SIOCGIFADDR ideal-int
+pkg syscall (linux-arm-cgo), const SIOCGIFBR ideal-int
+pkg syscall (linux-arm-cgo), const SIOCGIFBRDADDR ideal-int
+pkg syscall (linux-arm-cgo), const SIOCGIFCONF ideal-int
+pkg syscall (linux-arm-cgo), const SIOCGIFCOUNT ideal-int
+pkg syscall (linux-arm-cgo), const SIOCGIFDSTADDR ideal-int
+pkg syscall (linux-arm-cgo), const SIOCGIFENCAP ideal-int
+pkg syscall (linux-arm-cgo), const SIOCGIFFLAGS ideal-int
+pkg syscall (linux-arm-cgo), const SIOCGIFHWADDR ideal-int
+pkg syscall (linux-arm-cgo), const SIOCGIFINDEX ideal-int
+pkg syscall (linux-arm-cgo), const SIOCGIFMAP ideal-int
+pkg syscall (linux-arm-cgo), const SIOCGIFMEM ideal-int
+pkg syscall (linux-arm-cgo), const SIOCGIFMETRIC ideal-int
+pkg syscall (linux-arm-cgo), const SIOCGIFMTU ideal-int
+pkg syscall (linux-arm-cgo), const SIOCGIFNAME ideal-int
+pkg syscall (linux-arm-cgo), const SIOCGIFNETMASK ideal-int
+pkg syscall (linux-arm-cgo), const SIOCGIFPFLAGS ideal-int
+pkg syscall (linux-arm-cgo), const SIOCGIFSLAVE ideal-int
+pkg syscall (linux-arm-cgo), const SIOCGIFTXQLEN ideal-int
+pkg syscall (linux-arm-cgo), const SIOCGPGRP ideal-int
+pkg syscall (linux-arm-cgo), const SIOCGRARP ideal-int
+pkg syscall (linux-arm-cgo), const SIOCGSTAMP ideal-int
+pkg syscall (linux-arm-cgo), const SIOCGSTAMPNS ideal-int
+pkg syscall (linux-arm-cgo), const SIOCPROTOPRIVATE ideal-int
+pkg syscall (linux-arm-cgo), const SIOCRTMSG ideal-int
+pkg syscall (linux-arm-cgo), const SIOCSARP ideal-int
+pkg syscall (linux-arm-cgo), const SIOCSIFADDR ideal-int
+pkg syscall (linux-arm-cgo), const SIOCSIFBR ideal-int
+pkg syscall (linux-arm-cgo), const SIOCSIFBRDADDR ideal-int
+pkg syscall (linux-arm-cgo), const SIOCSIFDSTADDR ideal-int
+pkg syscall (linux-arm-cgo), const SIOCSIFENCAP ideal-int
+pkg syscall (linux-arm-cgo), const SIOCSIFFLAGS ideal-int
+pkg syscall (linux-arm-cgo), const SIOCSIFHWADDR ideal-int
+pkg syscall (linux-arm-cgo), const SIOCSIFHWBROADCAST ideal-int
+pkg syscall (linux-arm-cgo), const SIOCSIFLINK ideal-int
+pkg syscall (linux-arm-cgo), const SIOCSIFMAP ideal-int
+pkg syscall (linux-arm-cgo), const SIOCSIFMEM ideal-int
+pkg syscall (linux-arm-cgo), const SIOCSIFMETRIC ideal-int
+pkg syscall (linux-arm-cgo), const SIOCSIFMTU ideal-int
+pkg syscall (linux-arm-cgo), const SIOCSIFNAME ideal-int
+pkg syscall (linux-arm-cgo), const SIOCSIFNETMASK ideal-int
+pkg syscall (linux-arm-cgo), const SIOCSIFPFLAGS ideal-int
+pkg syscall (linux-arm-cgo), const SIOCSIFSLAVE ideal-int
+pkg syscall (linux-arm-cgo), const SIOCSIFTXQLEN ideal-int
+pkg syscall (linux-arm-cgo), const SIOCSPGRP ideal-int
+pkg syscall (linux-arm-cgo), const SIOCSRARP ideal-int
+pkg syscall (linux-arm-cgo), const SOCK_CLOEXEC ideal-int
+pkg syscall (linux-arm-cgo), const SOCK_DCCP ideal-int
+pkg syscall (linux-arm-cgo), const SOCK_NONBLOCK ideal-int
+pkg syscall (linux-arm-cgo), const SOCK_PACKET ideal-int
+pkg syscall (linux-arm-cgo), const SOCK_RDM ideal-int
+pkg syscall (linux-arm-cgo), const SOL_AAL ideal-int
+pkg syscall (linux-arm-cgo), const SOL_ATM ideal-int
+pkg syscall (linux-arm-cgo), const SOL_DECNET ideal-int
+pkg syscall (linux-arm-cgo), const SOL_ICMPV6 ideal-int
+pkg syscall (linux-arm-cgo), const SOL_IP ideal-int
+pkg syscall (linux-arm-cgo), const SOL_IPV6 ideal-int
+pkg syscall (linux-arm-cgo), const SOL_IRDA ideal-int
+pkg syscall (linux-arm-cgo), const SOL_PACKET ideal-int
+pkg syscall (linux-arm-cgo), const SOL_RAW ideal-int
+pkg syscall (linux-arm-cgo), const SOL_TCP ideal-int
+pkg syscall (linux-arm-cgo), const SOL_X25 ideal-int
+pkg syscall (linux-arm-cgo), const SO_ACCEPTCONN ideal-int
+pkg syscall (linux-arm-cgo), const SO_ATTACH_FILTER ideal-int
+pkg syscall (linux-arm-cgo), const SO_BINDTODEVICE ideal-int
+pkg syscall (linux-arm-cgo), const SO_BSDCOMPAT ideal-int
+pkg syscall (linux-arm-cgo), const SO_DEBUG ideal-int
+pkg syscall (linux-arm-cgo), const SO_DETACH_FILTER ideal-int
+pkg syscall (linux-arm-cgo), const SO_DOMAIN ideal-int
+pkg syscall (linux-arm-cgo), const SO_ERROR ideal-int
+pkg syscall (linux-arm-cgo), const SO_MARK ideal-int
+pkg syscall (linux-arm-cgo), const SO_NO_CHECK ideal-int
+pkg syscall (linux-arm-cgo), const SO_OOBINLINE ideal-int
+pkg syscall (linux-arm-cgo), const SO_PASSCRED ideal-int
+pkg syscall (linux-arm-cgo), const SO_PASSSEC ideal-int
+pkg syscall (linux-arm-cgo), const SO_PEERCRED ideal-int
+pkg syscall (linux-arm-cgo), const SO_PEERNAME ideal-int
+pkg syscall (linux-arm-cgo), const SO_PEERSEC ideal-int
+pkg syscall (linux-arm-cgo), const SO_PRIORITY ideal-int
+pkg syscall (linux-arm-cgo), const SO_PROTOCOL ideal-int
+pkg syscall (linux-arm-cgo), const SO_RCVBUFFORCE ideal-int
+pkg syscall (linux-arm-cgo), const SO_RCVLOWAT ideal-int
+pkg syscall (linux-arm-cgo), const SO_RCVTIMEO ideal-int
+pkg syscall (linux-arm-cgo), const SO_RXQ_OVFL ideal-int
+pkg syscall (linux-arm-cgo), const SO_SECURITY_AUTHENTICATION ideal-int
+pkg syscall (linux-arm-cgo), const SO_SECURITY_ENCRYPTION_NETWORK ideal-int
+pkg syscall (linux-arm-cgo), const SO_SECURITY_ENCRYPTION_TRANSPORT ideal-int
+pkg syscall (linux-arm-cgo), const SO_SNDBUFFORCE ideal-int
+pkg syscall (linux-arm-cgo), const SO_SNDLOWAT ideal-int
+pkg syscall (linux-arm-cgo), const SO_SNDTIMEO ideal-int
+pkg syscall (linux-arm-cgo), const SO_TIMESTAMP ideal-int
+pkg syscall (linux-arm-cgo), const SO_TIMESTAMPING ideal-int
+pkg syscall (linux-arm-cgo), const SO_TIMESTAMPNS ideal-int
+pkg syscall (linux-arm-cgo), const SO_TYPE ideal-int
+pkg syscall (linux-arm-cgo), const SYS_ACCEPT ideal-int
+pkg syscall (linux-arm-cgo), const SYS_ACCEPT4 ideal-int
+pkg syscall (linux-arm-cgo), const SYS_ACCESS ideal-int
+pkg syscall (linux-arm-cgo), const SYS_ACCT ideal-int
+pkg syscall (linux-arm-cgo), const SYS_ADD_KEY ideal-int
+pkg syscall (linux-arm-cgo), const SYS_ADJTIMEX ideal-int
+pkg syscall (linux-arm-cgo), const SYS_ALARM ideal-int
+pkg syscall (linux-arm-cgo), const SYS_ARM_FADVISE64_64 ideal-int
+pkg syscall (linux-arm-cgo), const SYS_ARM_SYNC_FILE_RANGE ideal-int
+pkg syscall (linux-arm-cgo), const SYS_BDFLUSH ideal-int
+pkg syscall (linux-arm-cgo), const SYS_BIND ideal-int
+pkg syscall (linux-arm-cgo), const SYS_BRK ideal-int
+pkg syscall (linux-arm-cgo), const SYS_CAPGET ideal-int
+pkg syscall (linux-arm-cgo), const SYS_CAPSET ideal-int
+pkg syscall (linux-arm-cgo), const SYS_CHDIR ideal-int
+pkg syscall (linux-arm-cgo), const SYS_CHMOD ideal-int
+pkg syscall (linux-arm-cgo), const SYS_CHOWN ideal-int
+pkg syscall (linux-arm-cgo), const SYS_CHOWN32 ideal-int
+pkg syscall (linux-arm-cgo), const SYS_CHROOT ideal-int
+pkg syscall (linux-arm-cgo), const SYS_CLOCK_ADJTIME ideal-int
+pkg syscall (linux-arm-cgo), const SYS_CLOCK_GETRES ideal-int
+pkg syscall (linux-arm-cgo), const SYS_CLOCK_GETTIME ideal-int
+pkg syscall (linux-arm-cgo), const SYS_CLOCK_NANOSLEEP ideal-int
+pkg syscall (linux-arm-cgo), const SYS_CLOCK_SETTIME ideal-int
+pkg syscall (linux-arm-cgo), const SYS_CLONE ideal-int
+pkg syscall (linux-arm-cgo), const SYS_CLOSE ideal-int
+pkg syscall (linux-arm-cgo), const SYS_CONNECT ideal-int
+pkg syscall (linux-arm-cgo), const SYS_CREAT ideal-int
+pkg syscall (linux-arm-cgo), const SYS_DELETE_MODULE ideal-int
+pkg syscall (linux-arm-cgo), const SYS_DUP ideal-int
+pkg syscall (linux-arm-cgo), const SYS_DUP2 ideal-int
+pkg syscall (linux-arm-cgo), const SYS_DUP3 ideal-int
+pkg syscall (linux-arm-cgo), const SYS_EPOLL_CREATE ideal-int
+pkg syscall (linux-arm-cgo), const SYS_EPOLL_CREATE1 ideal-int
+pkg syscall (linux-arm-cgo), const SYS_EPOLL_CTL ideal-int
+pkg syscall (linux-arm-cgo), const SYS_EPOLL_PWAIT ideal-int
+pkg syscall (linux-arm-cgo), const SYS_EPOLL_WAIT ideal-int
+pkg syscall (linux-arm-cgo), const SYS_EVENTFD ideal-int
+pkg syscall (linux-arm-cgo), const SYS_EVENTFD2 ideal-int
+pkg syscall (linux-arm-cgo), const SYS_EXECVE ideal-int
+pkg syscall (linux-arm-cgo), const SYS_EXIT ideal-int
+pkg syscall (linux-arm-cgo), const SYS_EXIT_GROUP ideal-int
+pkg syscall (linux-arm-cgo), const SYS_FACCESSAT ideal-int
+pkg syscall (linux-arm-cgo), const SYS_FALLOCATE ideal-int
+pkg syscall (linux-arm-cgo), const SYS_FANOTIFY_INIT ideal-int
+pkg syscall (linux-arm-cgo), const SYS_FANOTIFY_MARK ideal-int
+pkg syscall (linux-arm-cgo), const SYS_FCHDIR ideal-int
+pkg syscall (linux-arm-cgo), const SYS_FCHMOD ideal-int
+pkg syscall (linux-arm-cgo), const SYS_FCHMODAT ideal-int
+pkg syscall (linux-arm-cgo), const SYS_FCHOWN ideal-int
+pkg syscall (linux-arm-cgo), const SYS_FCHOWN32 ideal-int
+pkg syscall (linux-arm-cgo), const SYS_FCHOWNAT ideal-int
+pkg syscall (linux-arm-cgo), const SYS_FCNTL ideal-int
+pkg syscall (linux-arm-cgo), const SYS_FCNTL64 ideal-int
+pkg syscall (linux-arm-cgo), const SYS_FDATASYNC ideal-int
+pkg syscall (linux-arm-cgo), const SYS_FGETXATTR ideal-int
+pkg syscall (linux-arm-cgo), const SYS_FLISTXATTR ideal-int
+pkg syscall (linux-arm-cgo), const SYS_FLOCK ideal-int
+pkg syscall (linux-arm-cgo), const SYS_FORK ideal-int
+pkg syscall (linux-arm-cgo), const SYS_FREMOVEXATTR ideal-int
+pkg syscall (linux-arm-cgo), const SYS_FSETXATTR ideal-int
+pkg syscall (linux-arm-cgo), const SYS_FSTAT ideal-int
+pkg syscall (linux-arm-cgo), const SYS_FSTAT64 ideal-int
+pkg syscall (linux-arm-cgo), const SYS_FSTATAT64 ideal-int
+pkg syscall (linux-arm-cgo), const SYS_FSTATFS ideal-int
+pkg syscall (linux-arm-cgo), const SYS_FSTATFS64 ideal-int
+pkg syscall (linux-arm-cgo), const SYS_FSYNC ideal-int
+pkg syscall (linux-arm-cgo), const SYS_FTRUNCATE ideal-int
+pkg syscall (linux-arm-cgo), const SYS_FTRUNCATE64 ideal-int
+pkg syscall (linux-arm-cgo), const SYS_FUTEX ideal-int
+pkg syscall (linux-arm-cgo), const SYS_FUTIMESAT ideal-int
+pkg syscall (linux-arm-cgo), const SYS_GETCPU ideal-int
+pkg syscall (linux-arm-cgo), const SYS_GETCWD ideal-int
+pkg syscall (linux-arm-cgo), const SYS_GETDENTS ideal-int
+pkg syscall (linux-arm-cgo), const SYS_GETDENTS64 ideal-int
+pkg syscall (linux-arm-cgo), const SYS_GETEGID ideal-int
+pkg syscall (linux-arm-cgo), const SYS_GETEGID32 ideal-int
+pkg syscall (linux-arm-cgo), const SYS_GETEUID ideal-int
+pkg syscall (linux-arm-cgo), const SYS_GETEUID32 ideal-int
+pkg syscall (linux-arm-cgo), const SYS_GETGID ideal-int
+pkg syscall (linux-arm-cgo), const SYS_GETGID32 ideal-int
+pkg syscall (linux-arm-cgo), const SYS_GETGROUPS ideal-int
+pkg syscall (linux-arm-cgo), const SYS_GETGROUPS32 ideal-int
+pkg syscall (linux-arm-cgo), const SYS_GETITIMER ideal-int
+pkg syscall (linux-arm-cgo), const SYS_GETPEERNAME ideal-int
+pkg syscall (linux-arm-cgo), const SYS_GETPGID ideal-int
+pkg syscall (linux-arm-cgo), const SYS_GETPGRP ideal-int
+pkg syscall (linux-arm-cgo), const SYS_GETPID ideal-int
+pkg syscall (linux-arm-cgo), const SYS_GETPPID ideal-int
+pkg syscall (linux-arm-cgo), const SYS_GETPRIORITY ideal-int
+pkg syscall (linux-arm-cgo), const SYS_GETRESGID ideal-int
+pkg syscall (linux-arm-cgo), const SYS_GETRESGID32 ideal-int
+pkg syscall (linux-arm-cgo), const SYS_GETRESUID ideal-int
+pkg syscall (linux-arm-cgo), const SYS_GETRESUID32 ideal-int
+pkg syscall (linux-arm-cgo), const SYS_GETRLIMIT ideal-int
+pkg syscall (linux-arm-cgo), const SYS_GETRUSAGE ideal-int
+pkg syscall (linux-arm-cgo), const SYS_GETSID ideal-int
+pkg syscall (linux-arm-cgo), const SYS_GETSOCKNAME ideal-int
+pkg syscall (linux-arm-cgo), const SYS_GETSOCKOPT ideal-int
+pkg syscall (linux-arm-cgo), const SYS_GETTID ideal-int
+pkg syscall (linux-arm-cgo), const SYS_GETTIMEOFDAY ideal-int
+pkg syscall (linux-arm-cgo), const SYS_GETUID ideal-int
+pkg syscall (linux-arm-cgo), const SYS_GETUID32 ideal-int
+pkg syscall (linux-arm-cgo), const SYS_GETXATTR ideal-int
+pkg syscall (linux-arm-cgo), const SYS_GET_MEMPOLICY ideal-int
+pkg syscall (linux-arm-cgo), const SYS_GET_ROBUST_LIST ideal-int
+pkg syscall (linux-arm-cgo), const SYS_INIT_MODULE ideal-int
+pkg syscall (linux-arm-cgo), const SYS_INOTIFY_ADD_WATCH ideal-int
+pkg syscall (linux-arm-cgo), const SYS_INOTIFY_INIT ideal-int
+pkg syscall (linux-arm-cgo), const SYS_INOTIFY_INIT1 ideal-int
+pkg syscall (linux-arm-cgo), const SYS_INOTIFY_RM_WATCH ideal-int
+pkg syscall (linux-arm-cgo), const SYS_IOCTL ideal-int
+pkg syscall (linux-arm-cgo), const SYS_IOPRIO_GET ideal-int
+pkg syscall (linux-arm-cgo), const SYS_IOPRIO_SET ideal-int
+pkg syscall (linux-arm-cgo), const SYS_IO_CANCEL ideal-int
+pkg syscall (linux-arm-cgo), const SYS_IO_DESTROY ideal-int
+pkg syscall (linux-arm-cgo), const SYS_IO_GETEVENTS ideal-int
+pkg syscall (linux-arm-cgo), const SYS_IO_SETUP ideal-int
+pkg syscall (linux-arm-cgo), const SYS_IO_SUBMIT ideal-int
+pkg syscall (linux-arm-cgo), const SYS_IPC ideal-int
+pkg syscall (linux-arm-cgo), const SYS_KEXEC_LOAD ideal-int
+pkg syscall (linux-arm-cgo), const SYS_KEYCTL ideal-int
+pkg syscall (linux-arm-cgo), const SYS_KILL ideal-int
+pkg syscall (linux-arm-cgo), const SYS_LCHOWN ideal-int
+pkg syscall (linux-arm-cgo), const SYS_LCHOWN32 ideal-int
+pkg syscall (linux-arm-cgo), const SYS_LGETXATTR ideal-int
+pkg syscall (linux-arm-cgo), const SYS_LINK ideal-int
+pkg syscall (linux-arm-cgo), const SYS_LINKAT ideal-int
+pkg syscall (linux-arm-cgo), const SYS_LISTEN ideal-int
+pkg syscall (linux-arm-cgo), const SYS_LISTXATTR ideal-int
+pkg syscall (linux-arm-cgo), const SYS_LLISTXATTR ideal-int
+pkg syscall (linux-arm-cgo), const SYS_LOOKUP_DCOOKIE ideal-int
+pkg syscall (linux-arm-cgo), const SYS_LREMOVEXATTR ideal-int
+pkg syscall (linux-arm-cgo), const SYS_LSEEK ideal-int
+pkg syscall (linux-arm-cgo), const SYS_LSETXATTR ideal-int
+pkg syscall (linux-arm-cgo), const SYS_LSTAT ideal-int
+pkg syscall (linux-arm-cgo), const SYS_LSTAT64 ideal-int
+pkg syscall (linux-arm-cgo), const SYS_MADVISE ideal-int
+pkg syscall (linux-arm-cgo), const SYS_MBIND ideal-int
+pkg syscall (linux-arm-cgo), const SYS_MINCORE ideal-int
+pkg syscall (linux-arm-cgo), const SYS_MKDIR ideal-int
+pkg syscall (linux-arm-cgo), const SYS_MKDIRAT ideal-int
+pkg syscall (linux-arm-cgo), const SYS_MKNOD ideal-int
+pkg syscall (linux-arm-cgo), const SYS_MKNODAT ideal-int
+pkg syscall (linux-arm-cgo), const SYS_MLOCK ideal-int
+pkg syscall (linux-arm-cgo), const SYS_MLOCKALL ideal-int
+pkg syscall (linux-arm-cgo), const SYS_MMAP ideal-int
+pkg syscall (linux-arm-cgo), const SYS_MMAP2 ideal-int
+pkg syscall (linux-arm-cgo), const SYS_MOUNT ideal-int
+pkg syscall (linux-arm-cgo), const SYS_MOVE_PAGES ideal-int
+pkg syscall (linux-arm-cgo), const SYS_MPROTECT ideal-int
+pkg syscall (linux-arm-cgo), const SYS_MQ_GETSETATTR ideal-int
+pkg syscall (linux-arm-cgo), const SYS_MQ_NOTIFY ideal-int
+pkg syscall (linux-arm-cgo), const SYS_MQ_OPEN ideal-int
+pkg syscall (linux-arm-cgo), const SYS_MQ_TIMEDRECEIVE ideal-int
+pkg syscall (linux-arm-cgo), const SYS_MQ_TIMEDSEND ideal-int
+pkg syscall (linux-arm-cgo), const SYS_MQ_UNLINK ideal-int
+pkg syscall (linux-arm-cgo), const SYS_MREMAP ideal-int
+pkg syscall (linux-arm-cgo), const SYS_MSGCTL ideal-int
+pkg syscall (linux-arm-cgo), const SYS_MSGGET ideal-int
+pkg syscall (linux-arm-cgo), const SYS_MSGRCV ideal-int
+pkg syscall (linux-arm-cgo), const SYS_MSGSND ideal-int
+pkg syscall (linux-arm-cgo), const SYS_MSYNC ideal-int
+pkg syscall (linux-arm-cgo), const SYS_MUNLOCK ideal-int
+pkg syscall (linux-arm-cgo), const SYS_MUNLOCKALL ideal-int
+pkg syscall (linux-arm-cgo), const SYS_MUNMAP ideal-int
+pkg syscall (linux-arm-cgo), const SYS_NAME_TO_HANDLE_AT ideal-int
+pkg syscall (linux-arm-cgo), const SYS_NANOSLEEP ideal-int
+pkg syscall (linux-arm-cgo), const SYS_NFSSERVCTL ideal-int
+pkg syscall (linux-arm-cgo), const SYS_NICE ideal-int
+pkg syscall (linux-arm-cgo), const SYS_OABI_SYSCALL_BASE ideal-int
+pkg syscall (linux-arm-cgo), const SYS_OPEN ideal-int
+pkg syscall (linux-arm-cgo), const SYS_OPENAT ideal-int
+pkg syscall (linux-arm-cgo), const SYS_OPEN_BY_HANDLE_AT ideal-int
+pkg syscall (linux-arm-cgo), const SYS_PAUSE ideal-int
+pkg syscall (linux-arm-cgo), const SYS_PCICONFIG_IOBASE ideal-int
+pkg syscall (linux-arm-cgo), const SYS_PCICONFIG_READ ideal-int
+pkg syscall (linux-arm-cgo), const SYS_PCICONFIG_WRITE ideal-int
+pkg syscall (linux-arm-cgo), const SYS_PERF_EVENT_OPEN ideal-int
+pkg syscall (linux-arm-cgo), const SYS_PERSONALITY ideal-int
+pkg syscall (linux-arm-cgo), const SYS_PIPE ideal-int
+pkg syscall (linux-arm-cgo), const SYS_PIPE2 ideal-int
+pkg syscall (linux-arm-cgo), const SYS_PIVOT_ROOT ideal-int
+pkg syscall (linux-arm-cgo), const SYS_POLL ideal-int
+pkg syscall (linux-arm-cgo), const SYS_PPOLL ideal-int
+pkg syscall (linux-arm-cgo), const SYS_PRCTL ideal-int
+pkg syscall (linux-arm-cgo), const SYS_PREAD64 ideal-int
+pkg syscall (linux-arm-cgo), const SYS_PREADV ideal-int
+pkg syscall (linux-arm-cgo), const SYS_PRLIMIT64 ideal-int
+pkg syscall (linux-arm-cgo), const SYS_PROCESS_VM_READV ideal-int
+pkg syscall (linux-arm-cgo), const SYS_PROCESS_VM_WRITEV ideal-int
+pkg syscall (linux-arm-cgo), const SYS_PSELECT6 ideal-int
+pkg syscall (linux-arm-cgo), const SYS_PTRACE ideal-int
+pkg syscall (linux-arm-cgo), const SYS_PWRITE64 ideal-int
+pkg syscall (linux-arm-cgo), const SYS_PWRITEV ideal-int
+pkg syscall (linux-arm-cgo), const SYS_QUOTACTL ideal-int
+pkg syscall (linux-arm-cgo), const SYS_READ ideal-int
+pkg syscall (linux-arm-cgo), const SYS_READAHEAD ideal-int
+pkg syscall (linux-arm-cgo), const SYS_READDIR ideal-int
+pkg syscall (linux-arm-cgo), const SYS_READLINK ideal-int
+pkg syscall (linux-arm-cgo), const SYS_READLINKAT ideal-int
+pkg syscall (linux-arm-cgo), const SYS_READV ideal-int
+pkg syscall (linux-arm-cgo), const SYS_REBOOT ideal-int
+pkg syscall (linux-arm-cgo), const SYS_RECV ideal-int
+pkg syscall (linux-arm-cgo), const SYS_RECVFROM ideal-int
+pkg syscall (linux-arm-cgo), const SYS_RECVMMSG ideal-int
+pkg syscall (linux-arm-cgo), const SYS_RECVMSG ideal-int
+pkg syscall (linux-arm-cgo), const SYS_REMAP_FILE_PAGES ideal-int
+pkg syscall (linux-arm-cgo), const SYS_REMOVEXATTR ideal-int
+pkg syscall (linux-arm-cgo), const SYS_RENAME ideal-int
+pkg syscall (linux-arm-cgo), const SYS_RENAMEAT ideal-int
+pkg syscall (linux-arm-cgo), const SYS_REQUEST_KEY ideal-int
+pkg syscall (linux-arm-cgo), const SYS_RESTART_SYSCALL ideal-int
+pkg syscall (linux-arm-cgo), const SYS_RMDIR ideal-int
+pkg syscall (linux-arm-cgo), const SYS_RT_SIGACTION ideal-int
+pkg syscall (linux-arm-cgo), const SYS_RT_SIGPENDING ideal-int
+pkg syscall (linux-arm-cgo), const SYS_RT_SIGPROCMASK ideal-int
+pkg syscall (linux-arm-cgo), const SYS_RT_SIGQUEUEINFO ideal-int
+pkg syscall (linux-arm-cgo), const SYS_RT_SIGRETURN ideal-int
+pkg syscall (linux-arm-cgo), const SYS_RT_SIGSUSPEND ideal-int
+pkg syscall (linux-arm-cgo), const SYS_RT_SIGTIMEDWAIT ideal-int
+pkg syscall (linux-arm-cgo), const SYS_RT_TGSIGQUEUEINFO ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SCHED_GETAFFINITY ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SCHED_GETPARAM ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SCHED_GETSCHEDULER ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SCHED_GET_PRIORITY_MAX ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SCHED_GET_PRIORITY_MIN ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SCHED_RR_GET_INTERVAL ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SCHED_SETAFFINITY ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SCHED_SETPARAM ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SCHED_SETSCHEDULER ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SCHED_YIELD ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SELECT ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SEMCTL ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SEMGET ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SEMOP ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SEMTIMEDOP ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SEND ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SENDFILE ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SENDFILE64 ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SENDMMSG ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SENDMSG ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SENDTO ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SETDOMAINNAME ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SETFSGID ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SETFSGID32 ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SETFSUID ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SETFSUID32 ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SETGID ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SETGID32 ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SETGROUPS ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SETGROUPS32 ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SETHOSTNAME ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SETITIMER ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SETNS ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SETPGID ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SETPRIORITY ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SETREGID ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SETREGID32 ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SETRESGID ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SETRESGID32 ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SETRESUID ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SETRESUID32 ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SETREUID ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SETREUID32 ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SETRLIMIT ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SETSID ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SETSOCKOPT ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SETTIMEOFDAY ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SETUID ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SETUID32 ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SETXATTR ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SET_MEMPOLICY ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SET_ROBUST_LIST ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SET_TID_ADDRESS ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SHMAT ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SHMCTL ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SHMDT ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SHMGET ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SHUTDOWN ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SIGACTION ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SIGALTSTACK ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SIGNALFD ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SIGNALFD4 ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SIGPENDING ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SIGPROCMASK ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SIGRETURN ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SIGSUSPEND ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SOCKET ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SOCKETCALL ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SOCKETPAIR ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SPLICE ideal-int
+pkg syscall (linux-arm-cgo), const SYS_STAT ideal-int
+pkg syscall (linux-arm-cgo), const SYS_STAT64 ideal-int
+pkg syscall (linux-arm-cgo), const SYS_STATFS ideal-int
+pkg syscall (linux-arm-cgo), const SYS_STATFS64 ideal-int
+pkg syscall (linux-arm-cgo), const SYS_STIME ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SWAPOFF ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SWAPON ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SYMLINK ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SYMLINKAT ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SYNC ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SYNCFS ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SYSCALL ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SYSCALL_BASE ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SYSFS ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SYSINFO ideal-int
+pkg syscall (linux-arm-cgo), const SYS_SYSLOG ideal-int
+pkg syscall (linux-arm-cgo), const SYS_TEE ideal-int
+pkg syscall (linux-arm-cgo), const SYS_TGKILL ideal-int
+pkg syscall (linux-arm-cgo), const SYS_TIME ideal-int
+pkg syscall (linux-arm-cgo), const SYS_TIMERFD_CREATE ideal-int
+pkg syscall (linux-arm-cgo), const SYS_TIMERFD_GETTIME ideal-int
+pkg syscall (linux-arm-cgo), const SYS_TIMERFD_SETTIME ideal-int
+pkg syscall (linux-arm-cgo), const SYS_TIMER_CREATE ideal-int
+pkg syscall (linux-arm-cgo), const SYS_TIMER_DELETE ideal-int
+pkg syscall (linux-arm-cgo), const SYS_TIMER_GETOVERRUN ideal-int
+pkg syscall (linux-arm-cgo), const SYS_TIMER_GETTIME ideal-int
+pkg syscall (linux-arm-cgo), const SYS_TIMER_SETTIME ideal-int
+pkg syscall (linux-arm-cgo), const SYS_TIMES ideal-int
+pkg syscall (linux-arm-cgo), const SYS_TKILL ideal-int
+pkg syscall (linux-arm-cgo), const SYS_TRUNCATE ideal-int
+pkg syscall (linux-arm-cgo), const SYS_TRUNCATE64 ideal-int
+pkg syscall (linux-arm-cgo), const SYS_UGETRLIMIT ideal-int
+pkg syscall (linux-arm-cgo), const SYS_UMASK ideal-int
+pkg syscall (linux-arm-cgo), const SYS_UMOUNT ideal-int
+pkg syscall (linux-arm-cgo), const SYS_UMOUNT2 ideal-int
+pkg syscall (linux-arm-cgo), const SYS_UNAME ideal-int
+pkg syscall (linux-arm-cgo), const SYS_UNLINK ideal-int
+pkg syscall (linux-arm-cgo), const SYS_UNLINKAT ideal-int
+pkg syscall (linux-arm-cgo), const SYS_UNSHARE ideal-int
+pkg syscall (linux-arm-cgo), const SYS_USELIB ideal-int
+pkg syscall (linux-arm-cgo), const SYS_USTAT ideal-int
+pkg syscall (linux-arm-cgo), const SYS_UTIME ideal-int
+pkg syscall (linux-arm-cgo), const SYS_UTIMENSAT ideal-int
+pkg syscall (linux-arm-cgo), const SYS_UTIMES ideal-int
+pkg syscall (linux-arm-cgo), const SYS_VFORK ideal-int
+pkg syscall (linux-arm-cgo), const SYS_VHANGUP ideal-int
+pkg syscall (linux-arm-cgo), const SYS_VMSPLICE ideal-int
+pkg syscall (linux-arm-cgo), const SYS_VSERVER ideal-int
+pkg syscall (linux-arm-cgo), const SYS_WAIT4 ideal-int
+pkg syscall (linux-arm-cgo), const SYS_WAITID ideal-int
+pkg syscall (linux-arm-cgo), const SYS_WRITE ideal-int
+pkg syscall (linux-arm-cgo), const SYS_WRITEV ideal-int
+pkg syscall (linux-arm-cgo), const SYS__LLSEEK ideal-int
+pkg syscall (linux-arm-cgo), const SYS__NEWSELECT ideal-int
+pkg syscall (linux-arm-cgo), const SYS__SYSCTL ideal-int
+pkg syscall (linux-arm-cgo), const S_BLKSIZE ideal-int
+pkg syscall (linux-arm-cgo), const S_IEXEC ideal-int
+pkg syscall (linux-arm-cgo), const S_IREAD ideal-int
+pkg syscall (linux-arm-cgo), const S_IRGRP ideal-int
+pkg syscall (linux-arm-cgo), const S_IROTH ideal-int
+pkg syscall (linux-arm-cgo), const S_IRWXG ideal-int
+pkg syscall (linux-arm-cgo), const S_IRWXO ideal-int
+pkg syscall (linux-arm-cgo), const S_IRWXU ideal-int
+pkg syscall (linux-arm-cgo), const S_IWGRP ideal-int
+pkg syscall (linux-arm-cgo), const S_IWOTH ideal-int
+pkg syscall (linux-arm-cgo), const S_IWRITE ideal-int
+pkg syscall (linux-arm-cgo), const S_IXGRP ideal-int
+pkg syscall (linux-arm-cgo), const S_IXOTH ideal-int
+pkg syscall (linux-arm-cgo), const SizeofCmsghdr ideal-int
+pkg syscall (linux-arm-cgo), const SizeofICMPv6Filter = 32
+pkg syscall (linux-arm-cgo), const SizeofICMPv6Filter ideal-int
+pkg syscall (linux-arm-cgo), const SizeofIPMreq ideal-int
+pkg syscall (linux-arm-cgo), const SizeofIPMreqn ideal-int
+pkg syscall (linux-arm-cgo), const SizeofIPv6MTUInfo = 32
+pkg syscall (linux-arm-cgo), const SizeofIPv6MTUInfo ideal-int
+pkg syscall (linux-arm-cgo), const SizeofIPv6Mreq ideal-int
+pkg syscall (linux-arm-cgo), const SizeofIfAddrmsg ideal-int
+pkg syscall (linux-arm-cgo), const SizeofIfInfomsg ideal-int
+pkg syscall (linux-arm-cgo), const SizeofInet4Pktinfo ideal-int
+pkg syscall (linux-arm-cgo), const SizeofInet6Pktinfo ideal-int
+pkg syscall (linux-arm-cgo), const SizeofInotifyEvent ideal-int
+pkg syscall (linux-arm-cgo), const SizeofLinger ideal-int
+pkg syscall (linux-arm-cgo), const SizeofMsghdr ideal-int
+pkg syscall (linux-arm-cgo), const SizeofNlAttr ideal-int
+pkg syscall (linux-arm-cgo), const SizeofNlMsgerr ideal-int
+pkg syscall (linux-arm-cgo), const SizeofNlMsghdr ideal-int
+pkg syscall (linux-arm-cgo), const SizeofRtAttr ideal-int
+pkg syscall (linux-arm-cgo), const SizeofRtGenmsg ideal-int
+pkg syscall (linux-arm-cgo), const SizeofRtMsg ideal-int
+pkg syscall (linux-arm-cgo), const SizeofRtNexthop ideal-int
+pkg syscall (linux-arm-cgo), const SizeofSockFilter ideal-int
+pkg syscall (linux-arm-cgo), const SizeofSockFprog ideal-int
+pkg syscall (linux-arm-cgo), const SizeofSockaddrAny ideal-int
+pkg syscall (linux-arm-cgo), const SizeofSockaddrInet4 ideal-int
+pkg syscall (linux-arm-cgo), const SizeofSockaddrInet6 ideal-int
+pkg syscall (linux-arm-cgo), const SizeofSockaddrLinklayer ideal-int
+pkg syscall (linux-arm-cgo), const SizeofSockaddrNetlink ideal-int
+pkg syscall (linux-arm-cgo), const SizeofSockaddrUnix ideal-int
+pkg syscall (linux-arm-cgo), const SizeofTCPInfo ideal-int
+pkg syscall (linux-arm-cgo), const SizeofUcred ideal-int
+pkg syscall (linux-arm-cgo), const TCGETS ideal-int
+pkg syscall (linux-arm-cgo), const TCIFLUSH = 0
+pkg syscall (linux-arm-cgo), const TCIFLUSH ideal-int
+pkg syscall (linux-arm-cgo), const TCIOFLUSH = 2
+pkg syscall (linux-arm-cgo), const TCIOFLUSH ideal-int
+pkg syscall (linux-arm-cgo), const TCOFLUSH = 1
+pkg syscall (linux-arm-cgo), const TCOFLUSH ideal-int
+pkg syscall (linux-arm-cgo), const TCP_CONGESTION ideal-int
+pkg syscall (linux-arm-cgo), const TCP_CORK ideal-int
+pkg syscall (linux-arm-cgo), const TCP_DEFER_ACCEPT ideal-int
+pkg syscall (linux-arm-cgo), const TCP_INFO ideal-int
+pkg syscall (linux-arm-cgo), const TCP_KEEPCNT ideal-int
+pkg syscall (linux-arm-cgo), const TCP_KEEPIDLE ideal-int
+pkg syscall (linux-arm-cgo), const TCP_KEEPINTVL ideal-int
+pkg syscall (linux-arm-cgo), const TCP_LINGER2 ideal-int
+pkg syscall (linux-arm-cgo), const TCP_MAXSEG ideal-int
+pkg syscall (linux-arm-cgo), const TCP_MAXWIN ideal-int
+pkg syscall (linux-arm-cgo), const TCP_MAX_WINSHIFT ideal-int
+pkg syscall (linux-arm-cgo), const TCP_MD5SIG ideal-int
+pkg syscall (linux-arm-cgo), const TCP_MD5SIG_MAXKEYLEN ideal-int
+pkg syscall (linux-arm-cgo), const TCP_MSS ideal-int
+pkg syscall (linux-arm-cgo), const TCP_QUICKACK ideal-int
+pkg syscall (linux-arm-cgo), const TCP_SYNCNT ideal-int
+pkg syscall (linux-arm-cgo), const TCP_WINDOW_CLAMP ideal-int
+pkg syscall (linux-arm-cgo), const TCSETS ideal-int
+pkg syscall (linux-arm-cgo), const TIOCCBRK ideal-int
+pkg syscall (linux-arm-cgo), const TIOCCONS ideal-int
+pkg syscall (linux-arm-cgo), const TIOCEXCL ideal-int
+pkg syscall (linux-arm-cgo), const TIOCGDEV ideal-int
+pkg syscall (linux-arm-cgo), const TIOCGETD ideal-int
+pkg syscall (linux-arm-cgo), const TIOCGICOUNT ideal-int
+pkg syscall (linux-arm-cgo), const TIOCGLCKTRMIOS ideal-int
+pkg syscall (linux-arm-cgo), const TIOCGPGRP ideal-int
+pkg syscall (linux-arm-cgo), const TIOCGPTN ideal-int
+pkg syscall (linux-arm-cgo), const TIOCGRS485 ideal-int
+pkg syscall (linux-arm-cgo), const TIOCGSERIAL ideal-int
+pkg syscall (linux-arm-cgo), const TIOCGSID ideal-int
+pkg syscall (linux-arm-cgo), const TIOCGSOFTCAR ideal-int
+pkg syscall (linux-arm-cgo), const TIOCGWINSZ ideal-int
+pkg syscall (linux-arm-cgo), const TIOCINQ ideal-int
+pkg syscall (linux-arm-cgo), const TIOCLINUX ideal-int
+pkg syscall (linux-arm-cgo), const TIOCMBIC ideal-int
+pkg syscall (linux-arm-cgo), const TIOCMBIS ideal-int
+pkg syscall (linux-arm-cgo), const TIOCMGET ideal-int
+pkg syscall (linux-arm-cgo), const TIOCMIWAIT ideal-int
+pkg syscall (linux-arm-cgo), const TIOCMSET ideal-int
+pkg syscall (linux-arm-cgo), const TIOCM_CAR ideal-int
+pkg syscall (linux-arm-cgo), const TIOCM_CD ideal-int
+pkg syscall (linux-arm-cgo), const TIOCM_CTS ideal-int
+pkg syscall (linux-arm-cgo), const TIOCM_DSR ideal-int
+pkg syscall (linux-arm-cgo), const TIOCM_DTR ideal-int
+pkg syscall (linux-arm-cgo), const TIOCM_LE ideal-int
+pkg syscall (linux-arm-cgo), const TIOCM_RI ideal-int
+pkg syscall (linux-arm-cgo), const TIOCM_RNG ideal-int
+pkg syscall (linux-arm-cgo), const TIOCM_RTS ideal-int
+pkg syscall (linux-arm-cgo), const TIOCM_SR ideal-int
+pkg syscall (linux-arm-cgo), const TIOCM_ST ideal-int
+pkg syscall (linux-arm-cgo), const TIOCNOTTY ideal-int
+pkg syscall (linux-arm-cgo), const TIOCNXCL ideal-int
+pkg syscall (linux-arm-cgo), const TIOCOUTQ ideal-int
+pkg syscall (linux-arm-cgo), const TIOCPKT ideal-int
+pkg syscall (linux-arm-cgo), const TIOCPKT_DATA ideal-int
+pkg syscall (linux-arm-cgo), const TIOCPKT_DOSTOP ideal-int
+pkg syscall (linux-arm-cgo), const TIOCPKT_FLUSHREAD ideal-int
+pkg syscall (linux-arm-cgo), const TIOCPKT_FLUSHWRITE ideal-int
+pkg syscall (linux-arm-cgo), const TIOCPKT_IOCTL ideal-int
+pkg syscall (linux-arm-cgo), const TIOCPKT_NOSTOP ideal-int
+pkg syscall (linux-arm-cgo), const TIOCPKT_START ideal-int
+pkg syscall (linux-arm-cgo), const TIOCPKT_STOP ideal-int
+pkg syscall (linux-arm-cgo), const TIOCSBRK ideal-int
+pkg syscall (linux-arm-cgo), const TIOCSCTTY ideal-int
+pkg syscall (linux-arm-cgo), const TIOCSERCONFIG ideal-int
+pkg syscall (linux-arm-cgo), const TIOCSERGETLSR ideal-int
+pkg syscall (linux-arm-cgo), const TIOCSERGETMULTI ideal-int
+pkg syscall (linux-arm-cgo), const TIOCSERGSTRUCT ideal-int
+pkg syscall (linux-arm-cgo), const TIOCSERGWILD ideal-int
+pkg syscall (linux-arm-cgo), const TIOCSERSETMULTI ideal-int
+pkg syscall (linux-arm-cgo), const TIOCSERSWILD ideal-int
+pkg syscall (linux-arm-cgo), const TIOCSER_TEMT ideal-int
+pkg syscall (linux-arm-cgo), const TIOCSETD ideal-int
+pkg syscall (linux-arm-cgo), const TIOCSIG ideal-int
+pkg syscall (linux-arm-cgo), const TIOCSLCKTRMIOS ideal-int
+pkg syscall (linux-arm-cgo), const TIOCSPGRP ideal-int
+pkg syscall (linux-arm-cgo), const TIOCSPTLCK ideal-int
+pkg syscall (linux-arm-cgo), const TIOCSRS485 ideal-int
+pkg syscall (linux-arm-cgo), const TIOCSSERIAL ideal-int
+pkg syscall (linux-arm-cgo), const TIOCSSOFTCAR ideal-int
+pkg syscall (linux-arm-cgo), const TIOCSTI ideal-int
+pkg syscall (linux-arm-cgo), const TIOCSWINSZ ideal-int
+pkg syscall (linux-arm-cgo), const TIOCVHANGUP ideal-int
+pkg syscall (linux-arm-cgo), const TOSTOP ideal-int
+pkg syscall (linux-arm-cgo), const TUNATTACHFILTER ideal-int
+pkg syscall (linux-arm-cgo), const TUNDETACHFILTER ideal-int
+pkg syscall (linux-arm-cgo), const TUNGETFEATURES ideal-int
+pkg syscall (linux-arm-cgo), const TUNGETIFF ideal-int
+pkg syscall (linux-arm-cgo), const TUNGETSNDBUF ideal-int
+pkg syscall (linux-arm-cgo), const TUNGETVNETHDRSZ ideal-int
+pkg syscall (linux-arm-cgo), const TUNSETDEBUG ideal-int
+pkg syscall (linux-arm-cgo), const TUNSETGROUP ideal-int
+pkg syscall (linux-arm-cgo), const TUNSETIFF ideal-int
+pkg syscall (linux-arm-cgo), const TUNSETLINK ideal-int
+pkg syscall (linux-arm-cgo), const TUNSETNOCSUM ideal-int
+pkg syscall (linux-arm-cgo), const TUNSETOFFLOAD ideal-int
+pkg syscall (linux-arm-cgo), const TUNSETOWNER ideal-int
+pkg syscall (linux-arm-cgo), const TUNSETPERSIST ideal-int
+pkg syscall (linux-arm-cgo), const TUNSETSNDBUF ideal-int
+pkg syscall (linux-arm-cgo), const TUNSETTXFILTER ideal-int
+pkg syscall (linux-arm-cgo), const TUNSETVNETHDRSZ ideal-int
+pkg syscall (linux-arm-cgo), const VDISCARD ideal-int
+pkg syscall (linux-arm-cgo), const VEOF ideal-int
+pkg syscall (linux-arm-cgo), const VEOL ideal-int
+pkg syscall (linux-arm-cgo), const VEOL2 ideal-int
+pkg syscall (linux-arm-cgo), const VERASE ideal-int
+pkg syscall (linux-arm-cgo), const VINTR ideal-int
+pkg syscall (linux-arm-cgo), const VKILL ideal-int
+pkg syscall (linux-arm-cgo), const VLNEXT ideal-int
+pkg syscall (linux-arm-cgo), const VMIN ideal-int
+pkg syscall (linux-arm-cgo), const VQUIT ideal-int
+pkg syscall (linux-arm-cgo), const VREPRINT ideal-int
+pkg syscall (linux-arm-cgo), const VSTART ideal-int
+pkg syscall (linux-arm-cgo), const VSTOP ideal-int
+pkg syscall (linux-arm-cgo), const VSUSP ideal-int
+pkg syscall (linux-arm-cgo), const VSWTC ideal-int
+pkg syscall (linux-arm-cgo), const VTIME ideal-int
+pkg syscall (linux-arm-cgo), const VWERASE ideal-int
+pkg syscall (linux-arm-cgo), const WALL ideal-int
+pkg syscall (linux-arm-cgo), const WCLONE ideal-int
+pkg syscall (linux-arm-cgo), const WCONTINUED ideal-int
+pkg syscall (linux-arm-cgo), const WEXITED ideal-int
+pkg syscall (linux-arm-cgo), const WNOHANG ideal-int
+pkg syscall (linux-arm-cgo), const WNOTHREAD ideal-int
+pkg syscall (linux-arm-cgo), const WNOWAIT ideal-int
+pkg syscall (linux-arm-cgo), const WORDSIZE ideal-int
+pkg syscall (linux-arm-cgo), const WSTOPPED ideal-int
+pkg syscall (linux-arm-cgo), const WUNTRACED ideal-int
+pkg syscall (linux-arm-cgo), const XCASE ideal-int
+pkg syscall (linux-arm-cgo), func Accept(int) (int, Sockaddr, error)
+pkg syscall (linux-arm-cgo), func Accept4(int, int) (int, Sockaddr, error)
+pkg syscall (linux-arm-cgo), func Access(string, uint32) error
+pkg syscall (linux-arm-cgo), func Acct(string) error
+pkg syscall (linux-arm-cgo), func Adjtimex(*Timex) (int, error)
+pkg syscall (linux-arm-cgo), func AttachLsf(int, []SockFilter) error
+pkg syscall (linux-arm-cgo), func Bind(int, Sockaddr) error
+pkg syscall (linux-arm-cgo), func BindToDevice(int, string) error
+pkg syscall (linux-arm-cgo), func Chroot(string) error
+pkg syscall (linux-arm-cgo), func Close(int) error
+pkg syscall (linux-arm-cgo), func CloseOnExec(int)
+pkg syscall (linux-arm-cgo), func CmsgLen(int) int
+pkg syscall (linux-arm-cgo), func CmsgSpace(int) int
+pkg syscall (linux-arm-cgo), func Connect(int, Sockaddr) error
+pkg syscall (linux-arm-cgo), func Creat(string, uint32) (int, error)
+pkg syscall (linux-arm-cgo), func DetachLsf(int) error
+pkg syscall (linux-arm-cgo), func Dup(int) (int, error)
+pkg syscall (linux-arm-cgo), func Dup2(int, int) error
+pkg syscall (linux-arm-cgo), func Dup3(int, int, int) error
+pkg syscall (linux-arm-cgo), func EpollCreate(int) (int, error)
+pkg syscall (linux-arm-cgo), func EpollCreate1(int) (int, error)
+pkg syscall (linux-arm-cgo), func EpollCtl(int, int, int, *EpollEvent) error
+pkg syscall (linux-arm-cgo), func EpollWait(int, []EpollEvent, int) (int, error)
+pkg syscall (linux-arm-cgo), func Faccessat(int, string, uint32, int) error
+pkg syscall (linux-arm-cgo), func Fallocate(int, uint32, int64, int64) error
+pkg syscall (linux-arm-cgo), func Fchdir(int) error
+pkg syscall (linux-arm-cgo), func Fchmod(int, uint32) error
+pkg syscall (linux-arm-cgo), func Fchmodat(int, string, uint32, int) error
+pkg syscall (linux-arm-cgo), func Fchown(int, int, int) error
+pkg syscall (linux-arm-cgo), func Fchownat(int, string, int, int, int) error
+pkg syscall (linux-arm-cgo), func Fdatasync(int) error
+pkg syscall (linux-arm-cgo), func Flock(int, int) error
+pkg syscall (linux-arm-cgo), func ForkExec(string, []string, *ProcAttr) (int, error)
+pkg syscall (linux-arm-cgo), func Fstat(int, *Stat_t) error
+pkg syscall (linux-arm-cgo), func Fstatfs(int, *Statfs_t) error
+pkg syscall (linux-arm-cgo), func Fsync(int) error
+pkg syscall (linux-arm-cgo), func Ftruncate(int, int64) error
+pkg syscall (linux-arm-cgo), func Futimes(int, []Timeval) error
+pkg syscall (linux-arm-cgo), func Futimesat(int, string, []Timeval) error
+pkg syscall (linux-arm-cgo), func Getcwd([]uint8) (int, error)
+pkg syscall (linux-arm-cgo), func Getdents(int, []uint8) (int, error)
+pkg syscall (linux-arm-cgo), func Getpeername(int) (Sockaddr, error)
+pkg syscall (linux-arm-cgo), func Getpgid(int) (int, error)
+pkg syscall (linux-arm-cgo), func Getpgrp() int
+pkg syscall (linux-arm-cgo), func Getpriority(int, int) (int, error)
+pkg syscall (linux-arm-cgo), func Getrlimit(int, *Rlimit) error
+pkg syscall (linux-arm-cgo), func Getrusage(int, *Rusage) error
+pkg syscall (linux-arm-cgo), func Getsockname(int) (Sockaddr, error)
+pkg syscall (linux-arm-cgo), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
+pkg syscall (linux-arm-cgo), func GetsockoptIPMreq(int, int, int) (*IPMreq, error)
+pkg syscall (linux-arm-cgo), func GetsockoptIPMreqn(int, int, int) (*IPMreqn, error)
+pkg syscall (linux-arm-cgo), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
+pkg syscall (linux-arm-cgo), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error)
+pkg syscall (linux-arm-cgo), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error)
+pkg syscall (linux-arm-cgo), func GetsockoptInt(int, int, int) (int, error)
+pkg syscall (linux-arm-cgo), func GetsockoptUcred(int, int, int) (*Ucred, error)
+pkg syscall (linux-arm-cgo), func Gettid() int
+pkg syscall (linux-arm-cgo), func Getxattr(string, string, []uint8) (int, error)
+pkg syscall (linux-arm-cgo), func InotifyAddWatch(int, string, uint32) (int, error)
+pkg syscall (linux-arm-cgo), func InotifyInit() (int, error)
+pkg syscall (linux-arm-cgo), func InotifyInit1(int) (int, error)
+pkg syscall (linux-arm-cgo), func InotifyRmWatch(int, uint32) (int, error)
+pkg syscall (linux-arm-cgo), func Kill(int, Signal) error
+pkg syscall (linux-arm-cgo), func Klogctl(int, []uint8) (int, error)
+pkg syscall (linux-arm-cgo), func Listen(int, int) error
+pkg syscall (linux-arm-cgo), func Listxattr(string, []uint8) (int, error)
+pkg syscall (linux-arm-cgo), func LsfJump(int, int, int, int) *SockFilter
+pkg syscall (linux-arm-cgo), func LsfSocket(int, int) (int, error)
+pkg syscall (linux-arm-cgo), func LsfStmt(int, int) *SockFilter
+pkg syscall (linux-arm-cgo), func Lstat(string, *Stat_t) error
+pkg syscall (linux-arm-cgo), func Madvise([]uint8, int) error
+pkg syscall (linux-arm-cgo), func Mkdirat(int, string, uint32) error
+pkg syscall (linux-arm-cgo), func Mkfifo(string, uint32) error
+pkg syscall (linux-arm-cgo), func Mknod(string, uint32, int) error
+pkg syscall (linux-arm-cgo), func Mknodat(int, string, uint32, int) error
+pkg syscall (linux-arm-cgo), func Mlock([]uint8) error
+pkg syscall (linux-arm-cgo), func Mlockall(int) error
+pkg syscall (linux-arm-cgo), func Mmap(int, int64, int, int, int) ([]uint8, error)
+pkg syscall (linux-arm-cgo), func Mount(string, string, string, uintptr, string) error
+pkg syscall (linux-arm-cgo), func Mprotect([]uint8, int) error
+pkg syscall (linux-arm-cgo), func Munlock([]uint8) error
+pkg syscall (linux-arm-cgo), func Munlockall() error
+pkg syscall (linux-arm-cgo), func Munmap([]uint8) error
+pkg syscall (linux-arm-cgo), func Nanosleep(*Timespec, *Timespec) error
+pkg syscall (linux-arm-cgo), func NetlinkRIB(int, int) ([]uint8, error)
+pkg syscall (linux-arm-cgo), func Open(string, int, uint32) (int, error)
+pkg syscall (linux-arm-cgo), func Openat(int, string, int, uint32) (int, error)
+pkg syscall (linux-arm-cgo), func ParseDirent([]uint8, int, []string) (int, int, []string)
+pkg syscall (linux-arm-cgo), func ParseNetlinkMessage([]uint8) ([]NetlinkMessage, error)
+pkg syscall (linux-arm-cgo), func ParseNetlinkRouteAttr(*NetlinkMessage) ([]NetlinkRouteAttr, error)
+pkg syscall (linux-arm-cgo), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error)
+pkg syscall (linux-arm-cgo), func ParseUnixCredentials(*SocketControlMessage) (*Ucred, error)
+pkg syscall (linux-arm-cgo), func ParseUnixRights(*SocketControlMessage) ([]int, error)
+pkg syscall (linux-arm-cgo), func Pause() error
+pkg syscall (linux-arm-cgo), func Pipe([]int) error
+pkg syscall (linux-arm-cgo), func Pipe2([]int, int) error
+pkg syscall (linux-arm-cgo), func PivotRoot(string, string) error
+pkg syscall (linux-arm-cgo), func Pread(int, []uint8, int64) (int, error)
+pkg syscall (linux-arm-cgo), func PtraceAttach(int) error
+pkg syscall (linux-arm-cgo), func PtraceCont(int, int) error
+pkg syscall (linux-arm-cgo), func PtraceDetach(int) error
+pkg syscall (linux-arm-cgo), func PtraceGetEventMsg(int) (uint, error)
+pkg syscall (linux-arm-cgo), func PtraceGetRegs(int, *PtraceRegs) error
+pkg syscall (linux-arm-cgo), func PtracePeekData(int, uintptr, []uint8) (int, error)
+pkg syscall (linux-arm-cgo), func PtracePeekText(int, uintptr, []uint8) (int, error)
+pkg syscall (linux-arm-cgo), func PtracePokeData(int, uintptr, []uint8) (int, error)
+pkg syscall (linux-arm-cgo), func PtracePokeText(int, uintptr, []uint8) (int, error)
+pkg syscall (linux-arm-cgo), func PtraceSetOptions(int, int) error
+pkg syscall (linux-arm-cgo), func PtraceSetRegs(int, *PtraceRegs) error
+pkg syscall (linux-arm-cgo), func PtraceSingleStep(int) error
+pkg syscall (linux-arm-cgo), func PtraceSyscall(int, int) error
+pkg syscall (linux-arm-cgo), func Pwrite(int, []uint8, int64) (int, error)
+pkg syscall (linux-arm-cgo), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (linux-arm-cgo), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (linux-arm-cgo), func Read(int, []uint8) (int, error)
+pkg syscall (linux-arm-cgo), func ReadDirent(int, []uint8) (int, error)
+pkg syscall (linux-arm-cgo), func Reboot(int) error
+pkg syscall (linux-arm-cgo), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
+pkg syscall (linux-arm-cgo), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
+pkg syscall (linux-arm-cgo), func Removexattr(string, string) error
+pkg syscall (linux-arm-cgo), func Renameat(int, string, int, string) error
+pkg syscall (linux-arm-cgo), func Seek(int, int64, int) (int64, error)
+pkg syscall (linux-arm-cgo), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) (int, error)
+pkg syscall (linux-arm-cgo), func Sendfile(int, int, *int64, int) (int, error)
+pkg syscall (linux-arm-cgo), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
+pkg syscall (linux-arm-cgo), func Sendto(int, []uint8, int, Sockaddr) error
+pkg syscall (linux-arm-cgo), func SetLsfPromisc(string, bool) error
+pkg syscall (linux-arm-cgo), func SetNonblock(int, bool) error
+pkg syscall (linux-arm-cgo), func Setdomainname([]uint8) error
+pkg syscall (linux-arm-cgo), func Setfsgid(int) error
+pkg syscall (linux-arm-cgo), func Setfsuid(int) error
+pkg syscall (linux-arm-cgo), func Setgid(int) error
+pkg syscall (linux-arm-cgo), func Setgroups([]int) error
+pkg syscall (linux-arm-cgo), func Sethostname([]uint8) error
+pkg syscall (linux-arm-cgo), func Setpgid(int, int) error
+pkg syscall (linux-arm-cgo), func Setpriority(int, int, int) error
+pkg syscall (linux-arm-cgo), func Setregid(int, int) error
+pkg syscall (linux-arm-cgo), func Setresgid(int, int, int) error
+pkg syscall (linux-arm-cgo), func Setresuid(int, int, int) error
+pkg syscall (linux-arm-cgo), func Setreuid(int, int) error
+pkg syscall (linux-arm-cgo), func Setrlimit(int, *Rlimit) error
+pkg syscall (linux-arm-cgo), func Setsid() (int, error)
+pkg syscall (linux-arm-cgo), func SetsockoptByte(int, int, int, uint8) error
+pkg syscall (linux-arm-cgo), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
+pkg syscall (linux-arm-cgo), func SetsockoptIPMreq(int, int, int, *IPMreq) error
+pkg syscall (linux-arm-cgo), func SetsockoptIPMreqn(int, int, int, *IPMreqn) error
+pkg syscall (linux-arm-cgo), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error
+pkg syscall (linux-arm-cgo), func SetsockoptInet4Addr(int, int, int, [4]uint8) error
+pkg syscall (linux-arm-cgo), func SetsockoptInt(int, int, int, int) error
+pkg syscall (linux-arm-cgo), func SetsockoptLinger(int, int, int, *Linger) error
+pkg syscall (linux-arm-cgo), func SetsockoptString(int, int, int, string) error
+pkg syscall (linux-arm-cgo), func SetsockoptTimeval(int, int, int, *Timeval) error
+pkg syscall (linux-arm-cgo), func Settimeofday(*Timeval) error
+pkg syscall (linux-arm-cgo), func Setuid(int) error
+pkg syscall (linux-arm-cgo), func Setxattr(string, string, []uint8, int) error
+pkg syscall (linux-arm-cgo), func Shutdown(int, int) error
+pkg syscall (linux-arm-cgo), func SlicePtrFromStrings([]string) ([]*uint8, error)
+pkg syscall (linux-arm-cgo), func Socket(int, int, int) (int, error)
+pkg syscall (linux-arm-cgo), func Socketpair(int, int, int) ([2]int, error)
+pkg syscall (linux-arm-cgo), func Splice(int, *int64, int, *int64, int, int) (int, error)
+pkg syscall (linux-arm-cgo), func Stat(string, *Stat_t) error
+pkg syscall (linux-arm-cgo), func Statfs(string, *Statfs_t) error
+pkg syscall (linux-arm-cgo), func StringSlicePtr([]string) []*uint8
+pkg syscall (linux-arm-cgo), func Sync()
+pkg syscall (linux-arm-cgo), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (linux-arm-cgo), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (linux-arm-cgo), func Sysinfo(*Sysinfo_t) error
+pkg syscall (linux-arm-cgo), func Tee(int, int, int, int) (int64, error)
+pkg syscall (linux-arm-cgo), func Tgkill(int, int, Signal) error
+pkg syscall (linux-arm-cgo), func Time(*Time_t) (Time_t, error)
+pkg syscall (linux-arm-cgo), func Times(*Tms) (uintptr, error)
+pkg syscall (linux-arm-cgo), func Truncate(string, int64) error
+pkg syscall (linux-arm-cgo), func Umask(int) int
+pkg syscall (linux-arm-cgo), func Uname(*Utsname) error
+pkg syscall (linux-arm-cgo), func UnixCredentials(*Ucred) []uint8
+pkg syscall (linux-arm-cgo), func UnixRights(...int) []uint8
+pkg syscall (linux-arm-cgo), func Unlinkat(int, string) error
+pkg syscall (linux-arm-cgo), func Unmount(string, int) error
+pkg syscall (linux-arm-cgo), func Unshare(int) error
+pkg syscall (linux-arm-cgo), func Ustat(int, *Ustat_t) error
+pkg syscall (linux-arm-cgo), func Utime(string, *Utimbuf) error
+pkg syscall (linux-arm-cgo), func Wait4(int, *WaitStatus, int, *Rusage) (int, error)
+pkg syscall (linux-arm-cgo), func Write(int, []uint8) (int, error)
+pkg syscall (linux-arm-cgo), method (*Cmsghdr) SetLen(int)
+pkg syscall (linux-arm-cgo), method (*Iovec) SetLen(int)
+pkg syscall (linux-arm-cgo), method (*Msghdr) SetControllen(int)
+pkg syscall (linux-arm-cgo), method (*PtraceRegs) PC() uint64
+pkg syscall (linux-arm-cgo), method (*PtraceRegs) SetPC(uint64)
+pkg syscall (linux-arm-cgo), type Cmsghdr struct
+pkg syscall (linux-arm-cgo), type Cmsghdr struct, Len uint32
+pkg syscall (linux-arm-cgo), type Cmsghdr struct, Level int32
+pkg syscall (linux-arm-cgo), type Cmsghdr struct, Type int32
+pkg syscall (linux-arm-cgo), type Cmsghdr struct, X__cmsg_data [0]uint8
+pkg syscall (linux-arm-cgo), type Credential struct
+pkg syscall (linux-arm-cgo), type Credential struct, Gid uint32
+pkg syscall (linux-arm-cgo), type Credential struct, Groups []uint32
+pkg syscall (linux-arm-cgo), type Credential struct, Uid uint32
+pkg syscall (linux-arm-cgo), type Dirent struct
+pkg syscall (linux-arm-cgo), type Dirent struct, Ino uint64
+pkg syscall (linux-arm-cgo), type Dirent struct, Name [256]uint8
+pkg syscall (linux-arm-cgo), type Dirent struct, Off int64
+pkg syscall (linux-arm-cgo), type Dirent struct, Pad_cgo_0 [5]uint8
+pkg syscall (linux-arm-cgo), type Dirent struct, Reclen uint16
+pkg syscall (linux-arm-cgo), type Dirent struct, Type uint8
+pkg syscall (linux-arm-cgo), type EpollEvent struct
+pkg syscall (linux-arm-cgo), type EpollEvent struct, Events uint32
+pkg syscall (linux-arm-cgo), type EpollEvent struct, Fd int32
+pkg syscall (linux-arm-cgo), type EpollEvent struct, Pad int32
+pkg syscall (linux-arm-cgo), type EpollEvent struct, PadFd int32
+pkg syscall (linux-arm-cgo), type FdSet struct
+pkg syscall (linux-arm-cgo), type FdSet struct, Bits [32]int32
+pkg syscall (linux-arm-cgo), type Fsid struct
+pkg syscall (linux-arm-cgo), type Fsid struct, X__val [2]int32
+pkg syscall (linux-arm-cgo), type ICMPv6Filter struct
+pkg syscall (linux-arm-cgo), type ICMPv6Filter struct, Data [8]uint32
+pkg syscall (linux-arm-cgo), type IPMreqn struct
+pkg syscall (linux-arm-cgo), type IPMreqn struct, Address [4]uint8
+pkg syscall (linux-arm-cgo), type IPMreqn struct, Ifindex int32
+pkg syscall (linux-arm-cgo), type IPMreqn struct, Multiaddr [4]uint8
+pkg syscall (linux-arm-cgo), type IPv6MTUInfo struct
+pkg syscall (linux-arm-cgo), type IPv6MTUInfo struct, Addr RawSockaddrInet6
+pkg syscall (linux-arm-cgo), type IPv6MTUInfo struct, Mtu uint32
+pkg syscall (linux-arm-cgo), type IfAddrmsg struct
+pkg syscall (linux-arm-cgo), type IfAddrmsg struct, Family uint8
+pkg syscall (linux-arm-cgo), type IfAddrmsg struct, Flags uint8
+pkg syscall (linux-arm-cgo), type IfAddrmsg struct, Index uint32
+pkg syscall (linux-arm-cgo), type IfAddrmsg struct, Prefixlen uint8
+pkg syscall (linux-arm-cgo), type IfAddrmsg struct, Scope uint8
+pkg syscall (linux-arm-cgo), type IfInfomsg struct
+pkg syscall (linux-arm-cgo), type IfInfomsg struct, Change uint32
+pkg syscall (linux-arm-cgo), type IfInfomsg struct, Family uint8
+pkg syscall (linux-arm-cgo), type IfInfomsg struct, Flags uint32
+pkg syscall (linux-arm-cgo), type IfInfomsg struct, Index int32
+pkg syscall (linux-arm-cgo), type IfInfomsg struct, Type uint16
+pkg syscall (linux-arm-cgo), type IfInfomsg struct, X__ifi_pad uint8
+pkg syscall (linux-arm-cgo), type Inet4Pktinfo struct
+pkg syscall (linux-arm-cgo), type Inet4Pktinfo struct, Addr [4]uint8
+pkg syscall (linux-arm-cgo), type Inet4Pktinfo struct, Ifindex int32
+pkg syscall (linux-arm-cgo), type Inet4Pktinfo struct, Spec_dst [4]uint8
+pkg syscall (linux-arm-cgo), type Inet6Pktinfo struct
+pkg syscall (linux-arm-cgo), type Inet6Pktinfo struct, Addr [16]uint8
+pkg syscall (linux-arm-cgo), type Inet6Pktinfo struct, Ifindex uint32
+pkg syscall (linux-arm-cgo), type InotifyEvent struct
+pkg syscall (linux-arm-cgo), type InotifyEvent struct, Cookie uint32
+pkg syscall (linux-arm-cgo), type InotifyEvent struct, Len uint32
+pkg syscall (linux-arm-cgo), type InotifyEvent struct, Mask uint32
+pkg syscall (linux-arm-cgo), type InotifyEvent struct, Name [0]uint8
+pkg syscall (linux-arm-cgo), type InotifyEvent struct, Wd int32
+pkg syscall (linux-arm-cgo), type Iovec struct
+pkg syscall (linux-arm-cgo), type Iovec struct, Base *uint8
+pkg syscall (linux-arm-cgo), type Iovec struct, Len uint32
+pkg syscall (linux-arm-cgo), type Msghdr struct
+pkg syscall (linux-arm-cgo), type Msghdr struct, Control *uint8
+pkg syscall (linux-arm-cgo), type Msghdr struct, Controllen uint32
+pkg syscall (linux-arm-cgo), type Msghdr struct, Flags int32
+pkg syscall (linux-arm-cgo), type Msghdr struct, Iov *Iovec
+pkg syscall (linux-arm-cgo), type Msghdr struct, Iovlen uint32
+pkg syscall (linux-arm-cgo), type Msghdr struct, Name *uint8
+pkg syscall (linux-arm-cgo), type Msghdr struct, Namelen uint32
+pkg syscall (linux-arm-cgo), type NetlinkMessage struct
+pkg syscall (linux-arm-cgo), type NetlinkMessage struct, Data []uint8
+pkg syscall (linux-arm-cgo), type NetlinkMessage struct, Header NlMsghdr
+pkg syscall (linux-arm-cgo), type NetlinkRouteAttr struct
+pkg syscall (linux-arm-cgo), type NetlinkRouteAttr struct, Attr RtAttr
+pkg syscall (linux-arm-cgo), type NetlinkRouteAttr struct, Value []uint8
+pkg syscall (linux-arm-cgo), type NetlinkRouteRequest struct
+pkg syscall (linux-arm-cgo), type NetlinkRouteRequest struct, Data RtGenmsg
+pkg syscall (linux-arm-cgo), type NetlinkRouteRequest struct, Header NlMsghdr
+pkg syscall (linux-arm-cgo), type NlAttr struct
+pkg syscall (linux-arm-cgo), type NlAttr struct, Len uint16
+pkg syscall (linux-arm-cgo), type NlAttr struct, Type uint16
+pkg syscall (linux-arm-cgo), type NlMsgerr struct
+pkg syscall (linux-arm-cgo), type NlMsgerr struct, Error int32
+pkg syscall (linux-arm-cgo), type NlMsgerr struct, Msg NlMsghdr
+pkg syscall (linux-arm-cgo), type NlMsghdr struct
+pkg syscall (linux-arm-cgo), type NlMsghdr struct, Flags uint16
+pkg syscall (linux-arm-cgo), type NlMsghdr struct, Len uint32
+pkg syscall (linux-arm-cgo), type NlMsghdr struct, Pid uint32
+pkg syscall (linux-arm-cgo), type NlMsghdr struct, Seq uint32
+pkg syscall (linux-arm-cgo), type NlMsghdr struct, Type uint16
+pkg syscall (linux-arm-cgo), type PtraceRegs struct
+pkg syscall (linux-arm-cgo), type PtraceRegs struct, Uregs [18]uint32
+pkg syscall (linux-arm-cgo), type RawSockaddr struct, Data [14]uint8
+pkg syscall (linux-arm-cgo), type RawSockaddr struct, Family uint16
+pkg syscall (linux-arm-cgo), type RawSockaddrAny struct, Pad [96]uint8
+pkg syscall (linux-arm-cgo), type RawSockaddrInet4 struct, Family uint16
+pkg syscall (linux-arm-cgo), type RawSockaddrInet4 struct, Zero [8]uint8
+pkg syscall (linux-arm-cgo), type RawSockaddrInet6 struct, Family uint16
+pkg syscall (linux-arm-cgo), type RawSockaddrLinklayer struct
+pkg syscall (linux-arm-cgo), type RawSockaddrLinklayer struct, Addr [8]uint8
+pkg syscall (linux-arm-cgo), type RawSockaddrLinklayer struct, Family uint16
+pkg syscall (linux-arm-cgo), type RawSockaddrLinklayer struct, Halen uint8
+pkg syscall (linux-arm-cgo), type RawSockaddrLinklayer struct, Hatype uint16
+pkg syscall (linux-arm-cgo), type RawSockaddrLinklayer struct, Ifindex int32
+pkg syscall (linux-arm-cgo), type RawSockaddrLinklayer struct, Pkttype uint8
+pkg syscall (linux-arm-cgo), type RawSockaddrLinklayer struct, Protocol uint16
+pkg syscall (linux-arm-cgo), type RawSockaddrNetlink struct
+pkg syscall (linux-arm-cgo), type RawSockaddrNetlink struct, Family uint16
+pkg syscall (linux-arm-cgo), type RawSockaddrNetlink struct, Groups uint32
+pkg syscall (linux-arm-cgo), type RawSockaddrNetlink struct, Pad uint16
+pkg syscall (linux-arm-cgo), type RawSockaddrNetlink struct, Pid uint32
+pkg syscall (linux-arm-cgo), type RawSockaddrUnix struct
+pkg syscall (linux-arm-cgo), type RawSockaddrUnix struct, Family uint16
+pkg syscall (linux-arm-cgo), type RawSockaddrUnix struct, Path [108]int8
+pkg syscall (linux-arm-cgo), type Rlimit struct
+pkg syscall (linux-arm-cgo), type Rlimit struct, Cur uint64
+pkg syscall (linux-arm-cgo), type Rlimit struct, Max uint64
+pkg syscall (linux-arm-cgo), type RtAttr struct
+pkg syscall (linux-arm-cgo), type RtAttr struct, Len uint16
+pkg syscall (linux-arm-cgo), type RtAttr struct, Type uint16
+pkg syscall (linux-arm-cgo), type RtGenmsg struct
+pkg syscall (linux-arm-cgo), type RtGenmsg struct, Family uint8
+pkg syscall (linux-arm-cgo), type RtMsg struct
+pkg syscall (linux-arm-cgo), type RtMsg struct, Dst_len uint8
+pkg syscall (linux-arm-cgo), type RtMsg struct, Family uint8
+pkg syscall (linux-arm-cgo), type RtMsg struct, Flags uint32
+pkg syscall (linux-arm-cgo), type RtMsg struct, Protocol uint8
+pkg syscall (linux-arm-cgo), type RtMsg struct, Scope uint8
+pkg syscall (linux-arm-cgo), type RtMsg struct, Src_len uint8
+pkg syscall (linux-arm-cgo), type RtMsg struct, Table uint8
+pkg syscall (linux-arm-cgo), type RtMsg struct, Tos uint8
+pkg syscall (linux-arm-cgo), type RtMsg struct, Type uint8
+pkg syscall (linux-arm-cgo), type RtNexthop struct
+pkg syscall (linux-arm-cgo), type RtNexthop struct, Flags uint8
+pkg syscall (linux-arm-cgo), type RtNexthop struct, Hops uint8
+pkg syscall (linux-arm-cgo), type RtNexthop struct, Ifindex int32
+pkg syscall (linux-arm-cgo), type RtNexthop struct, Len uint16
+pkg syscall (linux-arm-cgo), type Rusage struct, Idrss int32
+pkg syscall (linux-arm-cgo), type Rusage struct, Inblock int32
+pkg syscall (linux-arm-cgo), type Rusage struct, Isrss int32
+pkg syscall (linux-arm-cgo), type Rusage struct, Ixrss int32
+pkg syscall (linux-arm-cgo), type Rusage struct, Majflt int32
+pkg syscall (linux-arm-cgo), type Rusage struct, Maxrss int32
+pkg syscall (linux-arm-cgo), type Rusage struct, Minflt int32
+pkg syscall (linux-arm-cgo), type Rusage struct, Msgrcv int32
+pkg syscall (linux-arm-cgo), type Rusage struct, Msgsnd int32
+pkg syscall (linux-arm-cgo), type Rusage struct, Nivcsw int32
+pkg syscall (linux-arm-cgo), type Rusage struct, Nsignals int32
+pkg syscall (linux-arm-cgo), type Rusage struct, Nswap int32
+pkg syscall (linux-arm-cgo), type Rusage struct, Nvcsw int32
+pkg syscall (linux-arm-cgo), type Rusage struct, Oublock int32
+pkg syscall (linux-arm-cgo), type Rusage struct, Stime Timeval
+pkg syscall (linux-arm-cgo), type Rusage struct, Utime Timeval
+pkg syscall (linux-arm-cgo), type SockFilter struct
+pkg syscall (linux-arm-cgo), type SockFilter struct, Code uint16
+pkg syscall (linux-arm-cgo), type SockFilter struct, Jf uint8
+pkg syscall (linux-arm-cgo), type SockFilter struct, Jt uint8
+pkg syscall (linux-arm-cgo), type SockFilter struct, K uint32
+pkg syscall (linux-arm-cgo), type SockFprog struct
+pkg syscall (linux-arm-cgo), type SockFprog struct, Filter *SockFilter
+pkg syscall (linux-arm-cgo), type SockFprog struct, Len uint16
+pkg syscall (linux-arm-cgo), type SockFprog struct, Pad_cgo_0 [2]uint8
+pkg syscall (linux-arm-cgo), type SockaddrLinklayer struct
+pkg syscall (linux-arm-cgo), type SockaddrLinklayer struct, Addr [8]uint8
+pkg syscall (linux-arm-cgo), type SockaddrLinklayer struct, Halen uint8
+pkg syscall (linux-arm-cgo), type SockaddrLinklayer struct, Hatype uint16
+pkg syscall (linux-arm-cgo), type SockaddrLinklayer struct, Ifindex int
+pkg syscall (linux-arm-cgo), type SockaddrLinklayer struct, Pkttype uint8
+pkg syscall (linux-arm-cgo), type SockaddrLinklayer struct, Protocol uint16
+pkg syscall (linux-arm-cgo), type SockaddrNetlink struct
+pkg syscall (linux-arm-cgo), type SockaddrNetlink struct, Family uint16
+pkg syscall (linux-arm-cgo), type SockaddrNetlink struct, Groups uint32
+pkg syscall (linux-arm-cgo), type SockaddrNetlink struct, Pad uint16
+pkg syscall (linux-arm-cgo), type SockaddrNetlink struct, Pid uint32
+pkg syscall (linux-arm-cgo), type SocketControlMessage struct
+pkg syscall (linux-arm-cgo), type SocketControlMessage struct, Data []uint8
+pkg syscall (linux-arm-cgo), type SocketControlMessage struct, Header Cmsghdr
+pkg syscall (linux-arm-cgo), type Stat_t struct
+pkg syscall (linux-arm-cgo), type Stat_t struct, Atim Timespec
+pkg syscall (linux-arm-cgo), type Stat_t struct, Blksize int32
+pkg syscall (linux-arm-cgo), type Stat_t struct, Blocks int64
+pkg syscall (linux-arm-cgo), type Stat_t struct, Ctim Timespec
+pkg syscall (linux-arm-cgo), type Stat_t struct, Dev uint64
+pkg syscall (linux-arm-cgo), type Stat_t struct, Gid uint32
+pkg syscall (linux-arm-cgo), type Stat_t struct, Ino uint64
+pkg syscall (linux-arm-cgo), type Stat_t struct, Mode uint32
+pkg syscall (linux-arm-cgo), type Stat_t struct, Mtim Timespec
+pkg syscall (linux-arm-cgo), type Stat_t struct, Nlink uint32
+pkg syscall (linux-arm-cgo), type Stat_t struct, Pad_cgo_0 [2]uint8
+pkg syscall (linux-arm-cgo), type Stat_t struct, Pad_cgo_1 [6]uint8
+pkg syscall (linux-arm-cgo), type Stat_t struct, Pad_cgo_2 [4]uint8
+pkg syscall (linux-arm-cgo), type Stat_t struct, Rdev uint64
+pkg syscall (linux-arm-cgo), type Stat_t struct, Size int64
+pkg syscall (linux-arm-cgo), type Stat_t struct, Uid uint32
+pkg syscall (linux-arm-cgo), type Stat_t struct, X__pad1 uint16
+pkg syscall (linux-arm-cgo), type Stat_t struct, X__pad2 uint16
+pkg syscall (linux-arm-cgo), type Stat_t struct, X__st_ino uint32
+pkg syscall (linux-arm-cgo), type Statfs_t struct
+pkg syscall (linux-arm-cgo), type Statfs_t struct, Bavail uint64
+pkg syscall (linux-arm-cgo), type Statfs_t struct, Bfree uint64
+pkg syscall (linux-arm-cgo), type Statfs_t struct, Blocks uint64
+pkg syscall (linux-arm-cgo), type Statfs_t struct, Bsize int32
+pkg syscall (linux-arm-cgo), type Statfs_t struct, Ffree uint64
+pkg syscall (linux-arm-cgo), type Statfs_t struct, Files uint64
+pkg syscall (linux-arm-cgo), type Statfs_t struct, Flags int32
+pkg syscall (linux-arm-cgo), type Statfs_t struct, Frsize int32
+pkg syscall (linux-arm-cgo), type Statfs_t struct, Fsid Fsid
+pkg syscall (linux-arm-cgo), type Statfs_t struct, Namelen int32
+pkg syscall (linux-arm-cgo), type Statfs_t struct, Pad_cgo_0 [4]uint8
+pkg syscall (linux-arm-cgo), type Statfs_t struct, Spare [4]int32
+pkg syscall (linux-arm-cgo), type Statfs_t struct, Type int32
+pkg syscall (linux-arm-cgo), type SysProcAttr struct, Chroot string
+pkg syscall (linux-arm-cgo), type SysProcAttr struct, Cloneflags uintptr
+pkg syscall (linux-arm-cgo), type SysProcAttr struct, Credential *Credential
+pkg syscall (linux-arm-cgo), type SysProcAttr struct, Ctty int
+pkg syscall (linux-arm-cgo), type SysProcAttr struct, Noctty bool
+pkg syscall (linux-arm-cgo), type SysProcAttr struct, Pdeathsig Signal
+pkg syscall (linux-arm-cgo), type SysProcAttr struct, Ptrace bool
+pkg syscall (linux-arm-cgo), type SysProcAttr struct, Setctty bool
+pkg syscall (linux-arm-cgo), type SysProcAttr struct, Setpgid bool
+pkg syscall (linux-arm-cgo), type SysProcAttr struct, Setsid bool
+pkg syscall (linux-arm-cgo), type Sysinfo_t struct
+pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Bufferram uint32
+pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Freehigh uint32
+pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Freeram uint32
+pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Freeswap uint32
+pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Loads [3]uint32
+pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Pad uint16
+pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Procs uint16
+pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Sharedram uint32
+pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Totalhigh uint32
+pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Totalram uint32
+pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Totalswap uint32
+pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Unit uint32
+pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Uptime int32
+pkg syscall (linux-arm-cgo), type Sysinfo_t struct, X_f [8]uint8
+pkg syscall (linux-arm-cgo), type TCPInfo struct
+pkg syscall (linux-arm-cgo), type TCPInfo struct, Advmss uint32
+pkg syscall (linux-arm-cgo), type TCPInfo struct, Ato uint32
+pkg syscall (linux-arm-cgo), type TCPInfo struct, Backoff uint8
+pkg syscall (linux-arm-cgo), type TCPInfo struct, Ca_state uint8
+pkg syscall (linux-arm-cgo), type TCPInfo struct, Fackets uint32
+pkg syscall (linux-arm-cgo), type TCPInfo struct, Last_ack_recv uint32
+pkg syscall (linux-arm-cgo), type TCPInfo struct, Last_ack_sent uint32
+pkg syscall (linux-arm-cgo), type TCPInfo struct, Last_data_recv uint32
+pkg syscall (linux-arm-cgo), type TCPInfo struct, Last_data_sent uint32
+pkg syscall (linux-arm-cgo), type TCPInfo struct, Lost uint32
+pkg syscall (linux-arm-cgo), type TCPInfo struct, Options uint8
+pkg syscall (linux-arm-cgo), type TCPInfo struct, Pad_cgo_0 [2]uint8
+pkg syscall (linux-arm-cgo), type TCPInfo struct, Pmtu uint32
+pkg syscall (linux-arm-cgo), type TCPInfo struct, Probes uint8
+pkg syscall (linux-arm-cgo), type TCPInfo struct, Rcv_mss uint32
+pkg syscall (linux-arm-cgo), type TCPInfo struct, Rcv_rtt uint32
+pkg syscall (linux-arm-cgo), type TCPInfo struct, Rcv_space uint32
+pkg syscall (linux-arm-cgo), type TCPInfo struct, Rcv_ssthresh uint32
+pkg syscall (linux-arm-cgo), type TCPInfo struct, Reordering uint32
+pkg syscall (linux-arm-cgo), type TCPInfo struct, Retrans uint32
+pkg syscall (linux-arm-cgo), type TCPInfo struct, Retransmits uint8
+pkg syscall (linux-arm-cgo), type TCPInfo struct, Rto uint32
+pkg syscall (linux-arm-cgo), type TCPInfo struct, Rtt uint32
+pkg syscall (linux-arm-cgo), type TCPInfo struct, Rttvar uint32
+pkg syscall (linux-arm-cgo), type TCPInfo struct, Sacked uint32
+pkg syscall (linux-arm-cgo), type TCPInfo struct, Snd_cwnd uint32
+pkg syscall (linux-arm-cgo), type TCPInfo struct, Snd_mss uint32
+pkg syscall (linux-arm-cgo), type TCPInfo struct, Snd_ssthresh uint32
+pkg syscall (linux-arm-cgo), type TCPInfo struct, State uint8
+pkg syscall (linux-arm-cgo), type TCPInfo struct, Total_retrans uint32
+pkg syscall (linux-arm-cgo), type TCPInfo struct, Unacked uint32
+pkg syscall (linux-arm-cgo), type Termios struct
+pkg syscall (linux-arm-cgo), type Termios struct, Cc [32]uint8
+pkg syscall (linux-arm-cgo), type Termios struct, Cflag uint32
+pkg syscall (linux-arm-cgo), type Termios struct, Iflag uint32
+pkg syscall (linux-arm-cgo), type Termios struct, Ispeed uint32
+pkg syscall (linux-arm-cgo), type Termios struct, Lflag uint32
+pkg syscall (linux-arm-cgo), type Termios struct, Line uint8
+pkg syscall (linux-arm-cgo), type Termios struct, Oflag uint32
+pkg syscall (linux-arm-cgo), type Termios struct, Ospeed uint32
+pkg syscall (linux-arm-cgo), type Termios struct, Pad_cgo_0 [3]uint8
+pkg syscall (linux-arm-cgo), type Time_t int32
+pkg syscall (linux-arm-cgo), type Timespec struct, Nsec int32
+pkg syscall (linux-arm-cgo), type Timespec struct, Sec int32
+pkg syscall (linux-arm-cgo), type Timeval struct, Sec int32
+pkg syscall (linux-arm-cgo), type Timeval struct, Usec int32
+pkg syscall (linux-arm-cgo), type Timex struct
+pkg syscall (linux-arm-cgo), type Timex struct, Calcnt int32
+pkg syscall (linux-arm-cgo), type Timex struct, Constant int32
+pkg syscall (linux-arm-cgo), type Timex struct, Errcnt int32
+pkg syscall (linux-arm-cgo), type Timex struct, Esterror int32
+pkg syscall (linux-arm-cgo), type Timex struct, Freq int32
+pkg syscall (linux-arm-cgo), type Timex struct, Jitcnt int32
+pkg syscall (linux-arm-cgo), type Timex struct, Jitter int32
+pkg syscall (linux-arm-cgo), type Timex struct, Maxerror int32
+pkg syscall (linux-arm-cgo), type Timex struct, Modes uint32
+pkg syscall (linux-arm-cgo), type Timex struct, Offset int32
+pkg syscall (linux-arm-cgo), type Timex struct, Pad_cgo_0 [44]uint8
+pkg syscall (linux-arm-cgo), type Timex struct, Ppsfreq int32
+pkg syscall (linux-arm-cgo), type Timex struct, Precision int32
+pkg syscall (linux-arm-cgo), type Timex struct, Shift int32
+pkg syscall (linux-arm-cgo), type Timex struct, Stabil int32
+pkg syscall (linux-arm-cgo), type Timex struct, Status int32
+pkg syscall (linux-arm-cgo), type Timex struct, Stbcnt int32
+pkg syscall (linux-arm-cgo), type Timex struct, Tai int32
+pkg syscall (linux-arm-cgo), type Timex struct, Tick int32
+pkg syscall (linux-arm-cgo), type Timex struct, Time Timeval
+pkg syscall (linux-arm-cgo), type Timex struct, Tolerance int32
+pkg syscall (linux-arm-cgo), type Tms struct
+pkg syscall (linux-arm-cgo), type Tms struct, Cstime int32
+pkg syscall (linux-arm-cgo), type Tms struct, Cutime int32
+pkg syscall (linux-arm-cgo), type Tms struct, Stime int32
+pkg syscall (linux-arm-cgo), type Tms struct, Utime int32
+pkg syscall (linux-arm-cgo), type Ucred struct
+pkg syscall (linux-arm-cgo), type Ucred struct, Gid uint32
+pkg syscall (linux-arm-cgo), type Ucred struct, Pid int32
+pkg syscall (linux-arm-cgo), type Ucred struct, Uid uint32
+pkg syscall (linux-arm-cgo), type Ustat_t struct
+pkg syscall (linux-arm-cgo), type Ustat_t struct, Fname [6]uint8
+pkg syscall (linux-arm-cgo), type Ustat_t struct, Fpack [6]uint8
+pkg syscall (linux-arm-cgo), type Ustat_t struct, Tfree int32
+pkg syscall (linux-arm-cgo), type Ustat_t struct, Tinode uint32
+pkg syscall (linux-arm-cgo), type Utimbuf struct
+pkg syscall (linux-arm-cgo), type Utimbuf struct, Actime int32
+pkg syscall (linux-arm-cgo), type Utimbuf struct, Modtime int32
+pkg syscall (linux-arm-cgo), type Utsname struct
+pkg syscall (linux-arm-cgo), type Utsname struct, Domainname [65]uint8
+pkg syscall (linux-arm-cgo), type Utsname struct, Machine [65]uint8
+pkg syscall (linux-arm-cgo), type Utsname struct, Nodename [65]uint8
+pkg syscall (linux-arm-cgo), type Utsname struct, Release [65]uint8
+pkg syscall (linux-arm-cgo), type Utsname struct, Sysname [65]uint8
+pkg syscall (linux-arm-cgo), type Utsname struct, Version [65]uint8
+pkg syscall (linux-arm-cgo), type WaitStatus uint32
+pkg syscall (linux-arm-cgo), var Stderr int
+pkg syscall (linux-arm-cgo), var Stdin int
+pkg syscall (linux-arm-cgo), var Stdout int
+pkg syscall (netbsd-386), const AF_APPLETALK ideal-int
+pkg syscall (netbsd-386), const AF_ARP ideal-int
+pkg syscall (netbsd-386), const AF_BLUETOOTH ideal-int
+pkg syscall (netbsd-386), const AF_CCITT ideal-int
+pkg syscall (netbsd-386), const AF_CHAOS ideal-int
+pkg syscall (netbsd-386), const AF_CNT ideal-int
+pkg syscall (netbsd-386), const AF_COIP ideal-int
+pkg syscall (netbsd-386), const AF_DATAKIT ideal-int
+pkg syscall (netbsd-386), const AF_DECnet ideal-int
+pkg syscall (netbsd-386), const AF_DLI ideal-int
+pkg syscall (netbsd-386), const AF_E164 ideal-int
+pkg syscall (netbsd-386), const AF_ECMA ideal-int
+pkg syscall (netbsd-386), const AF_HYLINK ideal-int
+pkg syscall (netbsd-386), const AF_IEEE80211 ideal-int
+pkg syscall (netbsd-386), const AF_IMPLINK ideal-int
+pkg syscall (netbsd-386), const AF_IPX ideal-int
+pkg syscall (netbsd-386), const AF_ISDN ideal-int
+pkg syscall (netbsd-386), const AF_ISO ideal-int
+pkg syscall (netbsd-386), const AF_LAT ideal-int
+pkg syscall (netbsd-386), const AF_LINK ideal-int
+pkg syscall (netbsd-386), const AF_LOCAL ideal-int
+pkg syscall (netbsd-386), const AF_MAX ideal-int
+pkg syscall (netbsd-386), const AF_MPLS ideal-int
+pkg syscall (netbsd-386), const AF_NATM ideal-int
+pkg syscall (netbsd-386), const AF_NS ideal-int
+pkg syscall (netbsd-386), const AF_OROUTE ideal-int
+pkg syscall (netbsd-386), const AF_OSI ideal-int
+pkg syscall (netbsd-386), const AF_PUP ideal-int
+pkg syscall (netbsd-386), const AF_ROUTE ideal-int
+pkg syscall (netbsd-386), const AF_SNA ideal-int
+pkg syscall (netbsd-386), const ARPHRD_ARCNET ideal-int
+pkg syscall (netbsd-386), const ARPHRD_ETHER ideal-int
+pkg syscall (netbsd-386), const ARPHRD_FRELAY ideal-int
+pkg syscall (netbsd-386), const ARPHRD_IEEE1394 ideal-int
+pkg syscall (netbsd-386), const ARPHRD_IEEE802 ideal-int
+pkg syscall (netbsd-386), const ARPHRD_STRIP ideal-int
+pkg syscall (netbsd-386), const B0 ideal-int
+pkg syscall (netbsd-386), const B110 ideal-int
+pkg syscall (netbsd-386), const B115200 ideal-int
+pkg syscall (netbsd-386), const B1200 ideal-int
+pkg syscall (netbsd-386), const B134 ideal-int
+pkg syscall (netbsd-386), const B14400 ideal-int
+pkg syscall (netbsd-386), const B150 ideal-int
+pkg syscall (netbsd-386), const B1800 ideal-int
+pkg syscall (netbsd-386), const B19200 ideal-int
+pkg syscall (netbsd-386), const B200 ideal-int
+pkg syscall (netbsd-386), const B230400 ideal-int
+pkg syscall (netbsd-386), const B2400 ideal-int
+pkg syscall (netbsd-386), const B28800 ideal-int
+pkg syscall (netbsd-386), const B300 ideal-int
+pkg syscall (netbsd-386), const B38400 ideal-int
+pkg syscall (netbsd-386), const B460800 ideal-int
+pkg syscall (netbsd-386), const B4800 ideal-int
+pkg syscall (netbsd-386), const B50 ideal-int
+pkg syscall (netbsd-386), const B57600 ideal-int
+pkg syscall (netbsd-386), const B600 ideal-int
+pkg syscall (netbsd-386), const B7200 ideal-int
+pkg syscall (netbsd-386), const B75 ideal-int
+pkg syscall (netbsd-386), const B76800 ideal-int
+pkg syscall (netbsd-386), const B921600 ideal-int
+pkg syscall (netbsd-386), const B9600 ideal-int
+pkg syscall (netbsd-386), const BIOCFEEDBACK ideal-int
+pkg syscall (netbsd-386), const BIOCFLUSH ideal-int
+pkg syscall (netbsd-386), const BIOCGBLEN ideal-int
+pkg syscall (netbsd-386), const BIOCGDLT ideal-int
+pkg syscall (netbsd-386), const BIOCGDLTLIST ideal-int
+pkg syscall (netbsd-386), const BIOCGETIF ideal-int
+pkg syscall (netbsd-386), const BIOCGFEEDBACK ideal-int
+pkg syscall (netbsd-386), const BIOCGHDRCMPLT ideal-int
+pkg syscall (netbsd-386), const BIOCGRTIMEOUT ideal-int
+pkg syscall (netbsd-386), const BIOCGSEESENT ideal-int
+pkg syscall (netbsd-386), const BIOCGSTATS ideal-int
+pkg syscall (netbsd-386), const BIOCGSTATSOLD ideal-int
+pkg syscall (netbsd-386), const BIOCIMMEDIATE ideal-int
+pkg syscall (netbsd-386), const BIOCPROMISC ideal-int
+pkg syscall (netbsd-386), const BIOCSBLEN ideal-int
+pkg syscall (netbsd-386), const BIOCSDLT ideal-int
+pkg syscall (netbsd-386), const BIOCSETF ideal-int
+pkg syscall (netbsd-386), const BIOCSETIF ideal-int
+pkg syscall (netbsd-386), const BIOCSFEEDBACK ideal-int
+pkg syscall (netbsd-386), const BIOCSHDRCMPLT ideal-int
+pkg syscall (netbsd-386), const BIOCSRTIMEOUT ideal-int
+pkg syscall (netbsd-386), const BIOCSSEESENT ideal-int
+pkg syscall (netbsd-386), const BIOCSTCPF ideal-int
+pkg syscall (netbsd-386), const BIOCSUDPF ideal-int
+pkg syscall (netbsd-386), const BIOCVERSION ideal-int
+pkg syscall (netbsd-386), const BPF_A ideal-int
+pkg syscall (netbsd-386), const BPF_ABS ideal-int
+pkg syscall (netbsd-386), const BPF_ADD ideal-int
+pkg syscall (netbsd-386), const BPF_ALIGNMENT ideal-int
+pkg syscall (netbsd-386), const BPF_ALIGNMENT32 ideal-int
+pkg syscall (netbsd-386), const BPF_ALU ideal-int
+pkg syscall (netbsd-386), const BPF_AND ideal-int
+pkg syscall (netbsd-386), const BPF_B ideal-int
+pkg syscall (netbsd-386), const BPF_DFLTBUFSIZE ideal-int
+pkg syscall (netbsd-386), const BPF_DIV ideal-int
+pkg syscall (netbsd-386), const BPF_H ideal-int
+pkg syscall (netbsd-386), const BPF_IMM ideal-int
+pkg syscall (netbsd-386), const BPF_IND ideal-int
+pkg syscall (netbsd-386), const BPF_JA ideal-int
+pkg syscall (netbsd-386), const BPF_JEQ ideal-int
+pkg syscall (netbsd-386), const BPF_JGE ideal-int
+pkg syscall (netbsd-386), const BPF_JGT ideal-int
+pkg syscall (netbsd-386), const BPF_JMP ideal-int
+pkg syscall (netbsd-386), const BPF_JSET ideal-int
+pkg syscall (netbsd-386), const BPF_K ideal-int
+pkg syscall (netbsd-386), const BPF_LD ideal-int
+pkg syscall (netbsd-386), const BPF_LDX ideal-int
+pkg syscall (netbsd-386), const BPF_LEN ideal-int
+pkg syscall (netbsd-386), const BPF_LSH ideal-int
+pkg syscall (netbsd-386), const BPF_MAJOR_VERSION ideal-int
+pkg syscall (netbsd-386), const BPF_MAXBUFSIZE ideal-int
+pkg syscall (netbsd-386), const BPF_MAXINSNS ideal-int
+pkg syscall (netbsd-386), const BPF_MEM ideal-int
+pkg syscall (netbsd-386), const BPF_MEMWORDS ideal-int
+pkg syscall (netbsd-386), const BPF_MINBUFSIZE ideal-int
+pkg syscall (netbsd-386), const BPF_MINOR_VERSION ideal-int
+pkg syscall (netbsd-386), const BPF_MISC ideal-int
+pkg syscall (netbsd-386), const BPF_MSH ideal-int
+pkg syscall (netbsd-386), const BPF_MUL ideal-int
+pkg syscall (netbsd-386), const BPF_NEG ideal-int
+pkg syscall (netbsd-386), const BPF_OR ideal-int
+pkg syscall (netbsd-386), const BPF_RELEASE ideal-int
+pkg syscall (netbsd-386), const BPF_RET ideal-int
+pkg syscall (netbsd-386), const BPF_RSH ideal-int
+pkg syscall (netbsd-386), const BPF_ST ideal-int
+pkg syscall (netbsd-386), const BPF_STX ideal-int
+pkg syscall (netbsd-386), const BPF_SUB ideal-int
+pkg syscall (netbsd-386), const BPF_TAX ideal-int
+pkg syscall (netbsd-386), const BPF_TXA ideal-int
+pkg syscall (netbsd-386), const BPF_W ideal-int
+pkg syscall (netbsd-386), const BPF_X ideal-int
+pkg syscall (netbsd-386), const BRKINT ideal-int
+pkg syscall (netbsd-386), const CFLUSH ideal-int
+pkg syscall (netbsd-386), const CLOCAL ideal-int
+pkg syscall (netbsd-386), const CREAD ideal-int
+pkg syscall (netbsd-386), const CS5 ideal-int
+pkg syscall (netbsd-386), const CS6 ideal-int
+pkg syscall (netbsd-386), const CS7 ideal-int
+pkg syscall (netbsd-386), const CS8 ideal-int
+pkg syscall (netbsd-386), const CSIZE ideal-int
+pkg syscall (netbsd-386), const CSTART ideal-int
+pkg syscall (netbsd-386), const CSTATUS ideal-int
+pkg syscall (netbsd-386), const CSTOP ideal-int
+pkg syscall (netbsd-386), const CSTOPB ideal-int
+pkg syscall (netbsd-386), const CSUSP ideal-int
+pkg syscall (netbsd-386), const CTL_MAXNAME ideal-int
+pkg syscall (netbsd-386), const CTL_NET ideal-int
+pkg syscall (netbsd-386), const CTL_QUERY ideal-int
+pkg syscall (netbsd-386), const DIOCBSFLUSH ideal-int
+pkg syscall (netbsd-386), const DLT_A429 ideal-int
+pkg syscall (netbsd-386), const DLT_A653_ICM ideal-int
+pkg syscall (netbsd-386), const DLT_AIRONET_HEADER ideal-int
+pkg syscall (netbsd-386), const DLT_AOS ideal-int
+pkg syscall (netbsd-386), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int
+pkg syscall (netbsd-386), const DLT_ARCNET ideal-int
+pkg syscall (netbsd-386), const DLT_ARCNET_LINUX ideal-int
+pkg syscall (netbsd-386), const DLT_ATM_CLIP ideal-int
+pkg syscall (netbsd-386), const DLT_ATM_RFC1483 ideal-int
+pkg syscall (netbsd-386), const DLT_AURORA ideal-int
+pkg syscall (netbsd-386), const DLT_AX25 ideal-int
+pkg syscall (netbsd-386), const DLT_AX25_KISS ideal-int
+pkg syscall (netbsd-386), const DLT_BACNET_MS_TP ideal-int
+pkg syscall (netbsd-386), const DLT_BLUETOOTH_HCI_H4 ideal-int
+pkg syscall (netbsd-386), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR ideal-int
+pkg syscall (netbsd-386), const DLT_CAN20B ideal-int
+pkg syscall (netbsd-386), const DLT_CAN_SOCKETCAN ideal-int
+pkg syscall (netbsd-386), const DLT_CHAOS ideal-int
+pkg syscall (netbsd-386), const DLT_CISCO_IOS ideal-int
+pkg syscall (netbsd-386), const DLT_C_HDLC ideal-int
+pkg syscall (netbsd-386), const DLT_C_HDLC_WITH_DIR ideal-int
+pkg syscall (netbsd-386), const DLT_DECT ideal-int
+pkg syscall (netbsd-386), const DLT_DOCSIS ideal-int
+pkg syscall (netbsd-386), const DLT_ECONET ideal-int
+pkg syscall (netbsd-386), const DLT_EN10MB ideal-int
+pkg syscall (netbsd-386), const DLT_EN3MB ideal-int
+pkg syscall (netbsd-386), const DLT_ENC ideal-int
+pkg syscall (netbsd-386), const DLT_ERF ideal-int
+pkg syscall (netbsd-386), const DLT_ERF_ETH ideal-int
+pkg syscall (netbsd-386), const DLT_ERF_POS ideal-int
+pkg syscall (netbsd-386), const DLT_FC_2 ideal-int
+pkg syscall (netbsd-386), const DLT_FC_2_WITH_FRAME_DELIMS ideal-int
+pkg syscall (netbsd-386), const DLT_FDDI ideal-int
+pkg syscall (netbsd-386), const DLT_FLEXRAY ideal-int
+pkg syscall (netbsd-386), const DLT_FRELAY ideal-int
+pkg syscall (netbsd-386), const DLT_FRELAY_WITH_DIR ideal-int
+pkg syscall (netbsd-386), const DLT_GCOM_SERIAL ideal-int
+pkg syscall (netbsd-386), const DLT_GCOM_T1E1 ideal-int
+pkg syscall (netbsd-386), const DLT_GPF_F ideal-int
+pkg syscall (netbsd-386), const DLT_GPF_T ideal-int
+pkg syscall (netbsd-386), const DLT_GPRS_LLC ideal-int
+pkg syscall (netbsd-386), const DLT_GSMTAP_ABIS ideal-int
+pkg syscall (netbsd-386), const DLT_GSMTAP_UM ideal-int
+pkg syscall (netbsd-386), const DLT_HDLC ideal-int
+pkg syscall (netbsd-386), const DLT_HHDLC ideal-int
+pkg syscall (netbsd-386), const DLT_HIPPI ideal-int
+pkg syscall (netbsd-386), const DLT_IBM_SN ideal-int
+pkg syscall (netbsd-386), const DLT_IBM_SP ideal-int
+pkg syscall (netbsd-386), const DLT_IEEE802 ideal-int
+pkg syscall (netbsd-386), const DLT_IEEE802_11 ideal-int
+pkg syscall (netbsd-386), const DLT_IEEE802_11_RADIO ideal-int
+pkg syscall (netbsd-386), const DLT_IEEE802_11_RADIO_AVS ideal-int
+pkg syscall (netbsd-386), const DLT_IEEE802_15_4 ideal-int
+pkg syscall (netbsd-386), const DLT_IEEE802_15_4_LINUX ideal-int
+pkg syscall (netbsd-386), const DLT_IEEE802_15_4_NONASK_PHY ideal-int
+pkg syscall (netbsd-386), const DLT_IEEE802_16_MAC_CPS ideal-int
+pkg syscall (netbsd-386), const DLT_IEEE802_16_MAC_CPS_RADIO ideal-int
+pkg syscall (netbsd-386), const DLT_IPMB ideal-int
+pkg syscall (netbsd-386), const DLT_IPMB_LINUX ideal-int
+pkg syscall (netbsd-386), const DLT_IPNET ideal-int
+pkg syscall (netbsd-386), const DLT_IPV4 ideal-int
+pkg syscall (netbsd-386), const DLT_IPV6 ideal-int
+pkg syscall (netbsd-386), const DLT_IP_OVER_FC ideal-int
+pkg syscall (netbsd-386), const DLT_JUNIPER_ATM1 ideal-int
+pkg syscall (netbsd-386), const DLT_JUNIPER_ATM2 ideal-int
+pkg syscall (netbsd-386), const DLT_JUNIPER_CHDLC ideal-int
+pkg syscall (netbsd-386), const DLT_JUNIPER_ES ideal-int
+pkg syscall (netbsd-386), const DLT_JUNIPER_ETHER ideal-int
+pkg syscall (netbsd-386), const DLT_JUNIPER_FRELAY ideal-int
+pkg syscall (netbsd-386), const DLT_JUNIPER_GGSN ideal-int
+pkg syscall (netbsd-386), const DLT_JUNIPER_ISM ideal-int
+pkg syscall (netbsd-386), const DLT_JUNIPER_MFR ideal-int
+pkg syscall (netbsd-386), const DLT_JUNIPER_MLFR ideal-int
+pkg syscall (netbsd-386), const DLT_JUNIPER_MLPPP ideal-int
+pkg syscall (netbsd-386), const DLT_JUNIPER_MONITOR ideal-int
+pkg syscall (netbsd-386), const DLT_JUNIPER_PIC_PEER ideal-int
+pkg syscall (netbsd-386), const DLT_JUNIPER_PPP ideal-int
+pkg syscall (netbsd-386), const DLT_JUNIPER_PPPOE ideal-int
+pkg syscall (netbsd-386), const DLT_JUNIPER_PPPOE_ATM ideal-int
+pkg syscall (netbsd-386), const DLT_JUNIPER_SERVICES ideal-int
+pkg syscall (netbsd-386), const DLT_JUNIPER_ST ideal-int
+pkg syscall (netbsd-386), const DLT_JUNIPER_VP ideal-int
+pkg syscall (netbsd-386), const DLT_LAPB_WITH_DIR ideal-int
+pkg syscall (netbsd-386), const DLT_LAPD ideal-int
+pkg syscall (netbsd-386), const DLT_LIN ideal-int
+pkg syscall (netbsd-386), const DLT_LINUX_EVDEV ideal-int
+pkg syscall (netbsd-386), const DLT_LINUX_IRDA ideal-int
+pkg syscall (netbsd-386), const DLT_LINUX_LAPD ideal-int
+pkg syscall (netbsd-386), const DLT_LINUX_SLL ideal-int
+pkg syscall (netbsd-386), const DLT_LOOP ideal-int
+pkg syscall (netbsd-386), const DLT_LTALK ideal-int
+pkg syscall (netbsd-386), const DLT_MFR ideal-int
+pkg syscall (netbsd-386), const DLT_MOST ideal-int
+pkg syscall (netbsd-386), const DLT_MPLS ideal-int
+pkg syscall (netbsd-386), const DLT_MTP2 ideal-int
+pkg syscall (netbsd-386), const DLT_MTP2_WITH_PHDR ideal-int
+pkg syscall (netbsd-386), const DLT_MTP3 ideal-int
+pkg syscall (netbsd-386), const DLT_NULL ideal-int
+pkg syscall (netbsd-386), const DLT_PCI_EXP ideal-int
+pkg syscall (netbsd-386), const DLT_PFLOG ideal-int
+pkg syscall (netbsd-386), const DLT_PFSYNC ideal-int
+pkg syscall (netbsd-386), const DLT_PPI ideal-int
+pkg syscall (netbsd-386), const DLT_PPP ideal-int
+pkg syscall (netbsd-386), const DLT_PPP_BSDOS ideal-int
+pkg syscall (netbsd-386), const DLT_PPP_ETHER ideal-int
+pkg syscall (netbsd-386), const DLT_PPP_PPPD ideal-int
+pkg syscall (netbsd-386), const DLT_PPP_SERIAL ideal-int
+pkg syscall (netbsd-386), const DLT_PPP_WITH_DIR ideal-int
+pkg syscall (netbsd-386), const DLT_PRISM_HEADER ideal-int
+pkg syscall (netbsd-386), const DLT_PRONET ideal-int
+pkg syscall (netbsd-386), const DLT_RAIF1 ideal-int
+pkg syscall (netbsd-386), const DLT_RAW ideal-int
+pkg syscall (netbsd-386), const DLT_RAWAF_MASK ideal-int
+pkg syscall (netbsd-386), const DLT_RIO ideal-int
+pkg syscall (netbsd-386), const DLT_SCCP ideal-int
+pkg syscall (netbsd-386), const DLT_SITA ideal-int
+pkg syscall (netbsd-386), const DLT_SLIP ideal-int
+pkg syscall (netbsd-386), const DLT_SLIP_BSDOS ideal-int
+pkg syscall (netbsd-386), const DLT_SUNATM ideal-int
+pkg syscall (netbsd-386), const DLT_SYMANTEC_FIREWALL ideal-int
+pkg syscall (netbsd-386), const DLT_TZSP ideal-int
+pkg syscall (netbsd-386), const DLT_USB ideal-int
+pkg syscall (netbsd-386), const DLT_USB_LINUX ideal-int
+pkg syscall (netbsd-386), const DLT_USB_LINUX_MMAPPED ideal-int
+pkg syscall (netbsd-386), const DLT_WIHART ideal-int
+pkg syscall (netbsd-386), const DLT_X2E_SERIAL ideal-int
+pkg syscall (netbsd-386), const DLT_X2E_XORAYA ideal-int
+pkg syscall (netbsd-386), const DT_BLK ideal-int
+pkg syscall (netbsd-386), const DT_CHR ideal-int
+pkg syscall (netbsd-386), const DT_DIR ideal-int
+pkg syscall (netbsd-386), const DT_FIFO ideal-int
+pkg syscall (netbsd-386), const DT_LNK ideal-int
+pkg syscall (netbsd-386), const DT_REG ideal-int
+pkg syscall (netbsd-386), const DT_SOCK ideal-int
+pkg syscall (netbsd-386), const DT_UNKNOWN ideal-int
+pkg syscall (netbsd-386), const DT_WHT ideal-int
+pkg syscall (netbsd-386), const EAUTH Errno
+pkg syscall (netbsd-386), const EBADMSG Errno
+pkg syscall (netbsd-386), const EBADRPC Errno
+pkg syscall (netbsd-386), const ECHO ideal-int
+pkg syscall (netbsd-386), const ECHOCTL ideal-int
+pkg syscall (netbsd-386), const ECHOE ideal-int
+pkg syscall (netbsd-386), const ECHOK ideal-int
+pkg syscall (netbsd-386), const ECHOKE ideal-int
+pkg syscall (netbsd-386), const ECHONL ideal-int
+pkg syscall (netbsd-386), const ECHOPRT ideal-int
+pkg syscall (netbsd-386), const EFTYPE Errno
+pkg syscall (netbsd-386), const ELAST Errno
+pkg syscall (netbsd-386), const EMULTIHOP Errno
+pkg syscall (netbsd-386), const EMUL_LINUX ideal-int
+pkg syscall (netbsd-386), const EMUL_LINUX32 ideal-int
+pkg syscall (netbsd-386), const EMUL_MAXID ideal-int
+pkg syscall (netbsd-386), const ENEEDAUTH Errno
+pkg syscall (netbsd-386), const ENOATTR Errno
+pkg syscall (netbsd-386), const ENODATA Errno
+pkg syscall (netbsd-386), const ENOLINK Errno
+pkg syscall (netbsd-386), const ENOSR Errno
+pkg syscall (netbsd-386), const ENOSTR Errno
+pkg syscall (netbsd-386), const EN_SW_CTL_INF ideal-int
+pkg syscall (netbsd-386), const EN_SW_CTL_PREC ideal-int
+pkg syscall (netbsd-386), const EN_SW_CTL_ROUND ideal-int
+pkg syscall (netbsd-386), const EN_SW_DATACHAIN ideal-int
+pkg syscall (netbsd-386), const EN_SW_DENORM ideal-int
+pkg syscall (netbsd-386), const EN_SW_INVOP ideal-int
+pkg syscall (netbsd-386), const EN_SW_OVERFLOW ideal-int
+pkg syscall (netbsd-386), const EN_SW_PRECLOSS ideal-int
+pkg syscall (netbsd-386), const EN_SW_UNDERFLOW ideal-int
+pkg syscall (netbsd-386), const EN_SW_ZERODIV ideal-int
+pkg syscall (netbsd-386), const EPROCLIM Errno
+pkg syscall (netbsd-386), const EPROCUNAVAIL Errno
+pkg syscall (netbsd-386), const EPROGMISMATCH Errno
+pkg syscall (netbsd-386), const EPROGUNAVAIL Errno
+pkg syscall (netbsd-386), const EPROTO Errno
+pkg syscall (netbsd-386), const ERPCMISMATCH Errno
+pkg syscall (netbsd-386), const ETHERCAP_JUMBO_MTU ideal-int
+pkg syscall (netbsd-386), const ETHERCAP_VLAN_HWTAGGING ideal-int
+pkg syscall (netbsd-386), const ETHERCAP_VLAN_MTU ideal-int
+pkg syscall (netbsd-386), const ETHERMIN ideal-int
+pkg syscall (netbsd-386), const ETHERMTU ideal-int
+pkg syscall (netbsd-386), const ETHERMTU_JUMBO ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_8023 ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_AARP ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_ACCTON ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_AEONIC ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_ALPHA ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_AMBER ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_AMOEBA ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_APOLLO ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_APOLLODOMAIN ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_APPLETALK ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_APPLITEK ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_ARGONAUT ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_ARP ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_AT ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_ATALK ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_ATOMIC ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_ATT ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_ATTSTANFORD ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_AUTOPHON ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_AXIS ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_BCLOOP ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_BOFL ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_CABLETRON ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_CHAOS ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_COMDESIGN ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_COMPUGRAPHIC ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_COUNTERPOINT ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_CRONUS ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_CRONUSVLN ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_DCA ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_DDE ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_DEBNI ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_DECAM ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_DECCUST ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_DECDIAG ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_DECDNS ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_DECDTS ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_DECEXPER ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_DECLAST ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_DECLTM ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_DECMUMPS ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_DECNETBIOS ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_DELTACON ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_DIDDLE ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_DLOG1 ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_DLOG2 ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_DN ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_DOGFIGHT ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_DSMD ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_ECMA ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_ENCRYPT ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_ES ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_EXCELAN ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_EXPERDATA ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_FLIP ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_FLOWCONTROL ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_FRARP ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_GENDYN ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_HAYES ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_HIPPI_FP ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_HITACHI ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_HP ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_IEEEPUP ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_IEEEPUPAT ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_IMLBL ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_IMLBLDIAG ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_IP ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_IPAS ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_IPV6 ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_IPX ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_IPXNEW ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_KALPANA ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_LANBRIDGE ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_LANPROBE ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_LAT ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_LBACK ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_LITTLE ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_LOGICRAFT ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_LOOPBACK ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_MATRA ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_MAX ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_MERIT ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_MICP ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_MOPDL ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_MOPRC ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_MOTOROLA ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_MPLS ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_MPLS_MCAST ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_MUMPS ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_NBPCC ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_NBPCLAIM ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_NBPCLREQ ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_NBPCLRSP ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_NBPCREQ ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_NBPCRSP ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_NBPDG ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_NBPDGB ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_NBPDLTE ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_NBPRAR ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_NBPRAS ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_NBPRST ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_NBPSCD ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_NBPVCD ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_NBS ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_NCD ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_NESTAR ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_NETBEUI ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_NOVELL ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_NS ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_NSAT ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_NSCOMPAT ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_NTRAILER ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_OS9 ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_OS9NET ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_PACER ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_PAE ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_PCS ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_PLANNING ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_PPP ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_PPPOE ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_PPPOEDISC ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_PRIMENTS ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_PUP ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_PUPAT ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_RACAL ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_RATIONAL ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_RAWFR ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_RCL ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_RDP ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_RETIX ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_REVARP ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_SCA ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_SECTRA ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_SECUREDATA ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_SGITW ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_SG_BOUNCE ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_SG_DIAG ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_SG_NETGAMES ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_SG_RESV ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_SIMNET ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_SLOWPROTOCOLS ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_SNA ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_SNMP ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_SONIX ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_SPIDER ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_SPRITE ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_STP ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_TALARIS ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_TALARISMC ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_TCPCOMP ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_TCPSM ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_TEC ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_TIGAN ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_TRAIL ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_TRANSETHER ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_TYMSHARE ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_UBBST ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_UBDEBUG ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_UBDIAGLOOP ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_UBDL ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_UBNIU ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_UBNMC ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_VALID ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_VARIAN ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_VAXELN ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_VEECO ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_VEXP ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_VGLAB ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_VINES ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_VINESECHO ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_VINESLOOP ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_VITAL ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_VLAN ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_VLTLMAN ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_VPROD ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_VURESERVED ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_WATERLOO ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_WELLFLEET ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_X25 ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_X75 ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_XNSSM ideal-int
+pkg syscall (netbsd-386), const ETHERTYPE_XTP ideal-int
+pkg syscall (netbsd-386), const ETHER_ADDR_LEN ideal-int
+pkg syscall (netbsd-386), const ETHER_CRC_LEN ideal-int
+pkg syscall (netbsd-386), const ETHER_CRC_POLY_BE ideal-int
+pkg syscall (netbsd-386), const ETHER_CRC_POLY_LE ideal-int
+pkg syscall (netbsd-386), const ETHER_HDR_LEN ideal-int
+pkg syscall (netbsd-386), const ETHER_MAX_LEN ideal-int
+pkg syscall (netbsd-386), const ETHER_MAX_LEN_JUMBO ideal-int
+pkg syscall (netbsd-386), const ETHER_MIN_LEN ideal-int
+pkg syscall (netbsd-386), const ETHER_PPPOE_ENCAP_LEN ideal-int
+pkg syscall (netbsd-386), const ETHER_TYPE_LEN ideal-int
+pkg syscall (netbsd-386), const ETHER_VLAN_ENCAP_LEN ideal-int
+pkg syscall (netbsd-386), const ETIME Errno
+pkg syscall (netbsd-386), const EVFILT_AIO ideal-int
+pkg syscall (netbsd-386), const EVFILT_PROC ideal-int
+pkg syscall (netbsd-386), const EVFILT_READ ideal-int
+pkg syscall (netbsd-386), const EVFILT_SIGNAL ideal-int
+pkg syscall (netbsd-386), const EVFILT_SYSCOUNT ideal-int
+pkg syscall (netbsd-386), const EVFILT_TIMER ideal-int
+pkg syscall (netbsd-386), const EVFILT_VNODE ideal-int
+pkg syscall (netbsd-386), const EVFILT_WRITE ideal-int
+pkg syscall (netbsd-386), const EV_ADD ideal-int
+pkg syscall (netbsd-386), const EV_CLEAR ideal-int
+pkg syscall (netbsd-386), const EV_DELETE ideal-int
+pkg syscall (netbsd-386), const EV_DISABLE ideal-int
+pkg syscall (netbsd-386), const EV_ENABLE ideal-int
+pkg syscall (netbsd-386), const EV_EOF ideal-int
+pkg syscall (netbsd-386), const EV_ERROR ideal-int
+pkg syscall (netbsd-386), const EV_FLAG1 ideal-int
+pkg syscall (netbsd-386), const EV_ONESHOT ideal-int
+pkg syscall (netbsd-386), const EV_SYSFLAGS ideal-int
+pkg syscall (netbsd-386), const EXTA ideal-int
+pkg syscall (netbsd-386), const EXTB ideal-int
+pkg syscall (netbsd-386), const EXTPROC ideal-int
+pkg syscall (netbsd-386), const FD_CLOEXEC ideal-int
+pkg syscall (netbsd-386), const FD_SETSIZE ideal-int
+pkg syscall (netbsd-386), const FLUSHO ideal-int
+pkg syscall (netbsd-386), const F_CLOSEM ideal-int
+pkg syscall (netbsd-386), const F_DUPFD ideal-int
+pkg syscall (netbsd-386), const F_DUPFD_CLOEXEC ideal-int
+pkg syscall (netbsd-386), const F_FSCTL ideal-int
+pkg syscall (netbsd-386), const F_FSDIRMASK ideal-int
+pkg syscall (netbsd-386), const F_FSIN ideal-int
+pkg syscall (netbsd-386), const F_FSINOUT ideal-int
+pkg syscall (netbsd-386), const F_FSOUT ideal-int
+pkg syscall (netbsd-386), const F_FSPRIV ideal-int
+pkg syscall (netbsd-386), const F_FSVOID ideal-int
+pkg syscall (netbsd-386), const F_GETFD ideal-int
+pkg syscall (netbsd-386), const F_GETFL ideal-int
+pkg syscall (netbsd-386), const F_GETLK ideal-int
+pkg syscall (netbsd-386), const F_GETNOSIGPIPE ideal-int
+pkg syscall (netbsd-386), const F_GETOWN ideal-int
+pkg syscall (netbsd-386), const F_MAXFD ideal-int
+pkg syscall (netbsd-386), const F_OK ideal-int
+pkg syscall (netbsd-386), const F_PARAM_MASK ideal-int
+pkg syscall (netbsd-386), const F_PARAM_MAX ideal-int
+pkg syscall (netbsd-386), const F_RDLCK ideal-int
+pkg syscall (netbsd-386), const F_SETFD ideal-int
+pkg syscall (netbsd-386), const F_SETFL ideal-int
+pkg syscall (netbsd-386), const F_SETLK ideal-int
+pkg syscall (netbsd-386), const F_SETLKW ideal-int
+pkg syscall (netbsd-386), const F_SETNOSIGPIPE ideal-int
+pkg syscall (netbsd-386), const F_SETOWN ideal-int
+pkg syscall (netbsd-386), const F_UNLCK ideal-int
+pkg syscall (netbsd-386), const F_WRLCK ideal-int
+pkg syscall (netbsd-386), const HUPCL ideal-int
+pkg syscall (netbsd-386), const ICANON ideal-int
+pkg syscall (netbsd-386), const ICMP6_FILTER = 18
+pkg syscall (netbsd-386), const ICMP6_FILTER ideal-int
+pkg syscall (netbsd-386), const ICRNL ideal-int
+pkg syscall (netbsd-386), const IEXTEN ideal-int
+pkg syscall (netbsd-386), const IFAN_ARRIVAL ideal-int
+pkg syscall (netbsd-386), const IFAN_DEPARTURE ideal-int
+pkg syscall (netbsd-386), const IFA_ROUTE ideal-int
+pkg syscall (netbsd-386), const IFF_ALLMULTI ideal-int
+pkg syscall (netbsd-386), const IFF_CANTCHANGE ideal-int
+pkg syscall (netbsd-386), const IFF_DEBUG ideal-int
+pkg syscall (netbsd-386), const IFF_LINK0 ideal-int
+pkg syscall (netbsd-386), const IFF_LINK1 ideal-int
+pkg syscall (netbsd-386), const IFF_LINK2 ideal-int
+pkg syscall (netbsd-386), const IFF_NOARP ideal-int
+pkg syscall (netbsd-386), const IFF_NOTRAILERS ideal-int
+pkg syscall (netbsd-386), const IFF_OACTIVE ideal-int
+pkg syscall (netbsd-386), const IFF_POINTOPOINT ideal-int
+pkg syscall (netbsd-386), const IFF_PROMISC ideal-int
+pkg syscall (netbsd-386), const IFF_RUNNING ideal-int
+pkg syscall (netbsd-386), const IFF_SIMPLEX ideal-int
+pkg syscall (netbsd-386), const IFNAMSIZ ideal-int
+pkg syscall (netbsd-386), const IFT_1822 ideal-int
+pkg syscall (netbsd-386), const IFT_A12MPPSWITCH ideal-int
+pkg syscall (netbsd-386), const IFT_AAL2 ideal-int
+pkg syscall (netbsd-386), const IFT_AAL5 ideal-int
+pkg syscall (netbsd-386), const IFT_ADSL ideal-int
+pkg syscall (netbsd-386), const IFT_AFLANE8023 ideal-int
+pkg syscall (netbsd-386), const IFT_AFLANE8025 ideal-int
+pkg syscall (netbsd-386), const IFT_ARAP ideal-int
+pkg syscall (netbsd-386), const IFT_ARCNET ideal-int
+pkg syscall (netbsd-386), const IFT_ARCNETPLUS ideal-int
+pkg syscall (netbsd-386), const IFT_ASYNC ideal-int
+pkg syscall (netbsd-386), const IFT_ATM ideal-int
+pkg syscall (netbsd-386), const IFT_ATMDXI ideal-int
+pkg syscall (netbsd-386), const IFT_ATMFUNI ideal-int
+pkg syscall (netbsd-386), const IFT_ATMIMA ideal-int
+pkg syscall (netbsd-386), const IFT_ATMLOGICAL ideal-int
+pkg syscall (netbsd-386), const IFT_ATMRADIO ideal-int
+pkg syscall (netbsd-386), const IFT_ATMSUBINTERFACE ideal-int
+pkg syscall (netbsd-386), const IFT_ATMVCIENDPT ideal-int
+pkg syscall (netbsd-386), const IFT_ATMVIRTUAL ideal-int
+pkg syscall (netbsd-386), const IFT_BGPPOLICYACCOUNTING ideal-int
+pkg syscall (netbsd-386), const IFT_BRIDGE ideal-int
+pkg syscall (netbsd-386), const IFT_BSC ideal-int
+pkg syscall (netbsd-386), const IFT_CARP ideal-int
+pkg syscall (netbsd-386), const IFT_CCTEMUL ideal-int
+pkg syscall (netbsd-386), const IFT_CEPT ideal-int
+pkg syscall (netbsd-386), const IFT_CES ideal-int
+pkg syscall (netbsd-386), const IFT_CHANNEL ideal-int
+pkg syscall (netbsd-386), const IFT_CNR ideal-int
+pkg syscall (netbsd-386), const IFT_COFFEE ideal-int
+pkg syscall (netbsd-386), const IFT_COMPOSITELINK ideal-int
+pkg syscall (netbsd-386), const IFT_DCN ideal-int
+pkg syscall (netbsd-386), const IFT_DIGITALPOWERLINE ideal-int
+pkg syscall (netbsd-386), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int
+pkg syscall (netbsd-386), const IFT_DLSW ideal-int
+pkg syscall (netbsd-386), const IFT_DOCSCABLEDOWNSTREAM ideal-int
+pkg syscall (netbsd-386), const IFT_DOCSCABLEMACLAYER ideal-int
+pkg syscall (netbsd-386), const IFT_DOCSCABLEUPSTREAM ideal-int
+pkg syscall (netbsd-386), const IFT_DOCSCABLEUPSTREAMCHANNEL ideal-int
+pkg syscall (netbsd-386), const IFT_DS0 ideal-int
+pkg syscall (netbsd-386), const IFT_DS0BUNDLE ideal-int
+pkg syscall (netbsd-386), const IFT_DS1FDL ideal-int
+pkg syscall (netbsd-386), const IFT_DS3 ideal-int
+pkg syscall (netbsd-386), const IFT_DTM ideal-int
+pkg syscall (netbsd-386), const IFT_DVBASILN ideal-int
+pkg syscall (netbsd-386), const IFT_DVBASIOUT ideal-int
+pkg syscall (netbsd-386), const IFT_DVBRCCDOWNSTREAM ideal-int
+pkg syscall (netbsd-386), const IFT_DVBRCCMACLAYER ideal-int
+pkg syscall (netbsd-386), const IFT_DVBRCCUPSTREAM ideal-int
+pkg syscall (netbsd-386), const IFT_ECONET ideal-int
+pkg syscall (netbsd-386), const IFT_EON ideal-int
+pkg syscall (netbsd-386), const IFT_EPLRS ideal-int
+pkg syscall (netbsd-386), const IFT_ESCON ideal-int
+pkg syscall (netbsd-386), const IFT_ETHER ideal-int
+pkg syscall (netbsd-386), const IFT_FAITH ideal-int
+pkg syscall (netbsd-386), const IFT_FAST ideal-int
+pkg syscall (netbsd-386), const IFT_FASTETHER ideal-int
+pkg syscall (netbsd-386), const IFT_FASTETHERFX ideal-int
+pkg syscall (netbsd-386), const IFT_FDDI ideal-int
+pkg syscall (netbsd-386), const IFT_FIBRECHANNEL ideal-int
+pkg syscall (netbsd-386), const IFT_FRAMERELAYINTERCONNECT ideal-int
+pkg syscall (netbsd-386), const IFT_FRAMERELAYMPI ideal-int
+pkg syscall (netbsd-386), const IFT_FRDLCIENDPT ideal-int
+pkg syscall (netbsd-386), const IFT_FRELAY ideal-int
+pkg syscall (netbsd-386), const IFT_FRELAYDCE ideal-int
+pkg syscall (netbsd-386), const IFT_FRF16MFRBUNDLE ideal-int
+pkg syscall (netbsd-386), const IFT_FRFORWARD ideal-int
+pkg syscall (netbsd-386), const IFT_G703AT2MB ideal-int
+pkg syscall (netbsd-386), const IFT_G703AT64K ideal-int
+pkg syscall (netbsd-386), const IFT_GIF ideal-int
+pkg syscall (netbsd-386), const IFT_GIGABITETHERNET ideal-int
+pkg syscall (netbsd-386), const IFT_GR303IDT ideal-int
+pkg syscall (netbsd-386), const IFT_GR303RDT ideal-int
+pkg syscall (netbsd-386), const IFT_H323GATEKEEPER ideal-int
+pkg syscall (netbsd-386), const IFT_H323PROXY ideal-int
+pkg syscall (netbsd-386), const IFT_HDH1822 ideal-int
+pkg syscall (netbsd-386), const IFT_HDLC ideal-int
+pkg syscall (netbsd-386), const IFT_HDSL2 ideal-int
+pkg syscall (netbsd-386), const IFT_HIPERLAN2 ideal-int
+pkg syscall (netbsd-386), const IFT_HIPPI ideal-int
+pkg syscall (netbsd-386), const IFT_HIPPIINTERFACE ideal-int
+pkg syscall (netbsd-386), const IFT_HOSTPAD ideal-int
+pkg syscall (netbsd-386), const IFT_HSSI ideal-int
+pkg syscall (netbsd-386), const IFT_HY ideal-int
+pkg syscall (netbsd-386), const IFT_IBM370PARCHAN ideal-int
+pkg syscall (netbsd-386), const IFT_IDSL ideal-int
+pkg syscall (netbsd-386), const IFT_IEEE1394 ideal-int
+pkg syscall (netbsd-386), const IFT_IEEE80211 ideal-int
+pkg syscall (netbsd-386), const IFT_IEEE80212 ideal-int
+pkg syscall (netbsd-386), const IFT_IEEE8023ADLAG ideal-int
+pkg syscall (netbsd-386), const IFT_IFGSN ideal-int
+pkg syscall (netbsd-386), const IFT_IMT ideal-int
+pkg syscall (netbsd-386), const IFT_INFINIBAND ideal-int
+pkg syscall (netbsd-386), const IFT_INTERLEAVE ideal-int
+pkg syscall (netbsd-386), const IFT_IP ideal-int
+pkg syscall (netbsd-386), const IFT_IPFORWARD ideal-int
+pkg syscall (netbsd-386), const IFT_IPOVERATM ideal-int
+pkg syscall (netbsd-386), const IFT_IPOVERCDLC ideal-int
+pkg syscall (netbsd-386), const IFT_IPOVERCLAW ideal-int
+pkg syscall (netbsd-386), const IFT_IPSWITCH ideal-int
+pkg syscall (netbsd-386), const IFT_ISDN ideal-int
+pkg syscall (netbsd-386), const IFT_ISDNBASIC ideal-int
+pkg syscall (netbsd-386), const IFT_ISDNPRIMARY ideal-int
+pkg syscall (netbsd-386), const IFT_ISDNS ideal-int
+pkg syscall (netbsd-386), const IFT_ISDNU ideal-int
+pkg syscall (netbsd-386), const IFT_ISO88022LLC ideal-int
+pkg syscall (netbsd-386), const IFT_ISO88023 ideal-int
+pkg syscall (netbsd-386), const IFT_ISO88024 ideal-int
+pkg syscall (netbsd-386), const IFT_ISO88025 ideal-int
+pkg syscall (netbsd-386), const IFT_ISO88025CRFPINT ideal-int
+pkg syscall (netbsd-386), const IFT_ISO88025DTR ideal-int
+pkg syscall (netbsd-386), const IFT_ISO88025FIBER ideal-int
+pkg syscall (netbsd-386), const IFT_ISO88026 ideal-int
+pkg syscall (netbsd-386), const IFT_ISUP ideal-int
+pkg syscall (netbsd-386), const IFT_L2VLAN ideal-int
+pkg syscall (netbsd-386), const IFT_L3IPVLAN ideal-int
+pkg syscall (netbsd-386), const IFT_L3IPXVLAN ideal-int
+pkg syscall (netbsd-386), const IFT_LAPB ideal-int
+pkg syscall (netbsd-386), const IFT_LAPD ideal-int
+pkg syscall (netbsd-386), const IFT_LAPF ideal-int
+pkg syscall (netbsd-386), const IFT_LINEGROUP ideal-int
+pkg syscall (netbsd-386), const IFT_LOCALTALK ideal-int
+pkg syscall (netbsd-386), const IFT_LOOP ideal-int
+pkg syscall (netbsd-386), const IFT_MEDIAMAILOVERIP ideal-int
+pkg syscall (netbsd-386), const IFT_MFSIGLINK ideal-int
+pkg syscall (netbsd-386), const IFT_MIOX25 ideal-int
+pkg syscall (netbsd-386), const IFT_MODEM ideal-int
+pkg syscall (netbsd-386), const IFT_MPC ideal-int
+pkg syscall (netbsd-386), const IFT_MPLS ideal-int
+pkg syscall (netbsd-386), const IFT_MPLSTUNNEL ideal-int
+pkg syscall (netbsd-386), const IFT_MSDSL ideal-int
+pkg syscall (netbsd-386), const IFT_MVL ideal-int
+pkg syscall (netbsd-386), const IFT_MYRINET ideal-int
+pkg syscall (netbsd-386), const IFT_NFAS ideal-int
+pkg syscall (netbsd-386), const IFT_NSIP ideal-int
+pkg syscall (netbsd-386), const IFT_OPTICALCHANNEL ideal-int
+pkg syscall (netbsd-386), const IFT_OPTICALTRANSPORT ideal-int
+pkg syscall (netbsd-386), const IFT_OTHER ideal-int
+pkg syscall (netbsd-386), const IFT_P10 ideal-int
+pkg syscall (netbsd-386), const IFT_P80 ideal-int
+pkg syscall (netbsd-386), const IFT_PARA ideal-int
+pkg syscall (netbsd-386), const IFT_PFLOG ideal-int
+pkg syscall (netbsd-386), const IFT_PFSYNC ideal-int
+pkg syscall (netbsd-386), const IFT_PLC ideal-int
+pkg syscall (netbsd-386), const IFT_PON155 ideal-int
+pkg syscall (netbsd-386), const IFT_PON622 ideal-int
+pkg syscall (netbsd-386), const IFT_POS ideal-int
+pkg syscall (netbsd-386), const IFT_PPP ideal-int
+pkg syscall (netbsd-386), const IFT_PPPMULTILINKBUNDLE ideal-int
+pkg syscall (netbsd-386), const IFT_PROPATM ideal-int
+pkg syscall (netbsd-386), const IFT_PROPBWAP2MP ideal-int
+pkg syscall (netbsd-386), const IFT_PROPCNLS ideal-int
+pkg syscall (netbsd-386), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int
+pkg syscall (netbsd-386), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int
+pkg syscall (netbsd-386), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int
+pkg syscall (netbsd-386), const IFT_PROPMUX ideal-int
+pkg syscall (netbsd-386), const IFT_PROPVIRTUAL ideal-int
+pkg syscall (netbsd-386), const IFT_PROPWIRELESSP2P ideal-int
+pkg syscall (netbsd-386), const IFT_PTPSERIAL ideal-int
+pkg syscall (netbsd-386), const IFT_PVC ideal-int
+pkg syscall (netbsd-386), const IFT_Q2931 ideal-int
+pkg syscall (netbsd-386), const IFT_QLLC ideal-int
+pkg syscall (netbsd-386), const IFT_RADIOMAC ideal-int
+pkg syscall (netbsd-386), const IFT_RADSL ideal-int
+pkg syscall (netbsd-386), const IFT_REACHDSL ideal-int
+pkg syscall (netbsd-386), const IFT_RFC1483 ideal-int
+pkg syscall (netbsd-386), const IFT_RS232 ideal-int
+pkg syscall (netbsd-386), const IFT_RSRB ideal-int
+pkg syscall (netbsd-386), const IFT_SDLC ideal-int
+pkg syscall (netbsd-386), const IFT_SDSL ideal-int
+pkg syscall (netbsd-386), const IFT_SHDSL ideal-int
+pkg syscall (netbsd-386), const IFT_SIP ideal-int
+pkg syscall (netbsd-386), const IFT_SIPSIG ideal-int
+pkg syscall (netbsd-386), const IFT_SIPTG ideal-int
+pkg syscall (netbsd-386), const IFT_SLIP ideal-int
+pkg syscall (netbsd-386), const IFT_SMDSDXI ideal-int
+pkg syscall (netbsd-386), const IFT_SMDSICIP ideal-int
+pkg syscall (netbsd-386), const IFT_SONET ideal-int
+pkg syscall (netbsd-386), const IFT_SONETOVERHEADCHANNEL ideal-int
+pkg syscall (netbsd-386), const IFT_SONETPATH ideal-int
+pkg syscall (netbsd-386), const IFT_SONETVT ideal-int
+pkg syscall (netbsd-386), const IFT_SRP ideal-int
+pkg syscall (netbsd-386), const IFT_SS7SIGLINK ideal-int
+pkg syscall (netbsd-386), const IFT_STACKTOSTACK ideal-int
+pkg syscall (netbsd-386), const IFT_STARLAN ideal-int
+pkg syscall (netbsd-386), const IFT_STF ideal-int
+pkg syscall (netbsd-386), const IFT_T1 ideal-int
+pkg syscall (netbsd-386), const IFT_TDLC ideal-int
+pkg syscall (netbsd-386), const IFT_TELINK ideal-int
+pkg syscall (netbsd-386), const IFT_TERMPAD ideal-int
+pkg syscall (netbsd-386), const IFT_TR008 ideal-int
+pkg syscall (netbsd-386), const IFT_TRANSPHDLC ideal-int
+pkg syscall (netbsd-386), const IFT_TUNNEL ideal-int
+pkg syscall (netbsd-386), const IFT_ULTRA ideal-int
+pkg syscall (netbsd-386), const IFT_USB ideal-int
+pkg syscall (netbsd-386), const IFT_V11 ideal-int
+pkg syscall (netbsd-386), const IFT_V35 ideal-int
+pkg syscall (netbsd-386), const IFT_V36 ideal-int
+pkg syscall (netbsd-386), const IFT_V37 ideal-int
+pkg syscall (netbsd-386), const IFT_VDSL ideal-int
+pkg syscall (netbsd-386), const IFT_VIRTUALIPADDRESS ideal-int
+pkg syscall (netbsd-386), const IFT_VIRTUALTG ideal-int
+pkg syscall (netbsd-386), const IFT_VOICEDID ideal-int
+pkg syscall (netbsd-386), const IFT_VOICEEM ideal-int
+pkg syscall (netbsd-386), const IFT_VOICEEMFGD ideal-int
+pkg syscall (netbsd-386), const IFT_VOICEENCAP ideal-int
+pkg syscall (netbsd-386), const IFT_VOICEFGDEANA ideal-int
+pkg syscall (netbsd-386), const IFT_VOICEFXO ideal-int
+pkg syscall (netbsd-386), const IFT_VOICEFXS ideal-int
+pkg syscall (netbsd-386), const IFT_VOICEOVERATM ideal-int
+pkg syscall (netbsd-386), const IFT_VOICEOVERCABLE ideal-int
+pkg syscall (netbsd-386), const IFT_VOICEOVERFRAMERELAY ideal-int
+pkg syscall (netbsd-386), const IFT_VOICEOVERIP ideal-int
+pkg syscall (netbsd-386), const IFT_X213 ideal-int
+pkg syscall (netbsd-386), const IFT_X25 ideal-int
+pkg syscall (netbsd-386), const IFT_X25DDN ideal-int
+pkg syscall (netbsd-386), const IFT_X25HUNTGROUP ideal-int
+pkg syscall (netbsd-386), const IFT_X25MLP ideal-int
+pkg syscall (netbsd-386), const IFT_X25PLE ideal-int
+pkg syscall (netbsd-386), const IFT_XETHER ideal-int
+pkg syscall (netbsd-386), const IGNBRK ideal-int
+pkg syscall (netbsd-386), const IGNCR ideal-int
+pkg syscall (netbsd-386), const IGNPAR ideal-int
+pkg syscall (netbsd-386), const IMAXBEL ideal-int
+pkg syscall (netbsd-386), const INLCR ideal-int
+pkg syscall (netbsd-386), const INPCK ideal-int
+pkg syscall (netbsd-386), const IN_CLASSA_HOST ideal-int
+pkg syscall (netbsd-386), const IN_CLASSA_MAX ideal-int
+pkg syscall (netbsd-386), const IN_CLASSA_NET ideal-int
+pkg syscall (netbsd-386), const IN_CLASSA_NSHIFT ideal-int
+pkg syscall (netbsd-386), const IN_CLASSB_HOST ideal-int
+pkg syscall (netbsd-386), const IN_CLASSB_MAX ideal-int
+pkg syscall (netbsd-386), const IN_CLASSB_NET ideal-int
+pkg syscall (netbsd-386), const IN_CLASSB_NSHIFT ideal-int
+pkg syscall (netbsd-386), const IN_CLASSC_HOST ideal-int
+pkg syscall (netbsd-386), const IN_CLASSC_NET ideal-int
+pkg syscall (netbsd-386), const IN_CLASSC_NSHIFT ideal-int
+pkg syscall (netbsd-386), const IN_CLASSD_HOST ideal-int
+pkg syscall (netbsd-386), const IN_CLASSD_NET ideal-int
+pkg syscall (netbsd-386), const IN_CLASSD_NSHIFT ideal-int
+pkg syscall (netbsd-386), const IN_LOOPBACKNET ideal-int
+pkg syscall (netbsd-386), const IPPROTO_AH ideal-int
+pkg syscall (netbsd-386), const IPPROTO_CARP ideal-int
+pkg syscall (netbsd-386), const IPPROTO_DONE ideal-int
+pkg syscall (netbsd-386), const IPPROTO_DSTOPTS ideal-int
+pkg syscall (netbsd-386), const IPPROTO_EGP ideal-int
+pkg syscall (netbsd-386), const IPPROTO_ENCAP ideal-int
+pkg syscall (netbsd-386), const IPPROTO_EON ideal-int
+pkg syscall (netbsd-386), const IPPROTO_ESP ideal-int
+pkg syscall (netbsd-386), const IPPROTO_ETHERIP ideal-int
+pkg syscall (netbsd-386), const IPPROTO_FRAGMENT ideal-int
+pkg syscall (netbsd-386), const IPPROTO_GGP ideal-int
+pkg syscall (netbsd-386), const IPPROTO_GRE ideal-int
+pkg syscall (netbsd-386), const IPPROTO_HOPOPTS ideal-int
+pkg syscall (netbsd-386), const IPPROTO_ICMP ideal-int
+pkg syscall (netbsd-386), const IPPROTO_ICMPV6 ideal-int
+pkg syscall (netbsd-386), const IPPROTO_IDP ideal-int
+pkg syscall (netbsd-386), const IPPROTO_IGMP ideal-int
+pkg syscall (netbsd-386), const IPPROTO_IPCOMP ideal-int
+pkg syscall (netbsd-386), const IPPROTO_IPIP ideal-int
+pkg syscall (netbsd-386), const IPPROTO_IPV4 ideal-int
+pkg syscall (netbsd-386), const IPPROTO_IPV6_ICMP ideal-int
+pkg syscall (netbsd-386), const IPPROTO_MAX ideal-int
+pkg syscall (netbsd-386), const IPPROTO_MAXID ideal-int
+pkg syscall (netbsd-386), const IPPROTO_MOBILE ideal-int
+pkg syscall (netbsd-386), const IPPROTO_NONE ideal-int
+pkg syscall (netbsd-386), const IPPROTO_PFSYNC ideal-int
+pkg syscall (netbsd-386), const IPPROTO_PIM ideal-int
+pkg syscall (netbsd-386), const IPPROTO_PUP ideal-int
+pkg syscall (netbsd-386), const IPPROTO_RAW ideal-int
+pkg syscall (netbsd-386), const IPPROTO_ROUTING ideal-int
+pkg syscall (netbsd-386), const IPPROTO_RSVP ideal-int
+pkg syscall (netbsd-386), const IPPROTO_TP ideal-int
+pkg syscall (netbsd-386), const IPPROTO_VRRP ideal-int
+pkg syscall (netbsd-386), const IPV6_CHECKSUM ideal-int
+pkg syscall (netbsd-386), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int
+pkg syscall (netbsd-386), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int
+pkg syscall (netbsd-386), const IPV6_DEFHLIM ideal-int
+pkg syscall (netbsd-386), const IPV6_DONTFRAG ideal-int
+pkg syscall (netbsd-386), const IPV6_DSTOPTS ideal-int
+pkg syscall (netbsd-386), const IPV6_FAITH ideal-int
+pkg syscall (netbsd-386), const IPV6_FLOWINFO_MASK ideal-int
+pkg syscall (netbsd-386), const IPV6_FLOWLABEL_MASK ideal-int
+pkg syscall (netbsd-386), const IPV6_FRAGTTL ideal-int
+pkg syscall (netbsd-386), const IPV6_HLIMDEC ideal-int
+pkg syscall (netbsd-386), const IPV6_HOPLIMIT ideal-int
+pkg syscall (netbsd-386), const IPV6_HOPOPTS ideal-int
+pkg syscall (netbsd-386), const IPV6_IPSEC_POLICY ideal-int
+pkg syscall (netbsd-386), const IPV6_MAXHLIM ideal-int
+pkg syscall (netbsd-386), const IPV6_MAXPACKET ideal-int
+pkg syscall (netbsd-386), const IPV6_MMTU ideal-int
+pkg syscall (netbsd-386), const IPV6_NEXTHOP ideal-int
+pkg syscall (netbsd-386), const IPV6_PATHMTU ideal-int
+pkg syscall (netbsd-386), const IPV6_PKTINFO ideal-int
+pkg syscall (netbsd-386), const IPV6_PORTRANGE ideal-int
+pkg syscall (netbsd-386), const IPV6_PORTRANGE_DEFAULT ideal-int
+pkg syscall (netbsd-386), const IPV6_PORTRANGE_HIGH ideal-int
+pkg syscall (netbsd-386), const IPV6_PORTRANGE_LOW ideal-int
+pkg syscall (netbsd-386), const IPV6_RECVDSTOPTS ideal-int
+pkg syscall (netbsd-386), const IPV6_RECVHOPLIMIT ideal-int
+pkg syscall (netbsd-386), const IPV6_RECVHOPOPTS ideal-int
+pkg syscall (netbsd-386), const IPV6_RECVPATHMTU ideal-int
+pkg syscall (netbsd-386), const IPV6_RECVPKTINFO ideal-int
+pkg syscall (netbsd-386), const IPV6_RECVRTHDR ideal-int
+pkg syscall (netbsd-386), const IPV6_RECVTCLASS ideal-int
+pkg syscall (netbsd-386), const IPV6_RTHDR ideal-int
+pkg syscall (netbsd-386), const IPV6_RTHDRDSTOPTS ideal-int
+pkg syscall (netbsd-386), const IPV6_RTHDR_LOOSE ideal-int
+pkg syscall (netbsd-386), const IPV6_RTHDR_STRICT ideal-int
+pkg syscall (netbsd-386), const IPV6_RTHDR_TYPE_0 ideal-int
+pkg syscall (netbsd-386), const IPV6_SOCKOPT_RESERVED1 ideal-int
+pkg syscall (netbsd-386), const IPV6_TCLASS ideal-int
+pkg syscall (netbsd-386), const IPV6_USE_MIN_MTU ideal-int
+pkg syscall (netbsd-386), const IPV6_VERSION ideal-int
+pkg syscall (netbsd-386), const IPV6_VERSION_MASK ideal-int
+pkg syscall (netbsd-386), const IP_DEFAULT_MULTICAST_LOOP ideal-int
+pkg syscall (netbsd-386), const IP_DEFAULT_MULTICAST_TTL ideal-int
+pkg syscall (netbsd-386), const IP_DF ideal-int
+pkg syscall (netbsd-386), const IP_EF ideal-int
+pkg syscall (netbsd-386), const IP_ERRORMTU ideal-int
+pkg syscall (netbsd-386), const IP_HDRINCL ideal-int
+pkg syscall (netbsd-386), const IP_IPSEC_POLICY ideal-int
+pkg syscall (netbsd-386), const IP_MAXPACKET ideal-int
+pkg syscall (netbsd-386), const IP_MAX_MEMBERSHIPS ideal-int
+pkg syscall (netbsd-386), const IP_MF ideal-int
+pkg syscall (netbsd-386), const IP_MINFRAGSIZE ideal-int
+pkg syscall (netbsd-386), const IP_MINTTL ideal-int
+pkg syscall (netbsd-386), const IP_MSS ideal-int
+pkg syscall (netbsd-386), const IP_OFFMASK ideal-int
+pkg syscall (netbsd-386), const IP_OPTIONS ideal-int
+pkg syscall (netbsd-386), const IP_PORTRANGE ideal-int
+pkg syscall (netbsd-386), const IP_PORTRANGE_DEFAULT ideal-int
+pkg syscall (netbsd-386), const IP_PORTRANGE_HIGH ideal-int
+pkg syscall (netbsd-386), const IP_PORTRANGE_LOW ideal-int
+pkg syscall (netbsd-386), const IP_RECVDSTADDR ideal-int
+pkg syscall (netbsd-386), const IP_RECVIF ideal-int
+pkg syscall (netbsd-386), const IP_RECVOPTS ideal-int
+pkg syscall (netbsd-386), const IP_RECVRETOPTS ideal-int
+pkg syscall (netbsd-386), const IP_RECVTTL ideal-int
+pkg syscall (netbsd-386), const IP_RETOPTS ideal-int
+pkg syscall (netbsd-386), const IP_RF ideal-int
+pkg syscall (netbsd-386), const ISIG ideal-int
+pkg syscall (netbsd-386), const ISTRIP ideal-int
+pkg syscall (netbsd-386), const IXANY ideal-int
+pkg syscall (netbsd-386), const IXOFF ideal-int
+pkg syscall (netbsd-386), const IXON ideal-int
+pkg syscall (netbsd-386), const LOCK_EX ideal-int
+pkg syscall (netbsd-386), const LOCK_NB ideal-int
+pkg syscall (netbsd-386), const LOCK_SH ideal-int
+pkg syscall (netbsd-386), const LOCK_UN ideal-int
+pkg syscall (netbsd-386), const MSG_BCAST ideal-int
+pkg syscall (netbsd-386), const MSG_CMSG_CLOEXEC ideal-int
+pkg syscall (netbsd-386), const MSG_CONTROLMBUF ideal-int
+pkg syscall (netbsd-386), const MSG_CTRUNC ideal-int
+pkg syscall (netbsd-386), const MSG_DONTROUTE ideal-int
+pkg syscall (netbsd-386), const MSG_DONTWAIT ideal-int
+pkg syscall (netbsd-386), const MSG_EOR ideal-int
+pkg syscall (netbsd-386), const MSG_IOVUSRSPACE ideal-int
+pkg syscall (netbsd-386), const MSG_LENUSRSPACE ideal-int
+pkg syscall (netbsd-386), const MSG_MCAST ideal-int
+pkg syscall (netbsd-386), const MSG_NAMEMBUF ideal-int
+pkg syscall (netbsd-386), const MSG_NBIO ideal-int
+pkg syscall (netbsd-386), const MSG_NOSIGNAL ideal-int
+pkg syscall (netbsd-386), const MSG_OOB ideal-int
+pkg syscall (netbsd-386), const MSG_PEEK ideal-int
+pkg syscall (netbsd-386), const MSG_TRUNC ideal-int
+pkg syscall (netbsd-386), const MSG_USERFLAGS ideal-int
+pkg syscall (netbsd-386), const MSG_WAITALL ideal-int
+pkg syscall (netbsd-386), const NAME_MAX ideal-int
+pkg syscall (netbsd-386), const NET_RT_DUMP ideal-int
+pkg syscall (netbsd-386), const NET_RT_FLAGS ideal-int
+pkg syscall (netbsd-386), const NET_RT_IFLIST ideal-int
+pkg syscall (netbsd-386), const NET_RT_MAXID ideal-int
+pkg syscall (netbsd-386), const NET_RT_OIFLIST ideal-int
+pkg syscall (netbsd-386), const NET_RT_OOIFLIST ideal-int
+pkg syscall (netbsd-386), const NOFLSH ideal-int
+pkg syscall (netbsd-386), const NOTE_ATTRIB ideal-int
+pkg syscall (netbsd-386), const NOTE_CHILD ideal-int
+pkg syscall (netbsd-386), const NOTE_DELETE ideal-int
+pkg syscall (netbsd-386), const NOTE_EXEC ideal-int
+pkg syscall (netbsd-386), const NOTE_EXIT ideal-int
+pkg syscall (netbsd-386), const NOTE_EXTEND ideal-int
+pkg syscall (netbsd-386), const NOTE_FORK ideal-int
+pkg syscall (netbsd-386), const NOTE_LINK ideal-int
+pkg syscall (netbsd-386), const NOTE_LOWAT ideal-int
+pkg syscall (netbsd-386), const NOTE_PCTRLMASK ideal-int
+pkg syscall (netbsd-386), const NOTE_PDATAMASK ideal-int
+pkg syscall (netbsd-386), const NOTE_RENAME ideal-int
+pkg syscall (netbsd-386), const NOTE_REVOKE ideal-int
+pkg syscall (netbsd-386), const NOTE_TRACK ideal-int
+pkg syscall (netbsd-386), const NOTE_TRACKERR ideal-int
+pkg syscall (netbsd-386), const NOTE_WRITE ideal-int
+pkg syscall (netbsd-386), const OCRNL ideal-int
+pkg syscall (netbsd-386), const OFIOGETBMAP ideal-int
+pkg syscall (netbsd-386), const ONLCR ideal-int
+pkg syscall (netbsd-386), const ONLRET ideal-int
+pkg syscall (netbsd-386), const ONOCR ideal-int
+pkg syscall (netbsd-386), const ONOEOT ideal-int
+pkg syscall (netbsd-386), const OPOST ideal-int
+pkg syscall (netbsd-386), const O_ACCMODE ideal-int
+pkg syscall (netbsd-386), const O_ALT_IO ideal-int
+pkg syscall (netbsd-386), const O_DIRECT ideal-int
+pkg syscall (netbsd-386), const O_DIRECTORY ideal-int
+pkg syscall (netbsd-386), const O_DSYNC ideal-int
+pkg syscall (netbsd-386), const O_EXLOCK ideal-int
+pkg syscall (netbsd-386), const O_FSYNC ideal-int
+pkg syscall (netbsd-386), const O_NDELAY ideal-int
+pkg syscall (netbsd-386), const O_NOFOLLOW ideal-int
+pkg syscall (netbsd-386), const O_NOSIGPIPE ideal-int
+pkg syscall (netbsd-386), const O_RSYNC ideal-int
+pkg syscall (netbsd-386), const O_SHLOCK ideal-int
+pkg syscall (netbsd-386), const PARENB ideal-int
+pkg syscall (netbsd-386), const PARMRK ideal-int
+pkg syscall (netbsd-386), const PARODD ideal-int
+pkg syscall (netbsd-386), const PENDIN ideal-int
+pkg syscall (netbsd-386), const PRIO_PGRP = 1
+pkg syscall (netbsd-386), const PRIO_PGRP ideal-int
+pkg syscall (netbsd-386), const PRIO_PROCESS = 0
+pkg syscall (netbsd-386), const PRIO_PROCESS ideal-int
+pkg syscall (netbsd-386), const PRIO_USER = 2
+pkg syscall (netbsd-386), const PRIO_USER ideal-int
+pkg syscall (netbsd-386), const PRI_IOFLUSH ideal-int
+pkg syscall (netbsd-386), const PTRACE_CONT ideal-int
+pkg syscall (netbsd-386), const PTRACE_KILL ideal-int
+pkg syscall (netbsd-386), const PTRACE_TRACEME ideal-int
+pkg syscall (netbsd-386), const RLIMIT_AS ideal-int
+pkg syscall (netbsd-386), const RLIMIT_CORE ideal-int
+pkg syscall (netbsd-386), const RLIMIT_CPU ideal-int
+pkg syscall (netbsd-386), const RLIMIT_DATA ideal-int
+pkg syscall (netbsd-386), const RLIMIT_FSIZE ideal-int
+pkg syscall (netbsd-386), const RLIMIT_NOFILE ideal-int
+pkg syscall (netbsd-386), const RLIMIT_STACK ideal-int
+pkg syscall (netbsd-386), const RLIM_INFINITY ideal-int
+pkg syscall (netbsd-386), const RTAX_AUTHOR ideal-int
+pkg syscall (netbsd-386), const RTAX_BRD ideal-int
+pkg syscall (netbsd-386), const RTAX_DST ideal-int
+pkg syscall (netbsd-386), const RTAX_GATEWAY ideal-int
+pkg syscall (netbsd-386), const RTAX_GENMASK ideal-int
+pkg syscall (netbsd-386), const RTAX_IFA ideal-int
+pkg syscall (netbsd-386), const RTAX_IFP ideal-int
+pkg syscall (netbsd-386), const RTAX_MAX ideal-int
+pkg syscall (netbsd-386), const RTAX_NETMASK ideal-int
+pkg syscall (netbsd-386), const RTAX_TAG ideal-int
+pkg syscall (netbsd-386), const RTA_AUTHOR ideal-int
+pkg syscall (netbsd-386), const RTA_BRD ideal-int
+pkg syscall (netbsd-386), const RTA_DST ideal-int
+pkg syscall (netbsd-386), const RTA_GATEWAY ideal-int
+pkg syscall (netbsd-386), const RTA_GENMASK ideal-int
+pkg syscall (netbsd-386), const RTA_IFA ideal-int
+pkg syscall (netbsd-386), const RTA_IFP ideal-int
+pkg syscall (netbsd-386), const RTA_NETMASK ideal-int
+pkg syscall (netbsd-386), const RTA_TAG ideal-int
+pkg syscall (netbsd-386), const RTF_ANNOUNCE ideal-int
+pkg syscall (netbsd-386), const RTF_BLACKHOLE ideal-int
+pkg syscall (netbsd-386), const RTF_CLONED ideal-int
+pkg syscall (netbsd-386), const RTF_CLONING ideal-int
+pkg syscall (netbsd-386), const RTF_DONE ideal-int
+pkg syscall (netbsd-386), const RTF_DYNAMIC ideal-int
+pkg syscall (netbsd-386), const RTF_GATEWAY ideal-int
+pkg syscall (netbsd-386), const RTF_HOST ideal-int
+pkg syscall (netbsd-386), const RTF_LLINFO ideal-int
+pkg syscall (netbsd-386), const RTF_MASK ideal-int
+pkg syscall (netbsd-386), const RTF_MODIFIED ideal-int
+pkg syscall (netbsd-386), const RTF_PROTO1 ideal-int
+pkg syscall (netbsd-386), const RTF_PROTO2 ideal-int
+pkg syscall (netbsd-386), const RTF_REJECT ideal-int
+pkg syscall (netbsd-386), const RTF_SRC ideal-int
+pkg syscall (netbsd-386), const RTF_STATIC ideal-int
+pkg syscall (netbsd-386), const RTF_UP ideal-int
+pkg syscall (netbsd-386), const RTF_XRESOLVE ideal-int
+pkg syscall (netbsd-386), const RTM_ADD ideal-int
+pkg syscall (netbsd-386), const RTM_CHANGE ideal-int
+pkg syscall (netbsd-386), const RTM_CHGADDR ideal-int
+pkg syscall (netbsd-386), const RTM_DELADDR ideal-int
+pkg syscall (netbsd-386), const RTM_DELETE ideal-int
+pkg syscall (netbsd-386), const RTM_GET ideal-int
+pkg syscall (netbsd-386), const RTM_IEEE80211 ideal-int
+pkg syscall (netbsd-386), const RTM_IFANNOUNCE ideal-int
+pkg syscall (netbsd-386), const RTM_IFINFO ideal-int
+pkg syscall (netbsd-386), const RTM_LLINFO_UPD ideal-int
+pkg syscall (netbsd-386), const RTM_LOCK ideal-int
+pkg syscall (netbsd-386), const RTM_LOSING ideal-int
+pkg syscall (netbsd-386), const RTM_MISS ideal-int
+pkg syscall (netbsd-386), const RTM_NEWADDR ideal-int
+pkg syscall (netbsd-386), const RTM_OIFINFO ideal-int
+pkg syscall (netbsd-386), const RTM_OLDADD ideal-int
+pkg syscall (netbsd-386), const RTM_OLDDEL ideal-int
+pkg syscall (netbsd-386), const RTM_OOIFINFO ideal-int
+pkg syscall (netbsd-386), const RTM_REDIRECT ideal-int
+pkg syscall (netbsd-386), const RTM_RESOLVE ideal-int
+pkg syscall (netbsd-386), const RTM_RTTUNIT ideal-int
+pkg syscall (netbsd-386), const RTM_SETGATE ideal-int
+pkg syscall (netbsd-386), const RTM_VERSION ideal-int
+pkg syscall (netbsd-386), const RTV_EXPIRE ideal-int
+pkg syscall (netbsd-386), const RTV_HOPCOUNT ideal-int
+pkg syscall (netbsd-386), const RTV_MTU ideal-int
+pkg syscall (netbsd-386), const RTV_RPIPE ideal-int
+pkg syscall (netbsd-386), const RTV_RTT ideal-int
+pkg syscall (netbsd-386), const RTV_RTTVAR ideal-int
+pkg syscall (netbsd-386), const RTV_SPIPE ideal-int
+pkg syscall (netbsd-386), const RTV_SSTHRESH ideal-int
+pkg syscall (netbsd-386), const RUSAGE_CHILDREN ideal-int
+pkg syscall (netbsd-386), const RUSAGE_SELF ideal-int
+pkg syscall (netbsd-386), const SCM_CREDS ideal-int
+pkg syscall (netbsd-386), const SCM_RIGHTS ideal-int
+pkg syscall (netbsd-386), const SCM_TIMESTAMP ideal-int
+pkg syscall (netbsd-386), const SIGCHLD Signal
+pkg syscall (netbsd-386), const SIGCONT Signal
+pkg syscall (netbsd-386), const SIGEMT Signal
+pkg syscall (netbsd-386), const SIGINFO Signal
+pkg syscall (netbsd-386), const SIGIO Signal
+pkg syscall (netbsd-386), const SIGIOT Signal
+pkg syscall (netbsd-386), const SIGPROF Signal
+pkg syscall (netbsd-386), const SIGPWR Signal
+pkg syscall (netbsd-386), const SIGSTOP Signal
+pkg syscall (netbsd-386), const SIGSYS Signal
+pkg syscall (netbsd-386), const SIGTSTP Signal
+pkg syscall (netbsd-386), const SIGTTIN Signal
+pkg syscall (netbsd-386), const SIGTTOU Signal
+pkg syscall (netbsd-386), const SIGURG Signal
+pkg syscall (netbsd-386), const SIGUSR1 Signal
+pkg syscall (netbsd-386), const SIGUSR2 Signal
+pkg syscall (netbsd-386), const SIGVTALRM Signal
+pkg syscall (netbsd-386), const SIGWINCH Signal
+pkg syscall (netbsd-386), const SIGXCPU Signal
+pkg syscall (netbsd-386), const SIGXFSZ Signal
+pkg syscall (netbsd-386), const SIOCADDMULTI ideal-int
+pkg syscall (netbsd-386), const SIOCADDRT ideal-int
+pkg syscall (netbsd-386), const SIOCAIFADDR ideal-int
+pkg syscall (netbsd-386), const SIOCALIFADDR ideal-int
+pkg syscall (netbsd-386), const SIOCATMARK ideal-int
+pkg syscall (netbsd-386), const SIOCDELMULTI ideal-int
+pkg syscall (netbsd-386), const SIOCDELRT ideal-int
+pkg syscall (netbsd-386), const SIOCDIFADDR ideal-int
+pkg syscall (netbsd-386), const SIOCDIFPHYADDR ideal-int
+pkg syscall (netbsd-386), const SIOCDLIFADDR ideal-int
+pkg syscall (netbsd-386), const SIOCGDRVSPEC ideal-int
+pkg syscall (netbsd-386), const SIOCGETPFSYNC ideal-int
+pkg syscall (netbsd-386), const SIOCGETSGCNT ideal-int
+pkg syscall (netbsd-386), const SIOCGETVIFCNT ideal-int
+pkg syscall (netbsd-386), const SIOCGHIWAT ideal-int
+pkg syscall (netbsd-386), const SIOCGIFADDR ideal-int
+pkg syscall (netbsd-386), const SIOCGIFADDRPREF ideal-int
+pkg syscall (netbsd-386), const SIOCGIFALIAS ideal-int
+pkg syscall (netbsd-386), const SIOCGIFBRDADDR ideal-int
+pkg syscall (netbsd-386), const SIOCGIFCAP ideal-int
+pkg syscall (netbsd-386), const SIOCGIFCONF ideal-int
+pkg syscall (netbsd-386), const SIOCGIFDATA ideal-int
+pkg syscall (netbsd-386), const SIOCGIFDLT ideal-int
+pkg syscall (netbsd-386), const SIOCGIFDSTADDR ideal-int
+pkg syscall (netbsd-386), const SIOCGIFFLAGS ideal-int
+pkg syscall (netbsd-386), const SIOCGIFGENERIC ideal-int
+pkg syscall (netbsd-386), const SIOCGIFMEDIA ideal-int
+pkg syscall (netbsd-386), const SIOCGIFMETRIC ideal-int
+pkg syscall (netbsd-386), const SIOCGIFMTU ideal-int
+pkg syscall (netbsd-386), const SIOCGIFNETMASK ideal-int
+pkg syscall (netbsd-386), const SIOCGIFPDSTADDR ideal-int
+pkg syscall (netbsd-386), const SIOCGIFPSRCADDR ideal-int
+pkg syscall (netbsd-386), const SIOCGLIFADDR ideal-int
+pkg syscall (netbsd-386), const SIOCGLIFPHYADDR ideal-int
+pkg syscall (netbsd-386), const SIOCGLINKSTR ideal-int
+pkg syscall (netbsd-386), const SIOCGLOWAT ideal-int
+pkg syscall (netbsd-386), const SIOCGPGRP ideal-int
+pkg syscall (netbsd-386), const SIOCGVH ideal-int
+pkg syscall (netbsd-386), const SIOCIFCREATE ideal-int
+pkg syscall (netbsd-386), const SIOCIFDESTROY ideal-int
+pkg syscall (netbsd-386), const SIOCIFGCLONERS ideal-int
+pkg syscall (netbsd-386), const SIOCINITIFADDR ideal-int
+pkg syscall (netbsd-386), const SIOCSDRVSPEC ideal-int
+pkg syscall (netbsd-386), const SIOCSETPFSYNC ideal-int
+pkg syscall (netbsd-386), const SIOCSHIWAT ideal-int
+pkg syscall (netbsd-386), const SIOCSIFADDR ideal-int
+pkg syscall (netbsd-386), const SIOCSIFADDRPREF ideal-int
+pkg syscall (netbsd-386), const SIOCSIFBRDADDR ideal-int
+pkg syscall (netbsd-386), const SIOCSIFCAP ideal-int
+pkg syscall (netbsd-386), const SIOCSIFDSTADDR ideal-int
+pkg syscall (netbsd-386), const SIOCSIFFLAGS ideal-int
+pkg syscall (netbsd-386), const SIOCSIFGENERIC ideal-int
+pkg syscall (netbsd-386), const SIOCSIFMEDIA ideal-int
+pkg syscall (netbsd-386), const SIOCSIFMETRIC ideal-int
+pkg syscall (netbsd-386), const SIOCSIFMTU ideal-int
+pkg syscall (netbsd-386), const SIOCSIFNETMASK ideal-int
+pkg syscall (netbsd-386), const SIOCSIFPHYADDR ideal-int
+pkg syscall (netbsd-386), const SIOCSLIFPHYADDR ideal-int
+pkg syscall (netbsd-386), const SIOCSLINKSTR ideal-int
+pkg syscall (netbsd-386), const SIOCSLOWAT ideal-int
+pkg syscall (netbsd-386), const SIOCSPGRP ideal-int
+pkg syscall (netbsd-386), const SIOCSVH ideal-int
+pkg syscall (netbsd-386), const SIOCZIFDATA ideal-int
+pkg syscall (netbsd-386), const SOCK_CLOEXEC ideal-int
+pkg syscall (netbsd-386), const SOCK_FLAGS_MASK ideal-int
+pkg syscall (netbsd-386), const SOCK_NONBLOCK ideal-int
+pkg syscall (netbsd-386), const SOCK_NOSIGPIPE ideal-int
+pkg syscall (netbsd-386), const SOCK_RDM ideal-int
+pkg syscall (netbsd-386), const SO_ACCEPTCONN ideal-int
+pkg syscall (netbsd-386), const SO_ACCEPTFILTER ideal-int
+pkg syscall (netbsd-386), const SO_DEBUG ideal-int
+pkg syscall (netbsd-386), const SO_ERROR ideal-int
+pkg syscall (netbsd-386), const SO_NOHEADER ideal-int
+pkg syscall (netbsd-386), const SO_NOSIGPIPE ideal-int
+pkg syscall (netbsd-386), const SO_OOBINLINE ideal-int
+pkg syscall (netbsd-386), const SO_OVERFLOWED ideal-int
+pkg syscall (netbsd-386), const SO_RCVLOWAT ideal-int
+pkg syscall (netbsd-386), const SO_RCVTIMEO ideal-int
+pkg syscall (netbsd-386), const SO_REUSEPORT ideal-int
+pkg syscall (netbsd-386), const SO_SNDLOWAT ideal-int
+pkg syscall (netbsd-386), const SO_SNDTIMEO ideal-int
+pkg syscall (netbsd-386), const SO_TIMESTAMP ideal-int
+pkg syscall (netbsd-386), const SO_TYPE ideal-int
+pkg syscall (netbsd-386), const SO_USELOOPBACK ideal-int
+pkg syscall (netbsd-386), const SYSCTL_VERSION ideal-int
+pkg syscall (netbsd-386), const SYSCTL_VERS_0 ideal-int
+pkg syscall (netbsd-386), const SYSCTL_VERS_1 ideal-int
+pkg syscall (netbsd-386), const SYSCTL_VERS_MASK ideal-int
+pkg syscall (netbsd-386), const SYS_ACCEPT ideal-int
+pkg syscall (netbsd-386), const SYS_ACCESS ideal-int
+pkg syscall (netbsd-386), const SYS_ACCT ideal-int
+pkg syscall (netbsd-386), const SYS_ADJTIME ideal-int
+pkg syscall (netbsd-386), const SYS_BIND ideal-int
+pkg syscall (netbsd-386), const SYS_BREAK ideal-int
+pkg syscall (netbsd-386), const SYS_CHDIR ideal-int
+pkg syscall (netbsd-386), const SYS_CHFLAGS ideal-int
+pkg syscall (netbsd-386), const SYS_CHMOD ideal-int
+pkg syscall (netbsd-386), const SYS_CHOWN ideal-int
+pkg syscall (netbsd-386), const SYS_CHROOT ideal-int
+pkg syscall (netbsd-386), const SYS_CLOCK_GETRES ideal-int
+pkg syscall (netbsd-386), const SYS_CLOCK_GETTIME ideal-int
+pkg syscall (netbsd-386), const SYS_CLOCK_SETTIME ideal-int
+pkg syscall (netbsd-386), const SYS_CLOSE ideal-int
+pkg syscall (netbsd-386), const SYS_CONNECT ideal-int
+pkg syscall (netbsd-386), const SYS_DUP ideal-int
+pkg syscall (netbsd-386), const SYS_DUP2 ideal-int
+pkg syscall (netbsd-386), const SYS_DUP3 ideal-int
+pkg syscall (netbsd-386), const SYS_EXECVE ideal-int
+pkg syscall (netbsd-386), const SYS_EXIT ideal-int
+pkg syscall (netbsd-386), const SYS_EXTATTRCTL ideal-int
+pkg syscall (netbsd-386), const SYS_EXTATTR_DELETE_FD ideal-int
+pkg syscall (netbsd-386), const SYS_EXTATTR_DELETE_FILE ideal-int
+pkg syscall (netbsd-386), const SYS_EXTATTR_DELETE_LINK ideal-int
+pkg syscall (netbsd-386), const SYS_EXTATTR_GET_FD ideal-int
+pkg syscall (netbsd-386), const SYS_EXTATTR_GET_FILE ideal-int
+pkg syscall (netbsd-386), const SYS_EXTATTR_GET_LINK ideal-int
+pkg syscall (netbsd-386), const SYS_EXTATTR_LIST_FD ideal-int
+pkg syscall (netbsd-386), const SYS_EXTATTR_LIST_FILE ideal-int
+pkg syscall (netbsd-386), const SYS_EXTATTR_LIST_LINK ideal-int
+pkg syscall (netbsd-386), const SYS_EXTATTR_SET_FD ideal-int
+pkg syscall (netbsd-386), const SYS_EXTATTR_SET_FILE ideal-int
+pkg syscall (netbsd-386), const SYS_EXTATTR_SET_LINK ideal-int
+pkg syscall (netbsd-386), const SYS_FACCESSAT ideal-int
+pkg syscall (netbsd-386), const SYS_FCHDIR ideal-int
+pkg syscall (netbsd-386), const SYS_FCHFLAGS ideal-int
+pkg syscall (netbsd-386), const SYS_FCHMOD ideal-int
+pkg syscall (netbsd-386), const SYS_FCHMODAT ideal-int
+pkg syscall (netbsd-386), const SYS_FCHOWN ideal-int
+pkg syscall (netbsd-386), const SYS_FCHOWNAT ideal-int
+pkg syscall (netbsd-386), const SYS_FCHROOT ideal-int
+pkg syscall (netbsd-386), const SYS_FCNTL ideal-int
+pkg syscall (netbsd-386), const SYS_FDATASYNC ideal-int
+pkg syscall (netbsd-386), const SYS_FEXECVE ideal-int
+pkg syscall (netbsd-386), const SYS_FGETXATTR ideal-int
+pkg syscall (netbsd-386), const SYS_FHSTAT ideal-int
+pkg syscall (netbsd-386), const SYS_FKTRACE ideal-int
+pkg syscall (netbsd-386), const SYS_FLISTXATTR ideal-int
+pkg syscall (netbsd-386), const SYS_FLOCK ideal-int
+pkg syscall (netbsd-386), const SYS_FORK ideal-int
+pkg syscall (netbsd-386), const SYS_FPATHCONF ideal-int
+pkg syscall (netbsd-386), const SYS_FREMOVEXATTR ideal-int
+pkg syscall (netbsd-386), const SYS_FSETXATTR ideal-int
+pkg syscall (netbsd-386), const SYS_FSTAT ideal-int
+pkg syscall (netbsd-386), const SYS_FSTATAT ideal-int
+pkg syscall (netbsd-386), const SYS_FSTATVFS1 ideal-int
+pkg syscall (netbsd-386), const SYS_FSYNC ideal-int
+pkg syscall (netbsd-386), const SYS_FSYNC_RANGE ideal-int
+pkg syscall (netbsd-386), const SYS_FTRUNCATE ideal-int
+pkg syscall (netbsd-386), const SYS_FUTIMENS ideal-int
+pkg syscall (netbsd-386), const SYS_FUTIMES ideal-int
+pkg syscall (netbsd-386), const SYS_GETCONTEXT ideal-int
+pkg syscall (netbsd-386), const SYS_GETDENTS ideal-int
+pkg syscall (netbsd-386), const SYS_GETEGID ideal-int
+pkg syscall (netbsd-386), const SYS_GETEUID ideal-int
+pkg syscall (netbsd-386), const SYS_GETFH ideal-int
+pkg syscall (netbsd-386), const SYS_GETGID ideal-int
+pkg syscall (netbsd-386), const SYS_GETGROUPS ideal-int
+pkg syscall (netbsd-386), const SYS_GETITIMER ideal-int
+pkg syscall (netbsd-386), const SYS_GETPEERNAME ideal-int
+pkg syscall (netbsd-386), const SYS_GETPGID ideal-int
+pkg syscall (netbsd-386), const SYS_GETPGRP ideal-int
+pkg syscall (netbsd-386), const SYS_GETPID ideal-int
+pkg syscall (netbsd-386), const SYS_GETPPID ideal-int
+pkg syscall (netbsd-386), const SYS_GETPRIORITY ideal-int
+pkg syscall (netbsd-386), const SYS_GETRLIMIT ideal-int
+pkg syscall (netbsd-386), const SYS_GETRUSAGE ideal-int
+pkg syscall (netbsd-386), const SYS_GETSID ideal-int
+pkg syscall (netbsd-386), const SYS_GETSOCKNAME ideal-int
+pkg syscall (netbsd-386), const SYS_GETSOCKOPT ideal-int
+pkg syscall (netbsd-386), const SYS_GETTIMEOFDAY ideal-int
+pkg syscall (netbsd-386), const SYS_GETUID ideal-int
+pkg syscall (netbsd-386), const SYS_GETVFSSTAT ideal-int
+pkg syscall (netbsd-386), const SYS_GETXATTR ideal-int
+pkg syscall (netbsd-386), const SYS_IOCTL ideal-int
+pkg syscall (netbsd-386), const SYS_ISSETUGID ideal-int
+pkg syscall (netbsd-386), const SYS_KEVENT ideal-int
+pkg syscall (netbsd-386), const SYS_KILL ideal-int
+pkg syscall (netbsd-386), const SYS_KQUEUE ideal-int
+pkg syscall (netbsd-386), const SYS_KQUEUE1 ideal-int
+pkg syscall (netbsd-386), const SYS_KTRACE ideal-int
+pkg syscall (netbsd-386), const SYS_LCHFLAGS ideal-int
+pkg syscall (netbsd-386), const SYS_LCHMOD ideal-int
+pkg syscall (netbsd-386), const SYS_LCHOWN ideal-int
+pkg syscall (netbsd-386), const SYS_LGETXATTR ideal-int
+pkg syscall (netbsd-386), const SYS_LINK ideal-int
+pkg syscall (netbsd-386), const SYS_LINKAT ideal-int
+pkg syscall (netbsd-386), const SYS_LISTEN ideal-int
+pkg syscall (netbsd-386), const SYS_LISTXATTR ideal-int
+pkg syscall (netbsd-386), const SYS_LLISTXATTR ideal-int
+pkg syscall (netbsd-386), const SYS_LREMOVEXATTR ideal-int
+pkg syscall (netbsd-386), const SYS_LSEEK ideal-int
+pkg syscall (netbsd-386), const SYS_LSETXATTR ideal-int
+pkg syscall (netbsd-386), const SYS_LSTAT ideal-int
+pkg syscall (netbsd-386), const SYS_LUTIMES ideal-int
+pkg syscall (netbsd-386), const SYS_MADVISE ideal-int
+pkg syscall (netbsd-386), const SYS_MINCORE ideal-int
+pkg syscall (netbsd-386), const SYS_MINHERIT ideal-int
+pkg syscall (netbsd-386), const SYS_MKDIR ideal-int
+pkg syscall (netbsd-386), const SYS_MKDIRAT ideal-int
+pkg syscall (netbsd-386), const SYS_MKFIFO ideal-int
+pkg syscall (netbsd-386), const SYS_MKFIFOAT ideal-int
+pkg syscall (netbsd-386), const SYS_MKNOD ideal-int
+pkg syscall (netbsd-386), const SYS_MKNODAT ideal-int
+pkg syscall (netbsd-386), const SYS_MLOCK ideal-int
+pkg syscall (netbsd-386), const SYS_MLOCKALL ideal-int
+pkg syscall (netbsd-386), const SYS_MMAP ideal-int
+pkg syscall (netbsd-386), const SYS_MODCTL ideal-int
+pkg syscall (netbsd-386), const SYS_MOUNT ideal-int
+pkg syscall (netbsd-386), const SYS_MPROTECT ideal-int
+pkg syscall (netbsd-386), const SYS_MREMAP ideal-int
+pkg syscall (netbsd-386), const SYS_MSGCTL ideal-int
+pkg syscall (netbsd-386), const SYS_MSGGET ideal-int
+pkg syscall (netbsd-386), const SYS_MSGRCV ideal-int
+pkg syscall (netbsd-386), const SYS_MSGSND ideal-int
+pkg syscall (netbsd-386), const SYS_MUNLOCK ideal-int
+pkg syscall (netbsd-386), const SYS_MUNLOCKALL ideal-int
+pkg syscall (netbsd-386), const SYS_MUNMAP ideal-int
+pkg syscall (netbsd-386), const SYS_NANOSLEEP ideal-int
+pkg syscall (netbsd-386), const SYS_NTP_ADJTIME ideal-int
+pkg syscall (netbsd-386), const SYS_NTP_GETTIME ideal-int
+pkg syscall (netbsd-386), const SYS_OPEN ideal-int
+pkg syscall (netbsd-386), const SYS_OPENAT ideal-int
+pkg syscall (netbsd-386), const SYS_PACCEPT ideal-int
+pkg syscall (netbsd-386), const SYS_PATHCONF ideal-int
+pkg syscall (netbsd-386), const SYS_PIPE ideal-int
+pkg syscall (netbsd-386), const SYS_PIPE2 ideal-int
+pkg syscall (netbsd-386), const SYS_PMC_CONTROL ideal-int
+pkg syscall (netbsd-386), const SYS_PMC_GET_INFO ideal-int
+pkg syscall (netbsd-386), const SYS_POLL ideal-int
+pkg syscall (netbsd-386), const SYS_POLLTS ideal-int
+pkg syscall (netbsd-386), const SYS_POSIX_FADVISE ideal-int
+pkg syscall (netbsd-386), const SYS_POSIX_SPAWN ideal-int
+pkg syscall (netbsd-386), const SYS_PREAD ideal-int
+pkg syscall (netbsd-386), const SYS_PREADV ideal-int
+pkg syscall (netbsd-386), const SYS_PROFIL ideal-int
+pkg syscall (netbsd-386), const SYS_PSELECT ideal-int
+pkg syscall (netbsd-386), const SYS_PSET_ASSIGN ideal-int
+pkg syscall (netbsd-386), const SYS_PSET_CREATE ideal-int
+pkg syscall (netbsd-386), const SYS_PSET_DESTROY ideal-int
+pkg syscall (netbsd-386), const SYS_PTRACE ideal-int
+pkg syscall (netbsd-386), const SYS_PWRITE ideal-int
+pkg syscall (netbsd-386), const SYS_PWRITEV ideal-int
+pkg syscall (netbsd-386), const SYS_RASCTL ideal-int
+pkg syscall (netbsd-386), const SYS_READ ideal-int
+pkg syscall (netbsd-386), const SYS_READLINK ideal-int
+pkg syscall (netbsd-386), const SYS_READLINKAT ideal-int
+pkg syscall (netbsd-386), const SYS_READV ideal-int
+pkg syscall (netbsd-386), const SYS_REBOOT ideal-int
+pkg syscall (netbsd-386), const SYS_RECVFROM ideal-int
+pkg syscall (netbsd-386), const SYS_RECVMMSG ideal-int
+pkg syscall (netbsd-386), const SYS_RECVMSG ideal-int
+pkg syscall (netbsd-386), const SYS_REMOVEXATTR ideal-int
+pkg syscall (netbsd-386), const SYS_RENAME ideal-int
+pkg syscall (netbsd-386), const SYS_RENAMEAT ideal-int
+pkg syscall (netbsd-386), const SYS_REVOKE ideal-int
+pkg syscall (netbsd-386), const SYS_RMDIR ideal-int
+pkg syscall (netbsd-386), const SYS_SBRK ideal-int
+pkg syscall (netbsd-386), const SYS_SCHED_YIELD ideal-int
+pkg syscall (netbsd-386), const SYS_SELECT ideal-int
+pkg syscall (netbsd-386), const SYS_SEMCONFIG ideal-int
+pkg syscall (netbsd-386), const SYS_SEMGET ideal-int
+pkg syscall (netbsd-386), const SYS_SEMOP ideal-int
+pkg syscall (netbsd-386), const SYS_SENDMMSG ideal-int
+pkg syscall (netbsd-386), const SYS_SENDMSG ideal-int
+pkg syscall (netbsd-386), const SYS_SENDTO ideal-int
+pkg syscall (netbsd-386), const SYS_SETCONTEXT ideal-int
+pkg syscall (netbsd-386), const SYS_SETEGID ideal-int
+pkg syscall (netbsd-386), const SYS_SETEUID ideal-int
+pkg syscall (netbsd-386), const SYS_SETGID ideal-int
+pkg syscall (netbsd-386), const SYS_SETGROUPS ideal-int
+pkg syscall (netbsd-386), const SYS_SETITIMER ideal-int
+pkg syscall (netbsd-386), const SYS_SETPGID ideal-int
+pkg syscall (netbsd-386), const SYS_SETPRIORITY ideal-int
+pkg syscall (netbsd-386), const SYS_SETREGID ideal-int
+pkg syscall (netbsd-386), const SYS_SETREUID ideal-int
+pkg syscall (netbsd-386), const SYS_SETRLIMIT ideal-int
+pkg syscall (netbsd-386), const SYS_SETSID ideal-int
+pkg syscall (netbsd-386), const SYS_SETSOCKOPT ideal-int
+pkg syscall (netbsd-386), const SYS_SETTIMEOFDAY ideal-int
+pkg syscall (netbsd-386), const SYS_SETUID ideal-int
+pkg syscall (netbsd-386), const SYS_SETXATTR ideal-int
+pkg syscall (netbsd-386), const SYS_SHMAT ideal-int
+pkg syscall (netbsd-386), const SYS_SHMCTL ideal-int
+pkg syscall (netbsd-386), const SYS_SHMDT ideal-int
+pkg syscall (netbsd-386), const SYS_SHMGET ideal-int
+pkg syscall (netbsd-386), const SYS_SHUTDOWN ideal-int
+pkg syscall (netbsd-386), const SYS_SIGQUEUEINFO ideal-int
+pkg syscall (netbsd-386), const SYS_SOCKET ideal-int
+pkg syscall (netbsd-386), const SYS_SOCKETPAIR ideal-int
+pkg syscall (netbsd-386), const SYS_SSTK ideal-int
+pkg syscall (netbsd-386), const SYS_STAT ideal-int
+pkg syscall (netbsd-386), const SYS_STATVFS1 ideal-int
+pkg syscall (netbsd-386), const SYS_SWAPCTL ideal-int
+pkg syscall (netbsd-386), const SYS_SYMLINK ideal-int
+pkg syscall (netbsd-386), const SYS_SYMLINKAT ideal-int
+pkg syscall (netbsd-386), const SYS_SYNC ideal-int
+pkg syscall (netbsd-386), const SYS_SYSARCH ideal-int
+pkg syscall (netbsd-386), const SYS_TIMER_CREATE ideal-int
+pkg syscall (netbsd-386), const SYS_TIMER_DELETE ideal-int
+pkg syscall (netbsd-386), const SYS_TIMER_GETOVERRUN ideal-int
+pkg syscall (netbsd-386), const SYS_TIMER_GETTIME ideal-int
+pkg syscall (netbsd-386), const SYS_TIMER_SETTIME ideal-int
+pkg syscall (netbsd-386), const SYS_TRUNCATE ideal-int
+pkg syscall (netbsd-386), const SYS_UMASK ideal-int
+pkg syscall (netbsd-386), const SYS_UNDELETE ideal-int
+pkg syscall (netbsd-386), const SYS_UNLINK ideal-int
+pkg syscall (netbsd-386), const SYS_UNLINKAT ideal-int
+pkg syscall (netbsd-386), const SYS_UNMOUNT ideal-int
+pkg syscall (netbsd-386), const SYS_UTIMENSAT ideal-int
+pkg syscall (netbsd-386), const SYS_UTIMES ideal-int
+pkg syscall (netbsd-386), const SYS_UTRACE ideal-int
+pkg syscall (netbsd-386), const SYS_UUIDGEN ideal-int
+pkg syscall (netbsd-386), const SYS_VADVISE ideal-int
+pkg syscall (netbsd-386), const SYS_VFORK ideal-int
+pkg syscall (netbsd-386), const SYS_WAIT4 ideal-int
+pkg syscall (netbsd-386), const SYS_WRITE ideal-int
+pkg syscall (netbsd-386), const SYS_WRITEV ideal-int
+pkg syscall (netbsd-386), const SYS__LWP_CONTINUE ideal-int
+pkg syscall (netbsd-386), const SYS__LWP_CREATE ideal-int
+pkg syscall (netbsd-386), const SYS__LWP_CTL ideal-int
+pkg syscall (netbsd-386), const SYS__LWP_DETACH ideal-int
+pkg syscall (netbsd-386), const SYS__LWP_EXIT ideal-int
+pkg syscall (netbsd-386), const SYS__LWP_GETNAME ideal-int
+pkg syscall (netbsd-386), const SYS__LWP_GETPRIVATE ideal-int
+pkg syscall (netbsd-386), const SYS__LWP_KILL ideal-int
+pkg syscall (netbsd-386), const SYS__LWP_PARK ideal-int
+pkg syscall (netbsd-386), const SYS__LWP_SELF ideal-int
+pkg syscall (netbsd-386), const SYS__LWP_SETNAME ideal-int
+pkg syscall (netbsd-386), const SYS__LWP_SETPRIVATE ideal-int
+pkg syscall (netbsd-386), const SYS__LWP_SUSPEND ideal-int
+pkg syscall (netbsd-386), const SYS__LWP_UNPARK ideal-int
+pkg syscall (netbsd-386), const SYS__LWP_UNPARK_ALL ideal-int
+pkg syscall (netbsd-386), const SYS__LWP_WAIT ideal-int
+pkg syscall (netbsd-386), const SYS__LWP_WAKEUP ideal-int
+pkg syscall (netbsd-386), const SYS__PSET_BIND ideal-int
+pkg syscall (netbsd-386), const SYS__SCHED_GETAFFINITY ideal-int
+pkg syscall (netbsd-386), const SYS__SCHED_GETPARAM ideal-int
+pkg syscall (netbsd-386), const SYS__SCHED_SETAFFINITY ideal-int
+pkg syscall (netbsd-386), const SYS__SCHED_SETPARAM ideal-int
+pkg syscall (netbsd-386), const SYS___CLONE ideal-int
+pkg syscall (netbsd-386), const SYS___GETCWD ideal-int
+pkg syscall (netbsd-386), const SYS___GETLOGIN ideal-int
+pkg syscall (netbsd-386), const SYS___POSIX_CHOWN ideal-int
+pkg syscall (netbsd-386), const SYS___POSIX_FCHOWN ideal-int
+pkg syscall (netbsd-386), const SYS___POSIX_LCHOWN ideal-int
+pkg syscall (netbsd-386), const SYS___POSIX_RENAME ideal-int
+pkg syscall (netbsd-386), const SYS___QUOTACTL ideal-int
+pkg syscall (netbsd-386), const SYS___SEMCTL ideal-int
+pkg syscall (netbsd-386), const SYS___SETLOGIN ideal-int
+pkg syscall (netbsd-386), const SYS___SIGACTION_SIGTRAMP ideal-int
+pkg syscall (netbsd-386), const SYS___SIGTIMEDWAIT ideal-int
+pkg syscall (netbsd-386), const SYS___SYSCTL ideal-int
+pkg syscall (netbsd-386), const S_ARCH1 ideal-int
+pkg syscall (netbsd-386), const S_ARCH2 ideal-int
+pkg syscall (netbsd-386), const S_BLKSIZE ideal-int
+pkg syscall (netbsd-386), const S_IEXEC ideal-int
+pkg syscall (netbsd-386), const S_IFWHT ideal-int
+pkg syscall (netbsd-386), const S_IREAD ideal-int
+pkg syscall (netbsd-386), const S_IRGRP ideal-int
+pkg syscall (netbsd-386), const S_IROTH ideal-int
+pkg syscall (netbsd-386), const S_IRWXG ideal-int
+pkg syscall (netbsd-386), const S_IRWXO ideal-int
+pkg syscall (netbsd-386), const S_IRWXU ideal-int
+pkg syscall (netbsd-386), const S_ISTXT ideal-int
+pkg syscall (netbsd-386), const S_IWGRP ideal-int
+pkg syscall (netbsd-386), const S_IWOTH ideal-int
+pkg syscall (netbsd-386), const S_IWRITE ideal-int
+pkg syscall (netbsd-386), const S_IXGRP ideal-int
+pkg syscall (netbsd-386), const S_IXOTH ideal-int
+pkg syscall (netbsd-386), const S_LOGIN_SET ideal-int
+pkg syscall (netbsd-386), const SizeofBpfHdr ideal-int
+pkg syscall (netbsd-386), const SizeofBpfInsn ideal-int
+pkg syscall (netbsd-386), const SizeofBpfProgram ideal-int
+pkg syscall (netbsd-386), const SizeofBpfStat ideal-int
+pkg syscall (netbsd-386), const SizeofBpfVersion ideal-int
+pkg syscall (netbsd-386), const SizeofCmsghdr ideal-int
+pkg syscall (netbsd-386), const SizeofICMPv6Filter = 32
+pkg syscall (netbsd-386), const SizeofICMPv6Filter ideal-int
+pkg syscall (netbsd-386), const SizeofIPMreq ideal-int
+pkg syscall (netbsd-386), const SizeofIPv6MTUInfo = 32
+pkg syscall (netbsd-386), const SizeofIPv6MTUInfo ideal-int
+pkg syscall (netbsd-386), const SizeofIPv6Mreq ideal-int
+pkg syscall (netbsd-386), const SizeofIfAnnounceMsghdr ideal-int
+pkg syscall (netbsd-386), const SizeofIfData ideal-int
+pkg syscall (netbsd-386), const SizeofIfMsghdr ideal-int
+pkg syscall (netbsd-386), const SizeofIfaMsghdr ideal-int
+pkg syscall (netbsd-386), const SizeofInet6Pktinfo ideal-int
+pkg syscall (netbsd-386), const SizeofLinger ideal-int
+pkg syscall (netbsd-386), const SizeofMsghdr ideal-int
+pkg syscall (netbsd-386), const SizeofRtMetrics ideal-int
+pkg syscall (netbsd-386), const SizeofRtMsghdr ideal-int
+pkg syscall (netbsd-386), const SizeofSockaddrAny ideal-int
+pkg syscall (netbsd-386), const SizeofSockaddrDatalink ideal-int
+pkg syscall (netbsd-386), const SizeofSockaddrInet4 ideal-int
+pkg syscall (netbsd-386), const SizeofSockaddrInet6 ideal-int
+pkg syscall (netbsd-386), const SizeofSockaddrUnix ideal-int
+pkg syscall (netbsd-386), const TCIFLUSH ideal-int
+pkg syscall (netbsd-386), const TCIOFLUSH ideal-int
+pkg syscall (netbsd-386), const TCOFLUSH ideal-int
+pkg syscall (netbsd-386), const TCP_CONGCTL ideal-int
+pkg syscall (netbsd-386), const TCP_KEEPCNT ideal-int
+pkg syscall (netbsd-386), const TCP_KEEPIDLE ideal-int
+pkg syscall (netbsd-386), const TCP_KEEPINIT ideal-int
+pkg syscall (netbsd-386), const TCP_KEEPINTVL ideal-int
+pkg syscall (netbsd-386), const TCP_MAXBURST ideal-int
+pkg syscall (netbsd-386), const TCP_MAXSEG ideal-int
+pkg syscall (netbsd-386), const TCP_MAXWIN ideal-int
+pkg syscall (netbsd-386), const TCP_MAX_WINSHIFT ideal-int
+pkg syscall (netbsd-386), const TCP_MD5SIG ideal-int
+pkg syscall (netbsd-386), const TCP_MINMSS ideal-int
+pkg syscall (netbsd-386), const TCP_MSS ideal-int
+pkg syscall (netbsd-386), const TCSAFLUSH ideal-int
+pkg syscall (netbsd-386), const TIOCCBRK ideal-int
+pkg syscall (netbsd-386), const TIOCCDTR ideal-int
+pkg syscall (netbsd-386), const TIOCCONS ideal-int
+pkg syscall (netbsd-386), const TIOCDCDTIMESTAMP ideal-int
+pkg syscall (netbsd-386), const TIOCDRAIN ideal-int
+pkg syscall (netbsd-386), const TIOCEXCL ideal-int
+pkg syscall (netbsd-386), const TIOCEXT ideal-int
+pkg syscall (netbsd-386), const TIOCFLAG_CDTRCTS ideal-int
+pkg syscall (netbsd-386), const TIOCFLAG_CLOCAL ideal-int
+pkg syscall (netbsd-386), const TIOCFLAG_CRTSCTS ideal-int
+pkg syscall (netbsd-386), const TIOCFLAG_MDMBUF ideal-int
+pkg syscall (netbsd-386), const TIOCFLAG_SOFTCAR ideal-int
+pkg syscall (netbsd-386), const TIOCFLUSH ideal-int
+pkg syscall (netbsd-386), const TIOCGETA ideal-int
+pkg syscall (netbsd-386), const TIOCGETD ideal-int
+pkg syscall (netbsd-386), const TIOCGFLAGS ideal-int
+pkg syscall (netbsd-386), const TIOCGLINED ideal-int
+pkg syscall (netbsd-386), const TIOCGPGRP ideal-int
+pkg syscall (netbsd-386), const TIOCGQSIZE ideal-int
+pkg syscall (netbsd-386), const TIOCGRANTPT ideal-int
+pkg syscall (netbsd-386), const TIOCGSID ideal-int
+pkg syscall (netbsd-386), const TIOCGSIZE ideal-int
+pkg syscall (netbsd-386), const TIOCGWINSZ ideal-int
+pkg syscall (netbsd-386), const TIOCMBIC ideal-int
+pkg syscall (netbsd-386), const TIOCMBIS ideal-int
+pkg syscall (netbsd-386), const TIOCMGET ideal-int
+pkg syscall (netbsd-386), const TIOCMSET ideal-int
+pkg syscall (netbsd-386), const TIOCM_CAR ideal-int
+pkg syscall (netbsd-386), const TIOCM_CD ideal-int
+pkg syscall (netbsd-386), const TIOCM_CTS ideal-int
+pkg syscall (netbsd-386), const TIOCM_DSR ideal-int
+pkg syscall (netbsd-386), const TIOCM_DTR ideal-int
+pkg syscall (netbsd-386), const TIOCM_LE ideal-int
+pkg syscall (netbsd-386), const TIOCM_RI ideal-int
+pkg syscall (netbsd-386), const TIOCM_RNG ideal-int
+pkg syscall (netbsd-386), const TIOCM_RTS ideal-int
+pkg syscall (netbsd-386), const TIOCM_SR ideal-int
+pkg syscall (netbsd-386), const TIOCM_ST ideal-int
+pkg syscall (netbsd-386), const TIOCNOTTY ideal-int
+pkg syscall (netbsd-386), const TIOCNXCL ideal-int
+pkg syscall (netbsd-386), const TIOCOUTQ ideal-int
+pkg syscall (netbsd-386), const TIOCPKT ideal-int
+pkg syscall (netbsd-386), const TIOCPKT_DATA ideal-int
+pkg syscall (netbsd-386), const TIOCPKT_DOSTOP ideal-int
+pkg syscall (netbsd-386), const TIOCPKT_FLUSHREAD ideal-int
+pkg syscall (netbsd-386), const TIOCPKT_FLUSHWRITE ideal-int
+pkg syscall (netbsd-386), const TIOCPKT_IOCTL ideal-int
+pkg syscall (netbsd-386), const TIOCPKT_NOSTOP ideal-int
+pkg syscall (netbsd-386), const TIOCPKT_START ideal-int
+pkg syscall (netbsd-386), const TIOCPKT_STOP ideal-int
+pkg syscall (netbsd-386), const TIOCPTMGET ideal-int
+pkg syscall (netbsd-386), const TIOCPTSNAME ideal-int
+pkg syscall (netbsd-386), const TIOCRCVFRAME ideal-int
+pkg syscall (netbsd-386), const TIOCREMOTE ideal-int
+pkg syscall (netbsd-386), const TIOCSBRK ideal-int
+pkg syscall (netbsd-386), const TIOCSCTTY ideal-int
+pkg syscall (netbsd-386), const TIOCSDTR ideal-int
+pkg syscall (netbsd-386), const TIOCSETA ideal-int
+pkg syscall (netbsd-386), const TIOCSETAF ideal-int
+pkg syscall (netbsd-386), const TIOCSETAW ideal-int
+pkg syscall (netbsd-386), const TIOCSETD ideal-int
+pkg syscall (netbsd-386), const TIOCSFLAGS ideal-int
+pkg syscall (netbsd-386), const TIOCSIG ideal-int
+pkg syscall (netbsd-386), const TIOCSLINED ideal-int
+pkg syscall (netbsd-386), const TIOCSPGRP ideal-int
+pkg syscall (netbsd-386), const TIOCSQSIZE ideal-int
+pkg syscall (netbsd-386), const TIOCSSIZE ideal-int
+pkg syscall (netbsd-386), const TIOCSTART ideal-int
+pkg syscall (netbsd-386), const TIOCSTAT ideal-int
+pkg syscall (netbsd-386), const TIOCSTI ideal-int
+pkg syscall (netbsd-386), const TIOCSTOP ideal-int
+pkg syscall (netbsd-386), const TIOCSWINSZ ideal-int
+pkg syscall (netbsd-386), const TIOCUCNTL ideal-int
+pkg syscall (netbsd-386), const TIOCXMTFRAME ideal-int
+pkg syscall (netbsd-386), const TOSTOP ideal-int
+pkg syscall (netbsd-386), const VDISCARD ideal-int
+pkg syscall (netbsd-386), const VDSUSP ideal-int
+pkg syscall (netbsd-386), const VEOF ideal-int
+pkg syscall (netbsd-386), const VEOL ideal-int
+pkg syscall (netbsd-386), const VEOL2 ideal-int
+pkg syscall (netbsd-386), const VERASE ideal-int
+pkg syscall (netbsd-386), const VINTR ideal-int
+pkg syscall (netbsd-386), const VKILL ideal-int
+pkg syscall (netbsd-386), const VLNEXT ideal-int
+pkg syscall (netbsd-386), const VMIN ideal-int
+pkg syscall (netbsd-386), const VQUIT ideal-int
+pkg syscall (netbsd-386), const VREPRINT ideal-int
+pkg syscall (netbsd-386), const VSTART ideal-int
+pkg syscall (netbsd-386), const VSTATUS ideal-int
+pkg syscall (netbsd-386), const VSTOP ideal-int
+pkg syscall (netbsd-386), const VSUSP ideal-int
+pkg syscall (netbsd-386), const VTIME ideal-int
+pkg syscall (netbsd-386), const VWERASE ideal-int
+pkg syscall (netbsd-386), const WALL ideal-int
+pkg syscall (netbsd-386), const WALLSIG ideal-int
+pkg syscall (netbsd-386), const WALTSIG ideal-int
+pkg syscall (netbsd-386), const WCLONE ideal-int
+pkg syscall (netbsd-386), const WCOREFLAG ideal-int
+pkg syscall (netbsd-386), const WNOHANG ideal-int
+pkg syscall (netbsd-386), const WNOWAIT ideal-int
+pkg syscall (netbsd-386), const WNOZOMBIE ideal-int
+pkg syscall (netbsd-386), const WOPTSCHECKED ideal-int
+pkg syscall (netbsd-386), const WSTOPPED ideal-int
+pkg syscall (netbsd-386), const WUNTRACED ideal-int
+pkg syscall (netbsd-386), func Accept(int) (int, Sockaddr, error)
+pkg syscall (netbsd-386), func Access(string, uint32) error
+pkg syscall (netbsd-386), func Adjtime(*Timeval, *Timeval) error
+pkg syscall (netbsd-386), func Bind(int, Sockaddr) error
+pkg syscall (netbsd-386), func BpfBuflen(int) (int, error)
+pkg syscall (netbsd-386), func BpfDatalink(int) (int, error)
+pkg syscall (netbsd-386), func BpfHeadercmpl(int) (int, error)
+pkg syscall (netbsd-386), func BpfInterface(int, string) (string, error)
+pkg syscall (netbsd-386), func BpfJump(int, int, int, int) *BpfInsn
+pkg syscall (netbsd-386), func BpfStats(int) (*BpfStat, error)
+pkg syscall (netbsd-386), func BpfStmt(int, int) *BpfInsn
+pkg syscall (netbsd-386), func BpfTimeout(int) (*Timeval, error)
+pkg syscall (netbsd-386), func CheckBpfVersion(int) error
+pkg syscall (netbsd-386), func Chflags(string, int) error
+pkg syscall (netbsd-386), func Chroot(string) error
+pkg syscall (netbsd-386), func Close(int) error
+pkg syscall (netbsd-386), func CloseOnExec(int)
+pkg syscall (netbsd-386), func CmsgLen(int) int
+pkg syscall (netbsd-386), func CmsgSpace(int) int
+pkg syscall (netbsd-386), func Connect(int, Sockaddr) error
+pkg syscall (netbsd-386), func Dup(int) (int, error)
+pkg syscall (netbsd-386), func Dup2(int, int) error
+pkg syscall (netbsd-386), func Fchdir(int) error
+pkg syscall (netbsd-386), func Fchflags(int, int) error
+pkg syscall (netbsd-386), func Fchmod(int, uint32) error
+pkg syscall (netbsd-386), func Fchown(int, int, int) error
+pkg syscall (netbsd-386), func Flock(int, int) error
+pkg syscall (netbsd-386), func FlushBpf(int) error
+pkg syscall (netbsd-386), func ForkExec(string, []string, *ProcAttr) (int, error)
+pkg syscall (netbsd-386), func Fpathconf(int, int) (int, error)
+pkg syscall (netbsd-386), func Fstat(int, *Stat_t) error
+pkg syscall (netbsd-386), func Fsync(int) error
+pkg syscall (netbsd-386), func Ftruncate(int, int64) error
+pkg syscall (netbsd-386), func Futimes(int, []Timeval) error
+pkg syscall (netbsd-386), func Getdirentries(int, []uint8, *uintptr) (int, error)
+pkg syscall (netbsd-386), func Getpeername(int) (Sockaddr, error)
+pkg syscall (netbsd-386), func Getpgid(int) (int, error)
+pkg syscall (netbsd-386), func Getpgrp() int
+pkg syscall (netbsd-386), func Getpriority(int, int) (int, error)
+pkg syscall (netbsd-386), func Getrlimit(int, *Rlimit) error
+pkg syscall (netbsd-386), func Getrusage(int, *Rusage) error
+pkg syscall (netbsd-386), func Getsid(int) (int, error)
+pkg syscall (netbsd-386), func Getsockname(int) (Sockaddr, error)
+pkg syscall (netbsd-386), func GetsockoptByte(int, int, int) (uint8, error)
+pkg syscall (netbsd-386), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
+pkg syscall (netbsd-386), func GetsockoptIPMreq(int, int, int) (*IPMreq, error)
+pkg syscall (netbsd-386), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
+pkg syscall (netbsd-386), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error)
+pkg syscall (netbsd-386), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error)
+pkg syscall (netbsd-386), func GetsockoptInt(int, int, int) (int, error)
+pkg syscall (netbsd-386), func Issetugid() bool
+pkg syscall (netbsd-386), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error)
+pkg syscall (netbsd-386), func Kill(int, Signal) error
+pkg syscall (netbsd-386), func Kqueue() (int, error)
+pkg syscall (netbsd-386), func Listen(int, int) error
+pkg syscall (netbsd-386), func Lstat(string, *Stat_t) error
+pkg syscall (netbsd-386), func Mkfifo(string, uint32) error
+pkg syscall (netbsd-386), func Mknod(string, uint32, int) error
+pkg syscall (netbsd-386), func Mmap(int, int64, int, int, int) ([]uint8, error)
+pkg syscall (netbsd-386), func Munmap([]uint8) error
+pkg syscall (netbsd-386), func Nanosleep(*Timespec, *Timespec) error
+pkg syscall (netbsd-386), func Open(string, int, uint32) (int, error)
+pkg syscall (netbsd-386), func ParseDirent([]uint8, int, []string) (int, int, []string)
+pkg syscall (netbsd-386), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error)
+pkg syscall (netbsd-386), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error)
+pkg syscall (netbsd-386), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error)
+pkg syscall (netbsd-386), func ParseUnixRights(*SocketControlMessage) ([]int, error)
+pkg syscall (netbsd-386), func Pathconf(string, int) (int, error)
+pkg syscall (netbsd-386), func Pipe([]int) error
+pkg syscall (netbsd-386), func Pread(int, []uint8, int64) (int, error)
+pkg syscall (netbsd-386), func Pwrite(int, []uint8, int64) (int, error)
+pkg syscall (netbsd-386), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (netbsd-386), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (netbsd-386), func Read(int, []uint8) (int, error)
+pkg syscall (netbsd-386), func ReadDirent(int, []uint8) (int, error)
+pkg syscall (netbsd-386), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
+pkg syscall (netbsd-386), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
+pkg syscall (netbsd-386), func Revoke(string) error
+pkg syscall (netbsd-386), func RouteRIB(int, int) ([]uint8, error)
+pkg syscall (netbsd-386), func Seek(int, int64, int) (int64, error)
+pkg syscall (netbsd-386), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error
+pkg syscall (netbsd-386), func Sendfile(int, int, *int64, int) (int, error)
+pkg syscall (netbsd-386), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
+pkg syscall (netbsd-386), func Sendto(int, []uint8, int, Sockaddr) error
+pkg syscall (netbsd-386), func SetBpf(int, []BpfInsn) error
+pkg syscall (netbsd-386), func SetBpfBuflen(int, int) (int, error)
+pkg syscall (netbsd-386), func SetBpfDatalink(int, int) (int, error)
+pkg syscall (netbsd-386), func SetBpfHeadercmpl(int, int) error
+pkg syscall (netbsd-386), func SetBpfImmediate(int, int) error
+pkg syscall (netbsd-386), func SetBpfInterface(int, string) error
+pkg syscall (netbsd-386), func SetBpfPromisc(int, int) error
+pkg syscall (netbsd-386), func SetBpfTimeout(int, *Timeval) error
+pkg syscall (netbsd-386), func SetKevent(*Kevent_t, int, int, int)
+pkg syscall (netbsd-386), func SetNonblock(int, bool) error
+pkg syscall (netbsd-386), func Setegid(int) error
+pkg syscall (netbsd-386), func Seteuid(int) error
+pkg syscall (netbsd-386), func Setgid(int) error
+pkg syscall (netbsd-386), func Setgroups([]int) error
+pkg syscall (netbsd-386), func Setpgid(int, int) error
+pkg syscall (netbsd-386), func Setpriority(int, int, int) error
+pkg syscall (netbsd-386), func Setregid(int, int) error
+pkg syscall (netbsd-386), func Setreuid(int, int) error
+pkg syscall (netbsd-386), func Setrlimit(int, *Rlimit) error
+pkg syscall (netbsd-386), func Setsid() (int, error)
+pkg syscall (netbsd-386), func SetsockoptByte(int, int, int, uint8) error
+pkg syscall (netbsd-386), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
+pkg syscall (netbsd-386), func SetsockoptIPMreq(int, int, int, *IPMreq) error
+pkg syscall (netbsd-386), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error
+pkg syscall (netbsd-386), func SetsockoptInet4Addr(int, int, int, [4]uint8) error
+pkg syscall (netbsd-386), func SetsockoptInt(int, int, int, int) error
+pkg syscall (netbsd-386), func SetsockoptLinger(int, int, int, *Linger) error
+pkg syscall (netbsd-386), func SetsockoptString(int, int, int, string) error
+pkg syscall (netbsd-386), func SetsockoptTimeval(int, int, int, *Timeval) error
+pkg syscall (netbsd-386), func Settimeofday(*Timeval) error
+pkg syscall (netbsd-386), func Setuid(int) error
+pkg syscall (netbsd-386), func Shutdown(int, int) error
+pkg syscall (netbsd-386), func SlicePtrFromStrings([]string) ([]*uint8, error)
+pkg syscall (netbsd-386), func Socket(int, int, int) (int, error)
+pkg syscall (netbsd-386), func Socketpair(int, int, int) ([2]int, error)
+pkg syscall (netbsd-386), func Stat(string, *Stat_t) error
+pkg syscall (netbsd-386), func StringSlicePtr([]string) []*uint8
+pkg syscall (netbsd-386), func Sync() error
+pkg syscall (netbsd-386), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (netbsd-386), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (netbsd-386), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (netbsd-386), func Sysctl(string) (string, error)
+pkg syscall (netbsd-386), func SysctlUint32(string) (uint32, error)
+pkg syscall (netbsd-386), func TimevalToNsec(Timeval) int64
+pkg syscall (netbsd-386), func Truncate(string, int64) error
+pkg syscall (netbsd-386), func Umask(int) int
+pkg syscall (netbsd-386), func UnixRights(...int) []uint8
+pkg syscall (netbsd-386), func Unmount(string, int) error
+pkg syscall (netbsd-386), func Wait4(int, *WaitStatus, int, *Rusage) (int, error)
+pkg syscall (netbsd-386), func Write(int, []uint8) (int, error)
+pkg syscall (netbsd-386), method (*Cmsghdr) SetLen(int)
+pkg syscall (netbsd-386), method (*Iovec) SetLen(int)
+pkg syscall (netbsd-386), method (*Msghdr) SetControllen(int)
+pkg syscall (netbsd-386), type BpfHdr struct
+pkg syscall (netbsd-386), type BpfHdr struct, Caplen uint32
+pkg syscall (netbsd-386), type BpfHdr struct, Datalen uint32
+pkg syscall (netbsd-386), type BpfHdr struct, Hdrlen uint16
+pkg syscall (netbsd-386), type BpfHdr struct, Pad_cgo_0 [2]uint8
+pkg syscall (netbsd-386), type BpfHdr struct, Tstamp BpfTimeval
+pkg syscall (netbsd-386), type BpfInsn struct
+pkg syscall (netbsd-386), type BpfInsn struct, Code uint16
+pkg syscall (netbsd-386), type BpfInsn struct, Jf uint8
+pkg syscall (netbsd-386), type BpfInsn struct, Jt uint8
+pkg syscall (netbsd-386), type BpfInsn struct, K uint32
+pkg syscall (netbsd-386), type BpfProgram struct
+pkg syscall (netbsd-386), type BpfProgram struct, Insns *BpfInsn
+pkg syscall (netbsd-386), type BpfProgram struct, Len uint32
+pkg syscall (netbsd-386), type BpfStat struct
+pkg syscall (netbsd-386), type BpfStat struct, Capt uint64
+pkg syscall (netbsd-386), type BpfStat struct, Drop uint64
+pkg syscall (netbsd-386), type BpfStat struct, Padding [13]uint64
+pkg syscall (netbsd-386), type BpfStat struct, Recv uint64
+pkg syscall (netbsd-386), type BpfTimeval struct
+pkg syscall (netbsd-386), type BpfTimeval struct, Sec int32
+pkg syscall (netbsd-386), type BpfTimeval struct, Usec int32
+pkg syscall (netbsd-386), type BpfVersion struct
+pkg syscall (netbsd-386), type BpfVersion struct, Major uint16
+pkg syscall (netbsd-386), type BpfVersion struct, Minor uint16
+pkg syscall (netbsd-386), type Cmsghdr struct
+pkg syscall (netbsd-386), type Cmsghdr struct, Len uint32
+pkg syscall (netbsd-386), type Cmsghdr struct, Level int32
+pkg syscall (netbsd-386), type Cmsghdr struct, Type int32
+pkg syscall (netbsd-386), type Credential struct
+pkg syscall (netbsd-386), type Credential struct, Gid uint32
+pkg syscall (netbsd-386), type Credential struct, Groups []uint32
+pkg syscall (netbsd-386), type Credential struct, Uid uint32
+pkg syscall (netbsd-386), type Dirent struct
+pkg syscall (netbsd-386), type Dirent struct, Fileno uint64
+pkg syscall (netbsd-386), type Dirent struct, Name [512]int8
+pkg syscall (netbsd-386), type Dirent struct, Namlen uint16
+pkg syscall (netbsd-386), type Dirent struct, Pad_cgo_0 [3]uint8
+pkg syscall (netbsd-386), type Dirent struct, Reclen uint16
+pkg syscall (netbsd-386), type Dirent struct, Type uint8
+pkg syscall (netbsd-386), type FdSet struct
+pkg syscall (netbsd-386), type FdSet struct, Bits [8]uint32
+pkg syscall (netbsd-386), type Flock_t struct
+pkg syscall (netbsd-386), type Flock_t struct, Len int64
+pkg syscall (netbsd-386), type Flock_t struct, Pid int32
+pkg syscall (netbsd-386), type Flock_t struct, Start int64
+pkg syscall (netbsd-386), type Flock_t struct, Type int16
+pkg syscall (netbsd-386), type Flock_t struct, Whence int16
+pkg syscall (netbsd-386), type Fsid struct
+pkg syscall (netbsd-386), type Fsid struct, X__fsid_val [2]int32
+pkg syscall (netbsd-386), type ICMPv6Filter struct
+pkg syscall (netbsd-386), type ICMPv6Filter struct, Filt [8]uint32
+pkg syscall (netbsd-386), type IPv6MTUInfo struct
+pkg syscall (netbsd-386), type IPv6MTUInfo struct, Addr RawSockaddrInet6
+pkg syscall (netbsd-386), type IPv6MTUInfo struct, Mtu uint32
+pkg syscall (netbsd-386), type IfAnnounceMsghdr struct
+pkg syscall (netbsd-386), type IfAnnounceMsghdr struct, Index uint16
+pkg syscall (netbsd-386), type IfAnnounceMsghdr struct, Msglen uint16
+pkg syscall (netbsd-386), type IfAnnounceMsghdr struct, Name [16]int8
+pkg syscall (netbsd-386), type IfAnnounceMsghdr struct, Type uint8
+pkg syscall (netbsd-386), type IfAnnounceMsghdr struct, Version uint8
+pkg syscall (netbsd-386), type IfAnnounceMsghdr struct, What uint16
+pkg syscall (netbsd-386), type IfData struct
+pkg syscall (netbsd-386), type IfData struct, Addrlen uint8
+pkg syscall (netbsd-386), type IfData struct, Baudrate uint64
+pkg syscall (netbsd-386), type IfData struct, Collisions uint64
+pkg syscall (netbsd-386), type IfData struct, Hdrlen uint8
+pkg syscall (netbsd-386), type IfData struct, Ibytes uint64
+pkg syscall (netbsd-386), type IfData struct, Ierrors uint64
+pkg syscall (netbsd-386), type IfData struct, Imcasts uint64
+pkg syscall (netbsd-386), type IfData struct, Ipackets uint64
+pkg syscall (netbsd-386), type IfData struct, Iqdrops uint64
+pkg syscall (netbsd-386), type IfData struct, Lastchange Timespec
+pkg syscall (netbsd-386), type IfData struct, Link_state int32
+pkg syscall (netbsd-386), type IfData struct, Metric uint64
+pkg syscall (netbsd-386), type IfData struct, Mtu uint64
+pkg syscall (netbsd-386), type IfData struct, Noproto uint64
+pkg syscall (netbsd-386), type IfData struct, Obytes uint64
+pkg syscall (netbsd-386), type IfData struct, Oerrors uint64
+pkg syscall (netbsd-386), type IfData struct, Omcasts uint64
+pkg syscall (netbsd-386), type IfData struct, Opackets uint64
+pkg syscall (netbsd-386), type IfData struct, Pad_cgo_0 [1]uint8
+pkg syscall (netbsd-386), type IfData struct, Type uint8
+pkg syscall (netbsd-386), type IfMsghdr struct
+pkg syscall (netbsd-386), type IfMsghdr struct, Addrs int32
+pkg syscall (netbsd-386), type IfMsghdr struct, Data IfData
+pkg syscall (netbsd-386), type IfMsghdr struct, Flags int32
+pkg syscall (netbsd-386), type IfMsghdr struct, Index uint16
+pkg syscall (netbsd-386), type IfMsghdr struct, Msglen uint16
+pkg syscall (netbsd-386), type IfMsghdr struct, Pad_cgo_0 [2]uint8
+pkg syscall (netbsd-386), type IfMsghdr struct, Pad_cgo_1 [4]uint8
+pkg syscall (netbsd-386), type IfMsghdr struct, Type uint8
+pkg syscall (netbsd-386), type IfMsghdr struct, Version uint8
+pkg syscall (netbsd-386), type IfaMsghdr struct
+pkg syscall (netbsd-386), type IfaMsghdr struct, Addrs int32
+pkg syscall (netbsd-386), type IfaMsghdr struct, Flags int32
+pkg syscall (netbsd-386), type IfaMsghdr struct, Index uint16
+pkg syscall (netbsd-386), type IfaMsghdr struct, Metric int32
+pkg syscall (netbsd-386), type IfaMsghdr struct, Msglen uint16
+pkg syscall (netbsd-386), type IfaMsghdr struct, Pad_cgo_0 [6]uint8
+pkg syscall (netbsd-386), type IfaMsghdr struct, Type uint8
+pkg syscall (netbsd-386), type IfaMsghdr struct, Version uint8
+pkg syscall (netbsd-386), type Inet6Pktinfo struct
+pkg syscall (netbsd-386), type Inet6Pktinfo struct, Addr [16]uint8
+pkg syscall (netbsd-386), type Inet6Pktinfo struct, Ifindex uint32
+pkg syscall (netbsd-386), type InterfaceAddrMessage struct
+pkg syscall (netbsd-386), type InterfaceAddrMessage struct, Data []uint8
+pkg syscall (netbsd-386), type InterfaceAddrMessage struct, Header IfaMsghdr
+pkg syscall (netbsd-386), type InterfaceAnnounceMessage struct
+pkg syscall (netbsd-386), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr
+pkg syscall (netbsd-386), type InterfaceMessage struct
+pkg syscall (netbsd-386), type InterfaceMessage struct, Data []uint8
+pkg syscall (netbsd-386), type InterfaceMessage struct, Header IfMsghdr
+pkg syscall (netbsd-386), type Iovec struct
+pkg syscall (netbsd-386), type Iovec struct, Base *uint8
+pkg syscall (netbsd-386), type Iovec struct, Len uint32
+pkg syscall (netbsd-386), type Kevent_t struct
+pkg syscall (netbsd-386), type Kevent_t struct, Data int64
+pkg syscall (netbsd-386), type Kevent_t struct, Fflags uint32
+pkg syscall (netbsd-386), type Kevent_t struct, Filter uint32
+pkg syscall (netbsd-386), type Kevent_t struct, Flags uint32
+pkg syscall (netbsd-386), type Kevent_t struct, Ident uint32
+pkg syscall (netbsd-386), type Kevent_t struct, Udata int32
+pkg syscall (netbsd-386), type Mclpool [0]uint8
+pkg syscall (netbsd-386), type Msghdr struct
+pkg syscall (netbsd-386), type Msghdr struct, Control *uint8
+pkg syscall (netbsd-386), type Msghdr struct, Controllen uint32
+pkg syscall (netbsd-386), type Msghdr struct, Flags int32
+pkg syscall (netbsd-386), type Msghdr struct, Iov *Iovec
+pkg syscall (netbsd-386), type Msghdr struct, Iovlen int32
+pkg syscall (netbsd-386), type Msghdr struct, Name *uint8
+pkg syscall (netbsd-386), type Msghdr struct, Namelen uint32
+pkg syscall (netbsd-386), type RawSockaddr struct, Data [14]int8
+pkg syscall (netbsd-386), type RawSockaddr struct, Family uint8
+pkg syscall (netbsd-386), type RawSockaddr struct, Len uint8
+pkg syscall (netbsd-386), type RawSockaddrAny struct, Pad [92]int8
+pkg syscall (netbsd-386), type RawSockaddrDatalink struct
+pkg syscall (netbsd-386), type RawSockaddrDatalink struct, Alen uint8
+pkg syscall (netbsd-386), type RawSockaddrDatalink struct, Data [12]int8
+pkg syscall (netbsd-386), type RawSockaddrDatalink struct, Family uint8
+pkg syscall (netbsd-386), type RawSockaddrDatalink struct, Index uint16
+pkg syscall (netbsd-386), type RawSockaddrDatalink struct, Len uint8
+pkg syscall (netbsd-386), type RawSockaddrDatalink struct, Nlen uint8
+pkg syscall (netbsd-386), type RawSockaddrDatalink struct, Slen uint8
+pkg syscall (netbsd-386), type RawSockaddrDatalink struct, Type uint8
+pkg syscall (netbsd-386), type RawSockaddrInet4 struct, Family uint8
+pkg syscall (netbsd-386), type RawSockaddrInet4 struct, Len uint8
+pkg syscall (netbsd-386), type RawSockaddrInet4 struct, Zero [8]int8
+pkg syscall (netbsd-386), type RawSockaddrInet6 struct, Family uint8
+pkg syscall (netbsd-386), type RawSockaddrInet6 struct, Len uint8
+pkg syscall (netbsd-386), type RawSockaddrUnix struct
+pkg syscall (netbsd-386), type RawSockaddrUnix struct, Family uint8
+pkg syscall (netbsd-386), type RawSockaddrUnix struct, Len uint8
+pkg syscall (netbsd-386), type RawSockaddrUnix struct, Path [104]int8
+pkg syscall (netbsd-386), type Rlimit struct
+pkg syscall (netbsd-386), type Rlimit struct, Cur uint64
+pkg syscall (netbsd-386), type Rlimit struct, Max uint64
+pkg syscall (netbsd-386), type RouteMessage struct
+pkg syscall (netbsd-386), type RouteMessage struct, Data []uint8
+pkg syscall (netbsd-386), type RouteMessage struct, Header RtMsghdr
+pkg syscall (netbsd-386), type RoutingMessage interface, unexported methods
+pkg syscall (netbsd-386), type RtMetrics struct
+pkg syscall (netbsd-386), type RtMetrics struct, Expire int64
+pkg syscall (netbsd-386), type RtMetrics struct, Hopcount uint64
+pkg syscall (netbsd-386), type RtMetrics struct, Locks uint64
+pkg syscall (netbsd-386), type RtMetrics struct, Mtu uint64
+pkg syscall (netbsd-386), type RtMetrics struct, Pksent int64
+pkg syscall (netbsd-386), type RtMetrics struct, Recvpipe uint64
+pkg syscall (netbsd-386), type RtMetrics struct, Rtt uint64
+pkg syscall (netbsd-386), type RtMetrics struct, Rttvar uint64
+pkg syscall (netbsd-386), type RtMetrics struct, Sendpipe uint64
+pkg syscall (netbsd-386), type RtMetrics struct, Ssthresh uint64
+pkg syscall (netbsd-386), type RtMsghdr struct
+pkg syscall (netbsd-386), type RtMsghdr struct, Addrs int32
+pkg syscall (netbsd-386), type RtMsghdr struct, Errno int32
+pkg syscall (netbsd-386), type RtMsghdr struct, Flags int32
+pkg syscall (netbsd-386), type RtMsghdr struct, Index uint16
+pkg syscall (netbsd-386), type RtMsghdr struct, Inits int32
+pkg syscall (netbsd-386), type RtMsghdr struct, Msglen uint16
+pkg syscall (netbsd-386), type RtMsghdr struct, Pad_cgo_0 [2]uint8
+pkg syscall (netbsd-386), type RtMsghdr struct, Pad_cgo_1 [4]uint8
+pkg syscall (netbsd-386), type RtMsghdr struct, Pid int32
+pkg syscall (netbsd-386), type RtMsghdr struct, Rmx RtMetrics
+pkg syscall (netbsd-386), type RtMsghdr struct, Seq int32
+pkg syscall (netbsd-386), type RtMsghdr struct, Type uint8
+pkg syscall (netbsd-386), type RtMsghdr struct, Use int32
+pkg syscall (netbsd-386), type RtMsghdr struct, Version uint8
+pkg syscall (netbsd-386), type Rusage struct, Idrss int32
+pkg syscall (netbsd-386), type Rusage struct, Inblock int32
+pkg syscall (netbsd-386), type Rusage struct, Isrss int32
+pkg syscall (netbsd-386), type Rusage struct, Ixrss int32
+pkg syscall (netbsd-386), type Rusage struct, Majflt int32
+pkg syscall (netbsd-386), type Rusage struct, Maxrss int32
+pkg syscall (netbsd-386), type Rusage struct, Minflt int32
+pkg syscall (netbsd-386), type Rusage struct, Msgrcv int32
+pkg syscall (netbsd-386), type Rusage struct, Msgsnd int32
+pkg syscall (netbsd-386), type Rusage struct, Nivcsw int32
+pkg syscall (netbsd-386), type Rusage struct, Nsignals int32
+pkg syscall (netbsd-386), type Rusage struct, Nswap int32
+pkg syscall (netbsd-386), type Rusage struct, Nvcsw int32
+pkg syscall (netbsd-386), type Rusage struct, Oublock int32
+pkg syscall (netbsd-386), type Rusage struct, Stime Timeval
+pkg syscall (netbsd-386), type Rusage struct, Utime Timeval
+pkg syscall (netbsd-386), type SockaddrDatalink struct
+pkg syscall (netbsd-386), type SockaddrDatalink struct, Alen uint8
+pkg syscall (netbsd-386), type SockaddrDatalink struct, Data [12]int8
+pkg syscall (netbsd-386), type SockaddrDatalink struct, Family uint8
+pkg syscall (netbsd-386), type SockaddrDatalink struct, Index uint16
+pkg syscall (netbsd-386), type SockaddrDatalink struct, Len uint8
+pkg syscall (netbsd-386), type SockaddrDatalink struct, Nlen uint8
+pkg syscall (netbsd-386), type SockaddrDatalink struct, Slen uint8
+pkg syscall (netbsd-386), type SockaddrDatalink struct, Type uint8
+pkg syscall (netbsd-386), type SocketControlMessage struct
+pkg syscall (netbsd-386), type SocketControlMessage struct, Data []uint8
+pkg syscall (netbsd-386), type SocketControlMessage struct, Header Cmsghdr
+pkg syscall (netbsd-386), type Stat_t struct
+pkg syscall (netbsd-386), type Stat_t struct, Atimespec Timespec
+pkg syscall (netbsd-386), type Stat_t struct, Birthtimespec Timespec
+pkg syscall (netbsd-386), type Stat_t struct, Blksize uint32
+pkg syscall (netbsd-386), type Stat_t struct, Blocks int64
+pkg syscall (netbsd-386), type Stat_t struct, Ctimespec Timespec
+pkg syscall (netbsd-386), type Stat_t struct, Dev uint64
+pkg syscall (netbsd-386), type Stat_t struct, Flags uint32
+pkg syscall (netbsd-386), type Stat_t struct, Gen uint32
+pkg syscall (netbsd-386), type Stat_t struct, Gid uint32
+pkg syscall (netbsd-386), type Stat_t struct, Ino uint64
+pkg syscall (netbsd-386), type Stat_t struct, Mode uint32
+pkg syscall (netbsd-386), type Stat_t struct, Mtimespec Timespec
+pkg syscall (netbsd-386), type Stat_t struct, Nlink uint32
+pkg syscall (netbsd-386), type Stat_t struct, Rdev uint64
+pkg syscall (netbsd-386), type Stat_t struct, Size int64
+pkg syscall (netbsd-386), type Stat_t struct, Spare [2]uint32
+pkg syscall (netbsd-386), type Stat_t struct, Uid uint32
+pkg syscall (netbsd-386), type Statfs_t [0]uint8
+pkg syscall (netbsd-386), type SysProcAttr struct, Chroot string
+pkg syscall (netbsd-386), type SysProcAttr struct, Credential *Credential
+pkg syscall (netbsd-386), type SysProcAttr struct, Noctty bool
+pkg syscall (netbsd-386), type SysProcAttr struct, Ptrace bool
+pkg syscall (netbsd-386), type SysProcAttr struct, Setctty bool
+pkg syscall (netbsd-386), type SysProcAttr struct, Setpgid bool
+pkg syscall (netbsd-386), type SysProcAttr struct, Setsid bool
+pkg syscall (netbsd-386), type Sysctlnode struct
+pkg syscall (netbsd-386), type Sysctlnode struct, Flags uint32
+pkg syscall (netbsd-386), type Sysctlnode struct, Name [32]int8
+pkg syscall (netbsd-386), type Sysctlnode struct, Num int32
+pkg syscall (netbsd-386), type Sysctlnode struct, Un [16]uint8
+pkg syscall (netbsd-386), type Sysctlnode struct, Ver uint32
+pkg syscall (netbsd-386), type Sysctlnode struct, X__rsvd uint32
+pkg syscall (netbsd-386), type Sysctlnode struct, X_sysctl_desc [8]uint8
+pkg syscall (netbsd-386), type Sysctlnode struct, X_sysctl_func [8]uint8
+pkg syscall (netbsd-386), type Sysctlnode struct, X_sysctl_parent [8]uint8
+pkg syscall (netbsd-386), type Sysctlnode struct, X_sysctl_size [8]uint8
+pkg syscall (netbsd-386), type Timespec struct, Nsec int32
+pkg syscall (netbsd-386), type Timespec struct, Sec int64
+pkg syscall (netbsd-386), type Timeval struct, Sec int64
+pkg syscall (netbsd-386), type Timeval struct, Usec int32
+pkg syscall (netbsd-386), type WaitStatus uint32
+pkg syscall (netbsd-386), var Stderr int
+pkg syscall (netbsd-386), var Stdin int
+pkg syscall (netbsd-386), var Stdout int
+pkg syscall (netbsd-386-cgo), const AF_APPLETALK ideal-int
+pkg syscall (netbsd-386-cgo), const AF_ARP ideal-int
+pkg syscall (netbsd-386-cgo), const AF_BLUETOOTH ideal-int
+pkg syscall (netbsd-386-cgo), const AF_CCITT ideal-int
+pkg syscall (netbsd-386-cgo), const AF_CHAOS ideal-int
+pkg syscall (netbsd-386-cgo), const AF_CNT ideal-int
+pkg syscall (netbsd-386-cgo), const AF_COIP ideal-int
+pkg syscall (netbsd-386-cgo), const AF_DATAKIT ideal-int
+pkg syscall (netbsd-386-cgo), const AF_DECnet ideal-int
+pkg syscall (netbsd-386-cgo), const AF_DLI ideal-int
+pkg syscall (netbsd-386-cgo), const AF_E164 ideal-int
+pkg syscall (netbsd-386-cgo), const AF_ECMA ideal-int
+pkg syscall (netbsd-386-cgo), const AF_HYLINK ideal-int
+pkg syscall (netbsd-386-cgo), const AF_IEEE80211 ideal-int
+pkg syscall (netbsd-386-cgo), const AF_IMPLINK ideal-int
+pkg syscall (netbsd-386-cgo), const AF_IPX ideal-int
+pkg syscall (netbsd-386-cgo), const AF_ISDN ideal-int
+pkg syscall (netbsd-386-cgo), const AF_ISO ideal-int
+pkg syscall (netbsd-386-cgo), const AF_LAT ideal-int
+pkg syscall (netbsd-386-cgo), const AF_LINK ideal-int
+pkg syscall (netbsd-386-cgo), const AF_LOCAL ideal-int
+pkg syscall (netbsd-386-cgo), const AF_MAX ideal-int
+pkg syscall (netbsd-386-cgo), const AF_MPLS ideal-int
+pkg syscall (netbsd-386-cgo), const AF_NATM ideal-int
+pkg syscall (netbsd-386-cgo), const AF_NS ideal-int
+pkg syscall (netbsd-386-cgo), const AF_OROUTE ideal-int
+pkg syscall (netbsd-386-cgo), const AF_OSI ideal-int
+pkg syscall (netbsd-386-cgo), const AF_PUP ideal-int
+pkg syscall (netbsd-386-cgo), const AF_ROUTE ideal-int
+pkg syscall (netbsd-386-cgo), const AF_SNA ideal-int
+pkg syscall (netbsd-386-cgo), const ARPHRD_ARCNET ideal-int
+pkg syscall (netbsd-386-cgo), const ARPHRD_ETHER ideal-int
+pkg syscall (netbsd-386-cgo), const ARPHRD_FRELAY ideal-int
+pkg syscall (netbsd-386-cgo), const ARPHRD_IEEE1394 ideal-int
+pkg syscall (netbsd-386-cgo), const ARPHRD_IEEE802 ideal-int
+pkg syscall (netbsd-386-cgo), const ARPHRD_STRIP ideal-int
+pkg syscall (netbsd-386-cgo), const B0 ideal-int
+pkg syscall (netbsd-386-cgo), const B110 ideal-int
+pkg syscall (netbsd-386-cgo), const B115200 ideal-int
+pkg syscall (netbsd-386-cgo), const B1200 ideal-int
+pkg syscall (netbsd-386-cgo), const B134 ideal-int
+pkg syscall (netbsd-386-cgo), const B14400 ideal-int
+pkg syscall (netbsd-386-cgo), const B150 ideal-int
+pkg syscall (netbsd-386-cgo), const B1800 ideal-int
+pkg syscall (netbsd-386-cgo), const B19200 ideal-int
+pkg syscall (netbsd-386-cgo), const B200 ideal-int
+pkg syscall (netbsd-386-cgo), const B230400 ideal-int
+pkg syscall (netbsd-386-cgo), const B2400 ideal-int
+pkg syscall (netbsd-386-cgo), const B28800 ideal-int
+pkg syscall (netbsd-386-cgo), const B300 ideal-int
+pkg syscall (netbsd-386-cgo), const B38400 ideal-int
+pkg syscall (netbsd-386-cgo), const B460800 ideal-int
+pkg syscall (netbsd-386-cgo), const B4800 ideal-int
+pkg syscall (netbsd-386-cgo), const B50 ideal-int
+pkg syscall (netbsd-386-cgo), const B57600 ideal-int
+pkg syscall (netbsd-386-cgo), const B600 ideal-int
+pkg syscall (netbsd-386-cgo), const B7200 ideal-int
+pkg syscall (netbsd-386-cgo), const B75 ideal-int
+pkg syscall (netbsd-386-cgo), const B76800 ideal-int
+pkg syscall (netbsd-386-cgo), const B921600 ideal-int
+pkg syscall (netbsd-386-cgo), const B9600 ideal-int
+pkg syscall (netbsd-386-cgo), const BIOCFEEDBACK ideal-int
+pkg syscall (netbsd-386-cgo), const BIOCFLUSH ideal-int
+pkg syscall (netbsd-386-cgo), const BIOCGBLEN ideal-int
+pkg syscall (netbsd-386-cgo), const BIOCGDLT ideal-int
+pkg syscall (netbsd-386-cgo), const BIOCGDLTLIST ideal-int
+pkg syscall (netbsd-386-cgo), const BIOCGETIF ideal-int
+pkg syscall (netbsd-386-cgo), const BIOCGFEEDBACK ideal-int
+pkg syscall (netbsd-386-cgo), const BIOCGHDRCMPLT ideal-int
+pkg syscall (netbsd-386-cgo), const BIOCGRTIMEOUT ideal-int
+pkg syscall (netbsd-386-cgo), const BIOCGSEESENT ideal-int
+pkg syscall (netbsd-386-cgo), const BIOCGSTATS ideal-int
+pkg syscall (netbsd-386-cgo), const BIOCGSTATSOLD ideal-int
+pkg syscall (netbsd-386-cgo), const BIOCIMMEDIATE ideal-int
+pkg syscall (netbsd-386-cgo), const BIOCPROMISC ideal-int
+pkg syscall (netbsd-386-cgo), const BIOCSBLEN ideal-int
+pkg syscall (netbsd-386-cgo), const BIOCSDLT ideal-int
+pkg syscall (netbsd-386-cgo), const BIOCSETF ideal-int
+pkg syscall (netbsd-386-cgo), const BIOCSETIF ideal-int
+pkg syscall (netbsd-386-cgo), const BIOCSFEEDBACK ideal-int
+pkg syscall (netbsd-386-cgo), const BIOCSHDRCMPLT ideal-int
+pkg syscall (netbsd-386-cgo), const BIOCSRTIMEOUT ideal-int
+pkg syscall (netbsd-386-cgo), const BIOCSSEESENT ideal-int
+pkg syscall (netbsd-386-cgo), const BIOCSTCPF ideal-int
+pkg syscall (netbsd-386-cgo), const BIOCSUDPF ideal-int
+pkg syscall (netbsd-386-cgo), const BIOCVERSION ideal-int
+pkg syscall (netbsd-386-cgo), const BPF_A ideal-int
+pkg syscall (netbsd-386-cgo), const BPF_ABS ideal-int
+pkg syscall (netbsd-386-cgo), const BPF_ADD ideal-int
+pkg syscall (netbsd-386-cgo), const BPF_ALIGNMENT ideal-int
+pkg syscall (netbsd-386-cgo), const BPF_ALIGNMENT32 ideal-int
+pkg syscall (netbsd-386-cgo), const BPF_ALU ideal-int
+pkg syscall (netbsd-386-cgo), const BPF_AND ideal-int
+pkg syscall (netbsd-386-cgo), const BPF_B ideal-int
+pkg syscall (netbsd-386-cgo), const BPF_DFLTBUFSIZE ideal-int
+pkg syscall (netbsd-386-cgo), const BPF_DIV ideal-int
+pkg syscall (netbsd-386-cgo), const BPF_H ideal-int
+pkg syscall (netbsd-386-cgo), const BPF_IMM ideal-int
+pkg syscall (netbsd-386-cgo), const BPF_IND ideal-int
+pkg syscall (netbsd-386-cgo), const BPF_JA ideal-int
+pkg syscall (netbsd-386-cgo), const BPF_JEQ ideal-int
+pkg syscall (netbsd-386-cgo), const BPF_JGE ideal-int
+pkg syscall (netbsd-386-cgo), const BPF_JGT ideal-int
+pkg syscall (netbsd-386-cgo), const BPF_JMP ideal-int
+pkg syscall (netbsd-386-cgo), const BPF_JSET ideal-int
+pkg syscall (netbsd-386-cgo), const BPF_K ideal-int
+pkg syscall (netbsd-386-cgo), const BPF_LD ideal-int
+pkg syscall (netbsd-386-cgo), const BPF_LDX ideal-int
+pkg syscall (netbsd-386-cgo), const BPF_LEN ideal-int
+pkg syscall (netbsd-386-cgo), const BPF_LSH ideal-int
+pkg syscall (netbsd-386-cgo), const BPF_MAJOR_VERSION ideal-int
+pkg syscall (netbsd-386-cgo), const BPF_MAXBUFSIZE ideal-int
+pkg syscall (netbsd-386-cgo), const BPF_MAXINSNS ideal-int
+pkg syscall (netbsd-386-cgo), const BPF_MEM ideal-int
+pkg syscall (netbsd-386-cgo), const BPF_MEMWORDS ideal-int
+pkg syscall (netbsd-386-cgo), const BPF_MINBUFSIZE ideal-int
+pkg syscall (netbsd-386-cgo), const BPF_MINOR_VERSION ideal-int
+pkg syscall (netbsd-386-cgo), const BPF_MISC ideal-int
+pkg syscall (netbsd-386-cgo), const BPF_MSH ideal-int
+pkg syscall (netbsd-386-cgo), const BPF_MUL ideal-int
+pkg syscall (netbsd-386-cgo), const BPF_NEG ideal-int
+pkg syscall (netbsd-386-cgo), const BPF_OR ideal-int
+pkg syscall (netbsd-386-cgo), const BPF_RELEASE ideal-int
+pkg syscall (netbsd-386-cgo), const BPF_RET ideal-int
+pkg syscall (netbsd-386-cgo), const BPF_RSH ideal-int
+pkg syscall (netbsd-386-cgo), const BPF_ST ideal-int
+pkg syscall (netbsd-386-cgo), const BPF_STX ideal-int
+pkg syscall (netbsd-386-cgo), const BPF_SUB ideal-int
+pkg syscall (netbsd-386-cgo), const BPF_TAX ideal-int
+pkg syscall (netbsd-386-cgo), const BPF_TXA ideal-int
+pkg syscall (netbsd-386-cgo), const BPF_W ideal-int
+pkg syscall (netbsd-386-cgo), const BPF_X ideal-int
+pkg syscall (netbsd-386-cgo), const BRKINT ideal-int
+pkg syscall (netbsd-386-cgo), const CFLUSH ideal-int
+pkg syscall (netbsd-386-cgo), const CLOCAL ideal-int
+pkg syscall (netbsd-386-cgo), const CREAD ideal-int
+pkg syscall (netbsd-386-cgo), const CS5 ideal-int
+pkg syscall (netbsd-386-cgo), const CS6 ideal-int
+pkg syscall (netbsd-386-cgo), const CS7 ideal-int
+pkg syscall (netbsd-386-cgo), const CS8 ideal-int
+pkg syscall (netbsd-386-cgo), const CSIZE ideal-int
+pkg syscall (netbsd-386-cgo), const CSTART ideal-int
+pkg syscall (netbsd-386-cgo), const CSTATUS ideal-int
+pkg syscall (netbsd-386-cgo), const CSTOP ideal-int
+pkg syscall (netbsd-386-cgo), const CSTOPB ideal-int
+pkg syscall (netbsd-386-cgo), const CSUSP ideal-int
+pkg syscall (netbsd-386-cgo), const CTL_MAXNAME ideal-int
+pkg syscall (netbsd-386-cgo), const CTL_NET ideal-int
+pkg syscall (netbsd-386-cgo), const CTL_QUERY ideal-int
+pkg syscall (netbsd-386-cgo), const DIOCBSFLUSH ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_A429 ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_A653_ICM ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_AIRONET_HEADER ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_AOS ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_ARCNET ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_ARCNET_LINUX ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_ATM_CLIP ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_ATM_RFC1483 ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_AURORA ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_AX25 ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_AX25_KISS ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_BACNET_MS_TP ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_BLUETOOTH_HCI_H4 ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_CAN20B ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_CAN_SOCKETCAN ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_CHAOS ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_CISCO_IOS ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_C_HDLC ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_C_HDLC_WITH_DIR ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_DECT ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_DOCSIS ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_ECONET ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_EN10MB ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_EN3MB ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_ENC ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_ERF ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_ERF_ETH ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_ERF_POS ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_FC_2 ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_FC_2_WITH_FRAME_DELIMS ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_FDDI ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_FLEXRAY ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_FRELAY ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_FRELAY_WITH_DIR ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_GCOM_SERIAL ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_GCOM_T1E1 ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_GPF_F ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_GPF_T ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_GPRS_LLC ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_GSMTAP_ABIS ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_GSMTAP_UM ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_HDLC ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_HHDLC ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_HIPPI ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_IBM_SN ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_IBM_SP ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_IEEE802 ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_IEEE802_11 ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_IEEE802_11_RADIO ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_IEEE802_11_RADIO_AVS ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_IEEE802_15_4 ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_IEEE802_15_4_LINUX ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_IEEE802_15_4_NONASK_PHY ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_IEEE802_16_MAC_CPS ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_IEEE802_16_MAC_CPS_RADIO ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_IPMB ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_IPMB_LINUX ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_IPNET ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_IPV4 ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_IPV6 ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_IP_OVER_FC ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_ATM1 ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_ATM2 ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_CHDLC ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_ES ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_ETHER ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_FRELAY ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_GGSN ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_ISM ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_MFR ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_MLFR ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_MLPPP ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_MONITOR ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_PIC_PEER ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_PPP ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_PPPOE ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_PPPOE_ATM ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_SERVICES ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_ST ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_VP ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_LAPB_WITH_DIR ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_LAPD ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_LIN ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_LINUX_EVDEV ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_LINUX_IRDA ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_LINUX_LAPD ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_LINUX_SLL ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_LOOP ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_LTALK ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_MFR ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_MOST ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_MPLS ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_MTP2 ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_MTP2_WITH_PHDR ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_MTP3 ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_NULL ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_PCI_EXP ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_PFLOG ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_PFSYNC ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_PPI ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_PPP ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_PPP_BSDOS ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_PPP_ETHER ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_PPP_PPPD ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_PPP_SERIAL ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_PPP_WITH_DIR ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_PRISM_HEADER ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_PRONET ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_RAIF1 ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_RAW ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_RAWAF_MASK ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_RIO ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_SCCP ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_SITA ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_SLIP ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_SLIP_BSDOS ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_SUNATM ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_SYMANTEC_FIREWALL ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_TZSP ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_USB ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_USB_LINUX ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_USB_LINUX_MMAPPED ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_WIHART ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_X2E_SERIAL ideal-int
+pkg syscall (netbsd-386-cgo), const DLT_X2E_XORAYA ideal-int
+pkg syscall (netbsd-386-cgo), const DT_BLK ideal-int
+pkg syscall (netbsd-386-cgo), const DT_CHR ideal-int
+pkg syscall (netbsd-386-cgo), const DT_DIR ideal-int
+pkg syscall (netbsd-386-cgo), const DT_FIFO ideal-int
+pkg syscall (netbsd-386-cgo), const DT_LNK ideal-int
+pkg syscall (netbsd-386-cgo), const DT_REG ideal-int
+pkg syscall (netbsd-386-cgo), const DT_SOCK ideal-int
+pkg syscall (netbsd-386-cgo), const DT_UNKNOWN ideal-int
+pkg syscall (netbsd-386-cgo), const DT_WHT ideal-int
+pkg syscall (netbsd-386-cgo), const EAUTH Errno
+pkg syscall (netbsd-386-cgo), const EBADMSG Errno
+pkg syscall (netbsd-386-cgo), const EBADRPC Errno
+pkg syscall (netbsd-386-cgo), const ECHO ideal-int
+pkg syscall (netbsd-386-cgo), const ECHOCTL ideal-int
+pkg syscall (netbsd-386-cgo), const ECHOE ideal-int
+pkg syscall (netbsd-386-cgo), const ECHOK ideal-int
+pkg syscall (netbsd-386-cgo), const ECHOKE ideal-int
+pkg syscall (netbsd-386-cgo), const ECHONL ideal-int
+pkg syscall (netbsd-386-cgo), const ECHOPRT ideal-int
+pkg syscall (netbsd-386-cgo), const EFTYPE Errno
+pkg syscall (netbsd-386-cgo), const ELAST Errno
+pkg syscall (netbsd-386-cgo), const EMULTIHOP Errno
+pkg syscall (netbsd-386-cgo), const EMUL_LINUX ideal-int
+pkg syscall (netbsd-386-cgo), const EMUL_LINUX32 ideal-int
+pkg syscall (netbsd-386-cgo), const EMUL_MAXID ideal-int
+pkg syscall (netbsd-386-cgo), const ENEEDAUTH Errno
+pkg syscall (netbsd-386-cgo), const ENOATTR Errno
+pkg syscall (netbsd-386-cgo), const ENODATA Errno
+pkg syscall (netbsd-386-cgo), const ENOLINK Errno
+pkg syscall (netbsd-386-cgo), const ENOSR Errno
+pkg syscall (netbsd-386-cgo), const ENOSTR Errno
+pkg syscall (netbsd-386-cgo), const EN_SW_CTL_INF ideal-int
+pkg syscall (netbsd-386-cgo), const EN_SW_CTL_PREC ideal-int
+pkg syscall (netbsd-386-cgo), const EN_SW_CTL_ROUND ideal-int
+pkg syscall (netbsd-386-cgo), const EN_SW_DATACHAIN ideal-int
+pkg syscall (netbsd-386-cgo), const EN_SW_DENORM ideal-int
+pkg syscall (netbsd-386-cgo), const EN_SW_INVOP ideal-int
+pkg syscall (netbsd-386-cgo), const EN_SW_OVERFLOW ideal-int
+pkg syscall (netbsd-386-cgo), const EN_SW_PRECLOSS ideal-int
+pkg syscall (netbsd-386-cgo), const EN_SW_UNDERFLOW ideal-int
+pkg syscall (netbsd-386-cgo), const EN_SW_ZERODIV ideal-int
+pkg syscall (netbsd-386-cgo), const EPROCLIM Errno
+pkg syscall (netbsd-386-cgo), const EPROCUNAVAIL Errno
+pkg syscall (netbsd-386-cgo), const EPROGMISMATCH Errno
+pkg syscall (netbsd-386-cgo), const EPROGUNAVAIL Errno
+pkg syscall (netbsd-386-cgo), const EPROTO Errno
+pkg syscall (netbsd-386-cgo), const ERPCMISMATCH Errno
+pkg syscall (netbsd-386-cgo), const ETHERCAP_JUMBO_MTU ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERCAP_VLAN_HWTAGGING ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERCAP_VLAN_MTU ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERMIN ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERMTU ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERMTU_JUMBO ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_8023 ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_AARP ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_ACCTON ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_AEONIC ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_ALPHA ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_AMBER ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_AMOEBA ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_APOLLO ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_APOLLODOMAIN ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_APPLETALK ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_APPLITEK ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_ARGONAUT ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_ARP ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_AT ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_ATALK ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_ATOMIC ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_ATT ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_ATTSTANFORD ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_AUTOPHON ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_AXIS ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_BCLOOP ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_BOFL ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_CABLETRON ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_CHAOS ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_COMDESIGN ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_COMPUGRAPHIC ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_COUNTERPOINT ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_CRONUS ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_CRONUSVLN ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_DCA ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_DDE ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_DEBNI ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_DECAM ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_DECCUST ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_DECDIAG ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_DECDNS ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_DECDTS ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_DECEXPER ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_DECLAST ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_DECLTM ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_DECMUMPS ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_DECNETBIOS ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_DELTACON ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_DIDDLE ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_DLOG1 ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_DLOG2 ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_DN ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_DOGFIGHT ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_DSMD ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_ECMA ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_ENCRYPT ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_ES ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_EXCELAN ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_EXPERDATA ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_FLIP ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_FLOWCONTROL ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_FRARP ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_GENDYN ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_HAYES ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_HIPPI_FP ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_HITACHI ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_HP ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_IEEEPUP ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_IEEEPUPAT ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_IMLBL ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_IMLBLDIAG ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_IP ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_IPAS ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_IPV6 ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_IPX ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_IPXNEW ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_KALPANA ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_LANBRIDGE ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_LANPROBE ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_LAT ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_LBACK ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_LITTLE ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_LOGICRAFT ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_LOOPBACK ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_MATRA ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_MAX ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_MERIT ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_MICP ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_MOPDL ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_MOPRC ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_MOTOROLA ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_MPLS ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_MPLS_MCAST ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_MUMPS ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPCC ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPCLAIM ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPCLREQ ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPCLRSP ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPCREQ ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPCRSP ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPDG ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPDGB ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPDLTE ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPRAR ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPRAS ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPRST ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPSCD ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPVCD ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBS ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_NCD ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_NESTAR ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_NETBEUI ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_NOVELL ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_NS ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_NSAT ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_NSCOMPAT ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_NTRAILER ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_OS9 ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_OS9NET ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_PACER ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_PAE ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_PCS ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_PLANNING ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_PPP ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_PPPOE ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_PPPOEDISC ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_PRIMENTS ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_PUP ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_PUPAT ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_RACAL ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_RATIONAL ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_RAWFR ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_RCL ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_RDP ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_RETIX ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_REVARP ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_SCA ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_SECTRA ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_SECUREDATA ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_SGITW ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_SG_BOUNCE ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_SG_DIAG ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_SG_NETGAMES ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_SG_RESV ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_SIMNET ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_SLOWPROTOCOLS ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_SNA ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_SNMP ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_SONIX ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_SPIDER ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_SPRITE ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_STP ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_TALARIS ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_TALARISMC ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_TCPCOMP ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_TCPSM ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_TEC ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_TIGAN ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_TRAIL ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_TRANSETHER ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_TYMSHARE ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_UBBST ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_UBDEBUG ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_UBDIAGLOOP ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_UBDL ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_UBNIU ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_UBNMC ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_VALID ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_VARIAN ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_VAXELN ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_VEECO ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_VEXP ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_VGLAB ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_VINES ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_VINESECHO ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_VINESLOOP ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_VITAL ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_VLAN ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_VLTLMAN ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_VPROD ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_VURESERVED ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_WATERLOO ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_WELLFLEET ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_X25 ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_X75 ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_XNSSM ideal-int
+pkg syscall (netbsd-386-cgo), const ETHERTYPE_XTP ideal-int
+pkg syscall (netbsd-386-cgo), const ETHER_ADDR_LEN ideal-int
+pkg syscall (netbsd-386-cgo), const ETHER_CRC_LEN ideal-int
+pkg syscall (netbsd-386-cgo), const ETHER_CRC_POLY_BE ideal-int
+pkg syscall (netbsd-386-cgo), const ETHER_CRC_POLY_LE ideal-int
+pkg syscall (netbsd-386-cgo), const ETHER_HDR_LEN ideal-int
+pkg syscall (netbsd-386-cgo), const ETHER_MAX_LEN ideal-int
+pkg syscall (netbsd-386-cgo), const ETHER_MAX_LEN_JUMBO ideal-int
+pkg syscall (netbsd-386-cgo), const ETHER_MIN_LEN ideal-int
+pkg syscall (netbsd-386-cgo), const ETHER_PPPOE_ENCAP_LEN ideal-int
+pkg syscall (netbsd-386-cgo), const ETHER_TYPE_LEN ideal-int
+pkg syscall (netbsd-386-cgo), const ETHER_VLAN_ENCAP_LEN ideal-int
+pkg syscall (netbsd-386-cgo), const ETIME Errno
+pkg syscall (netbsd-386-cgo), const EVFILT_AIO ideal-int
+pkg syscall (netbsd-386-cgo), const EVFILT_PROC ideal-int
+pkg syscall (netbsd-386-cgo), const EVFILT_READ ideal-int
+pkg syscall (netbsd-386-cgo), const EVFILT_SIGNAL ideal-int
+pkg syscall (netbsd-386-cgo), const EVFILT_SYSCOUNT ideal-int
+pkg syscall (netbsd-386-cgo), const EVFILT_TIMER ideal-int
+pkg syscall (netbsd-386-cgo), const EVFILT_VNODE ideal-int
+pkg syscall (netbsd-386-cgo), const EVFILT_WRITE ideal-int
+pkg syscall (netbsd-386-cgo), const EV_ADD ideal-int
+pkg syscall (netbsd-386-cgo), const EV_CLEAR ideal-int
+pkg syscall (netbsd-386-cgo), const EV_DELETE ideal-int
+pkg syscall (netbsd-386-cgo), const EV_DISABLE ideal-int
+pkg syscall (netbsd-386-cgo), const EV_ENABLE ideal-int
+pkg syscall (netbsd-386-cgo), const EV_EOF ideal-int
+pkg syscall (netbsd-386-cgo), const EV_ERROR ideal-int
+pkg syscall (netbsd-386-cgo), const EV_FLAG1 ideal-int
+pkg syscall (netbsd-386-cgo), const EV_ONESHOT ideal-int
+pkg syscall (netbsd-386-cgo), const EV_SYSFLAGS ideal-int
+pkg syscall (netbsd-386-cgo), const EXTA ideal-int
+pkg syscall (netbsd-386-cgo), const EXTB ideal-int
+pkg syscall (netbsd-386-cgo), const EXTPROC ideal-int
+pkg syscall (netbsd-386-cgo), const FD_CLOEXEC ideal-int
+pkg syscall (netbsd-386-cgo), const FD_SETSIZE ideal-int
+pkg syscall (netbsd-386-cgo), const FLUSHO ideal-int
+pkg syscall (netbsd-386-cgo), const F_CLOSEM ideal-int
+pkg syscall (netbsd-386-cgo), const F_DUPFD ideal-int
+pkg syscall (netbsd-386-cgo), const F_DUPFD_CLOEXEC ideal-int
+pkg syscall (netbsd-386-cgo), const F_FSCTL ideal-int
+pkg syscall (netbsd-386-cgo), const F_FSDIRMASK ideal-int
+pkg syscall (netbsd-386-cgo), const F_FSIN ideal-int
+pkg syscall (netbsd-386-cgo), const F_FSINOUT ideal-int
+pkg syscall (netbsd-386-cgo), const F_FSOUT ideal-int
+pkg syscall (netbsd-386-cgo), const F_FSPRIV ideal-int
+pkg syscall (netbsd-386-cgo), const F_FSVOID ideal-int
+pkg syscall (netbsd-386-cgo), const F_GETFD ideal-int
+pkg syscall (netbsd-386-cgo), const F_GETFL ideal-int
+pkg syscall (netbsd-386-cgo), const F_GETLK ideal-int
+pkg syscall (netbsd-386-cgo), const F_GETNOSIGPIPE ideal-int
+pkg syscall (netbsd-386-cgo), const F_GETOWN ideal-int
+pkg syscall (netbsd-386-cgo), const F_MAXFD ideal-int
+pkg syscall (netbsd-386-cgo), const F_OK ideal-int
+pkg syscall (netbsd-386-cgo), const F_PARAM_MASK ideal-int
+pkg syscall (netbsd-386-cgo), const F_PARAM_MAX ideal-int
+pkg syscall (netbsd-386-cgo), const F_RDLCK ideal-int
+pkg syscall (netbsd-386-cgo), const F_SETFD ideal-int
+pkg syscall (netbsd-386-cgo), const F_SETFL ideal-int
+pkg syscall (netbsd-386-cgo), const F_SETLK ideal-int
+pkg syscall (netbsd-386-cgo), const F_SETLKW ideal-int
+pkg syscall (netbsd-386-cgo), const F_SETNOSIGPIPE ideal-int
+pkg syscall (netbsd-386-cgo), const F_SETOWN ideal-int
+pkg syscall (netbsd-386-cgo), const F_UNLCK ideal-int
+pkg syscall (netbsd-386-cgo), const F_WRLCK ideal-int
+pkg syscall (netbsd-386-cgo), const HUPCL ideal-int
+pkg syscall (netbsd-386-cgo), const ICANON ideal-int
+pkg syscall (netbsd-386-cgo), const ICMP6_FILTER = 18
+pkg syscall (netbsd-386-cgo), const ICMP6_FILTER ideal-int
+pkg syscall (netbsd-386-cgo), const ICRNL ideal-int
+pkg syscall (netbsd-386-cgo), const IEXTEN ideal-int
+pkg syscall (netbsd-386-cgo), const IFAN_ARRIVAL ideal-int
+pkg syscall (netbsd-386-cgo), const IFAN_DEPARTURE ideal-int
+pkg syscall (netbsd-386-cgo), const IFA_ROUTE ideal-int
+pkg syscall (netbsd-386-cgo), const IFF_ALLMULTI ideal-int
+pkg syscall (netbsd-386-cgo), const IFF_CANTCHANGE ideal-int
+pkg syscall (netbsd-386-cgo), const IFF_DEBUG ideal-int
+pkg syscall (netbsd-386-cgo), const IFF_LINK0 ideal-int
+pkg syscall (netbsd-386-cgo), const IFF_LINK1 ideal-int
+pkg syscall (netbsd-386-cgo), const IFF_LINK2 ideal-int
+pkg syscall (netbsd-386-cgo), const IFF_NOARP ideal-int
+pkg syscall (netbsd-386-cgo), const IFF_NOTRAILERS ideal-int
+pkg syscall (netbsd-386-cgo), const IFF_OACTIVE ideal-int
+pkg syscall (netbsd-386-cgo), const IFF_POINTOPOINT ideal-int
+pkg syscall (netbsd-386-cgo), const IFF_PROMISC ideal-int
+pkg syscall (netbsd-386-cgo), const IFF_RUNNING ideal-int
+pkg syscall (netbsd-386-cgo), const IFF_SIMPLEX ideal-int
+pkg syscall (netbsd-386-cgo), const IFNAMSIZ ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_1822 ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_A12MPPSWITCH ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_AAL2 ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_AAL5 ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_ADSL ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_AFLANE8023 ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_AFLANE8025 ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_ARAP ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_ARCNET ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_ARCNETPLUS ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_ASYNC ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_ATM ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_ATMDXI ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_ATMFUNI ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_ATMIMA ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_ATMLOGICAL ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_ATMRADIO ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_ATMSUBINTERFACE ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_ATMVCIENDPT ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_ATMVIRTUAL ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_BGPPOLICYACCOUNTING ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_BRIDGE ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_BSC ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_CARP ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_CCTEMUL ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_CEPT ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_CES ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_CHANNEL ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_CNR ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_COFFEE ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_COMPOSITELINK ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_DCN ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_DIGITALPOWERLINE ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_DLSW ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_DOCSCABLEDOWNSTREAM ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_DOCSCABLEMACLAYER ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_DOCSCABLEUPSTREAM ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_DOCSCABLEUPSTREAMCHANNEL ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_DS0 ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_DS0BUNDLE ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_DS1FDL ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_DS3 ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_DTM ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_DVBASILN ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_DVBASIOUT ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_DVBRCCDOWNSTREAM ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_DVBRCCMACLAYER ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_DVBRCCUPSTREAM ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_ECONET ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_EON ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_EPLRS ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_ESCON ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_ETHER ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_FAITH ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_FAST ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_FASTETHER ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_FASTETHERFX ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_FDDI ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_FIBRECHANNEL ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_FRAMERELAYINTERCONNECT ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_FRAMERELAYMPI ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_FRDLCIENDPT ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_FRELAY ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_FRELAYDCE ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_FRF16MFRBUNDLE ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_FRFORWARD ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_G703AT2MB ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_G703AT64K ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_GIF ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_GIGABITETHERNET ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_GR303IDT ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_GR303RDT ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_H323GATEKEEPER ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_H323PROXY ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_HDH1822 ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_HDLC ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_HDSL2 ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_HIPERLAN2 ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_HIPPI ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_HIPPIINTERFACE ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_HOSTPAD ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_HSSI ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_HY ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_IBM370PARCHAN ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_IDSL ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_IEEE1394 ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_IEEE80211 ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_IEEE80212 ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_IEEE8023ADLAG ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_IFGSN ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_IMT ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_INFINIBAND ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_INTERLEAVE ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_IP ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_IPFORWARD ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_IPOVERATM ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_IPOVERCDLC ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_IPOVERCLAW ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_IPSWITCH ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_ISDN ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_ISDNBASIC ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_ISDNPRIMARY ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_ISDNS ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_ISDNU ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_ISO88022LLC ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_ISO88023 ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_ISO88024 ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_ISO88025 ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_ISO88025CRFPINT ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_ISO88025DTR ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_ISO88025FIBER ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_ISO88026 ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_ISUP ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_L2VLAN ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_L3IPVLAN ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_L3IPXVLAN ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_LAPB ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_LAPD ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_LAPF ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_LINEGROUP ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_LOCALTALK ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_LOOP ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_MEDIAMAILOVERIP ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_MFSIGLINK ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_MIOX25 ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_MODEM ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_MPC ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_MPLS ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_MPLSTUNNEL ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_MSDSL ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_MVL ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_MYRINET ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_NFAS ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_NSIP ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_OPTICALCHANNEL ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_OPTICALTRANSPORT ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_OTHER ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_P10 ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_P80 ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_PARA ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_PFLOG ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_PFSYNC ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_PLC ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_PON155 ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_PON622 ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_POS ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_PPP ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_PPPMULTILINKBUNDLE ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_PROPATM ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_PROPBWAP2MP ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_PROPCNLS ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_PROPMUX ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_PROPVIRTUAL ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_PROPWIRELESSP2P ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_PTPSERIAL ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_PVC ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_Q2931 ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_QLLC ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_RADIOMAC ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_RADSL ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_REACHDSL ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_RFC1483 ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_RS232 ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_RSRB ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_SDLC ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_SDSL ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_SHDSL ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_SIP ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_SIPSIG ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_SIPTG ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_SLIP ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_SMDSDXI ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_SMDSICIP ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_SONET ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_SONETOVERHEADCHANNEL ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_SONETPATH ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_SONETVT ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_SRP ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_SS7SIGLINK ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_STACKTOSTACK ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_STARLAN ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_STF ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_T1 ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_TDLC ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_TELINK ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_TERMPAD ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_TR008 ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_TRANSPHDLC ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_TUNNEL ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_ULTRA ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_USB ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_V11 ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_V35 ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_V36 ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_V37 ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_VDSL ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_VIRTUALIPADDRESS ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_VIRTUALTG ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_VOICEDID ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_VOICEEM ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_VOICEEMFGD ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_VOICEENCAP ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_VOICEFGDEANA ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_VOICEFXO ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_VOICEFXS ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_VOICEOVERATM ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_VOICEOVERCABLE ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_VOICEOVERFRAMERELAY ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_VOICEOVERIP ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_X213 ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_X25 ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_X25DDN ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_X25HUNTGROUP ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_X25MLP ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_X25PLE ideal-int
+pkg syscall (netbsd-386-cgo), const IFT_XETHER ideal-int
+pkg syscall (netbsd-386-cgo), const IGNBRK ideal-int
+pkg syscall (netbsd-386-cgo), const IGNCR ideal-int
+pkg syscall (netbsd-386-cgo), const IGNPAR ideal-int
+pkg syscall (netbsd-386-cgo), const IMAXBEL ideal-int
+pkg syscall (netbsd-386-cgo), const INLCR ideal-int
+pkg syscall (netbsd-386-cgo), const INPCK ideal-int
+pkg syscall (netbsd-386-cgo), const IN_CLASSA_HOST ideal-int
+pkg syscall (netbsd-386-cgo), const IN_CLASSA_MAX ideal-int
+pkg syscall (netbsd-386-cgo), const IN_CLASSA_NET ideal-int
+pkg syscall (netbsd-386-cgo), const IN_CLASSA_NSHIFT ideal-int
+pkg syscall (netbsd-386-cgo), const IN_CLASSB_HOST ideal-int
+pkg syscall (netbsd-386-cgo), const IN_CLASSB_MAX ideal-int
+pkg syscall (netbsd-386-cgo), const IN_CLASSB_NET ideal-int
+pkg syscall (netbsd-386-cgo), const IN_CLASSB_NSHIFT ideal-int
+pkg syscall (netbsd-386-cgo), const IN_CLASSC_HOST ideal-int
+pkg syscall (netbsd-386-cgo), const IN_CLASSC_NET ideal-int
+pkg syscall (netbsd-386-cgo), const IN_CLASSC_NSHIFT ideal-int
+pkg syscall (netbsd-386-cgo), const IN_CLASSD_HOST ideal-int
+pkg syscall (netbsd-386-cgo), const IN_CLASSD_NET ideal-int
+pkg syscall (netbsd-386-cgo), const IN_CLASSD_NSHIFT ideal-int
+pkg syscall (netbsd-386-cgo), const IN_LOOPBACKNET ideal-int
+pkg syscall (netbsd-386-cgo), const IPPROTO_AH ideal-int
+pkg syscall (netbsd-386-cgo), const IPPROTO_CARP ideal-int
+pkg syscall (netbsd-386-cgo), const IPPROTO_DONE ideal-int
+pkg syscall (netbsd-386-cgo), const IPPROTO_DSTOPTS ideal-int
+pkg syscall (netbsd-386-cgo), const IPPROTO_EGP ideal-int
+pkg syscall (netbsd-386-cgo), const IPPROTO_ENCAP ideal-int
+pkg syscall (netbsd-386-cgo), const IPPROTO_EON ideal-int
+pkg syscall (netbsd-386-cgo), const IPPROTO_ESP ideal-int
+pkg syscall (netbsd-386-cgo), const IPPROTO_ETHERIP ideal-int
+pkg syscall (netbsd-386-cgo), const IPPROTO_FRAGMENT ideal-int
+pkg syscall (netbsd-386-cgo), const IPPROTO_GGP ideal-int
+pkg syscall (netbsd-386-cgo), const IPPROTO_GRE ideal-int
+pkg syscall (netbsd-386-cgo), const IPPROTO_HOPOPTS ideal-int
+pkg syscall (netbsd-386-cgo), const IPPROTO_ICMP ideal-int
+pkg syscall (netbsd-386-cgo), const IPPROTO_ICMPV6 ideal-int
+pkg syscall (netbsd-386-cgo), const IPPROTO_IDP ideal-int
+pkg syscall (netbsd-386-cgo), const IPPROTO_IGMP ideal-int
+pkg syscall (netbsd-386-cgo), const IPPROTO_IPCOMP ideal-int
+pkg syscall (netbsd-386-cgo), const IPPROTO_IPIP ideal-int
+pkg syscall (netbsd-386-cgo), const IPPROTO_IPV4 ideal-int
+pkg syscall (netbsd-386-cgo), const IPPROTO_IPV6_ICMP ideal-int
+pkg syscall (netbsd-386-cgo), const IPPROTO_MAX ideal-int
+pkg syscall (netbsd-386-cgo), const IPPROTO_MAXID ideal-int
+pkg syscall (netbsd-386-cgo), const IPPROTO_MOBILE ideal-int
+pkg syscall (netbsd-386-cgo), const IPPROTO_NONE ideal-int
+pkg syscall (netbsd-386-cgo), const IPPROTO_PFSYNC ideal-int
+pkg syscall (netbsd-386-cgo), const IPPROTO_PIM ideal-int
+pkg syscall (netbsd-386-cgo), const IPPROTO_PUP ideal-int
+pkg syscall (netbsd-386-cgo), const IPPROTO_RAW ideal-int
+pkg syscall (netbsd-386-cgo), const IPPROTO_ROUTING ideal-int
+pkg syscall (netbsd-386-cgo), const IPPROTO_RSVP ideal-int
+pkg syscall (netbsd-386-cgo), const IPPROTO_TP ideal-int
+pkg syscall (netbsd-386-cgo), const IPPROTO_VRRP ideal-int
+pkg syscall (netbsd-386-cgo), const IPV6_CHECKSUM ideal-int
+pkg syscall (netbsd-386-cgo), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int
+pkg syscall (netbsd-386-cgo), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int
+pkg syscall (netbsd-386-cgo), const IPV6_DEFHLIM ideal-int
+pkg syscall (netbsd-386-cgo), const IPV6_DONTFRAG ideal-int
+pkg syscall (netbsd-386-cgo), const IPV6_DSTOPTS ideal-int
+pkg syscall (netbsd-386-cgo), const IPV6_FAITH ideal-int
+pkg syscall (netbsd-386-cgo), const IPV6_FLOWINFO_MASK ideal-int
+pkg syscall (netbsd-386-cgo), const IPV6_FLOWLABEL_MASK ideal-int
+pkg syscall (netbsd-386-cgo), const IPV6_FRAGTTL ideal-int
+pkg syscall (netbsd-386-cgo), const IPV6_HLIMDEC ideal-int
+pkg syscall (netbsd-386-cgo), const IPV6_HOPLIMIT ideal-int
+pkg syscall (netbsd-386-cgo), const IPV6_HOPOPTS ideal-int
+pkg syscall (netbsd-386-cgo), const IPV6_IPSEC_POLICY ideal-int
+pkg syscall (netbsd-386-cgo), const IPV6_MAXHLIM ideal-int
+pkg syscall (netbsd-386-cgo), const IPV6_MAXPACKET ideal-int
+pkg syscall (netbsd-386-cgo), const IPV6_MMTU ideal-int
+pkg syscall (netbsd-386-cgo), const IPV6_NEXTHOP ideal-int
+pkg syscall (netbsd-386-cgo), const IPV6_PATHMTU ideal-int
+pkg syscall (netbsd-386-cgo), const IPV6_PKTINFO ideal-int
+pkg syscall (netbsd-386-cgo), const IPV6_PORTRANGE ideal-int
+pkg syscall (netbsd-386-cgo), const IPV6_PORTRANGE_DEFAULT ideal-int
+pkg syscall (netbsd-386-cgo), const IPV6_PORTRANGE_HIGH ideal-int
+pkg syscall (netbsd-386-cgo), const IPV6_PORTRANGE_LOW ideal-int
+pkg syscall (netbsd-386-cgo), const IPV6_RECVDSTOPTS ideal-int
+pkg syscall (netbsd-386-cgo), const IPV6_RECVHOPLIMIT ideal-int
+pkg syscall (netbsd-386-cgo), const IPV6_RECVHOPOPTS ideal-int
+pkg syscall (netbsd-386-cgo), const IPV6_RECVPATHMTU ideal-int
+pkg syscall (netbsd-386-cgo), const IPV6_RECVPKTINFO ideal-int
+pkg syscall (netbsd-386-cgo), const IPV6_RECVRTHDR ideal-int
+pkg syscall (netbsd-386-cgo), const IPV6_RECVTCLASS ideal-int
+pkg syscall (netbsd-386-cgo), const IPV6_RTHDR ideal-int
+pkg syscall (netbsd-386-cgo), const IPV6_RTHDRDSTOPTS ideal-int
+pkg syscall (netbsd-386-cgo), const IPV6_RTHDR_LOOSE ideal-int
+pkg syscall (netbsd-386-cgo), const IPV6_RTHDR_STRICT ideal-int
+pkg syscall (netbsd-386-cgo), const IPV6_RTHDR_TYPE_0 ideal-int
+pkg syscall (netbsd-386-cgo), const IPV6_SOCKOPT_RESERVED1 ideal-int
+pkg syscall (netbsd-386-cgo), const IPV6_TCLASS ideal-int
+pkg syscall (netbsd-386-cgo), const IPV6_USE_MIN_MTU ideal-int
+pkg syscall (netbsd-386-cgo), const IPV6_VERSION ideal-int
+pkg syscall (netbsd-386-cgo), const IPV6_VERSION_MASK ideal-int
+pkg syscall (netbsd-386-cgo), const IP_DEFAULT_MULTICAST_LOOP ideal-int
+pkg syscall (netbsd-386-cgo), const IP_DEFAULT_MULTICAST_TTL ideal-int
+pkg syscall (netbsd-386-cgo), const IP_DF ideal-int
+pkg syscall (netbsd-386-cgo), const IP_EF ideal-int
+pkg syscall (netbsd-386-cgo), const IP_ERRORMTU ideal-int
+pkg syscall (netbsd-386-cgo), const IP_HDRINCL ideal-int
+pkg syscall (netbsd-386-cgo), const IP_IPSEC_POLICY ideal-int
+pkg syscall (netbsd-386-cgo), const IP_MAXPACKET ideal-int
+pkg syscall (netbsd-386-cgo), const IP_MAX_MEMBERSHIPS ideal-int
+pkg syscall (netbsd-386-cgo), const IP_MF ideal-int
+pkg syscall (netbsd-386-cgo), const IP_MINFRAGSIZE ideal-int
+pkg syscall (netbsd-386-cgo), const IP_MINTTL ideal-int
+pkg syscall (netbsd-386-cgo), const IP_MSS ideal-int
+pkg syscall (netbsd-386-cgo), const IP_OFFMASK ideal-int
+pkg syscall (netbsd-386-cgo), const IP_OPTIONS ideal-int
+pkg syscall (netbsd-386-cgo), const IP_PORTRANGE ideal-int
+pkg syscall (netbsd-386-cgo), const IP_PORTRANGE_DEFAULT ideal-int
+pkg syscall (netbsd-386-cgo), const IP_PORTRANGE_HIGH ideal-int
+pkg syscall (netbsd-386-cgo), const IP_PORTRANGE_LOW ideal-int
+pkg syscall (netbsd-386-cgo), const IP_RECVDSTADDR ideal-int
+pkg syscall (netbsd-386-cgo), const IP_RECVIF ideal-int
+pkg syscall (netbsd-386-cgo), const IP_RECVOPTS ideal-int
+pkg syscall (netbsd-386-cgo), const IP_RECVRETOPTS ideal-int
+pkg syscall (netbsd-386-cgo), const IP_RECVTTL ideal-int
+pkg syscall (netbsd-386-cgo), const IP_RETOPTS ideal-int
+pkg syscall (netbsd-386-cgo), const IP_RF ideal-int
+pkg syscall (netbsd-386-cgo), const ISIG ideal-int
+pkg syscall (netbsd-386-cgo), const ISTRIP ideal-int
+pkg syscall (netbsd-386-cgo), const IXANY ideal-int
+pkg syscall (netbsd-386-cgo), const IXOFF ideal-int
+pkg syscall (netbsd-386-cgo), const IXON ideal-int
+pkg syscall (netbsd-386-cgo), const LOCK_EX ideal-int
+pkg syscall (netbsd-386-cgo), const LOCK_NB ideal-int
+pkg syscall (netbsd-386-cgo), const LOCK_SH ideal-int
+pkg syscall (netbsd-386-cgo), const LOCK_UN ideal-int
+pkg syscall (netbsd-386-cgo), const MSG_BCAST ideal-int
+pkg syscall (netbsd-386-cgo), const MSG_CMSG_CLOEXEC ideal-int
+pkg syscall (netbsd-386-cgo), const MSG_CONTROLMBUF ideal-int
+pkg syscall (netbsd-386-cgo), const MSG_CTRUNC ideal-int
+pkg syscall (netbsd-386-cgo), const MSG_DONTROUTE ideal-int
+pkg syscall (netbsd-386-cgo), const MSG_DONTWAIT ideal-int
+pkg syscall (netbsd-386-cgo), const MSG_EOR ideal-int
+pkg syscall (netbsd-386-cgo), const MSG_IOVUSRSPACE ideal-int
+pkg syscall (netbsd-386-cgo), const MSG_LENUSRSPACE ideal-int
+pkg syscall (netbsd-386-cgo), const MSG_MCAST ideal-int
+pkg syscall (netbsd-386-cgo), const MSG_NAMEMBUF ideal-int
+pkg syscall (netbsd-386-cgo), const MSG_NBIO ideal-int
+pkg syscall (netbsd-386-cgo), const MSG_NOSIGNAL ideal-int
+pkg syscall (netbsd-386-cgo), const MSG_OOB ideal-int
+pkg syscall (netbsd-386-cgo), const MSG_PEEK ideal-int
+pkg syscall (netbsd-386-cgo), const MSG_TRUNC ideal-int
+pkg syscall (netbsd-386-cgo), const MSG_USERFLAGS ideal-int
+pkg syscall (netbsd-386-cgo), const MSG_WAITALL ideal-int
+pkg syscall (netbsd-386-cgo), const NAME_MAX ideal-int
+pkg syscall (netbsd-386-cgo), const NET_RT_DUMP ideal-int
+pkg syscall (netbsd-386-cgo), const NET_RT_FLAGS ideal-int
+pkg syscall (netbsd-386-cgo), const NET_RT_IFLIST ideal-int
+pkg syscall (netbsd-386-cgo), const NET_RT_MAXID ideal-int
+pkg syscall (netbsd-386-cgo), const NET_RT_OIFLIST ideal-int
+pkg syscall (netbsd-386-cgo), const NET_RT_OOIFLIST ideal-int
+pkg syscall (netbsd-386-cgo), const NOFLSH ideal-int
+pkg syscall (netbsd-386-cgo), const NOTE_ATTRIB ideal-int
+pkg syscall (netbsd-386-cgo), const NOTE_CHILD ideal-int
+pkg syscall (netbsd-386-cgo), const NOTE_DELETE ideal-int
+pkg syscall (netbsd-386-cgo), const NOTE_EXEC ideal-int
+pkg syscall (netbsd-386-cgo), const NOTE_EXIT ideal-int
+pkg syscall (netbsd-386-cgo), const NOTE_EXTEND ideal-int
+pkg syscall (netbsd-386-cgo), const NOTE_FORK ideal-int
+pkg syscall (netbsd-386-cgo), const NOTE_LINK ideal-int
+pkg syscall (netbsd-386-cgo), const NOTE_LOWAT ideal-int
+pkg syscall (netbsd-386-cgo), const NOTE_PCTRLMASK ideal-int
+pkg syscall (netbsd-386-cgo), const NOTE_PDATAMASK ideal-int
+pkg syscall (netbsd-386-cgo), const NOTE_RENAME ideal-int
+pkg syscall (netbsd-386-cgo), const NOTE_REVOKE ideal-int
+pkg syscall (netbsd-386-cgo), const NOTE_TRACK ideal-int
+pkg syscall (netbsd-386-cgo), const NOTE_TRACKERR ideal-int
+pkg syscall (netbsd-386-cgo), const NOTE_WRITE ideal-int
+pkg syscall (netbsd-386-cgo), const OCRNL ideal-int
+pkg syscall (netbsd-386-cgo), const OFIOGETBMAP ideal-int
+pkg syscall (netbsd-386-cgo), const ONLCR ideal-int
+pkg syscall (netbsd-386-cgo), const ONLRET ideal-int
+pkg syscall (netbsd-386-cgo), const ONOCR ideal-int
+pkg syscall (netbsd-386-cgo), const ONOEOT ideal-int
+pkg syscall (netbsd-386-cgo), const OPOST ideal-int
+pkg syscall (netbsd-386-cgo), const O_ACCMODE ideal-int
+pkg syscall (netbsd-386-cgo), const O_ALT_IO ideal-int
+pkg syscall (netbsd-386-cgo), const O_DIRECT ideal-int
+pkg syscall (netbsd-386-cgo), const O_DIRECTORY ideal-int
+pkg syscall (netbsd-386-cgo), const O_DSYNC ideal-int
+pkg syscall (netbsd-386-cgo), const O_EXLOCK ideal-int
+pkg syscall (netbsd-386-cgo), const O_FSYNC ideal-int
+pkg syscall (netbsd-386-cgo), const O_NDELAY ideal-int
+pkg syscall (netbsd-386-cgo), const O_NOFOLLOW ideal-int
+pkg syscall (netbsd-386-cgo), const O_NOSIGPIPE ideal-int
+pkg syscall (netbsd-386-cgo), const O_RSYNC ideal-int
+pkg syscall (netbsd-386-cgo), const O_SHLOCK ideal-int
+pkg syscall (netbsd-386-cgo), const PARENB ideal-int
+pkg syscall (netbsd-386-cgo), const PARMRK ideal-int
+pkg syscall (netbsd-386-cgo), const PARODD ideal-int
+pkg syscall (netbsd-386-cgo), const PENDIN ideal-int
+pkg syscall (netbsd-386-cgo), const PRIO_PGRP = 1
+pkg syscall (netbsd-386-cgo), const PRIO_PGRP ideal-int
+pkg syscall (netbsd-386-cgo), const PRIO_PROCESS = 0
+pkg syscall (netbsd-386-cgo), const PRIO_PROCESS ideal-int
+pkg syscall (netbsd-386-cgo), const PRIO_USER = 2
+pkg syscall (netbsd-386-cgo), const PRIO_USER ideal-int
+pkg syscall (netbsd-386-cgo), const PRI_IOFLUSH ideal-int
+pkg syscall (netbsd-386-cgo), const PTRACE_CONT ideal-int
+pkg syscall (netbsd-386-cgo), const PTRACE_KILL ideal-int
+pkg syscall (netbsd-386-cgo), const PTRACE_TRACEME ideal-int
+pkg syscall (netbsd-386-cgo), const RLIMIT_AS ideal-int
+pkg syscall (netbsd-386-cgo), const RLIMIT_CORE ideal-int
+pkg syscall (netbsd-386-cgo), const RLIMIT_CPU ideal-int
+pkg syscall (netbsd-386-cgo), const RLIMIT_DATA ideal-int
+pkg syscall (netbsd-386-cgo), const RLIMIT_FSIZE ideal-int
+pkg syscall (netbsd-386-cgo), const RLIMIT_NOFILE ideal-int
+pkg syscall (netbsd-386-cgo), const RLIMIT_STACK ideal-int
+pkg syscall (netbsd-386-cgo), const RLIM_INFINITY ideal-int
+pkg syscall (netbsd-386-cgo), const RTAX_AUTHOR ideal-int
+pkg syscall (netbsd-386-cgo), const RTAX_BRD ideal-int
+pkg syscall (netbsd-386-cgo), const RTAX_DST ideal-int
+pkg syscall (netbsd-386-cgo), const RTAX_GATEWAY ideal-int
+pkg syscall (netbsd-386-cgo), const RTAX_GENMASK ideal-int
+pkg syscall (netbsd-386-cgo), const RTAX_IFA ideal-int
+pkg syscall (netbsd-386-cgo), const RTAX_IFP ideal-int
+pkg syscall (netbsd-386-cgo), const RTAX_MAX ideal-int
+pkg syscall (netbsd-386-cgo), const RTAX_NETMASK ideal-int
+pkg syscall (netbsd-386-cgo), const RTAX_TAG ideal-int
+pkg syscall (netbsd-386-cgo), const RTA_AUTHOR ideal-int
+pkg syscall (netbsd-386-cgo), const RTA_BRD ideal-int
+pkg syscall (netbsd-386-cgo), const RTA_DST ideal-int
+pkg syscall (netbsd-386-cgo), const RTA_GATEWAY ideal-int
+pkg syscall (netbsd-386-cgo), const RTA_GENMASK ideal-int
+pkg syscall (netbsd-386-cgo), const RTA_IFA ideal-int
+pkg syscall (netbsd-386-cgo), const RTA_IFP ideal-int
+pkg syscall (netbsd-386-cgo), const RTA_NETMASK ideal-int
+pkg syscall (netbsd-386-cgo), const RTA_TAG ideal-int
+pkg syscall (netbsd-386-cgo), const RTF_ANNOUNCE ideal-int
+pkg syscall (netbsd-386-cgo), const RTF_BLACKHOLE ideal-int
+pkg syscall (netbsd-386-cgo), const RTF_CLONED ideal-int
+pkg syscall (netbsd-386-cgo), const RTF_CLONING ideal-int
+pkg syscall (netbsd-386-cgo), const RTF_DONE ideal-int
+pkg syscall (netbsd-386-cgo), const RTF_DYNAMIC ideal-int
+pkg syscall (netbsd-386-cgo), const RTF_GATEWAY ideal-int
+pkg syscall (netbsd-386-cgo), const RTF_HOST ideal-int
+pkg syscall (netbsd-386-cgo), const RTF_LLINFO ideal-int
+pkg syscall (netbsd-386-cgo), const RTF_MASK ideal-int
+pkg syscall (netbsd-386-cgo), const RTF_MODIFIED ideal-int
+pkg syscall (netbsd-386-cgo), const RTF_PROTO1 ideal-int
+pkg syscall (netbsd-386-cgo), const RTF_PROTO2 ideal-int
+pkg syscall (netbsd-386-cgo), const RTF_REJECT ideal-int
+pkg syscall (netbsd-386-cgo), const RTF_SRC ideal-int
+pkg syscall (netbsd-386-cgo), const RTF_STATIC ideal-int
+pkg syscall (netbsd-386-cgo), const RTF_UP ideal-int
+pkg syscall (netbsd-386-cgo), const RTF_XRESOLVE ideal-int
+pkg syscall (netbsd-386-cgo), const RTM_ADD ideal-int
+pkg syscall (netbsd-386-cgo), const RTM_CHANGE ideal-int
+pkg syscall (netbsd-386-cgo), const RTM_CHGADDR ideal-int
+pkg syscall (netbsd-386-cgo), const RTM_DELADDR ideal-int
+pkg syscall (netbsd-386-cgo), const RTM_DELETE ideal-int
+pkg syscall (netbsd-386-cgo), const RTM_GET ideal-int
+pkg syscall (netbsd-386-cgo), const RTM_IEEE80211 ideal-int
+pkg syscall (netbsd-386-cgo), const RTM_IFANNOUNCE ideal-int
+pkg syscall (netbsd-386-cgo), const RTM_IFINFO ideal-int
+pkg syscall (netbsd-386-cgo), const RTM_LLINFO_UPD ideal-int
+pkg syscall (netbsd-386-cgo), const RTM_LOCK ideal-int
+pkg syscall (netbsd-386-cgo), const RTM_LOSING ideal-int
+pkg syscall (netbsd-386-cgo), const RTM_MISS ideal-int
+pkg syscall (netbsd-386-cgo), const RTM_NEWADDR ideal-int
+pkg syscall (netbsd-386-cgo), const RTM_OIFINFO ideal-int
+pkg syscall (netbsd-386-cgo), const RTM_OLDADD ideal-int
+pkg syscall (netbsd-386-cgo), const RTM_OLDDEL ideal-int
+pkg syscall (netbsd-386-cgo), const RTM_OOIFINFO ideal-int
+pkg syscall (netbsd-386-cgo), const RTM_REDIRECT ideal-int
+pkg syscall (netbsd-386-cgo), const RTM_RESOLVE ideal-int
+pkg syscall (netbsd-386-cgo), const RTM_RTTUNIT ideal-int
+pkg syscall (netbsd-386-cgo), const RTM_SETGATE ideal-int
+pkg syscall (netbsd-386-cgo), const RTM_VERSION ideal-int
+pkg syscall (netbsd-386-cgo), const RTV_EXPIRE ideal-int
+pkg syscall (netbsd-386-cgo), const RTV_HOPCOUNT ideal-int
+pkg syscall (netbsd-386-cgo), const RTV_MTU ideal-int
+pkg syscall (netbsd-386-cgo), const RTV_RPIPE ideal-int
+pkg syscall (netbsd-386-cgo), const RTV_RTT ideal-int
+pkg syscall (netbsd-386-cgo), const RTV_RTTVAR ideal-int
+pkg syscall (netbsd-386-cgo), const RTV_SPIPE ideal-int
+pkg syscall (netbsd-386-cgo), const RTV_SSTHRESH ideal-int
+pkg syscall (netbsd-386-cgo), const RUSAGE_CHILDREN ideal-int
+pkg syscall (netbsd-386-cgo), const RUSAGE_SELF ideal-int
+pkg syscall (netbsd-386-cgo), const SCM_CREDS ideal-int
+pkg syscall (netbsd-386-cgo), const SCM_RIGHTS ideal-int
+pkg syscall (netbsd-386-cgo), const SCM_TIMESTAMP ideal-int
+pkg syscall (netbsd-386-cgo), const SIGCHLD Signal
+pkg syscall (netbsd-386-cgo), const SIGCONT Signal
+pkg syscall (netbsd-386-cgo), const SIGEMT Signal
+pkg syscall (netbsd-386-cgo), const SIGINFO Signal
+pkg syscall (netbsd-386-cgo), const SIGIO Signal
+pkg syscall (netbsd-386-cgo), const SIGIOT Signal
+pkg syscall (netbsd-386-cgo), const SIGPROF Signal
+pkg syscall (netbsd-386-cgo), const SIGPWR Signal
+pkg syscall (netbsd-386-cgo), const SIGSTOP Signal
+pkg syscall (netbsd-386-cgo), const SIGSYS Signal
+pkg syscall (netbsd-386-cgo), const SIGTSTP Signal
+pkg syscall (netbsd-386-cgo), const SIGTTIN Signal
+pkg syscall (netbsd-386-cgo), const SIGTTOU Signal
+pkg syscall (netbsd-386-cgo), const SIGURG Signal
+pkg syscall (netbsd-386-cgo), const SIGUSR1 Signal
+pkg syscall (netbsd-386-cgo), const SIGUSR2 Signal
+pkg syscall (netbsd-386-cgo), const SIGVTALRM Signal
+pkg syscall (netbsd-386-cgo), const SIGWINCH Signal
+pkg syscall (netbsd-386-cgo), const SIGXCPU Signal
+pkg syscall (netbsd-386-cgo), const SIGXFSZ Signal
+pkg syscall (netbsd-386-cgo), const SIOCADDMULTI ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCADDRT ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCAIFADDR ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCALIFADDR ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCATMARK ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCDELMULTI ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCDELRT ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCDIFADDR ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCDIFPHYADDR ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCDLIFADDR ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCGDRVSPEC ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCGETPFSYNC ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCGETSGCNT ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCGETVIFCNT ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCGHIWAT ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCGIFADDR ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCGIFADDRPREF ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCGIFALIAS ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCGIFBRDADDR ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCGIFCAP ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCGIFCONF ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCGIFDATA ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCGIFDLT ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCGIFDSTADDR ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCGIFFLAGS ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCGIFGENERIC ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCGIFMEDIA ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCGIFMETRIC ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCGIFMTU ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCGIFNETMASK ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCGIFPDSTADDR ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCGIFPSRCADDR ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCGLIFADDR ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCGLIFPHYADDR ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCGLINKSTR ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCGLOWAT ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCGPGRP ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCGVH ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCIFCREATE ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCIFDESTROY ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCIFGCLONERS ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCINITIFADDR ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCSDRVSPEC ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCSETPFSYNC ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCSHIWAT ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCSIFADDR ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCSIFADDRPREF ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCSIFBRDADDR ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCSIFCAP ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCSIFDSTADDR ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCSIFFLAGS ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCSIFGENERIC ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCSIFMEDIA ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCSIFMETRIC ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCSIFMTU ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCSIFNETMASK ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCSIFPHYADDR ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCSLIFPHYADDR ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCSLINKSTR ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCSLOWAT ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCSPGRP ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCSVH ideal-int
+pkg syscall (netbsd-386-cgo), const SIOCZIFDATA ideal-int
+pkg syscall (netbsd-386-cgo), const SOCK_CLOEXEC ideal-int
+pkg syscall (netbsd-386-cgo), const SOCK_FLAGS_MASK ideal-int
+pkg syscall (netbsd-386-cgo), const SOCK_NONBLOCK ideal-int
+pkg syscall (netbsd-386-cgo), const SOCK_NOSIGPIPE ideal-int
+pkg syscall (netbsd-386-cgo), const SOCK_RDM ideal-int
+pkg syscall (netbsd-386-cgo), const SO_ACCEPTCONN ideal-int
+pkg syscall (netbsd-386-cgo), const SO_ACCEPTFILTER ideal-int
+pkg syscall (netbsd-386-cgo), const SO_DEBUG ideal-int
+pkg syscall (netbsd-386-cgo), const SO_ERROR ideal-int
+pkg syscall (netbsd-386-cgo), const SO_NOHEADER ideal-int
+pkg syscall (netbsd-386-cgo), const SO_NOSIGPIPE ideal-int
+pkg syscall (netbsd-386-cgo), const SO_OOBINLINE ideal-int
+pkg syscall (netbsd-386-cgo), const SO_OVERFLOWED ideal-int
+pkg syscall (netbsd-386-cgo), const SO_RCVLOWAT ideal-int
+pkg syscall (netbsd-386-cgo), const SO_RCVTIMEO ideal-int
+pkg syscall (netbsd-386-cgo), const SO_REUSEPORT ideal-int
+pkg syscall (netbsd-386-cgo), const SO_SNDLOWAT ideal-int
+pkg syscall (netbsd-386-cgo), const SO_SNDTIMEO ideal-int
+pkg syscall (netbsd-386-cgo), const SO_TIMESTAMP ideal-int
+pkg syscall (netbsd-386-cgo), const SO_TYPE ideal-int
+pkg syscall (netbsd-386-cgo), const SO_USELOOPBACK ideal-int
+pkg syscall (netbsd-386-cgo), const SYSCTL_VERSION ideal-int
+pkg syscall (netbsd-386-cgo), const SYSCTL_VERS_0 ideal-int
+pkg syscall (netbsd-386-cgo), const SYSCTL_VERS_1 ideal-int
+pkg syscall (netbsd-386-cgo), const SYSCTL_VERS_MASK ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_ACCEPT ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_ACCESS ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_ACCT ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_ADJTIME ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_BIND ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_BREAK ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_CHDIR ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_CHFLAGS ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_CHMOD ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_CHOWN ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_CHROOT ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_CLOCK_GETRES ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_CLOCK_GETTIME ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_CLOCK_SETTIME ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_CLOSE ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_CONNECT ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_DUP ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_DUP2 ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_DUP3 ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_EXECVE ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_EXIT ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_EXTATTRCTL ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_EXTATTR_DELETE_FD ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_EXTATTR_DELETE_FILE ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_EXTATTR_DELETE_LINK ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_EXTATTR_GET_FD ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_EXTATTR_GET_FILE ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_EXTATTR_GET_LINK ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_EXTATTR_LIST_FD ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_EXTATTR_LIST_FILE ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_EXTATTR_LIST_LINK ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_EXTATTR_SET_FD ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_EXTATTR_SET_FILE ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_EXTATTR_SET_LINK ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_FACCESSAT ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_FCHDIR ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_FCHFLAGS ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_FCHMOD ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_FCHMODAT ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_FCHOWN ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_FCHOWNAT ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_FCHROOT ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_FCNTL ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_FDATASYNC ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_FEXECVE ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_FGETXATTR ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_FHSTAT ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_FKTRACE ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_FLISTXATTR ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_FLOCK ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_FORK ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_FPATHCONF ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_FREMOVEXATTR ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_FSETXATTR ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_FSTAT ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_FSTATAT ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_FSTATVFS1 ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_FSYNC ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_FSYNC_RANGE ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_FTRUNCATE ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_FUTIMENS ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_FUTIMES ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_GETCONTEXT ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_GETDENTS ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_GETEGID ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_GETEUID ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_GETFH ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_GETGID ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_GETGROUPS ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_GETITIMER ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_GETPEERNAME ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_GETPGID ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_GETPGRP ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_GETPID ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_GETPPID ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_GETPRIORITY ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_GETRLIMIT ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_GETRUSAGE ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_GETSID ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_GETSOCKNAME ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_GETSOCKOPT ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_GETTIMEOFDAY ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_GETUID ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_GETVFSSTAT ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_GETXATTR ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_IOCTL ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_ISSETUGID ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_KEVENT ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_KILL ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_KQUEUE ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_KQUEUE1 ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_KTRACE ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_LCHFLAGS ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_LCHMOD ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_LCHOWN ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_LGETXATTR ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_LINK ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_LINKAT ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_LISTEN ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_LISTXATTR ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_LLISTXATTR ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_LREMOVEXATTR ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_LSEEK ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_LSETXATTR ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_LSTAT ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_LUTIMES ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_MADVISE ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_MINCORE ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_MINHERIT ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_MKDIR ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_MKDIRAT ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_MKFIFO ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_MKFIFOAT ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_MKNOD ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_MKNODAT ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_MLOCK ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_MLOCKALL ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_MMAP ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_MODCTL ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_MOUNT ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_MPROTECT ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_MREMAP ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_MSGCTL ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_MSGGET ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_MSGRCV ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_MSGSND ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_MUNLOCK ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_MUNLOCKALL ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_MUNMAP ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_NANOSLEEP ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_NTP_ADJTIME ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_NTP_GETTIME ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_OPEN ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_OPENAT ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_PACCEPT ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_PATHCONF ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_PIPE ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_PIPE2 ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_PMC_CONTROL ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_PMC_GET_INFO ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_POLL ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_POLLTS ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_POSIX_FADVISE ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_POSIX_SPAWN ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_PREAD ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_PREADV ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_PROFIL ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_PSELECT ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_PSET_ASSIGN ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_PSET_CREATE ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_PSET_DESTROY ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_PTRACE ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_PWRITE ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_PWRITEV ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_RASCTL ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_READ ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_READLINK ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_READLINKAT ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_READV ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_REBOOT ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_RECVFROM ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_RECVMMSG ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_RECVMSG ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_REMOVEXATTR ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_RENAME ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_RENAMEAT ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_REVOKE ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_RMDIR ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_SBRK ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_SCHED_YIELD ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_SELECT ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_SEMCONFIG ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_SEMGET ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_SEMOP ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_SENDMMSG ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_SENDMSG ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_SENDTO ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_SETCONTEXT ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_SETEGID ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_SETEUID ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_SETGID ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_SETGROUPS ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_SETITIMER ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_SETPGID ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_SETPRIORITY ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_SETREGID ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_SETREUID ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_SETRLIMIT ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_SETSID ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_SETSOCKOPT ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_SETTIMEOFDAY ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_SETUID ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_SETXATTR ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_SHMAT ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_SHMCTL ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_SHMDT ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_SHMGET ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_SHUTDOWN ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_SIGQUEUEINFO ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_SOCKET ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_SOCKETPAIR ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_SSTK ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_STAT ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_STATVFS1 ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_SWAPCTL ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_SYMLINK ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_SYMLINKAT ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_SYNC ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_SYSARCH ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_TIMER_CREATE ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_TIMER_DELETE ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_TIMER_GETOVERRUN ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_TIMER_GETTIME ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_TIMER_SETTIME ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_TRUNCATE ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_UMASK ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_UNDELETE ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_UNLINK ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_UNLINKAT ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_UNMOUNT ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_UTIMENSAT ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_UTIMES ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_UTRACE ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_UUIDGEN ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_VADVISE ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_VFORK ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_WAIT4 ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_WRITE ideal-int
+pkg syscall (netbsd-386-cgo), const SYS_WRITEV ideal-int
+pkg syscall (netbsd-386-cgo), const SYS__LWP_CONTINUE ideal-int
+pkg syscall (netbsd-386-cgo), const SYS__LWP_CREATE ideal-int
+pkg syscall (netbsd-386-cgo), const SYS__LWP_CTL ideal-int
+pkg syscall (netbsd-386-cgo), const SYS__LWP_DETACH ideal-int
+pkg syscall (netbsd-386-cgo), const SYS__LWP_EXIT ideal-int
+pkg syscall (netbsd-386-cgo), const SYS__LWP_GETNAME ideal-int
+pkg syscall (netbsd-386-cgo), const SYS__LWP_GETPRIVATE ideal-int
+pkg syscall (netbsd-386-cgo), const SYS__LWP_KILL ideal-int
+pkg syscall (netbsd-386-cgo), const SYS__LWP_PARK ideal-int
+pkg syscall (netbsd-386-cgo), const SYS__LWP_SELF ideal-int
+pkg syscall (netbsd-386-cgo), const SYS__LWP_SETNAME ideal-int
+pkg syscall (netbsd-386-cgo), const SYS__LWP_SETPRIVATE ideal-int
+pkg syscall (netbsd-386-cgo), const SYS__LWP_SUSPEND ideal-int
+pkg syscall (netbsd-386-cgo), const SYS__LWP_UNPARK ideal-int
+pkg syscall (netbsd-386-cgo), const SYS__LWP_UNPARK_ALL ideal-int
+pkg syscall (netbsd-386-cgo), const SYS__LWP_WAIT ideal-int
+pkg syscall (netbsd-386-cgo), const SYS__LWP_WAKEUP ideal-int
+pkg syscall (netbsd-386-cgo), const SYS__PSET_BIND ideal-int
+pkg syscall (netbsd-386-cgo), const SYS__SCHED_GETAFFINITY ideal-int
+pkg syscall (netbsd-386-cgo), const SYS__SCHED_GETPARAM ideal-int
+pkg syscall (netbsd-386-cgo), const SYS__SCHED_SETAFFINITY ideal-int
+pkg syscall (netbsd-386-cgo), const SYS__SCHED_SETPARAM ideal-int
+pkg syscall (netbsd-386-cgo), const SYS___CLONE ideal-int
+pkg syscall (netbsd-386-cgo), const SYS___GETCWD ideal-int
+pkg syscall (netbsd-386-cgo), const SYS___GETLOGIN ideal-int
+pkg syscall (netbsd-386-cgo), const SYS___POSIX_CHOWN ideal-int
+pkg syscall (netbsd-386-cgo), const SYS___POSIX_FCHOWN ideal-int
+pkg syscall (netbsd-386-cgo), const SYS___POSIX_LCHOWN ideal-int
+pkg syscall (netbsd-386-cgo), const SYS___POSIX_RENAME ideal-int
+pkg syscall (netbsd-386-cgo), const SYS___QUOTACTL ideal-int
+pkg syscall (netbsd-386-cgo), const SYS___SEMCTL ideal-int
+pkg syscall (netbsd-386-cgo), const SYS___SETLOGIN ideal-int
+pkg syscall (netbsd-386-cgo), const SYS___SIGACTION_SIGTRAMP ideal-int
+pkg syscall (netbsd-386-cgo), const SYS___SIGTIMEDWAIT ideal-int
+pkg syscall (netbsd-386-cgo), const SYS___SYSCTL ideal-int
+pkg syscall (netbsd-386-cgo), const S_ARCH1 ideal-int
+pkg syscall (netbsd-386-cgo), const S_ARCH2 ideal-int
+pkg syscall (netbsd-386-cgo), const S_BLKSIZE ideal-int
+pkg syscall (netbsd-386-cgo), const S_IEXEC ideal-int
+pkg syscall (netbsd-386-cgo), const S_IFWHT ideal-int
+pkg syscall (netbsd-386-cgo), const S_IREAD ideal-int
+pkg syscall (netbsd-386-cgo), const S_IRGRP ideal-int
+pkg syscall (netbsd-386-cgo), const S_IROTH ideal-int
+pkg syscall (netbsd-386-cgo), const S_IRWXG ideal-int
+pkg syscall (netbsd-386-cgo), const S_IRWXO ideal-int
+pkg syscall (netbsd-386-cgo), const S_IRWXU ideal-int
+pkg syscall (netbsd-386-cgo), const S_ISTXT ideal-int
+pkg syscall (netbsd-386-cgo), const S_IWGRP ideal-int
+pkg syscall (netbsd-386-cgo), const S_IWOTH ideal-int
+pkg syscall (netbsd-386-cgo), const S_IWRITE ideal-int
+pkg syscall (netbsd-386-cgo), const S_IXGRP ideal-int
+pkg syscall (netbsd-386-cgo), const S_IXOTH ideal-int
+pkg syscall (netbsd-386-cgo), const S_LOGIN_SET ideal-int
+pkg syscall (netbsd-386-cgo), const SizeofBpfHdr ideal-int
+pkg syscall (netbsd-386-cgo), const SizeofBpfInsn ideal-int
+pkg syscall (netbsd-386-cgo), const SizeofBpfProgram ideal-int
+pkg syscall (netbsd-386-cgo), const SizeofBpfStat ideal-int
+pkg syscall (netbsd-386-cgo), const SizeofBpfVersion ideal-int
+pkg syscall (netbsd-386-cgo), const SizeofCmsghdr ideal-int
+pkg syscall (netbsd-386-cgo), const SizeofICMPv6Filter = 32
+pkg syscall (netbsd-386-cgo), const SizeofICMPv6Filter ideal-int
+pkg syscall (netbsd-386-cgo), const SizeofIPMreq ideal-int
+pkg syscall (netbsd-386-cgo), const SizeofIPv6MTUInfo = 32
+pkg syscall (netbsd-386-cgo), const SizeofIPv6MTUInfo ideal-int
+pkg syscall (netbsd-386-cgo), const SizeofIPv6Mreq ideal-int
+pkg syscall (netbsd-386-cgo), const SizeofIfAnnounceMsghdr ideal-int
+pkg syscall (netbsd-386-cgo), const SizeofIfData ideal-int
+pkg syscall (netbsd-386-cgo), const SizeofIfMsghdr ideal-int
+pkg syscall (netbsd-386-cgo), const SizeofIfaMsghdr ideal-int
+pkg syscall (netbsd-386-cgo), const SizeofInet6Pktinfo ideal-int
+pkg syscall (netbsd-386-cgo), const SizeofLinger ideal-int
+pkg syscall (netbsd-386-cgo), const SizeofMsghdr ideal-int
+pkg syscall (netbsd-386-cgo), const SizeofRtMetrics ideal-int
+pkg syscall (netbsd-386-cgo), const SizeofRtMsghdr ideal-int
+pkg syscall (netbsd-386-cgo), const SizeofSockaddrAny ideal-int
+pkg syscall (netbsd-386-cgo), const SizeofSockaddrDatalink ideal-int
+pkg syscall (netbsd-386-cgo), const SizeofSockaddrInet4 ideal-int
+pkg syscall (netbsd-386-cgo), const SizeofSockaddrInet6 ideal-int
+pkg syscall (netbsd-386-cgo), const SizeofSockaddrUnix ideal-int
+pkg syscall (netbsd-386-cgo), const TCIFLUSH ideal-int
+pkg syscall (netbsd-386-cgo), const TCIOFLUSH ideal-int
+pkg syscall (netbsd-386-cgo), const TCOFLUSH ideal-int
+pkg syscall (netbsd-386-cgo), const TCP_CONGCTL ideal-int
+pkg syscall (netbsd-386-cgo), const TCP_KEEPCNT ideal-int
+pkg syscall (netbsd-386-cgo), const TCP_KEEPIDLE ideal-int
+pkg syscall (netbsd-386-cgo), const TCP_KEEPINIT ideal-int
+pkg syscall (netbsd-386-cgo), const TCP_KEEPINTVL ideal-int
+pkg syscall (netbsd-386-cgo), const TCP_MAXBURST ideal-int
+pkg syscall (netbsd-386-cgo), const TCP_MAXSEG ideal-int
+pkg syscall (netbsd-386-cgo), const TCP_MAXWIN ideal-int
+pkg syscall (netbsd-386-cgo), const TCP_MAX_WINSHIFT ideal-int
+pkg syscall (netbsd-386-cgo), const TCP_MD5SIG ideal-int
+pkg syscall (netbsd-386-cgo), const TCP_MINMSS ideal-int
+pkg syscall (netbsd-386-cgo), const TCP_MSS ideal-int
+pkg syscall (netbsd-386-cgo), const TCSAFLUSH ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCCBRK ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCCDTR ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCCONS ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCDCDTIMESTAMP ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCDRAIN ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCEXCL ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCEXT ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCFLAG_CDTRCTS ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCFLAG_CLOCAL ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCFLAG_CRTSCTS ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCFLAG_MDMBUF ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCFLAG_SOFTCAR ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCFLUSH ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCGETA ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCGETD ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCGFLAGS ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCGLINED ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCGPGRP ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCGQSIZE ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCGRANTPT ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCGSID ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCGSIZE ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCGWINSZ ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCMBIC ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCMBIS ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCMGET ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCMSET ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCM_CAR ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCM_CD ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCM_CTS ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCM_DSR ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCM_DTR ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCM_LE ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCM_RI ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCM_RNG ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCM_RTS ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCM_SR ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCM_ST ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCNOTTY ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCNXCL ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCOUTQ ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCPKT ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCPKT_DATA ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCPKT_DOSTOP ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCPKT_FLUSHREAD ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCPKT_FLUSHWRITE ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCPKT_IOCTL ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCPKT_NOSTOP ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCPKT_START ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCPKT_STOP ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCPTMGET ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCPTSNAME ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCRCVFRAME ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCREMOTE ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCSBRK ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCSCTTY ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCSDTR ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCSETA ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCSETAF ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCSETAW ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCSETD ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCSFLAGS ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCSIG ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCSLINED ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCSPGRP ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCSQSIZE ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCSSIZE ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCSTART ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCSTAT ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCSTI ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCSTOP ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCSWINSZ ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCUCNTL ideal-int
+pkg syscall (netbsd-386-cgo), const TIOCXMTFRAME ideal-int
+pkg syscall (netbsd-386-cgo), const TOSTOP ideal-int
+pkg syscall (netbsd-386-cgo), const VDISCARD ideal-int
+pkg syscall (netbsd-386-cgo), const VDSUSP ideal-int
+pkg syscall (netbsd-386-cgo), const VEOF ideal-int
+pkg syscall (netbsd-386-cgo), const VEOL ideal-int
+pkg syscall (netbsd-386-cgo), const VEOL2 ideal-int
+pkg syscall (netbsd-386-cgo), const VERASE ideal-int
+pkg syscall (netbsd-386-cgo), const VINTR ideal-int
+pkg syscall (netbsd-386-cgo), const VKILL ideal-int
+pkg syscall (netbsd-386-cgo), const VLNEXT ideal-int
+pkg syscall (netbsd-386-cgo), const VMIN ideal-int
+pkg syscall (netbsd-386-cgo), const VQUIT ideal-int
+pkg syscall (netbsd-386-cgo), const VREPRINT ideal-int
+pkg syscall (netbsd-386-cgo), const VSTART ideal-int
+pkg syscall (netbsd-386-cgo), const VSTATUS ideal-int
+pkg syscall (netbsd-386-cgo), const VSTOP ideal-int
+pkg syscall (netbsd-386-cgo), const VSUSP ideal-int
+pkg syscall (netbsd-386-cgo), const VTIME ideal-int
+pkg syscall (netbsd-386-cgo), const VWERASE ideal-int
+pkg syscall (netbsd-386-cgo), const WALL ideal-int
+pkg syscall (netbsd-386-cgo), const WALLSIG ideal-int
+pkg syscall (netbsd-386-cgo), const WALTSIG ideal-int
+pkg syscall (netbsd-386-cgo), const WCLONE ideal-int
+pkg syscall (netbsd-386-cgo), const WCOREFLAG ideal-int
+pkg syscall (netbsd-386-cgo), const WNOHANG ideal-int
+pkg syscall (netbsd-386-cgo), const WNOWAIT ideal-int
+pkg syscall (netbsd-386-cgo), const WNOZOMBIE ideal-int
+pkg syscall (netbsd-386-cgo), const WOPTSCHECKED ideal-int
+pkg syscall (netbsd-386-cgo), const WSTOPPED ideal-int
+pkg syscall (netbsd-386-cgo), const WUNTRACED ideal-int
+pkg syscall (netbsd-386-cgo), func Accept(int) (int, Sockaddr, error)
+pkg syscall (netbsd-386-cgo), func Access(string, uint32) error
+pkg syscall (netbsd-386-cgo), func Adjtime(*Timeval, *Timeval) error
+pkg syscall (netbsd-386-cgo), func Bind(int, Sockaddr) error
+pkg syscall (netbsd-386-cgo), func BpfBuflen(int) (int, error)
+pkg syscall (netbsd-386-cgo), func BpfDatalink(int) (int, error)
+pkg syscall (netbsd-386-cgo), func BpfHeadercmpl(int) (int, error)
+pkg syscall (netbsd-386-cgo), func BpfInterface(int, string) (string, error)
+pkg syscall (netbsd-386-cgo), func BpfJump(int, int, int, int) *BpfInsn
+pkg syscall (netbsd-386-cgo), func BpfStats(int) (*BpfStat, error)
+pkg syscall (netbsd-386-cgo), func BpfStmt(int, int) *BpfInsn
+pkg syscall (netbsd-386-cgo), func BpfTimeout(int) (*Timeval, error)
+pkg syscall (netbsd-386-cgo), func CheckBpfVersion(int) error
+pkg syscall (netbsd-386-cgo), func Chflags(string, int) error
+pkg syscall (netbsd-386-cgo), func Chroot(string) error
+pkg syscall (netbsd-386-cgo), func Close(int) error
+pkg syscall (netbsd-386-cgo), func CloseOnExec(int)
+pkg syscall (netbsd-386-cgo), func CmsgLen(int) int
+pkg syscall (netbsd-386-cgo), func CmsgSpace(int) int
+pkg syscall (netbsd-386-cgo), func Connect(int, Sockaddr) error
+pkg syscall (netbsd-386-cgo), func Dup(int) (int, error)
+pkg syscall (netbsd-386-cgo), func Dup2(int, int) error
+pkg syscall (netbsd-386-cgo), func Fchdir(int) error
+pkg syscall (netbsd-386-cgo), func Fchflags(int, int) error
+pkg syscall (netbsd-386-cgo), func Fchmod(int, uint32) error
+pkg syscall (netbsd-386-cgo), func Fchown(int, int, int) error
+pkg syscall (netbsd-386-cgo), func Flock(int, int) error
+pkg syscall (netbsd-386-cgo), func FlushBpf(int) error
+pkg syscall (netbsd-386-cgo), func ForkExec(string, []string, *ProcAttr) (int, error)
+pkg syscall (netbsd-386-cgo), func Fpathconf(int, int) (int, error)
+pkg syscall (netbsd-386-cgo), func Fstat(int, *Stat_t) error
+pkg syscall (netbsd-386-cgo), func Fsync(int) error
+pkg syscall (netbsd-386-cgo), func Ftruncate(int, int64) error
+pkg syscall (netbsd-386-cgo), func Futimes(int, []Timeval) error
+pkg syscall (netbsd-386-cgo), func Getdirentries(int, []uint8, *uintptr) (int, error)
+pkg syscall (netbsd-386-cgo), func Getpeername(int) (Sockaddr, error)
+pkg syscall (netbsd-386-cgo), func Getpgid(int) (int, error)
+pkg syscall (netbsd-386-cgo), func Getpgrp() int
+pkg syscall (netbsd-386-cgo), func Getpriority(int, int) (int, error)
+pkg syscall (netbsd-386-cgo), func Getrlimit(int, *Rlimit) error
+pkg syscall (netbsd-386-cgo), func Getrusage(int, *Rusage) error
+pkg syscall (netbsd-386-cgo), func Getsid(int) (int, error)
+pkg syscall (netbsd-386-cgo), func Getsockname(int) (Sockaddr, error)
+pkg syscall (netbsd-386-cgo), func GetsockoptByte(int, int, int) (uint8, error)
+pkg syscall (netbsd-386-cgo), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
+pkg syscall (netbsd-386-cgo), func GetsockoptIPMreq(int, int, int) (*IPMreq, error)
+pkg syscall (netbsd-386-cgo), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
+pkg syscall (netbsd-386-cgo), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error)
+pkg syscall (netbsd-386-cgo), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error)
+pkg syscall (netbsd-386-cgo), func GetsockoptInt(int, int, int) (int, error)
+pkg syscall (netbsd-386-cgo), func Issetugid() bool
+pkg syscall (netbsd-386-cgo), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error)
+pkg syscall (netbsd-386-cgo), func Kill(int, Signal) error
+pkg syscall (netbsd-386-cgo), func Kqueue() (int, error)
+pkg syscall (netbsd-386-cgo), func Listen(int, int) error
+pkg syscall (netbsd-386-cgo), func Lstat(string, *Stat_t) error
+pkg syscall (netbsd-386-cgo), func Mkfifo(string, uint32) error
+pkg syscall (netbsd-386-cgo), func Mknod(string, uint32, int) error
+pkg syscall (netbsd-386-cgo), func Mmap(int, int64, int, int, int) ([]uint8, error)
+pkg syscall (netbsd-386-cgo), func Munmap([]uint8) error
+pkg syscall (netbsd-386-cgo), func Nanosleep(*Timespec, *Timespec) error
+pkg syscall (netbsd-386-cgo), func Open(string, int, uint32) (int, error)
+pkg syscall (netbsd-386-cgo), func ParseDirent([]uint8, int, []string) (int, int, []string)
+pkg syscall (netbsd-386-cgo), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error)
+pkg syscall (netbsd-386-cgo), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error)
+pkg syscall (netbsd-386-cgo), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error)
+pkg syscall (netbsd-386-cgo), func ParseUnixRights(*SocketControlMessage) ([]int, error)
+pkg syscall (netbsd-386-cgo), func Pathconf(string, int) (int, error)
+pkg syscall (netbsd-386-cgo), func Pipe([]int) error
+pkg syscall (netbsd-386-cgo), func Pread(int, []uint8, int64) (int, error)
+pkg syscall (netbsd-386-cgo), func Pwrite(int, []uint8, int64) (int, error)
+pkg syscall (netbsd-386-cgo), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (netbsd-386-cgo), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (netbsd-386-cgo), func Read(int, []uint8) (int, error)
+pkg syscall (netbsd-386-cgo), func ReadDirent(int, []uint8) (int, error)
+pkg syscall (netbsd-386-cgo), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
+pkg syscall (netbsd-386-cgo), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
+pkg syscall (netbsd-386-cgo), func Revoke(string) error
+pkg syscall (netbsd-386-cgo), func RouteRIB(int, int) ([]uint8, error)
+pkg syscall (netbsd-386-cgo), func Seek(int, int64, int) (int64, error)
+pkg syscall (netbsd-386-cgo), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error
+pkg syscall (netbsd-386-cgo), func Sendfile(int, int, *int64, int) (int, error)
+pkg syscall (netbsd-386-cgo), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
+pkg syscall (netbsd-386-cgo), func Sendto(int, []uint8, int, Sockaddr) error
+pkg syscall (netbsd-386-cgo), func SetBpf(int, []BpfInsn) error
+pkg syscall (netbsd-386-cgo), func SetBpfBuflen(int, int) (int, error)
+pkg syscall (netbsd-386-cgo), func SetBpfDatalink(int, int) (int, error)
+pkg syscall (netbsd-386-cgo), func SetBpfHeadercmpl(int, int) error
+pkg syscall (netbsd-386-cgo), func SetBpfImmediate(int, int) error
+pkg syscall (netbsd-386-cgo), func SetBpfInterface(int, string) error
+pkg syscall (netbsd-386-cgo), func SetBpfPromisc(int, int) error
+pkg syscall (netbsd-386-cgo), func SetBpfTimeout(int, *Timeval) error
+pkg syscall (netbsd-386-cgo), func SetKevent(*Kevent_t, int, int, int)
+pkg syscall (netbsd-386-cgo), func SetNonblock(int, bool) error
+pkg syscall (netbsd-386-cgo), func Setegid(int) error
+pkg syscall (netbsd-386-cgo), func Seteuid(int) error
+pkg syscall (netbsd-386-cgo), func Setgid(int) error
+pkg syscall (netbsd-386-cgo), func Setgroups([]int) error
+pkg syscall (netbsd-386-cgo), func Setpgid(int, int) error
+pkg syscall (netbsd-386-cgo), func Setpriority(int, int, int) error
+pkg syscall (netbsd-386-cgo), func Setregid(int, int) error
+pkg syscall (netbsd-386-cgo), func Setreuid(int, int) error
+pkg syscall (netbsd-386-cgo), func Setrlimit(int, *Rlimit) error
+pkg syscall (netbsd-386-cgo), func Setsid() (int, error)
+pkg syscall (netbsd-386-cgo), func SetsockoptByte(int, int, int, uint8) error
+pkg syscall (netbsd-386-cgo), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
+pkg syscall (netbsd-386-cgo), func SetsockoptIPMreq(int, int, int, *IPMreq) error
+pkg syscall (netbsd-386-cgo), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error
+pkg syscall (netbsd-386-cgo), func SetsockoptInet4Addr(int, int, int, [4]uint8) error
+pkg syscall (netbsd-386-cgo), func SetsockoptInt(int, int, int, int) error
+pkg syscall (netbsd-386-cgo), func SetsockoptLinger(int, int, int, *Linger) error
+pkg syscall (netbsd-386-cgo), func SetsockoptString(int, int, int, string) error
+pkg syscall (netbsd-386-cgo), func SetsockoptTimeval(int, int, int, *Timeval) error
+pkg syscall (netbsd-386-cgo), func Settimeofday(*Timeval) error
+pkg syscall (netbsd-386-cgo), func Setuid(int) error
+pkg syscall (netbsd-386-cgo), func Shutdown(int, int) error
+pkg syscall (netbsd-386-cgo), func SlicePtrFromStrings([]string) ([]*uint8, error)
+pkg syscall (netbsd-386-cgo), func Socket(int, int, int) (int, error)
+pkg syscall (netbsd-386-cgo), func Socketpair(int, int, int) ([2]int, error)
+pkg syscall (netbsd-386-cgo), func Stat(string, *Stat_t) error
+pkg syscall (netbsd-386-cgo), func StringSlicePtr([]string) []*uint8
+pkg syscall (netbsd-386-cgo), func Sync() error
+pkg syscall (netbsd-386-cgo), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (netbsd-386-cgo), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (netbsd-386-cgo), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (netbsd-386-cgo), func Sysctl(string) (string, error)
+pkg syscall (netbsd-386-cgo), func SysctlUint32(string) (uint32, error)
+pkg syscall (netbsd-386-cgo), func TimevalToNsec(Timeval) int64
+pkg syscall (netbsd-386-cgo), func Truncate(string, int64) error
+pkg syscall (netbsd-386-cgo), func Umask(int) int
+pkg syscall (netbsd-386-cgo), func UnixRights(...int) []uint8
+pkg syscall (netbsd-386-cgo), func Unmount(string, int) error
+pkg syscall (netbsd-386-cgo), func Wait4(int, *WaitStatus, int, *Rusage) (int, error)
+pkg syscall (netbsd-386-cgo), func Write(int, []uint8) (int, error)
+pkg syscall (netbsd-386-cgo), method (*Cmsghdr) SetLen(int)
+pkg syscall (netbsd-386-cgo), method (*Iovec) SetLen(int)
+pkg syscall (netbsd-386-cgo), method (*Msghdr) SetControllen(int)
+pkg syscall (netbsd-386-cgo), type BpfHdr struct
+pkg syscall (netbsd-386-cgo), type BpfHdr struct, Caplen uint32
+pkg syscall (netbsd-386-cgo), type BpfHdr struct, Datalen uint32
+pkg syscall (netbsd-386-cgo), type BpfHdr struct, Hdrlen uint16
+pkg syscall (netbsd-386-cgo), type BpfHdr struct, Pad_cgo_0 [2]uint8
+pkg syscall (netbsd-386-cgo), type BpfHdr struct, Tstamp BpfTimeval
+pkg syscall (netbsd-386-cgo), type BpfInsn struct
+pkg syscall (netbsd-386-cgo), type BpfInsn struct, Code uint16
+pkg syscall (netbsd-386-cgo), type BpfInsn struct, Jf uint8
+pkg syscall (netbsd-386-cgo), type BpfInsn struct, Jt uint8
+pkg syscall (netbsd-386-cgo), type BpfInsn struct, K uint32
+pkg syscall (netbsd-386-cgo), type BpfProgram struct
+pkg syscall (netbsd-386-cgo), type BpfProgram struct, Insns *BpfInsn
+pkg syscall (netbsd-386-cgo), type BpfProgram struct, Len uint32
+pkg syscall (netbsd-386-cgo), type BpfStat struct
+pkg syscall (netbsd-386-cgo), type BpfStat struct, Capt uint64
+pkg syscall (netbsd-386-cgo), type BpfStat struct, Drop uint64
+pkg syscall (netbsd-386-cgo), type BpfStat struct, Padding [13]uint64
+pkg syscall (netbsd-386-cgo), type BpfStat struct, Recv uint64
+pkg syscall (netbsd-386-cgo), type BpfTimeval struct
+pkg syscall (netbsd-386-cgo), type BpfTimeval struct, Sec int32
+pkg syscall (netbsd-386-cgo), type BpfTimeval struct, Usec int32
+pkg syscall (netbsd-386-cgo), type BpfVersion struct
+pkg syscall (netbsd-386-cgo), type BpfVersion struct, Major uint16
+pkg syscall (netbsd-386-cgo), type BpfVersion struct, Minor uint16
+pkg syscall (netbsd-386-cgo), type Cmsghdr struct
+pkg syscall (netbsd-386-cgo), type Cmsghdr struct, Len uint32
+pkg syscall (netbsd-386-cgo), type Cmsghdr struct, Level int32
+pkg syscall (netbsd-386-cgo), type Cmsghdr struct, Type int32
+pkg syscall (netbsd-386-cgo), type Credential struct
+pkg syscall (netbsd-386-cgo), type Credential struct, Gid uint32
+pkg syscall (netbsd-386-cgo), type Credential struct, Groups []uint32
+pkg syscall (netbsd-386-cgo), type Credential struct, Uid uint32
+pkg syscall (netbsd-386-cgo), type Dirent struct
+pkg syscall (netbsd-386-cgo), type Dirent struct, Fileno uint64
+pkg syscall (netbsd-386-cgo), type Dirent struct, Name [512]int8
+pkg syscall (netbsd-386-cgo), type Dirent struct, Namlen uint16
+pkg syscall (netbsd-386-cgo), type Dirent struct, Pad_cgo_0 [3]uint8
+pkg syscall (netbsd-386-cgo), type Dirent struct, Reclen uint16
+pkg syscall (netbsd-386-cgo), type Dirent struct, Type uint8
+pkg syscall (netbsd-386-cgo), type FdSet struct
+pkg syscall (netbsd-386-cgo), type FdSet struct, Bits [8]uint32
+pkg syscall (netbsd-386-cgo), type Flock_t struct
+pkg syscall (netbsd-386-cgo), type Flock_t struct, Len int64
+pkg syscall (netbsd-386-cgo), type Flock_t struct, Pid int32
+pkg syscall (netbsd-386-cgo), type Flock_t struct, Start int64
+pkg syscall (netbsd-386-cgo), type Flock_t struct, Type int16
+pkg syscall (netbsd-386-cgo), type Flock_t struct, Whence int16
+pkg syscall (netbsd-386-cgo), type Fsid struct
+pkg syscall (netbsd-386-cgo), type Fsid struct, X__fsid_val [2]int32
+pkg syscall (netbsd-386-cgo), type ICMPv6Filter struct
+pkg syscall (netbsd-386-cgo), type ICMPv6Filter struct, Filt [8]uint32
+pkg syscall (netbsd-386-cgo), type IPv6MTUInfo struct
+pkg syscall (netbsd-386-cgo), type IPv6MTUInfo struct, Addr RawSockaddrInet6
+pkg syscall (netbsd-386-cgo), type IPv6MTUInfo struct, Mtu uint32
+pkg syscall (netbsd-386-cgo), type IfAnnounceMsghdr struct
+pkg syscall (netbsd-386-cgo), type IfAnnounceMsghdr struct, Index uint16
+pkg syscall (netbsd-386-cgo), type IfAnnounceMsghdr struct, Msglen uint16
+pkg syscall (netbsd-386-cgo), type IfAnnounceMsghdr struct, Name [16]int8
+pkg syscall (netbsd-386-cgo), type IfAnnounceMsghdr struct, Type uint8
+pkg syscall (netbsd-386-cgo), type IfAnnounceMsghdr struct, Version uint8
+pkg syscall (netbsd-386-cgo), type IfAnnounceMsghdr struct, What uint16
+pkg syscall (netbsd-386-cgo), type IfData struct
+pkg syscall (netbsd-386-cgo), type IfData struct, Addrlen uint8
+pkg syscall (netbsd-386-cgo), type IfData struct, Baudrate uint64
+pkg syscall (netbsd-386-cgo), type IfData struct, Collisions uint64
+pkg syscall (netbsd-386-cgo), type IfData struct, Hdrlen uint8
+pkg syscall (netbsd-386-cgo), type IfData struct, Ibytes uint64
+pkg syscall (netbsd-386-cgo), type IfData struct, Ierrors uint64
+pkg syscall (netbsd-386-cgo), type IfData struct, Imcasts uint64
+pkg syscall (netbsd-386-cgo), type IfData struct, Ipackets uint64
+pkg syscall (netbsd-386-cgo), type IfData struct, Iqdrops uint64
+pkg syscall (netbsd-386-cgo), type IfData struct, Lastchange Timespec
+pkg syscall (netbsd-386-cgo), type IfData struct, Link_state int32
+pkg syscall (netbsd-386-cgo), type IfData struct, Metric uint64
+pkg syscall (netbsd-386-cgo), type IfData struct, Mtu uint64
+pkg syscall (netbsd-386-cgo), type IfData struct, Noproto uint64
+pkg syscall (netbsd-386-cgo), type IfData struct, Obytes uint64
+pkg syscall (netbsd-386-cgo), type IfData struct, Oerrors uint64
+pkg syscall (netbsd-386-cgo), type IfData struct, Omcasts uint64
+pkg syscall (netbsd-386-cgo), type IfData struct, Opackets uint64
+pkg syscall (netbsd-386-cgo), type IfData struct, Pad_cgo_0 [1]uint8
+pkg syscall (netbsd-386-cgo), type IfData struct, Type uint8
+pkg syscall (netbsd-386-cgo), type IfMsghdr struct
+pkg syscall (netbsd-386-cgo), type IfMsghdr struct, Addrs int32
+pkg syscall (netbsd-386-cgo), type IfMsghdr struct, Data IfData
+pkg syscall (netbsd-386-cgo), type IfMsghdr struct, Flags int32
+pkg syscall (netbsd-386-cgo), type IfMsghdr struct, Index uint16
+pkg syscall (netbsd-386-cgo), type IfMsghdr struct, Msglen uint16
+pkg syscall (netbsd-386-cgo), type IfMsghdr struct, Pad_cgo_0 [2]uint8
+pkg syscall (netbsd-386-cgo), type IfMsghdr struct, Pad_cgo_1 [4]uint8
+pkg syscall (netbsd-386-cgo), type IfMsghdr struct, Type uint8
+pkg syscall (netbsd-386-cgo), type IfMsghdr struct, Version uint8
+pkg syscall (netbsd-386-cgo), type IfaMsghdr struct
+pkg syscall (netbsd-386-cgo), type IfaMsghdr struct, Addrs int32
+pkg syscall (netbsd-386-cgo), type IfaMsghdr struct, Flags int32
+pkg syscall (netbsd-386-cgo), type IfaMsghdr struct, Index uint16
+pkg syscall (netbsd-386-cgo), type IfaMsghdr struct, Metric int32
+pkg syscall (netbsd-386-cgo), type IfaMsghdr struct, Msglen uint16
+pkg syscall (netbsd-386-cgo), type IfaMsghdr struct, Pad_cgo_0 [6]uint8
+pkg syscall (netbsd-386-cgo), type IfaMsghdr struct, Type uint8
+pkg syscall (netbsd-386-cgo), type IfaMsghdr struct, Version uint8
+pkg syscall (netbsd-386-cgo), type Inet6Pktinfo struct
+pkg syscall (netbsd-386-cgo), type Inet6Pktinfo struct, Addr [16]uint8
+pkg syscall (netbsd-386-cgo), type Inet6Pktinfo struct, Ifindex uint32
+pkg syscall (netbsd-386-cgo), type InterfaceAddrMessage struct
+pkg syscall (netbsd-386-cgo), type InterfaceAddrMessage struct, Data []uint8
+pkg syscall (netbsd-386-cgo), type InterfaceAddrMessage struct, Header IfaMsghdr
+pkg syscall (netbsd-386-cgo), type InterfaceAnnounceMessage struct
+pkg syscall (netbsd-386-cgo), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr
+pkg syscall (netbsd-386-cgo), type InterfaceMessage struct
+pkg syscall (netbsd-386-cgo), type InterfaceMessage struct, Data []uint8
+pkg syscall (netbsd-386-cgo), type InterfaceMessage struct, Header IfMsghdr
+pkg syscall (netbsd-386-cgo), type Iovec struct
+pkg syscall (netbsd-386-cgo), type Iovec struct, Base *uint8
+pkg syscall (netbsd-386-cgo), type Iovec struct, Len uint32
+pkg syscall (netbsd-386-cgo), type Kevent_t struct
+pkg syscall (netbsd-386-cgo), type Kevent_t struct, Data int64
+pkg syscall (netbsd-386-cgo), type Kevent_t struct, Fflags uint32
+pkg syscall (netbsd-386-cgo), type Kevent_t struct, Filter uint32
+pkg syscall (netbsd-386-cgo), type Kevent_t struct, Flags uint32
+pkg syscall (netbsd-386-cgo), type Kevent_t struct, Ident uint32
+pkg syscall (netbsd-386-cgo), type Kevent_t struct, Udata int32
+pkg syscall (netbsd-386-cgo), type Mclpool [0]uint8
+pkg syscall (netbsd-386-cgo), type Msghdr struct
+pkg syscall (netbsd-386-cgo), type Msghdr struct, Control *uint8
+pkg syscall (netbsd-386-cgo), type Msghdr struct, Controllen uint32
+pkg syscall (netbsd-386-cgo), type Msghdr struct, Flags int32
+pkg syscall (netbsd-386-cgo), type Msghdr struct, Iov *Iovec
+pkg syscall (netbsd-386-cgo), type Msghdr struct, Iovlen int32
+pkg syscall (netbsd-386-cgo), type Msghdr struct, Name *uint8
+pkg syscall (netbsd-386-cgo), type Msghdr struct, Namelen uint32
+pkg syscall (netbsd-386-cgo), type RawSockaddr struct, Data [14]int8
+pkg syscall (netbsd-386-cgo), type RawSockaddr struct, Family uint8
+pkg syscall (netbsd-386-cgo), type RawSockaddr struct, Len uint8
+pkg syscall (netbsd-386-cgo), type RawSockaddrAny struct, Pad [92]int8
+pkg syscall (netbsd-386-cgo), type RawSockaddrDatalink struct
+pkg syscall (netbsd-386-cgo), type RawSockaddrDatalink struct, Alen uint8
+pkg syscall (netbsd-386-cgo), type RawSockaddrDatalink struct, Data [12]int8
+pkg syscall (netbsd-386-cgo), type RawSockaddrDatalink struct, Family uint8
+pkg syscall (netbsd-386-cgo), type RawSockaddrDatalink struct, Index uint16
+pkg syscall (netbsd-386-cgo), type RawSockaddrDatalink struct, Len uint8
+pkg syscall (netbsd-386-cgo), type RawSockaddrDatalink struct, Nlen uint8
+pkg syscall (netbsd-386-cgo), type RawSockaddrDatalink struct, Slen uint8
+pkg syscall (netbsd-386-cgo), type RawSockaddrDatalink struct, Type uint8
+pkg syscall (netbsd-386-cgo), type RawSockaddrInet4 struct, Family uint8
+pkg syscall (netbsd-386-cgo), type RawSockaddrInet4 struct, Len uint8
+pkg syscall (netbsd-386-cgo), type RawSockaddrInet4 struct, Zero [8]int8
+pkg syscall (netbsd-386-cgo), type RawSockaddrInet6 struct, Family uint8
+pkg syscall (netbsd-386-cgo), type RawSockaddrInet6 struct, Len uint8
+pkg syscall (netbsd-386-cgo), type RawSockaddrUnix struct
+pkg syscall (netbsd-386-cgo), type RawSockaddrUnix struct, Family uint8
+pkg syscall (netbsd-386-cgo), type RawSockaddrUnix struct, Len uint8
+pkg syscall (netbsd-386-cgo), type RawSockaddrUnix struct, Path [104]int8
+pkg syscall (netbsd-386-cgo), type Rlimit struct
+pkg syscall (netbsd-386-cgo), type Rlimit struct, Cur uint64
+pkg syscall (netbsd-386-cgo), type Rlimit struct, Max uint64
+pkg syscall (netbsd-386-cgo), type RouteMessage struct
+pkg syscall (netbsd-386-cgo), type RouteMessage struct, Data []uint8
+pkg syscall (netbsd-386-cgo), type RouteMessage struct, Header RtMsghdr
+pkg syscall (netbsd-386-cgo), type RoutingMessage interface, unexported methods
+pkg syscall (netbsd-386-cgo), type RtMetrics struct
+pkg syscall (netbsd-386-cgo), type RtMetrics struct, Expire int64
+pkg syscall (netbsd-386-cgo), type RtMetrics struct, Hopcount uint64
+pkg syscall (netbsd-386-cgo), type RtMetrics struct, Locks uint64
+pkg syscall (netbsd-386-cgo), type RtMetrics struct, Mtu uint64
+pkg syscall (netbsd-386-cgo), type RtMetrics struct, Pksent int64
+pkg syscall (netbsd-386-cgo), type RtMetrics struct, Recvpipe uint64
+pkg syscall (netbsd-386-cgo), type RtMetrics struct, Rtt uint64
+pkg syscall (netbsd-386-cgo), type RtMetrics struct, Rttvar uint64
+pkg syscall (netbsd-386-cgo), type RtMetrics struct, Sendpipe uint64
+pkg syscall (netbsd-386-cgo), type RtMetrics struct, Ssthresh uint64
+pkg syscall (netbsd-386-cgo), type RtMsghdr struct
+pkg syscall (netbsd-386-cgo), type RtMsghdr struct, Addrs int32
+pkg syscall (netbsd-386-cgo), type RtMsghdr struct, Errno int32
+pkg syscall (netbsd-386-cgo), type RtMsghdr struct, Flags int32
+pkg syscall (netbsd-386-cgo), type RtMsghdr struct, Index uint16
+pkg syscall (netbsd-386-cgo), type RtMsghdr struct, Inits int32
+pkg syscall (netbsd-386-cgo), type RtMsghdr struct, Msglen uint16
+pkg syscall (netbsd-386-cgo), type RtMsghdr struct, Pad_cgo_0 [2]uint8
+pkg syscall (netbsd-386-cgo), type RtMsghdr struct, Pad_cgo_1 [4]uint8
+pkg syscall (netbsd-386-cgo), type RtMsghdr struct, Pid int32
+pkg syscall (netbsd-386-cgo), type RtMsghdr struct, Rmx RtMetrics
+pkg syscall (netbsd-386-cgo), type RtMsghdr struct, Seq int32
+pkg syscall (netbsd-386-cgo), type RtMsghdr struct, Type uint8
+pkg syscall (netbsd-386-cgo), type RtMsghdr struct, Use int32
+pkg syscall (netbsd-386-cgo), type RtMsghdr struct, Version uint8
+pkg syscall (netbsd-386-cgo), type Rusage struct, Idrss int32
+pkg syscall (netbsd-386-cgo), type Rusage struct, Inblock int32
+pkg syscall (netbsd-386-cgo), type Rusage struct, Isrss int32
+pkg syscall (netbsd-386-cgo), type Rusage struct, Ixrss int32
+pkg syscall (netbsd-386-cgo), type Rusage struct, Majflt int32
+pkg syscall (netbsd-386-cgo), type Rusage struct, Maxrss int32
+pkg syscall (netbsd-386-cgo), type Rusage struct, Minflt int32
+pkg syscall (netbsd-386-cgo), type Rusage struct, Msgrcv int32
+pkg syscall (netbsd-386-cgo), type Rusage struct, Msgsnd int32
+pkg syscall (netbsd-386-cgo), type Rusage struct, Nivcsw int32
+pkg syscall (netbsd-386-cgo), type Rusage struct, Nsignals int32
+pkg syscall (netbsd-386-cgo), type Rusage struct, Nswap int32
+pkg syscall (netbsd-386-cgo), type Rusage struct, Nvcsw int32
+pkg syscall (netbsd-386-cgo), type Rusage struct, Oublock int32
+pkg syscall (netbsd-386-cgo), type Rusage struct, Stime Timeval
+pkg syscall (netbsd-386-cgo), type Rusage struct, Utime Timeval
+pkg syscall (netbsd-386-cgo), type SockaddrDatalink struct
+pkg syscall (netbsd-386-cgo), type SockaddrDatalink struct, Alen uint8
+pkg syscall (netbsd-386-cgo), type SockaddrDatalink struct, Data [12]int8
+pkg syscall (netbsd-386-cgo), type SockaddrDatalink struct, Family uint8
+pkg syscall (netbsd-386-cgo), type SockaddrDatalink struct, Index uint16
+pkg syscall (netbsd-386-cgo), type SockaddrDatalink struct, Len uint8
+pkg syscall (netbsd-386-cgo), type SockaddrDatalink struct, Nlen uint8
+pkg syscall (netbsd-386-cgo), type SockaddrDatalink struct, Slen uint8
+pkg syscall (netbsd-386-cgo), type SockaddrDatalink struct, Type uint8
+pkg syscall (netbsd-386-cgo), type SocketControlMessage struct
+pkg syscall (netbsd-386-cgo), type SocketControlMessage struct, Data []uint8
+pkg syscall (netbsd-386-cgo), type SocketControlMessage struct, Header Cmsghdr
+pkg syscall (netbsd-386-cgo), type Stat_t struct
+pkg syscall (netbsd-386-cgo), type Stat_t struct, Atimespec Timespec
+pkg syscall (netbsd-386-cgo), type Stat_t struct, Birthtimespec Timespec
+pkg syscall (netbsd-386-cgo), type Stat_t struct, Blksize uint32
+pkg syscall (netbsd-386-cgo), type Stat_t struct, Blocks int64
+pkg syscall (netbsd-386-cgo), type Stat_t struct, Ctimespec Timespec
+pkg syscall (netbsd-386-cgo), type Stat_t struct, Dev uint64
+pkg syscall (netbsd-386-cgo), type Stat_t struct, Flags uint32
+pkg syscall (netbsd-386-cgo), type Stat_t struct, Gen uint32
+pkg syscall (netbsd-386-cgo), type Stat_t struct, Gid uint32
+pkg syscall (netbsd-386-cgo), type Stat_t struct, Ino uint64
+pkg syscall (netbsd-386-cgo), type Stat_t struct, Mode uint32
+pkg syscall (netbsd-386-cgo), type Stat_t struct, Mtimespec Timespec
+pkg syscall (netbsd-386-cgo), type Stat_t struct, Nlink uint32
+pkg syscall (netbsd-386-cgo), type Stat_t struct, Rdev uint64
+pkg syscall (netbsd-386-cgo), type Stat_t struct, Size int64
+pkg syscall (netbsd-386-cgo), type Stat_t struct, Spare [2]uint32
+pkg syscall (netbsd-386-cgo), type Stat_t struct, Uid uint32
+pkg syscall (netbsd-386-cgo), type Statfs_t [0]uint8
+pkg syscall (netbsd-386-cgo), type SysProcAttr struct, Chroot string
+pkg syscall (netbsd-386-cgo), type SysProcAttr struct, Credential *Credential
+pkg syscall (netbsd-386-cgo), type SysProcAttr struct, Noctty bool
+pkg syscall (netbsd-386-cgo), type SysProcAttr struct, Ptrace bool
+pkg syscall (netbsd-386-cgo), type SysProcAttr struct, Setctty bool
+pkg syscall (netbsd-386-cgo), type SysProcAttr struct, Setpgid bool
+pkg syscall (netbsd-386-cgo), type SysProcAttr struct, Setsid bool
+pkg syscall (netbsd-386-cgo), type Sysctlnode struct
+pkg syscall (netbsd-386-cgo), type Sysctlnode struct, Flags uint32
+pkg syscall (netbsd-386-cgo), type Sysctlnode struct, Name [32]int8
+pkg syscall (netbsd-386-cgo), type Sysctlnode struct, Num int32
+pkg syscall (netbsd-386-cgo), type Sysctlnode struct, Un [16]uint8
+pkg syscall (netbsd-386-cgo), type Sysctlnode struct, Ver uint32
+pkg syscall (netbsd-386-cgo), type Sysctlnode struct, X__rsvd uint32
+pkg syscall (netbsd-386-cgo), type Sysctlnode struct, X_sysctl_desc [8]uint8
+pkg syscall (netbsd-386-cgo), type Sysctlnode struct, X_sysctl_func [8]uint8
+pkg syscall (netbsd-386-cgo), type Sysctlnode struct, X_sysctl_parent [8]uint8
+pkg syscall (netbsd-386-cgo), type Sysctlnode struct, X_sysctl_size [8]uint8
+pkg syscall (netbsd-386-cgo), type Timespec struct, Nsec int32
+pkg syscall (netbsd-386-cgo), type Timespec struct, Sec int64
+pkg syscall (netbsd-386-cgo), type Timeval struct, Sec int64
+pkg syscall (netbsd-386-cgo), type Timeval struct, Usec int32
+pkg syscall (netbsd-386-cgo), type WaitStatus uint32
+pkg syscall (netbsd-386-cgo), var Stderr int
+pkg syscall (netbsd-386-cgo), var Stdin int
+pkg syscall (netbsd-386-cgo), var Stdout int
+pkg syscall (netbsd-amd64), const AF_APPLETALK ideal-int
+pkg syscall (netbsd-amd64), const AF_ARP ideal-int
+pkg syscall (netbsd-amd64), const AF_BLUETOOTH ideal-int
+pkg syscall (netbsd-amd64), const AF_CCITT ideal-int
+pkg syscall (netbsd-amd64), const AF_CHAOS ideal-int
+pkg syscall (netbsd-amd64), const AF_CNT ideal-int
+pkg syscall (netbsd-amd64), const AF_COIP ideal-int
+pkg syscall (netbsd-amd64), const AF_DATAKIT ideal-int
+pkg syscall (netbsd-amd64), const AF_DECnet ideal-int
+pkg syscall (netbsd-amd64), const AF_DLI ideal-int
+pkg syscall (netbsd-amd64), const AF_E164 ideal-int
+pkg syscall (netbsd-amd64), const AF_ECMA ideal-int
+pkg syscall (netbsd-amd64), const AF_HYLINK ideal-int
+pkg syscall (netbsd-amd64), const AF_IEEE80211 ideal-int
+pkg syscall (netbsd-amd64), const AF_IMPLINK ideal-int
+pkg syscall (netbsd-amd64), const AF_IPX ideal-int
+pkg syscall (netbsd-amd64), const AF_ISDN ideal-int
+pkg syscall (netbsd-amd64), const AF_ISO ideal-int
+pkg syscall (netbsd-amd64), const AF_LAT ideal-int
+pkg syscall (netbsd-amd64), const AF_LINK ideal-int
+pkg syscall (netbsd-amd64), const AF_LOCAL ideal-int
+pkg syscall (netbsd-amd64), const AF_MAX ideal-int
+pkg syscall (netbsd-amd64), const AF_MPLS ideal-int
+pkg syscall (netbsd-amd64), const AF_NATM ideal-int
+pkg syscall (netbsd-amd64), const AF_NS ideal-int
+pkg syscall (netbsd-amd64), const AF_OROUTE ideal-int
+pkg syscall (netbsd-amd64), const AF_OSI ideal-int
+pkg syscall (netbsd-amd64), const AF_PUP ideal-int
+pkg syscall (netbsd-amd64), const AF_ROUTE ideal-int
+pkg syscall (netbsd-amd64), const AF_SNA ideal-int
+pkg syscall (netbsd-amd64), const ARPHRD_ARCNET ideal-int
+pkg syscall (netbsd-amd64), const ARPHRD_ETHER ideal-int
+pkg syscall (netbsd-amd64), const ARPHRD_FRELAY ideal-int
+pkg syscall (netbsd-amd64), const ARPHRD_IEEE1394 ideal-int
+pkg syscall (netbsd-amd64), const ARPHRD_IEEE802 ideal-int
+pkg syscall (netbsd-amd64), const ARPHRD_STRIP ideal-int
+pkg syscall (netbsd-amd64), const B0 ideal-int
+pkg syscall (netbsd-amd64), const B110 ideal-int
+pkg syscall (netbsd-amd64), const B115200 ideal-int
+pkg syscall (netbsd-amd64), const B1200 ideal-int
+pkg syscall (netbsd-amd64), const B134 ideal-int
+pkg syscall (netbsd-amd64), const B14400 ideal-int
+pkg syscall (netbsd-amd64), const B150 ideal-int
+pkg syscall (netbsd-amd64), const B1800 ideal-int
+pkg syscall (netbsd-amd64), const B19200 ideal-int
+pkg syscall (netbsd-amd64), const B200 ideal-int
+pkg syscall (netbsd-amd64), const B230400 ideal-int
+pkg syscall (netbsd-amd64), const B2400 ideal-int
+pkg syscall (netbsd-amd64), const B28800 ideal-int
+pkg syscall (netbsd-amd64), const B300 ideal-int
+pkg syscall (netbsd-amd64), const B38400 ideal-int
+pkg syscall (netbsd-amd64), const B460800 ideal-int
+pkg syscall (netbsd-amd64), const B4800 ideal-int
+pkg syscall (netbsd-amd64), const B50 ideal-int
+pkg syscall (netbsd-amd64), const B57600 ideal-int
+pkg syscall (netbsd-amd64), const B600 ideal-int
+pkg syscall (netbsd-amd64), const B7200 ideal-int
+pkg syscall (netbsd-amd64), const B75 ideal-int
+pkg syscall (netbsd-amd64), const B76800 ideal-int
+pkg syscall (netbsd-amd64), const B921600 ideal-int
+pkg syscall (netbsd-amd64), const B9600 ideal-int
+pkg syscall (netbsd-amd64), const BIOCFEEDBACK ideal-int
+pkg syscall (netbsd-amd64), const BIOCFLUSH ideal-int
+pkg syscall (netbsd-amd64), const BIOCGBLEN ideal-int
+pkg syscall (netbsd-amd64), const BIOCGDLT ideal-int
+pkg syscall (netbsd-amd64), const BIOCGDLTLIST ideal-int
+pkg syscall (netbsd-amd64), const BIOCGETIF ideal-int
+pkg syscall (netbsd-amd64), const BIOCGFEEDBACK ideal-int
+pkg syscall (netbsd-amd64), const BIOCGHDRCMPLT ideal-int
+pkg syscall (netbsd-amd64), const BIOCGRTIMEOUT ideal-int
+pkg syscall (netbsd-amd64), const BIOCGSEESENT ideal-int
+pkg syscall (netbsd-amd64), const BIOCGSTATS ideal-int
+pkg syscall (netbsd-amd64), const BIOCGSTATSOLD ideal-int
+pkg syscall (netbsd-amd64), const BIOCIMMEDIATE ideal-int
+pkg syscall (netbsd-amd64), const BIOCPROMISC ideal-int
+pkg syscall (netbsd-amd64), const BIOCSBLEN ideal-int
+pkg syscall (netbsd-amd64), const BIOCSDLT ideal-int
+pkg syscall (netbsd-amd64), const BIOCSETF ideal-int
+pkg syscall (netbsd-amd64), const BIOCSETIF ideal-int
+pkg syscall (netbsd-amd64), const BIOCSFEEDBACK ideal-int
+pkg syscall (netbsd-amd64), const BIOCSHDRCMPLT ideal-int
+pkg syscall (netbsd-amd64), const BIOCSRTIMEOUT ideal-int
+pkg syscall (netbsd-amd64), const BIOCSSEESENT ideal-int
+pkg syscall (netbsd-amd64), const BIOCSTCPF ideal-int
+pkg syscall (netbsd-amd64), const BIOCSUDPF ideal-int
+pkg syscall (netbsd-amd64), const BIOCVERSION ideal-int
+pkg syscall (netbsd-amd64), const BPF_A ideal-int
+pkg syscall (netbsd-amd64), const BPF_ABS ideal-int
+pkg syscall (netbsd-amd64), const BPF_ADD ideal-int
+pkg syscall (netbsd-amd64), const BPF_ALIGNMENT ideal-int
+pkg syscall (netbsd-amd64), const BPF_ALIGNMENT32 ideal-int
+pkg syscall (netbsd-amd64), const BPF_ALU ideal-int
+pkg syscall (netbsd-amd64), const BPF_AND ideal-int
+pkg syscall (netbsd-amd64), const BPF_B ideal-int
+pkg syscall (netbsd-amd64), const BPF_DFLTBUFSIZE ideal-int
+pkg syscall (netbsd-amd64), const BPF_DIV ideal-int
+pkg syscall (netbsd-amd64), const BPF_H ideal-int
+pkg syscall (netbsd-amd64), const BPF_IMM ideal-int
+pkg syscall (netbsd-amd64), const BPF_IND ideal-int
+pkg syscall (netbsd-amd64), const BPF_JA ideal-int
+pkg syscall (netbsd-amd64), const BPF_JEQ ideal-int
+pkg syscall (netbsd-amd64), const BPF_JGE ideal-int
+pkg syscall (netbsd-amd64), const BPF_JGT ideal-int
+pkg syscall (netbsd-amd64), const BPF_JMP ideal-int
+pkg syscall (netbsd-amd64), const BPF_JSET ideal-int
+pkg syscall (netbsd-amd64), const BPF_K ideal-int
+pkg syscall (netbsd-amd64), const BPF_LD ideal-int
+pkg syscall (netbsd-amd64), const BPF_LDX ideal-int
+pkg syscall (netbsd-amd64), const BPF_LEN ideal-int
+pkg syscall (netbsd-amd64), const BPF_LSH ideal-int
+pkg syscall (netbsd-amd64), const BPF_MAJOR_VERSION ideal-int
+pkg syscall (netbsd-amd64), const BPF_MAXBUFSIZE ideal-int
+pkg syscall (netbsd-amd64), const BPF_MAXINSNS ideal-int
+pkg syscall (netbsd-amd64), const BPF_MEM ideal-int
+pkg syscall (netbsd-amd64), const BPF_MEMWORDS ideal-int
+pkg syscall (netbsd-amd64), const BPF_MINBUFSIZE ideal-int
+pkg syscall (netbsd-amd64), const BPF_MINOR_VERSION ideal-int
+pkg syscall (netbsd-amd64), const BPF_MISC ideal-int
+pkg syscall (netbsd-amd64), const BPF_MSH ideal-int
+pkg syscall (netbsd-amd64), const BPF_MUL ideal-int
+pkg syscall (netbsd-amd64), const BPF_NEG ideal-int
+pkg syscall (netbsd-amd64), const BPF_OR ideal-int
+pkg syscall (netbsd-amd64), const BPF_RELEASE ideal-int
+pkg syscall (netbsd-amd64), const BPF_RET ideal-int
+pkg syscall (netbsd-amd64), const BPF_RSH ideal-int
+pkg syscall (netbsd-amd64), const BPF_ST ideal-int
+pkg syscall (netbsd-amd64), const BPF_STX ideal-int
+pkg syscall (netbsd-amd64), const BPF_SUB ideal-int
+pkg syscall (netbsd-amd64), const BPF_TAX ideal-int
+pkg syscall (netbsd-amd64), const BPF_TXA ideal-int
+pkg syscall (netbsd-amd64), const BPF_W ideal-int
+pkg syscall (netbsd-amd64), const BPF_X ideal-int
+pkg syscall (netbsd-amd64), const BRKINT ideal-int
+pkg syscall (netbsd-amd64), const CFLUSH ideal-int
+pkg syscall (netbsd-amd64), const CLOCAL ideal-int
+pkg syscall (netbsd-amd64), const CREAD ideal-int
+pkg syscall (netbsd-amd64), const CS5 ideal-int
+pkg syscall (netbsd-amd64), const CS6 ideal-int
+pkg syscall (netbsd-amd64), const CS7 ideal-int
+pkg syscall (netbsd-amd64), const CS8 ideal-int
+pkg syscall (netbsd-amd64), const CSIZE ideal-int
+pkg syscall (netbsd-amd64), const CSTART ideal-int
+pkg syscall (netbsd-amd64), const CSTATUS ideal-int
+pkg syscall (netbsd-amd64), const CSTOP ideal-int
+pkg syscall (netbsd-amd64), const CSTOPB ideal-int
+pkg syscall (netbsd-amd64), const CSUSP ideal-int
+pkg syscall (netbsd-amd64), const CTL_MAXNAME ideal-int
+pkg syscall (netbsd-amd64), const CTL_NET ideal-int
+pkg syscall (netbsd-amd64), const CTL_QUERY ideal-int
+pkg syscall (netbsd-amd64), const DIOCBSFLUSH ideal-int
+pkg syscall (netbsd-amd64), const DLT_A429 ideal-int
+pkg syscall (netbsd-amd64), const DLT_A653_ICM ideal-int
+pkg syscall (netbsd-amd64), const DLT_AIRONET_HEADER ideal-int
+pkg syscall (netbsd-amd64), const DLT_AOS ideal-int
+pkg syscall (netbsd-amd64), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int
+pkg syscall (netbsd-amd64), const DLT_ARCNET ideal-int
+pkg syscall (netbsd-amd64), const DLT_ARCNET_LINUX ideal-int
+pkg syscall (netbsd-amd64), const DLT_ATM_CLIP ideal-int
+pkg syscall (netbsd-amd64), const DLT_ATM_RFC1483 ideal-int
+pkg syscall (netbsd-amd64), const DLT_AURORA ideal-int
+pkg syscall (netbsd-amd64), const DLT_AX25 ideal-int
+pkg syscall (netbsd-amd64), const DLT_AX25_KISS ideal-int
+pkg syscall (netbsd-amd64), const DLT_BACNET_MS_TP ideal-int
+pkg syscall (netbsd-amd64), const DLT_BLUETOOTH_HCI_H4 ideal-int
+pkg syscall (netbsd-amd64), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR ideal-int
+pkg syscall (netbsd-amd64), const DLT_CAN20B ideal-int
+pkg syscall (netbsd-amd64), const DLT_CAN_SOCKETCAN ideal-int
+pkg syscall (netbsd-amd64), const DLT_CHAOS ideal-int
+pkg syscall (netbsd-amd64), const DLT_CISCO_IOS ideal-int
+pkg syscall (netbsd-amd64), const DLT_C_HDLC ideal-int
+pkg syscall (netbsd-amd64), const DLT_C_HDLC_WITH_DIR ideal-int
+pkg syscall (netbsd-amd64), const DLT_DECT ideal-int
+pkg syscall (netbsd-amd64), const DLT_DOCSIS ideal-int
+pkg syscall (netbsd-amd64), const DLT_ECONET ideal-int
+pkg syscall (netbsd-amd64), const DLT_EN10MB ideal-int
+pkg syscall (netbsd-amd64), const DLT_EN3MB ideal-int
+pkg syscall (netbsd-amd64), const DLT_ENC ideal-int
+pkg syscall (netbsd-amd64), const DLT_ERF ideal-int
+pkg syscall (netbsd-amd64), const DLT_ERF_ETH ideal-int
+pkg syscall (netbsd-amd64), const DLT_ERF_POS ideal-int
+pkg syscall (netbsd-amd64), const DLT_FC_2 ideal-int
+pkg syscall (netbsd-amd64), const DLT_FC_2_WITH_FRAME_DELIMS ideal-int
+pkg syscall (netbsd-amd64), const DLT_FDDI ideal-int
+pkg syscall (netbsd-amd64), const DLT_FLEXRAY ideal-int
+pkg syscall (netbsd-amd64), const DLT_FRELAY ideal-int
+pkg syscall (netbsd-amd64), const DLT_FRELAY_WITH_DIR ideal-int
+pkg syscall (netbsd-amd64), const DLT_GCOM_SERIAL ideal-int
+pkg syscall (netbsd-amd64), const DLT_GCOM_T1E1 ideal-int
+pkg syscall (netbsd-amd64), const DLT_GPF_F ideal-int
+pkg syscall (netbsd-amd64), const DLT_GPF_T ideal-int
+pkg syscall (netbsd-amd64), const DLT_GPRS_LLC ideal-int
+pkg syscall (netbsd-amd64), const DLT_GSMTAP_ABIS ideal-int
+pkg syscall (netbsd-amd64), const DLT_GSMTAP_UM ideal-int
+pkg syscall (netbsd-amd64), const DLT_HDLC ideal-int
+pkg syscall (netbsd-amd64), const DLT_HHDLC ideal-int
+pkg syscall (netbsd-amd64), const DLT_HIPPI ideal-int
+pkg syscall (netbsd-amd64), const DLT_IBM_SN ideal-int
+pkg syscall (netbsd-amd64), const DLT_IBM_SP ideal-int
+pkg syscall (netbsd-amd64), const DLT_IEEE802 ideal-int
+pkg syscall (netbsd-amd64), const DLT_IEEE802_11 ideal-int
+pkg syscall (netbsd-amd64), const DLT_IEEE802_11_RADIO ideal-int
+pkg syscall (netbsd-amd64), const DLT_IEEE802_11_RADIO_AVS ideal-int
+pkg syscall (netbsd-amd64), const DLT_IEEE802_15_4 ideal-int
+pkg syscall (netbsd-amd64), const DLT_IEEE802_15_4_LINUX ideal-int
+pkg syscall (netbsd-amd64), const DLT_IEEE802_15_4_NONASK_PHY ideal-int
+pkg syscall (netbsd-amd64), const DLT_IEEE802_16_MAC_CPS ideal-int
+pkg syscall (netbsd-amd64), const DLT_IEEE802_16_MAC_CPS_RADIO ideal-int
+pkg syscall (netbsd-amd64), const DLT_IPMB ideal-int
+pkg syscall (netbsd-amd64), const DLT_IPMB_LINUX ideal-int
+pkg syscall (netbsd-amd64), const DLT_IPNET ideal-int
+pkg syscall (netbsd-amd64), const DLT_IPV4 ideal-int
+pkg syscall (netbsd-amd64), const DLT_IPV6 ideal-int
+pkg syscall (netbsd-amd64), const DLT_IP_OVER_FC ideal-int
+pkg syscall (netbsd-amd64), const DLT_JUNIPER_ATM1 ideal-int
+pkg syscall (netbsd-amd64), const DLT_JUNIPER_ATM2 ideal-int
+pkg syscall (netbsd-amd64), const DLT_JUNIPER_CHDLC ideal-int
+pkg syscall (netbsd-amd64), const DLT_JUNIPER_ES ideal-int
+pkg syscall (netbsd-amd64), const DLT_JUNIPER_ETHER ideal-int
+pkg syscall (netbsd-amd64), const DLT_JUNIPER_FRELAY ideal-int
+pkg syscall (netbsd-amd64), const DLT_JUNIPER_GGSN ideal-int
+pkg syscall (netbsd-amd64), const DLT_JUNIPER_ISM ideal-int
+pkg syscall (netbsd-amd64), const DLT_JUNIPER_MFR ideal-int
+pkg syscall (netbsd-amd64), const DLT_JUNIPER_MLFR ideal-int
+pkg syscall (netbsd-amd64), const DLT_JUNIPER_MLPPP ideal-int
+pkg syscall (netbsd-amd64), const DLT_JUNIPER_MONITOR ideal-int
+pkg syscall (netbsd-amd64), const DLT_JUNIPER_PIC_PEER ideal-int
+pkg syscall (netbsd-amd64), const DLT_JUNIPER_PPP ideal-int
+pkg syscall (netbsd-amd64), const DLT_JUNIPER_PPPOE ideal-int
+pkg syscall (netbsd-amd64), const DLT_JUNIPER_PPPOE_ATM ideal-int
+pkg syscall (netbsd-amd64), const DLT_JUNIPER_SERVICES ideal-int
+pkg syscall (netbsd-amd64), const DLT_JUNIPER_ST ideal-int
+pkg syscall (netbsd-amd64), const DLT_JUNIPER_VP ideal-int
+pkg syscall (netbsd-amd64), const DLT_LAPB_WITH_DIR ideal-int
+pkg syscall (netbsd-amd64), const DLT_LAPD ideal-int
+pkg syscall (netbsd-amd64), const DLT_LIN ideal-int
+pkg syscall (netbsd-amd64), const DLT_LINUX_EVDEV ideal-int
+pkg syscall (netbsd-amd64), const DLT_LINUX_IRDA ideal-int
+pkg syscall (netbsd-amd64), const DLT_LINUX_LAPD ideal-int
+pkg syscall (netbsd-amd64), const DLT_LINUX_SLL ideal-int
+pkg syscall (netbsd-amd64), const DLT_LOOP ideal-int
+pkg syscall (netbsd-amd64), const DLT_LTALK ideal-int
+pkg syscall (netbsd-amd64), const DLT_MFR ideal-int
+pkg syscall (netbsd-amd64), const DLT_MOST ideal-int
+pkg syscall (netbsd-amd64), const DLT_MPLS ideal-int
+pkg syscall (netbsd-amd64), const DLT_MTP2 ideal-int
+pkg syscall (netbsd-amd64), const DLT_MTP2_WITH_PHDR ideal-int
+pkg syscall (netbsd-amd64), const DLT_MTP3 ideal-int
+pkg syscall (netbsd-amd64), const DLT_NULL ideal-int
+pkg syscall (netbsd-amd64), const DLT_PCI_EXP ideal-int
+pkg syscall (netbsd-amd64), const DLT_PFLOG ideal-int
+pkg syscall (netbsd-amd64), const DLT_PFSYNC ideal-int
+pkg syscall (netbsd-amd64), const DLT_PPI ideal-int
+pkg syscall (netbsd-amd64), const DLT_PPP ideal-int
+pkg syscall (netbsd-amd64), const DLT_PPP_BSDOS ideal-int
+pkg syscall (netbsd-amd64), const DLT_PPP_ETHER ideal-int
+pkg syscall (netbsd-amd64), const DLT_PPP_PPPD ideal-int
+pkg syscall (netbsd-amd64), const DLT_PPP_SERIAL ideal-int
+pkg syscall (netbsd-amd64), const DLT_PPP_WITH_DIR ideal-int
+pkg syscall (netbsd-amd64), const DLT_PRISM_HEADER ideal-int
+pkg syscall (netbsd-amd64), const DLT_PRONET ideal-int
+pkg syscall (netbsd-amd64), const DLT_RAIF1 ideal-int
+pkg syscall (netbsd-amd64), const DLT_RAW ideal-int
+pkg syscall (netbsd-amd64), const DLT_RAWAF_MASK ideal-int
+pkg syscall (netbsd-amd64), const DLT_RIO ideal-int
+pkg syscall (netbsd-amd64), const DLT_SCCP ideal-int
+pkg syscall (netbsd-amd64), const DLT_SITA ideal-int
+pkg syscall (netbsd-amd64), const DLT_SLIP ideal-int
+pkg syscall (netbsd-amd64), const DLT_SLIP_BSDOS ideal-int
+pkg syscall (netbsd-amd64), const DLT_SUNATM ideal-int
+pkg syscall (netbsd-amd64), const DLT_SYMANTEC_FIREWALL ideal-int
+pkg syscall (netbsd-amd64), const DLT_TZSP ideal-int
+pkg syscall (netbsd-amd64), const DLT_USB ideal-int
+pkg syscall (netbsd-amd64), const DLT_USB_LINUX ideal-int
+pkg syscall (netbsd-amd64), const DLT_USB_LINUX_MMAPPED ideal-int
+pkg syscall (netbsd-amd64), const DLT_WIHART ideal-int
+pkg syscall (netbsd-amd64), const DLT_X2E_SERIAL ideal-int
+pkg syscall (netbsd-amd64), const DLT_X2E_XORAYA ideal-int
+pkg syscall (netbsd-amd64), const DT_BLK ideal-int
+pkg syscall (netbsd-amd64), const DT_CHR ideal-int
+pkg syscall (netbsd-amd64), const DT_DIR ideal-int
+pkg syscall (netbsd-amd64), const DT_FIFO ideal-int
+pkg syscall (netbsd-amd64), const DT_LNK ideal-int
+pkg syscall (netbsd-amd64), const DT_REG ideal-int
+pkg syscall (netbsd-amd64), const DT_SOCK ideal-int
+pkg syscall (netbsd-amd64), const DT_UNKNOWN ideal-int
+pkg syscall (netbsd-amd64), const DT_WHT ideal-int
+pkg syscall (netbsd-amd64), const EAUTH Errno
+pkg syscall (netbsd-amd64), const EBADMSG Errno
+pkg syscall (netbsd-amd64), const EBADRPC Errno
+pkg syscall (netbsd-amd64), const ECHO ideal-int
+pkg syscall (netbsd-amd64), const ECHOCTL ideal-int
+pkg syscall (netbsd-amd64), const ECHOE ideal-int
+pkg syscall (netbsd-amd64), const ECHOK ideal-int
+pkg syscall (netbsd-amd64), const ECHOKE ideal-int
+pkg syscall (netbsd-amd64), const ECHONL ideal-int
+pkg syscall (netbsd-amd64), const ECHOPRT ideal-int
+pkg syscall (netbsd-amd64), const EFTYPE Errno
+pkg syscall (netbsd-amd64), const ELAST Errno
+pkg syscall (netbsd-amd64), const EMULTIHOP Errno
+pkg syscall (netbsd-amd64), const EMUL_LINUX ideal-int
+pkg syscall (netbsd-amd64), const EMUL_LINUX32 ideal-int
+pkg syscall (netbsd-amd64), const EMUL_MAXID ideal-int
+pkg syscall (netbsd-amd64), const ENEEDAUTH Errno
+pkg syscall (netbsd-amd64), const ENOATTR Errno
+pkg syscall (netbsd-amd64), const ENODATA Errno
+pkg syscall (netbsd-amd64), const ENOLINK Errno
+pkg syscall (netbsd-amd64), const ENOSR Errno
+pkg syscall (netbsd-amd64), const ENOSTR Errno
+pkg syscall (netbsd-amd64), const EPROCLIM Errno
+pkg syscall (netbsd-amd64), const EPROCUNAVAIL Errno
+pkg syscall (netbsd-amd64), const EPROGMISMATCH Errno
+pkg syscall (netbsd-amd64), const EPROGUNAVAIL Errno
+pkg syscall (netbsd-amd64), const EPROTO Errno
+pkg syscall (netbsd-amd64), const ERPCMISMATCH Errno
+pkg syscall (netbsd-amd64), const ETHERCAP_JUMBO_MTU ideal-int
+pkg syscall (netbsd-amd64), const ETHERCAP_VLAN_HWTAGGING ideal-int
+pkg syscall (netbsd-amd64), const ETHERCAP_VLAN_MTU ideal-int
+pkg syscall (netbsd-amd64), const ETHERMIN ideal-int
+pkg syscall (netbsd-amd64), const ETHERMTU ideal-int
+pkg syscall (netbsd-amd64), const ETHERMTU_JUMBO ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_8023 ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_AARP ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_ACCTON ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_AEONIC ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_ALPHA ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_AMBER ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_AMOEBA ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_APOLLO ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_APOLLODOMAIN ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_APPLETALK ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_APPLITEK ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_ARGONAUT ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_ARP ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_AT ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_ATALK ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_ATOMIC ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_ATT ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_ATTSTANFORD ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_AUTOPHON ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_AXIS ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_BCLOOP ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_BOFL ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_CABLETRON ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_CHAOS ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_COMDESIGN ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_COMPUGRAPHIC ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_COUNTERPOINT ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_CRONUS ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_CRONUSVLN ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_DCA ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_DDE ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_DEBNI ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_DECAM ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_DECCUST ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_DECDIAG ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_DECDNS ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_DECDTS ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_DECEXPER ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_DECLAST ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_DECLTM ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_DECMUMPS ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_DECNETBIOS ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_DELTACON ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_DIDDLE ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_DLOG1 ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_DLOG2 ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_DN ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_DOGFIGHT ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_DSMD ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_ECMA ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_ENCRYPT ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_ES ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_EXCELAN ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_EXPERDATA ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_FLIP ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_FLOWCONTROL ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_FRARP ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_GENDYN ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_HAYES ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_HIPPI_FP ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_HITACHI ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_HP ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_IEEEPUP ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_IEEEPUPAT ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_IMLBL ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_IMLBLDIAG ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_IP ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_IPAS ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_IPV6 ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_IPX ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_IPXNEW ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_KALPANA ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_LANBRIDGE ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_LANPROBE ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_LAT ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_LBACK ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_LITTLE ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_LOGICRAFT ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_LOOPBACK ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_MATRA ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_MAX ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_MERIT ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_MICP ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_MOPDL ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_MOPRC ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_MOTOROLA ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_MPLS ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_MPLS_MCAST ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_MUMPS ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_NBPCC ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_NBPCLAIM ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_NBPCLREQ ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_NBPCLRSP ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_NBPCREQ ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_NBPCRSP ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_NBPDG ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_NBPDGB ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_NBPDLTE ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_NBPRAR ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_NBPRAS ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_NBPRST ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_NBPSCD ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_NBPVCD ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_NBS ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_NCD ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_NESTAR ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_NETBEUI ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_NOVELL ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_NS ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_NSAT ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_NSCOMPAT ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_NTRAILER ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_OS9 ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_OS9NET ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_PACER ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_PAE ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_PCS ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_PLANNING ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_PPP ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_PPPOE ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_PPPOEDISC ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_PRIMENTS ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_PUP ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_PUPAT ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_RACAL ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_RATIONAL ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_RAWFR ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_RCL ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_RDP ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_RETIX ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_REVARP ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_SCA ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_SECTRA ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_SECUREDATA ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_SGITW ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_SG_BOUNCE ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_SG_DIAG ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_SG_NETGAMES ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_SG_RESV ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_SIMNET ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_SLOWPROTOCOLS ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_SNA ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_SNMP ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_SONIX ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_SPIDER ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_SPRITE ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_STP ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_TALARIS ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_TALARISMC ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_TCPCOMP ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_TCPSM ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_TEC ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_TIGAN ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_TRAIL ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_TRANSETHER ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_TYMSHARE ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_UBBST ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_UBDEBUG ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_UBDIAGLOOP ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_UBDL ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_UBNIU ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_UBNMC ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_VALID ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_VARIAN ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_VAXELN ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_VEECO ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_VEXP ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_VGLAB ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_VINES ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_VINESECHO ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_VINESLOOP ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_VITAL ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_VLAN ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_VLTLMAN ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_VPROD ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_VURESERVED ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_WATERLOO ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_WELLFLEET ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_X25 ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_X75 ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_XNSSM ideal-int
+pkg syscall (netbsd-amd64), const ETHERTYPE_XTP ideal-int
+pkg syscall (netbsd-amd64), const ETHER_ADDR_LEN ideal-int
+pkg syscall (netbsd-amd64), const ETHER_CRC_LEN ideal-int
+pkg syscall (netbsd-amd64), const ETHER_CRC_POLY_BE ideal-int
+pkg syscall (netbsd-amd64), const ETHER_CRC_POLY_LE ideal-int
+pkg syscall (netbsd-amd64), const ETHER_HDR_LEN ideal-int
+pkg syscall (netbsd-amd64), const ETHER_MAX_LEN ideal-int
+pkg syscall (netbsd-amd64), const ETHER_MAX_LEN_JUMBO ideal-int
+pkg syscall (netbsd-amd64), const ETHER_MIN_LEN ideal-int
+pkg syscall (netbsd-amd64), const ETHER_PPPOE_ENCAP_LEN ideal-int
+pkg syscall (netbsd-amd64), const ETHER_TYPE_LEN ideal-int
+pkg syscall (netbsd-amd64), const ETHER_VLAN_ENCAP_LEN ideal-int
+pkg syscall (netbsd-amd64), const ETIME Errno
+pkg syscall (netbsd-amd64), const EVFILT_AIO ideal-int
+pkg syscall (netbsd-amd64), const EVFILT_PROC ideal-int
+pkg syscall (netbsd-amd64), const EVFILT_READ ideal-int
+pkg syscall (netbsd-amd64), const EVFILT_SIGNAL ideal-int
+pkg syscall (netbsd-amd64), const EVFILT_SYSCOUNT ideal-int
+pkg syscall (netbsd-amd64), const EVFILT_TIMER ideal-int
+pkg syscall (netbsd-amd64), const EVFILT_VNODE ideal-int
+pkg syscall (netbsd-amd64), const EVFILT_WRITE ideal-int
+pkg syscall (netbsd-amd64), const EV_ADD ideal-int
+pkg syscall (netbsd-amd64), const EV_CLEAR ideal-int
+pkg syscall (netbsd-amd64), const EV_DELETE ideal-int
+pkg syscall (netbsd-amd64), const EV_DISABLE ideal-int
+pkg syscall (netbsd-amd64), const EV_ENABLE ideal-int
+pkg syscall (netbsd-amd64), const EV_EOF ideal-int
+pkg syscall (netbsd-amd64), const EV_ERROR ideal-int
+pkg syscall (netbsd-amd64), const EV_FLAG1 ideal-int
+pkg syscall (netbsd-amd64), const EV_ONESHOT ideal-int
+pkg syscall (netbsd-amd64), const EV_SYSFLAGS ideal-int
+pkg syscall (netbsd-amd64), const EXTA ideal-int
+pkg syscall (netbsd-amd64), const EXTB ideal-int
+pkg syscall (netbsd-amd64), const EXTPROC ideal-int
+pkg syscall (netbsd-amd64), const FD_CLOEXEC ideal-int
+pkg syscall (netbsd-amd64), const FD_SETSIZE ideal-int
+pkg syscall (netbsd-amd64), const FLUSHO ideal-int
+pkg syscall (netbsd-amd64), const F_CLOSEM ideal-int
+pkg syscall (netbsd-amd64), const F_DUPFD ideal-int
+pkg syscall (netbsd-amd64), const F_DUPFD_CLOEXEC ideal-int
+pkg syscall (netbsd-amd64), const F_FSCTL ideal-int
+pkg syscall (netbsd-amd64), const F_FSDIRMASK ideal-int
+pkg syscall (netbsd-amd64), const F_FSIN ideal-int
+pkg syscall (netbsd-amd64), const F_FSINOUT ideal-int
+pkg syscall (netbsd-amd64), const F_FSOUT ideal-int
+pkg syscall (netbsd-amd64), const F_FSPRIV ideal-int
+pkg syscall (netbsd-amd64), const F_FSVOID ideal-int
+pkg syscall (netbsd-amd64), const F_GETFD ideal-int
+pkg syscall (netbsd-amd64), const F_GETFL ideal-int
+pkg syscall (netbsd-amd64), const F_GETLK ideal-int
+pkg syscall (netbsd-amd64), const F_GETNOSIGPIPE ideal-int
+pkg syscall (netbsd-amd64), const F_GETOWN ideal-int
+pkg syscall (netbsd-amd64), const F_MAXFD ideal-int
+pkg syscall (netbsd-amd64), const F_OK ideal-int
+pkg syscall (netbsd-amd64), const F_PARAM_MASK ideal-int
+pkg syscall (netbsd-amd64), const F_PARAM_MAX ideal-int
+pkg syscall (netbsd-amd64), const F_RDLCK ideal-int
+pkg syscall (netbsd-amd64), const F_SETFD ideal-int
+pkg syscall (netbsd-amd64), const F_SETFL ideal-int
+pkg syscall (netbsd-amd64), const F_SETLK ideal-int
+pkg syscall (netbsd-amd64), const F_SETLKW ideal-int
+pkg syscall (netbsd-amd64), const F_SETNOSIGPIPE ideal-int
+pkg syscall (netbsd-amd64), const F_SETOWN ideal-int
+pkg syscall (netbsd-amd64), const F_UNLCK ideal-int
+pkg syscall (netbsd-amd64), const F_WRLCK ideal-int
+pkg syscall (netbsd-amd64), const HUPCL ideal-int
+pkg syscall (netbsd-amd64), const ICANON ideal-int
+pkg syscall (netbsd-amd64), const ICMP6_FILTER = 18
+pkg syscall (netbsd-amd64), const ICMP6_FILTER ideal-int
+pkg syscall (netbsd-amd64), const ICRNL ideal-int
+pkg syscall (netbsd-amd64), const IEXTEN ideal-int
+pkg syscall (netbsd-amd64), const IFAN_ARRIVAL ideal-int
+pkg syscall (netbsd-amd64), const IFAN_DEPARTURE ideal-int
+pkg syscall (netbsd-amd64), const IFA_ROUTE ideal-int
+pkg syscall (netbsd-amd64), const IFF_ALLMULTI ideal-int
+pkg syscall (netbsd-amd64), const IFF_CANTCHANGE ideal-int
+pkg syscall (netbsd-amd64), const IFF_DEBUG ideal-int
+pkg syscall (netbsd-amd64), const IFF_LINK0 ideal-int
+pkg syscall (netbsd-amd64), const IFF_LINK1 ideal-int
+pkg syscall (netbsd-amd64), const IFF_LINK2 ideal-int
+pkg syscall (netbsd-amd64), const IFF_NOARP ideal-int
+pkg syscall (netbsd-amd64), const IFF_NOTRAILERS ideal-int
+pkg syscall (netbsd-amd64), const IFF_OACTIVE ideal-int
+pkg syscall (netbsd-amd64), const IFF_POINTOPOINT ideal-int
+pkg syscall (netbsd-amd64), const IFF_PROMISC ideal-int
+pkg syscall (netbsd-amd64), const IFF_RUNNING ideal-int
+pkg syscall (netbsd-amd64), const IFF_SIMPLEX ideal-int
+pkg syscall (netbsd-amd64), const IFNAMSIZ ideal-int
+pkg syscall (netbsd-amd64), const IFT_1822 ideal-int
+pkg syscall (netbsd-amd64), const IFT_A12MPPSWITCH ideal-int
+pkg syscall (netbsd-amd64), const IFT_AAL2 ideal-int
+pkg syscall (netbsd-amd64), const IFT_AAL5 ideal-int
+pkg syscall (netbsd-amd64), const IFT_ADSL ideal-int
+pkg syscall (netbsd-amd64), const IFT_AFLANE8023 ideal-int
+pkg syscall (netbsd-amd64), const IFT_AFLANE8025 ideal-int
+pkg syscall (netbsd-amd64), const IFT_ARAP ideal-int
+pkg syscall (netbsd-amd64), const IFT_ARCNET ideal-int
+pkg syscall (netbsd-amd64), const IFT_ARCNETPLUS ideal-int
+pkg syscall (netbsd-amd64), const IFT_ASYNC ideal-int
+pkg syscall (netbsd-amd64), const IFT_ATM ideal-int
+pkg syscall (netbsd-amd64), const IFT_ATMDXI ideal-int
+pkg syscall (netbsd-amd64), const IFT_ATMFUNI ideal-int
+pkg syscall (netbsd-amd64), const IFT_ATMIMA ideal-int
+pkg syscall (netbsd-amd64), const IFT_ATMLOGICAL ideal-int
+pkg syscall (netbsd-amd64), const IFT_ATMRADIO ideal-int
+pkg syscall (netbsd-amd64), const IFT_ATMSUBINTERFACE ideal-int
+pkg syscall (netbsd-amd64), const IFT_ATMVCIENDPT ideal-int
+pkg syscall (netbsd-amd64), const IFT_ATMVIRTUAL ideal-int
+pkg syscall (netbsd-amd64), const IFT_BGPPOLICYACCOUNTING ideal-int
+pkg syscall (netbsd-amd64), const IFT_BRIDGE ideal-int
+pkg syscall (netbsd-amd64), const IFT_BSC ideal-int
+pkg syscall (netbsd-amd64), const IFT_CARP ideal-int
+pkg syscall (netbsd-amd64), const IFT_CCTEMUL ideal-int
+pkg syscall (netbsd-amd64), const IFT_CEPT ideal-int
+pkg syscall (netbsd-amd64), const IFT_CES ideal-int
+pkg syscall (netbsd-amd64), const IFT_CHANNEL ideal-int
+pkg syscall (netbsd-amd64), const IFT_CNR ideal-int
+pkg syscall (netbsd-amd64), const IFT_COFFEE ideal-int
+pkg syscall (netbsd-amd64), const IFT_COMPOSITELINK ideal-int
+pkg syscall (netbsd-amd64), const IFT_DCN ideal-int
+pkg syscall (netbsd-amd64), const IFT_DIGITALPOWERLINE ideal-int
+pkg syscall (netbsd-amd64), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int
+pkg syscall (netbsd-amd64), const IFT_DLSW ideal-int
+pkg syscall (netbsd-amd64), const IFT_DOCSCABLEDOWNSTREAM ideal-int
+pkg syscall (netbsd-amd64), const IFT_DOCSCABLEMACLAYER ideal-int
+pkg syscall (netbsd-amd64), const IFT_DOCSCABLEUPSTREAM ideal-int
+pkg syscall (netbsd-amd64), const IFT_DOCSCABLEUPSTREAMCHANNEL ideal-int
+pkg syscall (netbsd-amd64), const IFT_DS0 ideal-int
+pkg syscall (netbsd-amd64), const IFT_DS0BUNDLE ideal-int
+pkg syscall (netbsd-amd64), const IFT_DS1FDL ideal-int
+pkg syscall (netbsd-amd64), const IFT_DS3 ideal-int
+pkg syscall (netbsd-amd64), const IFT_DTM ideal-int
+pkg syscall (netbsd-amd64), const IFT_DVBASILN ideal-int
+pkg syscall (netbsd-amd64), const IFT_DVBASIOUT ideal-int
+pkg syscall (netbsd-amd64), const IFT_DVBRCCDOWNSTREAM ideal-int
+pkg syscall (netbsd-amd64), const IFT_DVBRCCMACLAYER ideal-int
+pkg syscall (netbsd-amd64), const IFT_DVBRCCUPSTREAM ideal-int
+pkg syscall (netbsd-amd64), const IFT_ECONET ideal-int
+pkg syscall (netbsd-amd64), const IFT_EON ideal-int
+pkg syscall (netbsd-amd64), const IFT_EPLRS ideal-int
+pkg syscall (netbsd-amd64), const IFT_ESCON ideal-int
+pkg syscall (netbsd-amd64), const IFT_ETHER ideal-int
+pkg syscall (netbsd-amd64), const IFT_FAITH ideal-int
+pkg syscall (netbsd-amd64), const IFT_FAST ideal-int
+pkg syscall (netbsd-amd64), const IFT_FASTETHER ideal-int
+pkg syscall (netbsd-amd64), const IFT_FASTETHERFX ideal-int
+pkg syscall (netbsd-amd64), const IFT_FDDI ideal-int
+pkg syscall (netbsd-amd64), const IFT_FIBRECHANNEL ideal-int
+pkg syscall (netbsd-amd64), const IFT_FRAMERELAYINTERCONNECT ideal-int
+pkg syscall (netbsd-amd64), const IFT_FRAMERELAYMPI ideal-int
+pkg syscall (netbsd-amd64), const IFT_FRDLCIENDPT ideal-int
+pkg syscall (netbsd-amd64), const IFT_FRELAY ideal-int
+pkg syscall (netbsd-amd64), const IFT_FRELAYDCE ideal-int
+pkg syscall (netbsd-amd64), const IFT_FRF16MFRBUNDLE ideal-int
+pkg syscall (netbsd-amd64), const IFT_FRFORWARD ideal-int
+pkg syscall (netbsd-amd64), const IFT_G703AT2MB ideal-int
+pkg syscall (netbsd-amd64), const IFT_G703AT64K ideal-int
+pkg syscall (netbsd-amd64), const IFT_GIF ideal-int
+pkg syscall (netbsd-amd64), const IFT_GIGABITETHERNET ideal-int
+pkg syscall (netbsd-amd64), const IFT_GR303IDT ideal-int
+pkg syscall (netbsd-amd64), const IFT_GR303RDT ideal-int
+pkg syscall (netbsd-amd64), const IFT_H323GATEKEEPER ideal-int
+pkg syscall (netbsd-amd64), const IFT_H323PROXY ideal-int
+pkg syscall (netbsd-amd64), const IFT_HDH1822 ideal-int
+pkg syscall (netbsd-amd64), const IFT_HDLC ideal-int
+pkg syscall (netbsd-amd64), const IFT_HDSL2 ideal-int
+pkg syscall (netbsd-amd64), const IFT_HIPERLAN2 ideal-int
+pkg syscall (netbsd-amd64), const IFT_HIPPI ideal-int
+pkg syscall (netbsd-amd64), const IFT_HIPPIINTERFACE ideal-int
+pkg syscall (netbsd-amd64), const IFT_HOSTPAD ideal-int
+pkg syscall (netbsd-amd64), const IFT_HSSI ideal-int
+pkg syscall (netbsd-amd64), const IFT_HY ideal-int
+pkg syscall (netbsd-amd64), const IFT_IBM370PARCHAN ideal-int
+pkg syscall (netbsd-amd64), const IFT_IDSL ideal-int
+pkg syscall (netbsd-amd64), const IFT_IEEE1394 ideal-int
+pkg syscall (netbsd-amd64), const IFT_IEEE80211 ideal-int
+pkg syscall (netbsd-amd64), const IFT_IEEE80212 ideal-int
+pkg syscall (netbsd-amd64), const IFT_IEEE8023ADLAG ideal-int
+pkg syscall (netbsd-amd64), const IFT_IFGSN ideal-int
+pkg syscall (netbsd-amd64), const IFT_IMT ideal-int
+pkg syscall (netbsd-amd64), const IFT_INFINIBAND ideal-int
+pkg syscall (netbsd-amd64), const IFT_INTERLEAVE ideal-int
+pkg syscall (netbsd-amd64), const IFT_IP ideal-int
+pkg syscall (netbsd-amd64), const IFT_IPFORWARD ideal-int
+pkg syscall (netbsd-amd64), const IFT_IPOVERATM ideal-int
+pkg syscall (netbsd-amd64), const IFT_IPOVERCDLC ideal-int
+pkg syscall (netbsd-amd64), const IFT_IPOVERCLAW ideal-int
+pkg syscall (netbsd-amd64), const IFT_IPSWITCH ideal-int
+pkg syscall (netbsd-amd64), const IFT_ISDN ideal-int
+pkg syscall (netbsd-amd64), const IFT_ISDNBASIC ideal-int
+pkg syscall (netbsd-amd64), const IFT_ISDNPRIMARY ideal-int
+pkg syscall (netbsd-amd64), const IFT_ISDNS ideal-int
+pkg syscall (netbsd-amd64), const IFT_ISDNU ideal-int
+pkg syscall (netbsd-amd64), const IFT_ISO88022LLC ideal-int
+pkg syscall (netbsd-amd64), const IFT_ISO88023 ideal-int
+pkg syscall (netbsd-amd64), const IFT_ISO88024 ideal-int
+pkg syscall (netbsd-amd64), const IFT_ISO88025 ideal-int
+pkg syscall (netbsd-amd64), const IFT_ISO88025CRFPINT ideal-int
+pkg syscall (netbsd-amd64), const IFT_ISO88025DTR ideal-int
+pkg syscall (netbsd-amd64), const IFT_ISO88025FIBER ideal-int
+pkg syscall (netbsd-amd64), const IFT_ISO88026 ideal-int
+pkg syscall (netbsd-amd64), const IFT_ISUP ideal-int
+pkg syscall (netbsd-amd64), const IFT_L2VLAN ideal-int
+pkg syscall (netbsd-amd64), const IFT_L3IPVLAN ideal-int
+pkg syscall (netbsd-amd64), const IFT_L3IPXVLAN ideal-int
+pkg syscall (netbsd-amd64), const IFT_LAPB ideal-int
+pkg syscall (netbsd-amd64), const IFT_LAPD ideal-int
+pkg syscall (netbsd-amd64), const IFT_LAPF ideal-int
+pkg syscall (netbsd-amd64), const IFT_LINEGROUP ideal-int
+pkg syscall (netbsd-amd64), const IFT_LOCALTALK ideal-int
+pkg syscall (netbsd-amd64), const IFT_LOOP ideal-int
+pkg syscall (netbsd-amd64), const IFT_MEDIAMAILOVERIP ideal-int
+pkg syscall (netbsd-amd64), const IFT_MFSIGLINK ideal-int
+pkg syscall (netbsd-amd64), const IFT_MIOX25 ideal-int
+pkg syscall (netbsd-amd64), const IFT_MODEM ideal-int
+pkg syscall (netbsd-amd64), const IFT_MPC ideal-int
+pkg syscall (netbsd-amd64), const IFT_MPLS ideal-int
+pkg syscall (netbsd-amd64), const IFT_MPLSTUNNEL ideal-int
+pkg syscall (netbsd-amd64), const IFT_MSDSL ideal-int
+pkg syscall (netbsd-amd64), const IFT_MVL ideal-int
+pkg syscall (netbsd-amd64), const IFT_MYRINET ideal-int
+pkg syscall (netbsd-amd64), const IFT_NFAS ideal-int
+pkg syscall (netbsd-amd64), const IFT_NSIP ideal-int
+pkg syscall (netbsd-amd64), const IFT_OPTICALCHANNEL ideal-int
+pkg syscall (netbsd-amd64), const IFT_OPTICALTRANSPORT ideal-int
+pkg syscall (netbsd-amd64), const IFT_OTHER ideal-int
+pkg syscall (netbsd-amd64), const IFT_P10 ideal-int
+pkg syscall (netbsd-amd64), const IFT_P80 ideal-int
+pkg syscall (netbsd-amd64), const IFT_PARA ideal-int
+pkg syscall (netbsd-amd64), const IFT_PFLOG ideal-int
+pkg syscall (netbsd-amd64), const IFT_PFSYNC ideal-int
+pkg syscall (netbsd-amd64), const IFT_PLC ideal-int
+pkg syscall (netbsd-amd64), const IFT_PON155 ideal-int
+pkg syscall (netbsd-amd64), const IFT_PON622 ideal-int
+pkg syscall (netbsd-amd64), const IFT_POS ideal-int
+pkg syscall (netbsd-amd64), const IFT_PPP ideal-int
+pkg syscall (netbsd-amd64), const IFT_PPPMULTILINKBUNDLE ideal-int
+pkg syscall (netbsd-amd64), const IFT_PROPATM ideal-int
+pkg syscall (netbsd-amd64), const IFT_PROPBWAP2MP ideal-int
+pkg syscall (netbsd-amd64), const IFT_PROPCNLS ideal-int
+pkg syscall (netbsd-amd64), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int
+pkg syscall (netbsd-amd64), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int
+pkg syscall (netbsd-amd64), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int
+pkg syscall (netbsd-amd64), const IFT_PROPMUX ideal-int
+pkg syscall (netbsd-amd64), const IFT_PROPVIRTUAL ideal-int
+pkg syscall (netbsd-amd64), const IFT_PROPWIRELESSP2P ideal-int
+pkg syscall (netbsd-amd64), const IFT_PTPSERIAL ideal-int
+pkg syscall (netbsd-amd64), const IFT_PVC ideal-int
+pkg syscall (netbsd-amd64), const IFT_Q2931 ideal-int
+pkg syscall (netbsd-amd64), const IFT_QLLC ideal-int
+pkg syscall (netbsd-amd64), const IFT_RADIOMAC ideal-int
+pkg syscall (netbsd-amd64), const IFT_RADSL ideal-int
+pkg syscall (netbsd-amd64), const IFT_REACHDSL ideal-int
+pkg syscall (netbsd-amd64), const IFT_RFC1483 ideal-int
+pkg syscall (netbsd-amd64), const IFT_RS232 ideal-int
+pkg syscall (netbsd-amd64), const IFT_RSRB ideal-int
+pkg syscall (netbsd-amd64), const IFT_SDLC ideal-int
+pkg syscall (netbsd-amd64), const IFT_SDSL ideal-int
+pkg syscall (netbsd-amd64), const IFT_SHDSL ideal-int
+pkg syscall (netbsd-amd64), const IFT_SIP ideal-int
+pkg syscall (netbsd-amd64), const IFT_SIPSIG ideal-int
+pkg syscall (netbsd-amd64), const IFT_SIPTG ideal-int
+pkg syscall (netbsd-amd64), const IFT_SLIP ideal-int
+pkg syscall (netbsd-amd64), const IFT_SMDSDXI ideal-int
+pkg syscall (netbsd-amd64), const IFT_SMDSICIP ideal-int
+pkg syscall (netbsd-amd64), const IFT_SONET ideal-int
+pkg syscall (netbsd-amd64), const IFT_SONETOVERHEADCHANNEL ideal-int
+pkg syscall (netbsd-amd64), const IFT_SONETPATH ideal-int
+pkg syscall (netbsd-amd64), const IFT_SONETVT ideal-int
+pkg syscall (netbsd-amd64), const IFT_SRP ideal-int
+pkg syscall (netbsd-amd64), const IFT_SS7SIGLINK ideal-int
+pkg syscall (netbsd-amd64), const IFT_STACKTOSTACK ideal-int
+pkg syscall (netbsd-amd64), const IFT_STARLAN ideal-int
+pkg syscall (netbsd-amd64), const IFT_STF ideal-int
+pkg syscall (netbsd-amd64), const IFT_T1 ideal-int
+pkg syscall (netbsd-amd64), const IFT_TDLC ideal-int
+pkg syscall (netbsd-amd64), const IFT_TELINK ideal-int
+pkg syscall (netbsd-amd64), const IFT_TERMPAD ideal-int
+pkg syscall (netbsd-amd64), const IFT_TR008 ideal-int
+pkg syscall (netbsd-amd64), const IFT_TRANSPHDLC ideal-int
+pkg syscall (netbsd-amd64), const IFT_TUNNEL ideal-int
+pkg syscall (netbsd-amd64), const IFT_ULTRA ideal-int
+pkg syscall (netbsd-amd64), const IFT_USB ideal-int
+pkg syscall (netbsd-amd64), const IFT_V11 ideal-int
+pkg syscall (netbsd-amd64), const IFT_V35 ideal-int
+pkg syscall (netbsd-amd64), const IFT_V36 ideal-int
+pkg syscall (netbsd-amd64), const IFT_V37 ideal-int
+pkg syscall (netbsd-amd64), const IFT_VDSL ideal-int
+pkg syscall (netbsd-amd64), const IFT_VIRTUALIPADDRESS ideal-int
+pkg syscall (netbsd-amd64), const IFT_VIRTUALTG ideal-int
+pkg syscall (netbsd-amd64), const IFT_VOICEDID ideal-int
+pkg syscall (netbsd-amd64), const IFT_VOICEEM ideal-int
+pkg syscall (netbsd-amd64), const IFT_VOICEEMFGD ideal-int
+pkg syscall (netbsd-amd64), const IFT_VOICEENCAP ideal-int
+pkg syscall (netbsd-amd64), const IFT_VOICEFGDEANA ideal-int
+pkg syscall (netbsd-amd64), const IFT_VOICEFXO ideal-int
+pkg syscall (netbsd-amd64), const IFT_VOICEFXS ideal-int
+pkg syscall (netbsd-amd64), const IFT_VOICEOVERATM ideal-int
+pkg syscall (netbsd-amd64), const IFT_VOICEOVERCABLE ideal-int
+pkg syscall (netbsd-amd64), const IFT_VOICEOVERFRAMERELAY ideal-int
+pkg syscall (netbsd-amd64), const IFT_VOICEOVERIP ideal-int
+pkg syscall (netbsd-amd64), const IFT_X213 ideal-int
+pkg syscall (netbsd-amd64), const IFT_X25 ideal-int
+pkg syscall (netbsd-amd64), const IFT_X25DDN ideal-int
+pkg syscall (netbsd-amd64), const IFT_X25HUNTGROUP ideal-int
+pkg syscall (netbsd-amd64), const IFT_X25MLP ideal-int
+pkg syscall (netbsd-amd64), const IFT_X25PLE ideal-int
+pkg syscall (netbsd-amd64), const IFT_XETHER ideal-int
+pkg syscall (netbsd-amd64), const IGNBRK ideal-int
+pkg syscall (netbsd-amd64), const IGNCR ideal-int
+pkg syscall (netbsd-amd64), const IGNPAR ideal-int
+pkg syscall (netbsd-amd64), const IMAXBEL ideal-int
+pkg syscall (netbsd-amd64), const INLCR ideal-int
+pkg syscall (netbsd-amd64), const INPCK ideal-int
+pkg syscall (netbsd-amd64), const IN_CLASSA_HOST ideal-int
+pkg syscall (netbsd-amd64), const IN_CLASSA_MAX ideal-int
+pkg syscall (netbsd-amd64), const IN_CLASSA_NET ideal-int
+pkg syscall (netbsd-amd64), const IN_CLASSA_NSHIFT ideal-int
+pkg syscall (netbsd-amd64), const IN_CLASSB_HOST ideal-int
+pkg syscall (netbsd-amd64), const IN_CLASSB_MAX ideal-int
+pkg syscall (netbsd-amd64), const IN_CLASSB_NET ideal-int
+pkg syscall (netbsd-amd64), const IN_CLASSB_NSHIFT ideal-int
+pkg syscall (netbsd-amd64), const IN_CLASSC_HOST ideal-int
+pkg syscall (netbsd-amd64), const IN_CLASSC_NET ideal-int
+pkg syscall (netbsd-amd64), const IN_CLASSC_NSHIFT ideal-int
+pkg syscall (netbsd-amd64), const IN_CLASSD_HOST ideal-int
+pkg syscall (netbsd-amd64), const IN_CLASSD_NET ideal-int
+pkg syscall (netbsd-amd64), const IN_CLASSD_NSHIFT ideal-int
+pkg syscall (netbsd-amd64), const IN_LOOPBACKNET ideal-int
+pkg syscall (netbsd-amd64), const IPPROTO_AH ideal-int
+pkg syscall (netbsd-amd64), const IPPROTO_CARP ideal-int
+pkg syscall (netbsd-amd64), const IPPROTO_DONE ideal-int
+pkg syscall (netbsd-amd64), const IPPROTO_DSTOPTS ideal-int
+pkg syscall (netbsd-amd64), const IPPROTO_EGP ideal-int
+pkg syscall (netbsd-amd64), const IPPROTO_ENCAP ideal-int
+pkg syscall (netbsd-amd64), const IPPROTO_EON ideal-int
+pkg syscall (netbsd-amd64), const IPPROTO_ESP ideal-int
+pkg syscall (netbsd-amd64), const IPPROTO_ETHERIP ideal-int
+pkg syscall (netbsd-amd64), const IPPROTO_FRAGMENT ideal-int
+pkg syscall (netbsd-amd64), const IPPROTO_GGP ideal-int
+pkg syscall (netbsd-amd64), const IPPROTO_GRE ideal-int
+pkg syscall (netbsd-amd64), const IPPROTO_HOPOPTS ideal-int
+pkg syscall (netbsd-amd64), const IPPROTO_ICMP ideal-int
+pkg syscall (netbsd-amd64), const IPPROTO_ICMPV6 ideal-int
+pkg syscall (netbsd-amd64), const IPPROTO_IDP ideal-int
+pkg syscall (netbsd-amd64), const IPPROTO_IGMP ideal-int
+pkg syscall (netbsd-amd64), const IPPROTO_IPCOMP ideal-int
+pkg syscall (netbsd-amd64), const IPPROTO_IPIP ideal-int
+pkg syscall (netbsd-amd64), const IPPROTO_IPV4 ideal-int
+pkg syscall (netbsd-amd64), const IPPROTO_IPV6_ICMP ideal-int
+pkg syscall (netbsd-amd64), const IPPROTO_MAX ideal-int
+pkg syscall (netbsd-amd64), const IPPROTO_MAXID ideal-int
+pkg syscall (netbsd-amd64), const IPPROTO_MOBILE ideal-int
+pkg syscall (netbsd-amd64), const IPPROTO_NONE ideal-int
+pkg syscall (netbsd-amd64), const IPPROTO_PFSYNC ideal-int
+pkg syscall (netbsd-amd64), const IPPROTO_PIM ideal-int
+pkg syscall (netbsd-amd64), const IPPROTO_PUP ideal-int
+pkg syscall (netbsd-amd64), const IPPROTO_RAW ideal-int
+pkg syscall (netbsd-amd64), const IPPROTO_ROUTING ideal-int
+pkg syscall (netbsd-amd64), const IPPROTO_RSVP ideal-int
+pkg syscall (netbsd-amd64), const IPPROTO_TP ideal-int
+pkg syscall (netbsd-amd64), const IPPROTO_VRRP ideal-int
+pkg syscall (netbsd-amd64), const IPV6_CHECKSUM ideal-int
+pkg syscall (netbsd-amd64), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int
+pkg syscall (netbsd-amd64), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int
+pkg syscall (netbsd-amd64), const IPV6_DEFHLIM ideal-int
+pkg syscall (netbsd-amd64), const IPV6_DONTFRAG ideal-int
+pkg syscall (netbsd-amd64), const IPV6_DSTOPTS ideal-int
+pkg syscall (netbsd-amd64), const IPV6_FAITH ideal-int
+pkg syscall (netbsd-amd64), const IPV6_FLOWINFO_MASK ideal-int
+pkg syscall (netbsd-amd64), const IPV6_FLOWLABEL_MASK ideal-int
+pkg syscall (netbsd-amd64), const IPV6_FRAGTTL ideal-int
+pkg syscall (netbsd-amd64), const IPV6_HLIMDEC ideal-int
+pkg syscall (netbsd-amd64), const IPV6_HOPLIMIT ideal-int
+pkg syscall (netbsd-amd64), const IPV6_HOPOPTS ideal-int
+pkg syscall (netbsd-amd64), const IPV6_IPSEC_POLICY ideal-int
+pkg syscall (netbsd-amd64), const IPV6_MAXHLIM ideal-int
+pkg syscall (netbsd-amd64), const IPV6_MAXPACKET ideal-int
+pkg syscall (netbsd-amd64), const IPV6_MMTU ideal-int
+pkg syscall (netbsd-amd64), const IPV6_NEXTHOP ideal-int
+pkg syscall (netbsd-amd64), const IPV6_PATHMTU ideal-int
+pkg syscall (netbsd-amd64), const IPV6_PKTINFO ideal-int
+pkg syscall (netbsd-amd64), const IPV6_PORTRANGE ideal-int
+pkg syscall (netbsd-amd64), const IPV6_PORTRANGE_DEFAULT ideal-int
+pkg syscall (netbsd-amd64), const IPV6_PORTRANGE_HIGH ideal-int
+pkg syscall (netbsd-amd64), const IPV6_PORTRANGE_LOW ideal-int
+pkg syscall (netbsd-amd64), const IPV6_RECVDSTOPTS ideal-int
+pkg syscall (netbsd-amd64), const IPV6_RECVHOPLIMIT ideal-int
+pkg syscall (netbsd-amd64), const IPV6_RECVHOPOPTS ideal-int
+pkg syscall (netbsd-amd64), const IPV6_RECVPATHMTU ideal-int
+pkg syscall (netbsd-amd64), const IPV6_RECVPKTINFO ideal-int
+pkg syscall (netbsd-amd64), const IPV6_RECVRTHDR ideal-int
+pkg syscall (netbsd-amd64), const IPV6_RECVTCLASS ideal-int
+pkg syscall (netbsd-amd64), const IPV6_RTHDR ideal-int
+pkg syscall (netbsd-amd64), const IPV6_RTHDRDSTOPTS ideal-int
+pkg syscall (netbsd-amd64), const IPV6_RTHDR_LOOSE ideal-int
+pkg syscall (netbsd-amd64), const IPV6_RTHDR_STRICT ideal-int
+pkg syscall (netbsd-amd64), const IPV6_RTHDR_TYPE_0 ideal-int
+pkg syscall (netbsd-amd64), const IPV6_SOCKOPT_RESERVED1 ideal-int
+pkg syscall (netbsd-amd64), const IPV6_TCLASS ideal-int
+pkg syscall (netbsd-amd64), const IPV6_USE_MIN_MTU ideal-int
+pkg syscall (netbsd-amd64), const IPV6_VERSION ideal-int
+pkg syscall (netbsd-amd64), const IPV6_VERSION_MASK ideal-int
+pkg syscall (netbsd-amd64), const IP_DEFAULT_MULTICAST_LOOP ideal-int
+pkg syscall (netbsd-amd64), const IP_DEFAULT_MULTICAST_TTL ideal-int
+pkg syscall (netbsd-amd64), const IP_DF ideal-int
+pkg syscall (netbsd-amd64), const IP_EF ideal-int
+pkg syscall (netbsd-amd64), const IP_ERRORMTU ideal-int
+pkg syscall (netbsd-amd64), const IP_HDRINCL ideal-int
+pkg syscall (netbsd-amd64), const IP_IPSEC_POLICY ideal-int
+pkg syscall (netbsd-amd64), const IP_MAXPACKET ideal-int
+pkg syscall (netbsd-amd64), const IP_MAX_MEMBERSHIPS ideal-int
+pkg syscall (netbsd-amd64), const IP_MF ideal-int
+pkg syscall (netbsd-amd64), const IP_MINFRAGSIZE ideal-int
+pkg syscall (netbsd-amd64), const IP_MINTTL ideal-int
+pkg syscall (netbsd-amd64), const IP_MSS ideal-int
+pkg syscall (netbsd-amd64), const IP_OFFMASK ideal-int
+pkg syscall (netbsd-amd64), const IP_OPTIONS ideal-int
+pkg syscall (netbsd-amd64), const IP_PORTRANGE ideal-int
+pkg syscall (netbsd-amd64), const IP_PORTRANGE_DEFAULT ideal-int
+pkg syscall (netbsd-amd64), const IP_PORTRANGE_HIGH ideal-int
+pkg syscall (netbsd-amd64), const IP_PORTRANGE_LOW ideal-int
+pkg syscall (netbsd-amd64), const IP_RECVDSTADDR ideal-int
+pkg syscall (netbsd-amd64), const IP_RECVIF ideal-int
+pkg syscall (netbsd-amd64), const IP_RECVOPTS ideal-int
+pkg syscall (netbsd-amd64), const IP_RECVRETOPTS ideal-int
+pkg syscall (netbsd-amd64), const IP_RECVTTL ideal-int
+pkg syscall (netbsd-amd64), const IP_RETOPTS ideal-int
+pkg syscall (netbsd-amd64), const IP_RF ideal-int
+pkg syscall (netbsd-amd64), const ISIG ideal-int
+pkg syscall (netbsd-amd64), const ISTRIP ideal-int
+pkg syscall (netbsd-amd64), const IXANY ideal-int
+pkg syscall (netbsd-amd64), const IXOFF ideal-int
+pkg syscall (netbsd-amd64), const IXON ideal-int
+pkg syscall (netbsd-amd64), const LOCK_EX ideal-int
+pkg syscall (netbsd-amd64), const LOCK_NB ideal-int
+pkg syscall (netbsd-amd64), const LOCK_SH ideal-int
+pkg syscall (netbsd-amd64), const LOCK_UN ideal-int
+pkg syscall (netbsd-amd64), const MSG_BCAST ideal-int
+pkg syscall (netbsd-amd64), const MSG_CMSG_CLOEXEC ideal-int
+pkg syscall (netbsd-amd64), const MSG_CONTROLMBUF ideal-int
+pkg syscall (netbsd-amd64), const MSG_CTRUNC ideal-int
+pkg syscall (netbsd-amd64), const MSG_DONTROUTE ideal-int
+pkg syscall (netbsd-amd64), const MSG_DONTWAIT ideal-int
+pkg syscall (netbsd-amd64), const MSG_EOR ideal-int
+pkg syscall (netbsd-amd64), const MSG_IOVUSRSPACE ideal-int
+pkg syscall (netbsd-amd64), const MSG_LENUSRSPACE ideal-int
+pkg syscall (netbsd-amd64), const MSG_MCAST ideal-int
+pkg syscall (netbsd-amd64), const MSG_NAMEMBUF ideal-int
+pkg syscall (netbsd-amd64), const MSG_NBIO ideal-int
+pkg syscall (netbsd-amd64), const MSG_NOSIGNAL ideal-int
+pkg syscall (netbsd-amd64), const MSG_OOB ideal-int
+pkg syscall (netbsd-amd64), const MSG_PEEK ideal-int
+pkg syscall (netbsd-amd64), const MSG_TRUNC ideal-int
+pkg syscall (netbsd-amd64), const MSG_USERFLAGS ideal-int
+pkg syscall (netbsd-amd64), const MSG_WAITALL ideal-int
+pkg syscall (netbsd-amd64), const NAME_MAX ideal-int
+pkg syscall (netbsd-amd64), const NET_RT_DUMP ideal-int
+pkg syscall (netbsd-amd64), const NET_RT_FLAGS ideal-int
+pkg syscall (netbsd-amd64), const NET_RT_IFLIST ideal-int
+pkg syscall (netbsd-amd64), const NET_RT_MAXID ideal-int
+pkg syscall (netbsd-amd64), const NET_RT_OIFLIST ideal-int
+pkg syscall (netbsd-amd64), const NET_RT_OOIFLIST ideal-int
+pkg syscall (netbsd-amd64), const NOFLSH ideal-int
+pkg syscall (netbsd-amd64), const NOTE_ATTRIB ideal-int
+pkg syscall (netbsd-amd64), const NOTE_CHILD ideal-int
+pkg syscall (netbsd-amd64), const NOTE_DELETE ideal-int
+pkg syscall (netbsd-amd64), const NOTE_EXEC ideal-int
+pkg syscall (netbsd-amd64), const NOTE_EXIT ideal-int
+pkg syscall (netbsd-amd64), const NOTE_EXTEND ideal-int
+pkg syscall (netbsd-amd64), const NOTE_FORK ideal-int
+pkg syscall (netbsd-amd64), const NOTE_LINK ideal-int
+pkg syscall (netbsd-amd64), const NOTE_LOWAT ideal-int
+pkg syscall (netbsd-amd64), const NOTE_PCTRLMASK ideal-int
+pkg syscall (netbsd-amd64), const NOTE_PDATAMASK ideal-int
+pkg syscall (netbsd-amd64), const NOTE_RENAME ideal-int
+pkg syscall (netbsd-amd64), const NOTE_REVOKE ideal-int
+pkg syscall (netbsd-amd64), const NOTE_TRACK ideal-int
+pkg syscall (netbsd-amd64), const NOTE_TRACKERR ideal-int
+pkg syscall (netbsd-amd64), const NOTE_WRITE ideal-int
+pkg syscall (netbsd-amd64), const OCRNL ideal-int
+pkg syscall (netbsd-amd64), const OFIOGETBMAP ideal-int
+pkg syscall (netbsd-amd64), const ONLCR ideal-int
+pkg syscall (netbsd-amd64), const ONLRET ideal-int
+pkg syscall (netbsd-amd64), const ONOCR ideal-int
+pkg syscall (netbsd-amd64), const ONOEOT ideal-int
+pkg syscall (netbsd-amd64), const OPOST ideal-int
+pkg syscall (netbsd-amd64), const O_ACCMODE ideal-int
+pkg syscall (netbsd-amd64), const O_ALT_IO ideal-int
+pkg syscall (netbsd-amd64), const O_DIRECT ideal-int
+pkg syscall (netbsd-amd64), const O_DIRECTORY ideal-int
+pkg syscall (netbsd-amd64), const O_DSYNC ideal-int
+pkg syscall (netbsd-amd64), const O_EXLOCK ideal-int
+pkg syscall (netbsd-amd64), const O_FSYNC ideal-int
+pkg syscall (netbsd-amd64), const O_NDELAY ideal-int
+pkg syscall (netbsd-amd64), const O_NOFOLLOW ideal-int
+pkg syscall (netbsd-amd64), const O_NOSIGPIPE ideal-int
+pkg syscall (netbsd-amd64), const O_RSYNC ideal-int
+pkg syscall (netbsd-amd64), const O_SHLOCK ideal-int
+pkg syscall (netbsd-amd64), const PARENB ideal-int
+pkg syscall (netbsd-amd64), const PARMRK ideal-int
+pkg syscall (netbsd-amd64), const PARODD ideal-int
+pkg syscall (netbsd-amd64), const PENDIN ideal-int
+pkg syscall (netbsd-amd64), const PRIO_PGRP = 1
+pkg syscall (netbsd-amd64), const PRIO_PGRP ideal-int
+pkg syscall (netbsd-amd64), const PRIO_PROCESS = 0
+pkg syscall (netbsd-amd64), const PRIO_PROCESS ideal-int
+pkg syscall (netbsd-amd64), const PRIO_USER = 2
+pkg syscall (netbsd-amd64), const PRIO_USER ideal-int
+pkg syscall (netbsd-amd64), const PRI_IOFLUSH ideal-int
+pkg syscall (netbsd-amd64), const PTRACE_CONT ideal-int
+pkg syscall (netbsd-amd64), const PTRACE_KILL ideal-int
+pkg syscall (netbsd-amd64), const PTRACE_TRACEME ideal-int
+pkg syscall (netbsd-amd64), const RLIMIT_AS ideal-int
+pkg syscall (netbsd-amd64), const RLIMIT_CORE ideal-int
+pkg syscall (netbsd-amd64), const RLIMIT_CPU ideal-int
+pkg syscall (netbsd-amd64), const RLIMIT_DATA ideal-int
+pkg syscall (netbsd-amd64), const RLIMIT_FSIZE ideal-int
+pkg syscall (netbsd-amd64), const RLIMIT_NOFILE ideal-int
+pkg syscall (netbsd-amd64), const RLIMIT_STACK ideal-int
+pkg syscall (netbsd-amd64), const RLIM_INFINITY ideal-int
+pkg syscall (netbsd-amd64), const RTAX_AUTHOR ideal-int
+pkg syscall (netbsd-amd64), const RTAX_BRD ideal-int
+pkg syscall (netbsd-amd64), const RTAX_DST ideal-int
+pkg syscall (netbsd-amd64), const RTAX_GATEWAY ideal-int
+pkg syscall (netbsd-amd64), const RTAX_GENMASK ideal-int
+pkg syscall (netbsd-amd64), const RTAX_IFA ideal-int
+pkg syscall (netbsd-amd64), const RTAX_IFP ideal-int
+pkg syscall (netbsd-amd64), const RTAX_MAX ideal-int
+pkg syscall (netbsd-amd64), const RTAX_NETMASK ideal-int
+pkg syscall (netbsd-amd64), const RTAX_TAG ideal-int
+pkg syscall (netbsd-amd64), const RTA_AUTHOR ideal-int
+pkg syscall (netbsd-amd64), const RTA_BRD ideal-int
+pkg syscall (netbsd-amd64), const RTA_DST ideal-int
+pkg syscall (netbsd-amd64), const RTA_GATEWAY ideal-int
+pkg syscall (netbsd-amd64), const RTA_GENMASK ideal-int
+pkg syscall (netbsd-amd64), const RTA_IFA ideal-int
+pkg syscall (netbsd-amd64), const RTA_IFP ideal-int
+pkg syscall (netbsd-amd64), const RTA_NETMASK ideal-int
+pkg syscall (netbsd-amd64), const RTA_TAG ideal-int
+pkg syscall (netbsd-amd64), const RTF_ANNOUNCE ideal-int
+pkg syscall (netbsd-amd64), const RTF_BLACKHOLE ideal-int
+pkg syscall (netbsd-amd64), const RTF_CLONED ideal-int
+pkg syscall (netbsd-amd64), const RTF_CLONING ideal-int
+pkg syscall (netbsd-amd64), const RTF_DONE ideal-int
+pkg syscall (netbsd-amd64), const RTF_DYNAMIC ideal-int
+pkg syscall (netbsd-amd64), const RTF_GATEWAY ideal-int
+pkg syscall (netbsd-amd64), const RTF_HOST ideal-int
+pkg syscall (netbsd-amd64), const RTF_LLINFO ideal-int
+pkg syscall (netbsd-amd64), const RTF_MASK ideal-int
+pkg syscall (netbsd-amd64), const RTF_MODIFIED ideal-int
+pkg syscall (netbsd-amd64), const RTF_PROTO1 ideal-int
+pkg syscall (netbsd-amd64), const RTF_PROTO2 ideal-int
+pkg syscall (netbsd-amd64), const RTF_REJECT ideal-int
+pkg syscall (netbsd-amd64), const RTF_SRC ideal-int
+pkg syscall (netbsd-amd64), const RTF_STATIC ideal-int
+pkg syscall (netbsd-amd64), const RTF_UP ideal-int
+pkg syscall (netbsd-amd64), const RTF_XRESOLVE ideal-int
+pkg syscall (netbsd-amd64), const RTM_ADD ideal-int
+pkg syscall (netbsd-amd64), const RTM_CHANGE ideal-int
+pkg syscall (netbsd-amd64), const RTM_CHGADDR ideal-int
+pkg syscall (netbsd-amd64), const RTM_DELADDR ideal-int
+pkg syscall (netbsd-amd64), const RTM_DELETE ideal-int
+pkg syscall (netbsd-amd64), const RTM_GET ideal-int
+pkg syscall (netbsd-amd64), const RTM_IEEE80211 ideal-int
+pkg syscall (netbsd-amd64), const RTM_IFANNOUNCE ideal-int
+pkg syscall (netbsd-amd64), const RTM_IFINFO ideal-int
+pkg syscall (netbsd-amd64), const RTM_LLINFO_UPD ideal-int
+pkg syscall (netbsd-amd64), const RTM_LOCK ideal-int
+pkg syscall (netbsd-amd64), const RTM_LOSING ideal-int
+pkg syscall (netbsd-amd64), const RTM_MISS ideal-int
+pkg syscall (netbsd-amd64), const RTM_NEWADDR ideal-int
+pkg syscall (netbsd-amd64), const RTM_OIFINFO ideal-int
+pkg syscall (netbsd-amd64), const RTM_OLDADD ideal-int
+pkg syscall (netbsd-amd64), const RTM_OLDDEL ideal-int
+pkg syscall (netbsd-amd64), const RTM_OOIFINFO ideal-int
+pkg syscall (netbsd-amd64), const RTM_REDIRECT ideal-int
+pkg syscall (netbsd-amd64), const RTM_RESOLVE ideal-int
+pkg syscall (netbsd-amd64), const RTM_RTTUNIT ideal-int
+pkg syscall (netbsd-amd64), const RTM_SETGATE ideal-int
+pkg syscall (netbsd-amd64), const RTM_VERSION ideal-int
+pkg syscall (netbsd-amd64), const RTV_EXPIRE ideal-int
+pkg syscall (netbsd-amd64), const RTV_HOPCOUNT ideal-int
+pkg syscall (netbsd-amd64), const RTV_MTU ideal-int
+pkg syscall (netbsd-amd64), const RTV_RPIPE ideal-int
+pkg syscall (netbsd-amd64), const RTV_RTT ideal-int
+pkg syscall (netbsd-amd64), const RTV_RTTVAR ideal-int
+pkg syscall (netbsd-amd64), const RTV_SPIPE ideal-int
+pkg syscall (netbsd-amd64), const RTV_SSTHRESH ideal-int
+pkg syscall (netbsd-amd64), const RUSAGE_CHILDREN ideal-int
+pkg syscall (netbsd-amd64), const RUSAGE_SELF ideal-int
+pkg syscall (netbsd-amd64), const SCM_CREDS ideal-int
+pkg syscall (netbsd-amd64), const SCM_RIGHTS ideal-int
+pkg syscall (netbsd-amd64), const SCM_TIMESTAMP ideal-int
+pkg syscall (netbsd-amd64), const SIGCHLD Signal
+pkg syscall (netbsd-amd64), const SIGCONT Signal
+pkg syscall (netbsd-amd64), const SIGEMT Signal
+pkg syscall (netbsd-amd64), const SIGINFO Signal
+pkg syscall (netbsd-amd64), const SIGIO Signal
+pkg syscall (netbsd-amd64), const SIGIOT Signal
+pkg syscall (netbsd-amd64), const SIGPROF Signal
+pkg syscall (netbsd-amd64), const SIGPWR Signal
+pkg syscall (netbsd-amd64), const SIGSTOP Signal
+pkg syscall (netbsd-amd64), const SIGSYS Signal
+pkg syscall (netbsd-amd64), const SIGTSTP Signal
+pkg syscall (netbsd-amd64), const SIGTTIN Signal
+pkg syscall (netbsd-amd64), const SIGTTOU Signal
+pkg syscall (netbsd-amd64), const SIGURG Signal
+pkg syscall (netbsd-amd64), const SIGUSR1 Signal
+pkg syscall (netbsd-amd64), const SIGUSR2 Signal
+pkg syscall (netbsd-amd64), const SIGVTALRM Signal
+pkg syscall (netbsd-amd64), const SIGWINCH Signal
+pkg syscall (netbsd-amd64), const SIGXCPU Signal
+pkg syscall (netbsd-amd64), const SIGXFSZ Signal
+pkg syscall (netbsd-amd64), const SIOCADDMULTI ideal-int
+pkg syscall (netbsd-amd64), const SIOCADDRT ideal-int
+pkg syscall (netbsd-amd64), const SIOCAIFADDR ideal-int
+pkg syscall (netbsd-amd64), const SIOCALIFADDR ideal-int
+pkg syscall (netbsd-amd64), const SIOCATMARK ideal-int
+pkg syscall (netbsd-amd64), const SIOCDELMULTI ideal-int
+pkg syscall (netbsd-amd64), const SIOCDELRT ideal-int
+pkg syscall (netbsd-amd64), const SIOCDIFADDR ideal-int
+pkg syscall (netbsd-amd64), const SIOCDIFPHYADDR ideal-int
+pkg syscall (netbsd-amd64), const SIOCDLIFADDR ideal-int
+pkg syscall (netbsd-amd64), const SIOCGDRVSPEC ideal-int
+pkg syscall (netbsd-amd64), const SIOCGETPFSYNC ideal-int
+pkg syscall (netbsd-amd64), const SIOCGETSGCNT ideal-int
+pkg syscall (netbsd-amd64), const SIOCGETVIFCNT ideal-int
+pkg syscall (netbsd-amd64), const SIOCGHIWAT ideal-int
+pkg syscall (netbsd-amd64), const SIOCGIFADDR ideal-int
+pkg syscall (netbsd-amd64), const SIOCGIFADDRPREF ideal-int
+pkg syscall (netbsd-amd64), const SIOCGIFALIAS ideal-int
+pkg syscall (netbsd-amd64), const SIOCGIFBRDADDR ideal-int
+pkg syscall (netbsd-amd64), const SIOCGIFCAP ideal-int
+pkg syscall (netbsd-amd64), const SIOCGIFCONF ideal-int
+pkg syscall (netbsd-amd64), const SIOCGIFDATA ideal-int
+pkg syscall (netbsd-amd64), const SIOCGIFDLT ideal-int
+pkg syscall (netbsd-amd64), const SIOCGIFDSTADDR ideal-int
+pkg syscall (netbsd-amd64), const SIOCGIFFLAGS ideal-int
+pkg syscall (netbsd-amd64), const SIOCGIFGENERIC ideal-int
+pkg syscall (netbsd-amd64), const SIOCGIFMEDIA ideal-int
+pkg syscall (netbsd-amd64), const SIOCGIFMETRIC ideal-int
+pkg syscall (netbsd-amd64), const SIOCGIFMTU ideal-int
+pkg syscall (netbsd-amd64), const SIOCGIFNETMASK ideal-int
+pkg syscall (netbsd-amd64), const SIOCGIFPDSTADDR ideal-int
+pkg syscall (netbsd-amd64), const SIOCGIFPSRCADDR ideal-int
+pkg syscall (netbsd-amd64), const SIOCGLIFADDR ideal-int
+pkg syscall (netbsd-amd64), const SIOCGLIFPHYADDR ideal-int
+pkg syscall (netbsd-amd64), const SIOCGLINKSTR ideal-int
+pkg syscall (netbsd-amd64), const SIOCGLOWAT ideal-int
+pkg syscall (netbsd-amd64), const SIOCGPGRP ideal-int
+pkg syscall (netbsd-amd64), const SIOCGVH ideal-int
+pkg syscall (netbsd-amd64), const SIOCIFCREATE ideal-int
+pkg syscall (netbsd-amd64), const SIOCIFDESTROY ideal-int
+pkg syscall (netbsd-amd64), const SIOCIFGCLONERS ideal-int
+pkg syscall (netbsd-amd64), const SIOCINITIFADDR ideal-int
+pkg syscall (netbsd-amd64), const SIOCSDRVSPEC ideal-int
+pkg syscall (netbsd-amd64), const SIOCSETPFSYNC ideal-int
+pkg syscall (netbsd-amd64), const SIOCSHIWAT ideal-int
+pkg syscall (netbsd-amd64), const SIOCSIFADDR ideal-int
+pkg syscall (netbsd-amd64), const SIOCSIFADDRPREF ideal-int
+pkg syscall (netbsd-amd64), const SIOCSIFBRDADDR ideal-int
+pkg syscall (netbsd-amd64), const SIOCSIFCAP ideal-int
+pkg syscall (netbsd-amd64), const SIOCSIFDSTADDR ideal-int
+pkg syscall (netbsd-amd64), const SIOCSIFFLAGS ideal-int
+pkg syscall (netbsd-amd64), const SIOCSIFGENERIC ideal-int
+pkg syscall (netbsd-amd64), const SIOCSIFMEDIA ideal-int
+pkg syscall (netbsd-amd64), const SIOCSIFMETRIC ideal-int
+pkg syscall (netbsd-amd64), const SIOCSIFMTU ideal-int
+pkg syscall (netbsd-amd64), const SIOCSIFNETMASK ideal-int
+pkg syscall (netbsd-amd64), const SIOCSIFPHYADDR ideal-int
+pkg syscall (netbsd-amd64), const SIOCSLIFPHYADDR ideal-int
+pkg syscall (netbsd-amd64), const SIOCSLINKSTR ideal-int
+pkg syscall (netbsd-amd64), const SIOCSLOWAT ideal-int
+pkg syscall (netbsd-amd64), const SIOCSPGRP ideal-int
+pkg syscall (netbsd-amd64), const SIOCSVH ideal-int
+pkg syscall (netbsd-amd64), const SIOCZIFDATA ideal-int
+pkg syscall (netbsd-amd64), const SOCK_CLOEXEC ideal-int
+pkg syscall (netbsd-amd64), const SOCK_FLAGS_MASK ideal-int
+pkg syscall (netbsd-amd64), const SOCK_NONBLOCK ideal-int
+pkg syscall (netbsd-amd64), const SOCK_NOSIGPIPE ideal-int
+pkg syscall (netbsd-amd64), const SOCK_RDM ideal-int
+pkg syscall (netbsd-amd64), const SO_ACCEPTCONN ideal-int
+pkg syscall (netbsd-amd64), const SO_ACCEPTFILTER ideal-int
+pkg syscall (netbsd-amd64), const SO_DEBUG ideal-int
+pkg syscall (netbsd-amd64), const SO_ERROR ideal-int
+pkg syscall (netbsd-amd64), const SO_NOHEADER ideal-int
+pkg syscall (netbsd-amd64), const SO_NOSIGPIPE ideal-int
+pkg syscall (netbsd-amd64), const SO_OOBINLINE ideal-int
+pkg syscall (netbsd-amd64), const SO_OVERFLOWED ideal-int
+pkg syscall (netbsd-amd64), const SO_RCVLOWAT ideal-int
+pkg syscall (netbsd-amd64), const SO_RCVTIMEO ideal-int
+pkg syscall (netbsd-amd64), const SO_REUSEPORT ideal-int
+pkg syscall (netbsd-amd64), const SO_SNDLOWAT ideal-int
+pkg syscall (netbsd-amd64), const SO_SNDTIMEO ideal-int
+pkg syscall (netbsd-amd64), const SO_TIMESTAMP ideal-int
+pkg syscall (netbsd-amd64), const SO_TYPE ideal-int
+pkg syscall (netbsd-amd64), const SO_USELOOPBACK ideal-int
+pkg syscall (netbsd-amd64), const SYSCTL_VERSION ideal-int
+pkg syscall (netbsd-amd64), const SYSCTL_VERS_0 ideal-int
+pkg syscall (netbsd-amd64), const SYSCTL_VERS_1 ideal-int
+pkg syscall (netbsd-amd64), const SYSCTL_VERS_MASK ideal-int
+pkg syscall (netbsd-amd64), const SYS_ACCEPT ideal-int
+pkg syscall (netbsd-amd64), const SYS_ACCESS ideal-int
+pkg syscall (netbsd-amd64), const SYS_ACCT ideal-int
+pkg syscall (netbsd-amd64), const SYS_ADJTIME ideal-int
+pkg syscall (netbsd-amd64), const SYS_BIND ideal-int
+pkg syscall (netbsd-amd64), const SYS_BREAK ideal-int
+pkg syscall (netbsd-amd64), const SYS_CHDIR ideal-int
+pkg syscall (netbsd-amd64), const SYS_CHFLAGS ideal-int
+pkg syscall (netbsd-amd64), const SYS_CHMOD ideal-int
+pkg syscall (netbsd-amd64), const SYS_CHOWN ideal-int
+pkg syscall (netbsd-amd64), const SYS_CHROOT ideal-int
+pkg syscall (netbsd-amd64), const SYS_CLOCK_GETRES ideal-int
+pkg syscall (netbsd-amd64), const SYS_CLOCK_GETTIME ideal-int
+pkg syscall (netbsd-amd64), const SYS_CLOCK_SETTIME ideal-int
+pkg syscall (netbsd-amd64), const SYS_CLOSE ideal-int
+pkg syscall (netbsd-amd64), const SYS_CONNECT ideal-int
+pkg syscall (netbsd-amd64), const SYS_DUP ideal-int
+pkg syscall (netbsd-amd64), const SYS_DUP2 ideal-int
+pkg syscall (netbsd-amd64), const SYS_DUP3 ideal-int
+pkg syscall (netbsd-amd64), const SYS_EXECVE ideal-int
+pkg syscall (netbsd-amd64), const SYS_EXIT ideal-int
+pkg syscall (netbsd-amd64), const SYS_EXTATTRCTL ideal-int
+pkg syscall (netbsd-amd64), const SYS_EXTATTR_DELETE_FD ideal-int
+pkg syscall (netbsd-amd64), const SYS_EXTATTR_DELETE_FILE ideal-int
+pkg syscall (netbsd-amd64), const SYS_EXTATTR_DELETE_LINK ideal-int
+pkg syscall (netbsd-amd64), const SYS_EXTATTR_GET_FD ideal-int
+pkg syscall (netbsd-amd64), const SYS_EXTATTR_GET_FILE ideal-int
+pkg syscall (netbsd-amd64), const SYS_EXTATTR_GET_LINK ideal-int
+pkg syscall (netbsd-amd64), const SYS_EXTATTR_LIST_FD ideal-int
+pkg syscall (netbsd-amd64), const SYS_EXTATTR_LIST_FILE ideal-int
+pkg syscall (netbsd-amd64), const SYS_EXTATTR_LIST_LINK ideal-int
+pkg syscall (netbsd-amd64), const SYS_EXTATTR_SET_FD ideal-int
+pkg syscall (netbsd-amd64), const SYS_EXTATTR_SET_FILE ideal-int
+pkg syscall (netbsd-amd64), const SYS_EXTATTR_SET_LINK ideal-int
+pkg syscall (netbsd-amd64), const SYS_FACCESSAT ideal-int
+pkg syscall (netbsd-amd64), const SYS_FCHDIR ideal-int
+pkg syscall (netbsd-amd64), const SYS_FCHFLAGS ideal-int
+pkg syscall (netbsd-amd64), const SYS_FCHMOD ideal-int
+pkg syscall (netbsd-amd64), const SYS_FCHMODAT ideal-int
+pkg syscall (netbsd-amd64), const SYS_FCHOWN ideal-int
+pkg syscall (netbsd-amd64), const SYS_FCHOWNAT ideal-int
+pkg syscall (netbsd-amd64), const SYS_FCHROOT ideal-int
+pkg syscall (netbsd-amd64), const SYS_FCNTL ideal-int
+pkg syscall (netbsd-amd64), const SYS_FDATASYNC ideal-int
+pkg syscall (netbsd-amd64), const SYS_FEXECVE ideal-int
+pkg syscall (netbsd-amd64), const SYS_FGETXATTR ideal-int
+pkg syscall (netbsd-amd64), const SYS_FHSTAT ideal-int
+pkg syscall (netbsd-amd64), const SYS_FKTRACE ideal-int
+pkg syscall (netbsd-amd64), const SYS_FLISTXATTR ideal-int
+pkg syscall (netbsd-amd64), const SYS_FLOCK ideal-int
+pkg syscall (netbsd-amd64), const SYS_FORK ideal-int
+pkg syscall (netbsd-amd64), const SYS_FPATHCONF ideal-int
+pkg syscall (netbsd-amd64), const SYS_FREMOVEXATTR ideal-int
+pkg syscall (netbsd-amd64), const SYS_FSETXATTR ideal-int
+pkg syscall (netbsd-amd64), const SYS_FSTAT ideal-int
+pkg syscall (netbsd-amd64), const SYS_FSTATAT ideal-int
+pkg syscall (netbsd-amd64), const SYS_FSTATVFS1 ideal-int
+pkg syscall (netbsd-amd64), const SYS_FSYNC ideal-int
+pkg syscall (netbsd-amd64), const SYS_FSYNC_RANGE ideal-int
+pkg syscall (netbsd-amd64), const SYS_FTRUNCATE ideal-int
+pkg syscall (netbsd-amd64), const SYS_FUTIMENS ideal-int
+pkg syscall (netbsd-amd64), const SYS_FUTIMES ideal-int
+pkg syscall (netbsd-amd64), const SYS_GETCONTEXT ideal-int
+pkg syscall (netbsd-amd64), const SYS_GETDENTS ideal-int
+pkg syscall (netbsd-amd64), const SYS_GETEGID ideal-int
+pkg syscall (netbsd-amd64), const SYS_GETEUID ideal-int
+pkg syscall (netbsd-amd64), const SYS_GETFH ideal-int
+pkg syscall (netbsd-amd64), const SYS_GETGID ideal-int
+pkg syscall (netbsd-amd64), const SYS_GETGROUPS ideal-int
+pkg syscall (netbsd-amd64), const SYS_GETITIMER ideal-int
+pkg syscall (netbsd-amd64), const SYS_GETPEERNAME ideal-int
+pkg syscall (netbsd-amd64), const SYS_GETPGID ideal-int
+pkg syscall (netbsd-amd64), const SYS_GETPGRP ideal-int
+pkg syscall (netbsd-amd64), const SYS_GETPID ideal-int
+pkg syscall (netbsd-amd64), const SYS_GETPPID ideal-int
+pkg syscall (netbsd-amd64), const SYS_GETPRIORITY ideal-int
+pkg syscall (netbsd-amd64), const SYS_GETRLIMIT ideal-int
+pkg syscall (netbsd-amd64), const SYS_GETRUSAGE ideal-int
+pkg syscall (netbsd-amd64), const SYS_GETSID ideal-int
+pkg syscall (netbsd-amd64), const SYS_GETSOCKNAME ideal-int
+pkg syscall (netbsd-amd64), const SYS_GETSOCKOPT ideal-int
+pkg syscall (netbsd-amd64), const SYS_GETTIMEOFDAY ideal-int
+pkg syscall (netbsd-amd64), const SYS_GETUID ideal-int
+pkg syscall (netbsd-amd64), const SYS_GETVFSSTAT ideal-int
+pkg syscall (netbsd-amd64), const SYS_GETXATTR ideal-int
+pkg syscall (netbsd-amd64), const SYS_IOCTL ideal-int
+pkg syscall (netbsd-amd64), const SYS_ISSETUGID ideal-int
+pkg syscall (netbsd-amd64), const SYS_KEVENT ideal-int
+pkg syscall (netbsd-amd64), const SYS_KILL ideal-int
+pkg syscall (netbsd-amd64), const SYS_KQUEUE ideal-int
+pkg syscall (netbsd-amd64), const SYS_KQUEUE1 ideal-int
+pkg syscall (netbsd-amd64), const SYS_KTRACE ideal-int
+pkg syscall (netbsd-amd64), const SYS_LCHFLAGS ideal-int
+pkg syscall (netbsd-amd64), const SYS_LCHMOD ideal-int
+pkg syscall (netbsd-amd64), const SYS_LCHOWN ideal-int
+pkg syscall (netbsd-amd64), const SYS_LGETXATTR ideal-int
+pkg syscall (netbsd-amd64), const SYS_LINK ideal-int
+pkg syscall (netbsd-amd64), const SYS_LINKAT ideal-int
+pkg syscall (netbsd-amd64), const SYS_LISTEN ideal-int
+pkg syscall (netbsd-amd64), const SYS_LISTXATTR ideal-int
+pkg syscall (netbsd-amd64), const SYS_LLISTXATTR ideal-int
+pkg syscall (netbsd-amd64), const SYS_LREMOVEXATTR ideal-int
+pkg syscall (netbsd-amd64), const SYS_LSEEK ideal-int
+pkg syscall (netbsd-amd64), const SYS_LSETXATTR ideal-int
+pkg syscall (netbsd-amd64), const SYS_LSTAT ideal-int
+pkg syscall (netbsd-amd64), const SYS_LUTIMES ideal-int
+pkg syscall (netbsd-amd64), const SYS_MADVISE ideal-int
+pkg syscall (netbsd-amd64), const SYS_MINCORE ideal-int
+pkg syscall (netbsd-amd64), const SYS_MINHERIT ideal-int
+pkg syscall (netbsd-amd64), const SYS_MKDIR ideal-int
+pkg syscall (netbsd-amd64), const SYS_MKDIRAT ideal-int
+pkg syscall (netbsd-amd64), const SYS_MKFIFO ideal-int
+pkg syscall (netbsd-amd64), const SYS_MKFIFOAT ideal-int
+pkg syscall (netbsd-amd64), const SYS_MKNOD ideal-int
+pkg syscall (netbsd-amd64), const SYS_MKNODAT ideal-int
+pkg syscall (netbsd-amd64), const SYS_MLOCK ideal-int
+pkg syscall (netbsd-amd64), const SYS_MLOCKALL ideal-int
+pkg syscall (netbsd-amd64), const SYS_MMAP ideal-int
+pkg syscall (netbsd-amd64), const SYS_MODCTL ideal-int
+pkg syscall (netbsd-amd64), const SYS_MOUNT ideal-int
+pkg syscall (netbsd-amd64), const SYS_MPROTECT ideal-int
+pkg syscall (netbsd-amd64), const SYS_MREMAP ideal-int
+pkg syscall (netbsd-amd64), const SYS_MSGCTL ideal-int
+pkg syscall (netbsd-amd64), const SYS_MSGGET ideal-int
+pkg syscall (netbsd-amd64), const SYS_MSGRCV ideal-int
+pkg syscall (netbsd-amd64), const SYS_MSGSND ideal-int
+pkg syscall (netbsd-amd64), const SYS_MUNLOCK ideal-int
+pkg syscall (netbsd-amd64), const SYS_MUNLOCKALL ideal-int
+pkg syscall (netbsd-amd64), const SYS_MUNMAP ideal-int
+pkg syscall (netbsd-amd64), const SYS_NANOSLEEP ideal-int
+pkg syscall (netbsd-amd64), const SYS_NTP_ADJTIME ideal-int
+pkg syscall (netbsd-amd64), const SYS_NTP_GETTIME ideal-int
+pkg syscall (netbsd-amd64), const SYS_OPEN ideal-int
+pkg syscall (netbsd-amd64), const SYS_OPENAT ideal-int
+pkg syscall (netbsd-amd64), const SYS_PACCEPT ideal-int
+pkg syscall (netbsd-amd64), const SYS_PATHCONF ideal-int
+pkg syscall (netbsd-amd64), const SYS_PIPE ideal-int
+pkg syscall (netbsd-amd64), const SYS_PIPE2 ideal-int
+pkg syscall (netbsd-amd64), const SYS_PMC_CONTROL ideal-int
+pkg syscall (netbsd-amd64), const SYS_PMC_GET_INFO ideal-int
+pkg syscall (netbsd-amd64), const SYS_POLL ideal-int
+pkg syscall (netbsd-amd64), const SYS_POLLTS ideal-int
+pkg syscall (netbsd-amd64), const SYS_POSIX_FADVISE ideal-int
+pkg syscall (netbsd-amd64), const SYS_POSIX_SPAWN ideal-int
+pkg syscall (netbsd-amd64), const SYS_PREAD ideal-int
+pkg syscall (netbsd-amd64), const SYS_PREADV ideal-int
+pkg syscall (netbsd-amd64), const SYS_PROFIL ideal-int
+pkg syscall (netbsd-amd64), const SYS_PSELECT ideal-int
+pkg syscall (netbsd-amd64), const SYS_PSET_ASSIGN ideal-int
+pkg syscall (netbsd-amd64), const SYS_PSET_CREATE ideal-int
+pkg syscall (netbsd-amd64), const SYS_PSET_DESTROY ideal-int
+pkg syscall (netbsd-amd64), const SYS_PTRACE ideal-int
+pkg syscall (netbsd-amd64), const SYS_PWRITE ideal-int
+pkg syscall (netbsd-amd64), const SYS_PWRITEV ideal-int
+pkg syscall (netbsd-amd64), const SYS_RASCTL ideal-int
+pkg syscall (netbsd-amd64), const SYS_READ ideal-int
+pkg syscall (netbsd-amd64), const SYS_READLINK ideal-int
+pkg syscall (netbsd-amd64), const SYS_READLINKAT ideal-int
+pkg syscall (netbsd-amd64), const SYS_READV ideal-int
+pkg syscall (netbsd-amd64), const SYS_REBOOT ideal-int
+pkg syscall (netbsd-amd64), const SYS_RECVFROM ideal-int
+pkg syscall (netbsd-amd64), const SYS_RECVMMSG ideal-int
+pkg syscall (netbsd-amd64), const SYS_RECVMSG ideal-int
+pkg syscall (netbsd-amd64), const SYS_REMOVEXATTR ideal-int
+pkg syscall (netbsd-amd64), const SYS_RENAME ideal-int
+pkg syscall (netbsd-amd64), const SYS_RENAMEAT ideal-int
+pkg syscall (netbsd-amd64), const SYS_REVOKE ideal-int
+pkg syscall (netbsd-amd64), const SYS_RMDIR ideal-int
+pkg syscall (netbsd-amd64), const SYS_SBRK ideal-int
+pkg syscall (netbsd-amd64), const SYS_SCHED_YIELD ideal-int
+pkg syscall (netbsd-amd64), const SYS_SELECT ideal-int
+pkg syscall (netbsd-amd64), const SYS_SEMCONFIG ideal-int
+pkg syscall (netbsd-amd64), const SYS_SEMGET ideal-int
+pkg syscall (netbsd-amd64), const SYS_SEMOP ideal-int
+pkg syscall (netbsd-amd64), const SYS_SENDMMSG ideal-int
+pkg syscall (netbsd-amd64), const SYS_SENDMSG ideal-int
+pkg syscall (netbsd-amd64), const SYS_SENDTO ideal-int
+pkg syscall (netbsd-amd64), const SYS_SETCONTEXT ideal-int
+pkg syscall (netbsd-amd64), const SYS_SETEGID ideal-int
+pkg syscall (netbsd-amd64), const SYS_SETEUID ideal-int
+pkg syscall (netbsd-amd64), const SYS_SETGID ideal-int
+pkg syscall (netbsd-amd64), const SYS_SETGROUPS ideal-int
+pkg syscall (netbsd-amd64), const SYS_SETITIMER ideal-int
+pkg syscall (netbsd-amd64), const SYS_SETPGID ideal-int
+pkg syscall (netbsd-amd64), const SYS_SETPRIORITY ideal-int
+pkg syscall (netbsd-amd64), const SYS_SETREGID ideal-int
+pkg syscall (netbsd-amd64), const SYS_SETREUID ideal-int
+pkg syscall (netbsd-amd64), const SYS_SETRLIMIT ideal-int
+pkg syscall (netbsd-amd64), const SYS_SETSID ideal-int
+pkg syscall (netbsd-amd64), const SYS_SETSOCKOPT ideal-int
+pkg syscall (netbsd-amd64), const SYS_SETTIMEOFDAY ideal-int
+pkg syscall (netbsd-amd64), const SYS_SETUID ideal-int
+pkg syscall (netbsd-amd64), const SYS_SETXATTR ideal-int
+pkg syscall (netbsd-amd64), const SYS_SHMAT ideal-int
+pkg syscall (netbsd-amd64), const SYS_SHMCTL ideal-int
+pkg syscall (netbsd-amd64), const SYS_SHMDT ideal-int
+pkg syscall (netbsd-amd64), const SYS_SHMGET ideal-int
+pkg syscall (netbsd-amd64), const SYS_SHUTDOWN ideal-int
+pkg syscall (netbsd-amd64), const SYS_SIGQUEUEINFO ideal-int
+pkg syscall (netbsd-amd64), const SYS_SOCKET ideal-int
+pkg syscall (netbsd-amd64), const SYS_SOCKETPAIR ideal-int
+pkg syscall (netbsd-amd64), const SYS_SSTK ideal-int
+pkg syscall (netbsd-amd64), const SYS_STAT ideal-int
+pkg syscall (netbsd-amd64), const SYS_STATVFS1 ideal-int
+pkg syscall (netbsd-amd64), const SYS_SWAPCTL ideal-int
+pkg syscall (netbsd-amd64), const SYS_SYMLINK ideal-int
+pkg syscall (netbsd-amd64), const SYS_SYMLINKAT ideal-int
+pkg syscall (netbsd-amd64), const SYS_SYNC ideal-int
+pkg syscall (netbsd-amd64), const SYS_SYSARCH ideal-int
+pkg syscall (netbsd-amd64), const SYS_TIMER_CREATE ideal-int
+pkg syscall (netbsd-amd64), const SYS_TIMER_DELETE ideal-int
+pkg syscall (netbsd-amd64), const SYS_TIMER_GETOVERRUN ideal-int
+pkg syscall (netbsd-amd64), const SYS_TIMER_GETTIME ideal-int
+pkg syscall (netbsd-amd64), const SYS_TIMER_SETTIME ideal-int
+pkg syscall (netbsd-amd64), const SYS_TRUNCATE ideal-int
+pkg syscall (netbsd-amd64), const SYS_UMASK ideal-int
+pkg syscall (netbsd-amd64), const SYS_UNDELETE ideal-int
+pkg syscall (netbsd-amd64), const SYS_UNLINK ideal-int
+pkg syscall (netbsd-amd64), const SYS_UNLINKAT ideal-int
+pkg syscall (netbsd-amd64), const SYS_UNMOUNT ideal-int
+pkg syscall (netbsd-amd64), const SYS_UTIMENSAT ideal-int
+pkg syscall (netbsd-amd64), const SYS_UTIMES ideal-int
+pkg syscall (netbsd-amd64), const SYS_UTRACE ideal-int
+pkg syscall (netbsd-amd64), const SYS_UUIDGEN ideal-int
+pkg syscall (netbsd-amd64), const SYS_VADVISE ideal-int
+pkg syscall (netbsd-amd64), const SYS_VFORK ideal-int
+pkg syscall (netbsd-amd64), const SYS_WAIT4 ideal-int
+pkg syscall (netbsd-amd64), const SYS_WRITE ideal-int
+pkg syscall (netbsd-amd64), const SYS_WRITEV ideal-int
+pkg syscall (netbsd-amd64), const SYS__LWP_CONTINUE ideal-int
+pkg syscall (netbsd-amd64), const SYS__LWP_CREATE ideal-int
+pkg syscall (netbsd-amd64), const SYS__LWP_CTL ideal-int
+pkg syscall (netbsd-amd64), const SYS__LWP_DETACH ideal-int
+pkg syscall (netbsd-amd64), const SYS__LWP_EXIT ideal-int
+pkg syscall (netbsd-amd64), const SYS__LWP_GETNAME ideal-int
+pkg syscall (netbsd-amd64), const SYS__LWP_GETPRIVATE ideal-int
+pkg syscall (netbsd-amd64), const SYS__LWP_KILL ideal-int
+pkg syscall (netbsd-amd64), const SYS__LWP_PARK ideal-int
+pkg syscall (netbsd-amd64), const SYS__LWP_SELF ideal-int
+pkg syscall (netbsd-amd64), const SYS__LWP_SETNAME ideal-int
+pkg syscall (netbsd-amd64), const SYS__LWP_SETPRIVATE ideal-int
+pkg syscall (netbsd-amd64), const SYS__LWP_SUSPEND ideal-int
+pkg syscall (netbsd-amd64), const SYS__LWP_UNPARK ideal-int
+pkg syscall (netbsd-amd64), const SYS__LWP_UNPARK_ALL ideal-int
+pkg syscall (netbsd-amd64), const SYS__LWP_WAIT ideal-int
+pkg syscall (netbsd-amd64), const SYS__LWP_WAKEUP ideal-int
+pkg syscall (netbsd-amd64), const SYS__PSET_BIND ideal-int
+pkg syscall (netbsd-amd64), const SYS__SCHED_GETAFFINITY ideal-int
+pkg syscall (netbsd-amd64), const SYS__SCHED_GETPARAM ideal-int
+pkg syscall (netbsd-amd64), const SYS__SCHED_SETAFFINITY ideal-int
+pkg syscall (netbsd-amd64), const SYS__SCHED_SETPARAM ideal-int
+pkg syscall (netbsd-amd64), const SYS___CLONE ideal-int
+pkg syscall (netbsd-amd64), const SYS___GETCWD ideal-int
+pkg syscall (netbsd-amd64), const SYS___GETLOGIN ideal-int
+pkg syscall (netbsd-amd64), const SYS___POSIX_CHOWN ideal-int
+pkg syscall (netbsd-amd64), const SYS___POSIX_FCHOWN ideal-int
+pkg syscall (netbsd-amd64), const SYS___POSIX_LCHOWN ideal-int
+pkg syscall (netbsd-amd64), const SYS___POSIX_RENAME ideal-int
+pkg syscall (netbsd-amd64), const SYS___QUOTACTL ideal-int
+pkg syscall (netbsd-amd64), const SYS___SEMCTL ideal-int
+pkg syscall (netbsd-amd64), const SYS___SETLOGIN ideal-int
+pkg syscall (netbsd-amd64), const SYS___SIGACTION_SIGTRAMP ideal-int
+pkg syscall (netbsd-amd64), const SYS___SIGTIMEDWAIT ideal-int
+pkg syscall (netbsd-amd64), const SYS___SYSCTL ideal-int
+pkg syscall (netbsd-amd64), const S_ARCH1 ideal-int
+pkg syscall (netbsd-amd64), const S_ARCH2 ideal-int
+pkg syscall (netbsd-amd64), const S_BLKSIZE ideal-int
+pkg syscall (netbsd-amd64), const S_IEXEC ideal-int
+pkg syscall (netbsd-amd64), const S_IFWHT ideal-int
+pkg syscall (netbsd-amd64), const S_IREAD ideal-int
+pkg syscall (netbsd-amd64), const S_IRGRP ideal-int
+pkg syscall (netbsd-amd64), const S_IROTH ideal-int
+pkg syscall (netbsd-amd64), const S_IRWXG ideal-int
+pkg syscall (netbsd-amd64), const S_IRWXO ideal-int
+pkg syscall (netbsd-amd64), const S_IRWXU ideal-int
+pkg syscall (netbsd-amd64), const S_ISTXT ideal-int
+pkg syscall (netbsd-amd64), const S_IWGRP ideal-int
+pkg syscall (netbsd-amd64), const S_IWOTH ideal-int
+pkg syscall (netbsd-amd64), const S_IWRITE ideal-int
+pkg syscall (netbsd-amd64), const S_IXGRP ideal-int
+pkg syscall (netbsd-amd64), const S_IXOTH ideal-int
+pkg syscall (netbsd-amd64), const S_LOGIN_SET ideal-int
+pkg syscall (netbsd-amd64), const SizeofBpfHdr ideal-int
+pkg syscall (netbsd-amd64), const SizeofBpfInsn ideal-int
+pkg syscall (netbsd-amd64), const SizeofBpfProgram ideal-int
+pkg syscall (netbsd-amd64), const SizeofBpfStat ideal-int
+pkg syscall (netbsd-amd64), const SizeofBpfVersion ideal-int
+pkg syscall (netbsd-amd64), const SizeofCmsghdr ideal-int
+pkg syscall (netbsd-amd64), const SizeofICMPv6Filter = 32
+pkg syscall (netbsd-amd64), const SizeofICMPv6Filter ideal-int
+pkg syscall (netbsd-amd64), const SizeofIPMreq ideal-int
+pkg syscall (netbsd-amd64), const SizeofIPv6MTUInfo = 32
+pkg syscall (netbsd-amd64), const SizeofIPv6MTUInfo ideal-int
+pkg syscall (netbsd-amd64), const SizeofIPv6Mreq ideal-int
+pkg syscall (netbsd-amd64), const SizeofIfAnnounceMsghdr ideal-int
+pkg syscall (netbsd-amd64), const SizeofIfData ideal-int
+pkg syscall (netbsd-amd64), const SizeofIfMsghdr ideal-int
+pkg syscall (netbsd-amd64), const SizeofIfaMsghdr ideal-int
+pkg syscall (netbsd-amd64), const SizeofInet6Pktinfo ideal-int
+pkg syscall (netbsd-amd64), const SizeofLinger ideal-int
+pkg syscall (netbsd-amd64), const SizeofMsghdr ideal-int
+pkg syscall (netbsd-amd64), const SizeofRtMetrics ideal-int
+pkg syscall (netbsd-amd64), const SizeofRtMsghdr ideal-int
+pkg syscall (netbsd-amd64), const SizeofSockaddrAny ideal-int
+pkg syscall (netbsd-amd64), const SizeofSockaddrDatalink ideal-int
+pkg syscall (netbsd-amd64), const SizeofSockaddrInet4 ideal-int
+pkg syscall (netbsd-amd64), const SizeofSockaddrInet6 ideal-int
+pkg syscall (netbsd-amd64), const SizeofSockaddrUnix ideal-int
+pkg syscall (netbsd-amd64), const TCIFLUSH ideal-int
+pkg syscall (netbsd-amd64), const TCIOFLUSH ideal-int
+pkg syscall (netbsd-amd64), const TCOFLUSH ideal-int
+pkg syscall (netbsd-amd64), const TCP_CONGCTL ideal-int
+pkg syscall (netbsd-amd64), const TCP_KEEPCNT ideal-int
+pkg syscall (netbsd-amd64), const TCP_KEEPIDLE ideal-int
+pkg syscall (netbsd-amd64), const TCP_KEEPINIT ideal-int
+pkg syscall (netbsd-amd64), const TCP_KEEPINTVL ideal-int
+pkg syscall (netbsd-amd64), const TCP_MAXBURST ideal-int
+pkg syscall (netbsd-amd64), const TCP_MAXSEG ideal-int
+pkg syscall (netbsd-amd64), const TCP_MAXWIN ideal-int
+pkg syscall (netbsd-amd64), const TCP_MAX_WINSHIFT ideal-int
+pkg syscall (netbsd-amd64), const TCP_MD5SIG ideal-int
+pkg syscall (netbsd-amd64), const TCP_MINMSS ideal-int
+pkg syscall (netbsd-amd64), const TCP_MSS ideal-int
+pkg syscall (netbsd-amd64), const TCSAFLUSH ideal-int
+pkg syscall (netbsd-amd64), const TIOCCBRK ideal-int
+pkg syscall (netbsd-amd64), const TIOCCDTR ideal-int
+pkg syscall (netbsd-amd64), const TIOCCONS ideal-int
+pkg syscall (netbsd-amd64), const TIOCDCDTIMESTAMP ideal-int
+pkg syscall (netbsd-amd64), const TIOCDRAIN ideal-int
+pkg syscall (netbsd-amd64), const TIOCEXCL ideal-int
+pkg syscall (netbsd-amd64), const TIOCEXT ideal-int
+pkg syscall (netbsd-amd64), const TIOCFLAG_CDTRCTS ideal-int
+pkg syscall (netbsd-amd64), const TIOCFLAG_CLOCAL ideal-int
+pkg syscall (netbsd-amd64), const TIOCFLAG_CRTSCTS ideal-int
+pkg syscall (netbsd-amd64), const TIOCFLAG_MDMBUF ideal-int
+pkg syscall (netbsd-amd64), const TIOCFLAG_SOFTCAR ideal-int
+pkg syscall (netbsd-amd64), const TIOCFLUSH ideal-int
+pkg syscall (netbsd-amd64), const TIOCGETA ideal-int
+pkg syscall (netbsd-amd64), const TIOCGETD ideal-int
+pkg syscall (netbsd-amd64), const TIOCGFLAGS ideal-int
+pkg syscall (netbsd-amd64), const TIOCGLINED ideal-int
+pkg syscall (netbsd-amd64), const TIOCGPGRP ideal-int
+pkg syscall (netbsd-amd64), const TIOCGQSIZE ideal-int
+pkg syscall (netbsd-amd64), const TIOCGRANTPT ideal-int
+pkg syscall (netbsd-amd64), const TIOCGSID ideal-int
+pkg syscall (netbsd-amd64), const TIOCGSIZE ideal-int
+pkg syscall (netbsd-amd64), const TIOCGWINSZ ideal-int
+pkg syscall (netbsd-amd64), const TIOCMBIC ideal-int
+pkg syscall (netbsd-amd64), const TIOCMBIS ideal-int
+pkg syscall (netbsd-amd64), const TIOCMGET ideal-int
+pkg syscall (netbsd-amd64), const TIOCMSET ideal-int
+pkg syscall (netbsd-amd64), const TIOCM_CAR ideal-int
+pkg syscall (netbsd-amd64), const TIOCM_CD ideal-int
+pkg syscall (netbsd-amd64), const TIOCM_CTS ideal-int
+pkg syscall (netbsd-amd64), const TIOCM_DSR ideal-int
+pkg syscall (netbsd-amd64), const TIOCM_DTR ideal-int
+pkg syscall (netbsd-amd64), const TIOCM_LE ideal-int
+pkg syscall (netbsd-amd64), const TIOCM_RI ideal-int
+pkg syscall (netbsd-amd64), const TIOCM_RNG ideal-int
+pkg syscall (netbsd-amd64), const TIOCM_RTS ideal-int
+pkg syscall (netbsd-amd64), const TIOCM_SR ideal-int
+pkg syscall (netbsd-amd64), const TIOCM_ST ideal-int
+pkg syscall (netbsd-amd64), const TIOCNOTTY ideal-int
+pkg syscall (netbsd-amd64), const TIOCNXCL ideal-int
+pkg syscall (netbsd-amd64), const TIOCOUTQ ideal-int
+pkg syscall (netbsd-amd64), const TIOCPKT ideal-int
+pkg syscall (netbsd-amd64), const TIOCPKT_DATA ideal-int
+pkg syscall (netbsd-amd64), const TIOCPKT_DOSTOP ideal-int
+pkg syscall (netbsd-amd64), const TIOCPKT_FLUSHREAD ideal-int
+pkg syscall (netbsd-amd64), const TIOCPKT_FLUSHWRITE ideal-int
+pkg syscall (netbsd-amd64), const TIOCPKT_IOCTL ideal-int
+pkg syscall (netbsd-amd64), const TIOCPKT_NOSTOP ideal-int
+pkg syscall (netbsd-amd64), const TIOCPKT_START ideal-int
+pkg syscall (netbsd-amd64), const TIOCPKT_STOP ideal-int
+pkg syscall (netbsd-amd64), const TIOCPTMGET ideal-int
+pkg syscall (netbsd-amd64), const TIOCPTSNAME ideal-int
+pkg syscall (netbsd-amd64), const TIOCRCVFRAME ideal-int
+pkg syscall (netbsd-amd64), const TIOCREMOTE ideal-int
+pkg syscall (netbsd-amd64), const TIOCSBRK ideal-int
+pkg syscall (netbsd-amd64), const TIOCSCTTY ideal-int
+pkg syscall (netbsd-amd64), const TIOCSDTR ideal-int
+pkg syscall (netbsd-amd64), const TIOCSETA ideal-int
+pkg syscall (netbsd-amd64), const TIOCSETAF ideal-int
+pkg syscall (netbsd-amd64), const TIOCSETAW ideal-int
+pkg syscall (netbsd-amd64), const TIOCSETD ideal-int
+pkg syscall (netbsd-amd64), const TIOCSFLAGS ideal-int
+pkg syscall (netbsd-amd64), const TIOCSIG ideal-int
+pkg syscall (netbsd-amd64), const TIOCSLINED ideal-int
+pkg syscall (netbsd-amd64), const TIOCSPGRP ideal-int
+pkg syscall (netbsd-amd64), const TIOCSQSIZE ideal-int
+pkg syscall (netbsd-amd64), const TIOCSSIZE ideal-int
+pkg syscall (netbsd-amd64), const TIOCSTART ideal-int
+pkg syscall (netbsd-amd64), const TIOCSTAT ideal-int
+pkg syscall (netbsd-amd64), const TIOCSTI ideal-int
+pkg syscall (netbsd-amd64), const TIOCSTOP ideal-int
+pkg syscall (netbsd-amd64), const TIOCSWINSZ ideal-int
+pkg syscall (netbsd-amd64), const TIOCUCNTL ideal-int
+pkg syscall (netbsd-amd64), const TIOCXMTFRAME ideal-int
+pkg syscall (netbsd-amd64), const TOSTOP ideal-int
+pkg syscall (netbsd-amd64), const VDISCARD ideal-int
+pkg syscall (netbsd-amd64), const VDSUSP ideal-int
+pkg syscall (netbsd-amd64), const VEOF ideal-int
+pkg syscall (netbsd-amd64), const VEOL ideal-int
+pkg syscall (netbsd-amd64), const VEOL2 ideal-int
+pkg syscall (netbsd-amd64), const VERASE ideal-int
+pkg syscall (netbsd-amd64), const VINTR ideal-int
+pkg syscall (netbsd-amd64), const VKILL ideal-int
+pkg syscall (netbsd-amd64), const VLNEXT ideal-int
+pkg syscall (netbsd-amd64), const VMIN ideal-int
+pkg syscall (netbsd-amd64), const VQUIT ideal-int
+pkg syscall (netbsd-amd64), const VREPRINT ideal-int
+pkg syscall (netbsd-amd64), const VSTART ideal-int
+pkg syscall (netbsd-amd64), const VSTATUS ideal-int
+pkg syscall (netbsd-amd64), const VSTOP ideal-int
+pkg syscall (netbsd-amd64), const VSUSP ideal-int
+pkg syscall (netbsd-amd64), const VTIME ideal-int
+pkg syscall (netbsd-amd64), const VWERASE ideal-int
+pkg syscall (netbsd-amd64), const WALL ideal-int
+pkg syscall (netbsd-amd64), const WALLSIG ideal-int
+pkg syscall (netbsd-amd64), const WALTSIG ideal-int
+pkg syscall (netbsd-amd64), const WCLONE ideal-int
+pkg syscall (netbsd-amd64), const WCOREFLAG ideal-int
+pkg syscall (netbsd-amd64), const WNOHANG ideal-int
+pkg syscall (netbsd-amd64), const WNOWAIT ideal-int
+pkg syscall (netbsd-amd64), const WNOZOMBIE ideal-int
+pkg syscall (netbsd-amd64), const WOPTSCHECKED ideal-int
+pkg syscall (netbsd-amd64), const WSTOPPED ideal-int
+pkg syscall (netbsd-amd64), const WUNTRACED ideal-int
+pkg syscall (netbsd-amd64), func Accept(int) (int, Sockaddr, error)
+pkg syscall (netbsd-amd64), func Access(string, uint32) error
+pkg syscall (netbsd-amd64), func Adjtime(*Timeval, *Timeval) error
+pkg syscall (netbsd-amd64), func Bind(int, Sockaddr) error
+pkg syscall (netbsd-amd64), func BpfBuflen(int) (int, error)
+pkg syscall (netbsd-amd64), func BpfDatalink(int) (int, error)
+pkg syscall (netbsd-amd64), func BpfHeadercmpl(int) (int, error)
+pkg syscall (netbsd-amd64), func BpfInterface(int, string) (string, error)
+pkg syscall (netbsd-amd64), func BpfJump(int, int, int, int) *BpfInsn
+pkg syscall (netbsd-amd64), func BpfStats(int) (*BpfStat, error)
+pkg syscall (netbsd-amd64), func BpfStmt(int, int) *BpfInsn
+pkg syscall (netbsd-amd64), func BpfTimeout(int) (*Timeval, error)
+pkg syscall (netbsd-amd64), func CheckBpfVersion(int) error
+pkg syscall (netbsd-amd64), func Chflags(string, int) error
+pkg syscall (netbsd-amd64), func Chroot(string) error
+pkg syscall (netbsd-amd64), func Close(int) error
+pkg syscall (netbsd-amd64), func CloseOnExec(int)
+pkg syscall (netbsd-amd64), func CmsgLen(int) int
+pkg syscall (netbsd-amd64), func CmsgSpace(int) int
+pkg syscall (netbsd-amd64), func Connect(int, Sockaddr) error
+pkg syscall (netbsd-amd64), func Dup(int) (int, error)
+pkg syscall (netbsd-amd64), func Dup2(int, int) error
+pkg syscall (netbsd-amd64), func Fchdir(int) error
+pkg syscall (netbsd-amd64), func Fchflags(int, int) error
+pkg syscall (netbsd-amd64), func Fchmod(int, uint32) error
+pkg syscall (netbsd-amd64), func Fchown(int, int, int) error
+pkg syscall (netbsd-amd64), func Flock(int, int) error
+pkg syscall (netbsd-amd64), func FlushBpf(int) error
+pkg syscall (netbsd-amd64), func ForkExec(string, []string, *ProcAttr) (int, error)
+pkg syscall (netbsd-amd64), func Fpathconf(int, int) (int, error)
+pkg syscall (netbsd-amd64), func Fstat(int, *Stat_t) error
+pkg syscall (netbsd-amd64), func Fsync(int) error
+pkg syscall (netbsd-amd64), func Ftruncate(int, int64) error
+pkg syscall (netbsd-amd64), func Futimes(int, []Timeval) error
+pkg syscall (netbsd-amd64), func Getdirentries(int, []uint8, *uintptr) (int, error)
+pkg syscall (netbsd-amd64), func Getpeername(int) (Sockaddr, error)
+pkg syscall (netbsd-amd64), func Getpgid(int) (int, error)
+pkg syscall (netbsd-amd64), func Getpgrp() int
+pkg syscall (netbsd-amd64), func Getpriority(int, int) (int, error)
+pkg syscall (netbsd-amd64), func Getrlimit(int, *Rlimit) error
+pkg syscall (netbsd-amd64), func Getrusage(int, *Rusage) error
+pkg syscall (netbsd-amd64), func Getsid(int) (int, error)
+pkg syscall (netbsd-amd64), func Getsockname(int) (Sockaddr, error)
+pkg syscall (netbsd-amd64), func GetsockoptByte(int, int, int) (uint8, error)
+pkg syscall (netbsd-amd64), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
+pkg syscall (netbsd-amd64), func GetsockoptIPMreq(int, int, int) (*IPMreq, error)
+pkg syscall (netbsd-amd64), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
+pkg syscall (netbsd-amd64), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error)
+pkg syscall (netbsd-amd64), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error)
+pkg syscall (netbsd-amd64), func GetsockoptInt(int, int, int) (int, error)
+pkg syscall (netbsd-amd64), func Issetugid() bool
+pkg syscall (netbsd-amd64), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error)
+pkg syscall (netbsd-amd64), func Kill(int, Signal) error
+pkg syscall (netbsd-amd64), func Kqueue() (int, error)
+pkg syscall (netbsd-amd64), func Listen(int, int) error
+pkg syscall (netbsd-amd64), func Lstat(string, *Stat_t) error
+pkg syscall (netbsd-amd64), func Mkfifo(string, uint32) error
+pkg syscall (netbsd-amd64), func Mknod(string, uint32, int) error
+pkg syscall (netbsd-amd64), func Mmap(int, int64, int, int, int) ([]uint8, error)
+pkg syscall (netbsd-amd64), func Munmap([]uint8) error
+pkg syscall (netbsd-amd64), func Nanosleep(*Timespec, *Timespec) error
+pkg syscall (netbsd-amd64), func Open(string, int, uint32) (int, error)
+pkg syscall (netbsd-amd64), func ParseDirent([]uint8, int, []string) (int, int, []string)
+pkg syscall (netbsd-amd64), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error)
+pkg syscall (netbsd-amd64), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error)
+pkg syscall (netbsd-amd64), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error)
+pkg syscall (netbsd-amd64), func ParseUnixRights(*SocketControlMessage) ([]int, error)
+pkg syscall (netbsd-amd64), func Pathconf(string, int) (int, error)
+pkg syscall (netbsd-amd64), func Pipe([]int) error
+pkg syscall (netbsd-amd64), func Pread(int, []uint8, int64) (int, error)
+pkg syscall (netbsd-amd64), func Pwrite(int, []uint8, int64) (int, error)
+pkg syscall (netbsd-amd64), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (netbsd-amd64), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (netbsd-amd64), func Read(int, []uint8) (int, error)
+pkg syscall (netbsd-amd64), func ReadDirent(int, []uint8) (int, error)
+pkg syscall (netbsd-amd64), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
+pkg syscall (netbsd-amd64), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
+pkg syscall (netbsd-amd64), func Revoke(string) error
+pkg syscall (netbsd-amd64), func RouteRIB(int, int) ([]uint8, error)
+pkg syscall (netbsd-amd64), func Seek(int, int64, int) (int64, error)
+pkg syscall (netbsd-amd64), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error
+pkg syscall (netbsd-amd64), func Sendfile(int, int, *int64, int) (int, error)
+pkg syscall (netbsd-amd64), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
+pkg syscall (netbsd-amd64), func Sendto(int, []uint8, int, Sockaddr) error
+pkg syscall (netbsd-amd64), func SetBpf(int, []BpfInsn) error
+pkg syscall (netbsd-amd64), func SetBpfBuflen(int, int) (int, error)
+pkg syscall (netbsd-amd64), func SetBpfDatalink(int, int) (int, error)
+pkg syscall (netbsd-amd64), func SetBpfHeadercmpl(int, int) error
+pkg syscall (netbsd-amd64), func SetBpfImmediate(int, int) error
+pkg syscall (netbsd-amd64), func SetBpfInterface(int, string) error
+pkg syscall (netbsd-amd64), func SetBpfPromisc(int, int) error
+pkg syscall (netbsd-amd64), func SetBpfTimeout(int, *Timeval) error
+pkg syscall (netbsd-amd64), func SetKevent(*Kevent_t, int, int, int)
+pkg syscall (netbsd-amd64), func SetNonblock(int, bool) error
+pkg syscall (netbsd-amd64), func Setegid(int) error
+pkg syscall (netbsd-amd64), func Seteuid(int) error
+pkg syscall (netbsd-amd64), func Setgid(int) error
+pkg syscall (netbsd-amd64), func Setgroups([]int) error
+pkg syscall (netbsd-amd64), func Setpgid(int, int) error
+pkg syscall (netbsd-amd64), func Setpriority(int, int, int) error
+pkg syscall (netbsd-amd64), func Setregid(int, int) error
+pkg syscall (netbsd-amd64), func Setreuid(int, int) error
+pkg syscall (netbsd-amd64), func Setrlimit(int, *Rlimit) error
+pkg syscall (netbsd-amd64), func Setsid() (int, error)
+pkg syscall (netbsd-amd64), func SetsockoptByte(int, int, int, uint8) error
+pkg syscall (netbsd-amd64), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
+pkg syscall (netbsd-amd64), func SetsockoptIPMreq(int, int, int, *IPMreq) error
+pkg syscall (netbsd-amd64), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error
+pkg syscall (netbsd-amd64), func SetsockoptInet4Addr(int, int, int, [4]uint8) error
+pkg syscall (netbsd-amd64), func SetsockoptInt(int, int, int, int) error
+pkg syscall (netbsd-amd64), func SetsockoptLinger(int, int, int, *Linger) error
+pkg syscall (netbsd-amd64), func SetsockoptString(int, int, int, string) error
+pkg syscall (netbsd-amd64), func SetsockoptTimeval(int, int, int, *Timeval) error
+pkg syscall (netbsd-amd64), func Settimeofday(*Timeval) error
+pkg syscall (netbsd-amd64), func Setuid(int) error
+pkg syscall (netbsd-amd64), func Shutdown(int, int) error
+pkg syscall (netbsd-amd64), func SlicePtrFromStrings([]string) ([]*uint8, error)
+pkg syscall (netbsd-amd64), func Socket(int, int, int) (int, error)
+pkg syscall (netbsd-amd64), func Socketpair(int, int, int) ([2]int, error)
+pkg syscall (netbsd-amd64), func Stat(string, *Stat_t) error
+pkg syscall (netbsd-amd64), func StringSlicePtr([]string) []*uint8
+pkg syscall (netbsd-amd64), func Sync() error
+pkg syscall (netbsd-amd64), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (netbsd-amd64), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (netbsd-amd64), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (netbsd-amd64), func Sysctl(string) (string, error)
+pkg syscall (netbsd-amd64), func SysctlUint32(string) (uint32, error)
+pkg syscall (netbsd-amd64), func TimevalToNsec(Timeval) int64
+pkg syscall (netbsd-amd64), func Truncate(string, int64) error
+pkg syscall (netbsd-amd64), func Umask(int) int
+pkg syscall (netbsd-amd64), func UnixRights(...int) []uint8
+pkg syscall (netbsd-amd64), func Unmount(string, int) error
+pkg syscall (netbsd-amd64), func Wait4(int, *WaitStatus, int, *Rusage) (int, error)
+pkg syscall (netbsd-amd64), func Write(int, []uint8) (int, error)
+pkg syscall (netbsd-amd64), method (*Cmsghdr) SetLen(int)
+pkg syscall (netbsd-amd64), method (*Iovec) SetLen(int)
+pkg syscall (netbsd-amd64), method (*Msghdr) SetControllen(int)
+pkg syscall (netbsd-amd64), type BpfHdr struct
+pkg syscall (netbsd-amd64), type BpfHdr struct, Caplen uint32
+pkg syscall (netbsd-amd64), type BpfHdr struct, Datalen uint32
+pkg syscall (netbsd-amd64), type BpfHdr struct, Hdrlen uint16
+pkg syscall (netbsd-amd64), type BpfHdr struct, Pad_cgo_0 [6]uint8
+pkg syscall (netbsd-amd64), type BpfHdr struct, Tstamp BpfTimeval
+pkg syscall (netbsd-amd64), type BpfInsn struct
+pkg syscall (netbsd-amd64), type BpfInsn struct, Code uint16
+pkg syscall (netbsd-amd64), type BpfInsn struct, Jf uint8
+pkg syscall (netbsd-amd64), type BpfInsn struct, Jt uint8
+pkg syscall (netbsd-amd64), type BpfInsn struct, K uint32
+pkg syscall (netbsd-amd64), type BpfProgram struct
+pkg syscall (netbsd-amd64), type BpfProgram struct, Insns *BpfInsn
+pkg syscall (netbsd-amd64), type BpfProgram struct, Len uint32
+pkg syscall (netbsd-amd64), type BpfProgram struct, Pad_cgo_0 [4]uint8
+pkg syscall (netbsd-amd64), type BpfStat struct
+pkg syscall (netbsd-amd64), type BpfStat struct, Capt uint64
+pkg syscall (netbsd-amd64), type BpfStat struct, Drop uint64
+pkg syscall (netbsd-amd64), type BpfStat struct, Padding [13]uint64
+pkg syscall (netbsd-amd64), type BpfStat struct, Recv uint64
+pkg syscall (netbsd-amd64), type BpfTimeval struct
+pkg syscall (netbsd-amd64), type BpfTimeval struct, Sec int64
+pkg syscall (netbsd-amd64), type BpfTimeval struct, Usec int64
+pkg syscall (netbsd-amd64), type BpfVersion struct
+pkg syscall (netbsd-amd64), type BpfVersion struct, Major uint16
+pkg syscall (netbsd-amd64), type BpfVersion struct, Minor uint16
+pkg syscall (netbsd-amd64), type Cmsghdr struct
+pkg syscall (netbsd-amd64), type Cmsghdr struct, Len uint32
+pkg syscall (netbsd-amd64), type Cmsghdr struct, Level int32
+pkg syscall (netbsd-amd64), type Cmsghdr struct, Type int32
+pkg syscall (netbsd-amd64), type Credential struct
+pkg syscall (netbsd-amd64), type Credential struct, Gid uint32
+pkg syscall (netbsd-amd64), type Credential struct, Groups []uint32
+pkg syscall (netbsd-amd64), type Credential struct, Uid uint32
+pkg syscall (netbsd-amd64), type Dirent struct
+pkg syscall (netbsd-amd64), type Dirent struct, Fileno uint64
+pkg syscall (netbsd-amd64), type Dirent struct, Name [512]int8
+pkg syscall (netbsd-amd64), type Dirent struct, Namlen uint16
+pkg syscall (netbsd-amd64), type Dirent struct, Pad_cgo_0 [3]uint8
+pkg syscall (netbsd-amd64), type Dirent struct, Reclen uint16
+pkg syscall (netbsd-amd64), type Dirent struct, Type uint8
+pkg syscall (netbsd-amd64), type FdSet struct
+pkg syscall (netbsd-amd64), type FdSet struct, Bits [8]uint32
+pkg syscall (netbsd-amd64), type Flock_t struct
+pkg syscall (netbsd-amd64), type Flock_t struct, Len int64
+pkg syscall (netbsd-amd64), type Flock_t struct, Pid int32
+pkg syscall (netbsd-amd64), type Flock_t struct, Start int64
+pkg syscall (netbsd-amd64), type Flock_t struct, Type int16
+pkg syscall (netbsd-amd64), type Flock_t struct, Whence int16
+pkg syscall (netbsd-amd64), type Fsid struct
+pkg syscall (netbsd-amd64), type Fsid struct, X__fsid_val [2]int32
+pkg syscall (netbsd-amd64), type ICMPv6Filter struct
+pkg syscall (netbsd-amd64), type ICMPv6Filter struct, Filt [8]uint32
+pkg syscall (netbsd-amd64), type IPv6MTUInfo struct
+pkg syscall (netbsd-amd64), type IPv6MTUInfo struct, Addr RawSockaddrInet6
+pkg syscall (netbsd-amd64), type IPv6MTUInfo struct, Mtu uint32
+pkg syscall (netbsd-amd64), type IfAnnounceMsghdr struct
+pkg syscall (netbsd-amd64), type IfAnnounceMsghdr struct, Index uint16
+pkg syscall (netbsd-amd64), type IfAnnounceMsghdr struct, Msglen uint16
+pkg syscall (netbsd-amd64), type IfAnnounceMsghdr struct, Name [16]int8
+pkg syscall (netbsd-amd64), type IfAnnounceMsghdr struct, Type uint8
+pkg syscall (netbsd-amd64), type IfAnnounceMsghdr struct, Version uint8
+pkg syscall (netbsd-amd64), type IfAnnounceMsghdr struct, What uint16
+pkg syscall (netbsd-amd64), type IfData struct
+pkg syscall (netbsd-amd64), type IfData struct, Addrlen uint8
+pkg syscall (netbsd-amd64), type IfData struct, Baudrate uint64
+pkg syscall (netbsd-amd64), type IfData struct, Collisions uint64
+pkg syscall (netbsd-amd64), type IfData struct, Hdrlen uint8
+pkg syscall (netbsd-amd64), type IfData struct, Ibytes uint64
+pkg syscall (netbsd-amd64), type IfData struct, Ierrors uint64
+pkg syscall (netbsd-amd64), type IfData struct, Imcasts uint64
+pkg syscall (netbsd-amd64), type IfData struct, Ipackets uint64
+pkg syscall (netbsd-amd64), type IfData struct, Iqdrops uint64
+pkg syscall (netbsd-amd64), type IfData struct, Lastchange Timespec
+pkg syscall (netbsd-amd64), type IfData struct, Link_state int32
+pkg syscall (netbsd-amd64), type IfData struct, Metric uint64
+pkg syscall (netbsd-amd64), type IfData struct, Mtu uint64
+pkg syscall (netbsd-amd64), type IfData struct, Noproto uint64
+pkg syscall (netbsd-amd64), type IfData struct, Obytes uint64
+pkg syscall (netbsd-amd64), type IfData struct, Oerrors uint64
+pkg syscall (netbsd-amd64), type IfData struct, Omcasts uint64
+pkg syscall (netbsd-amd64), type IfData struct, Opackets uint64
+pkg syscall (netbsd-amd64), type IfData struct, Pad_cgo_0 [1]uint8
+pkg syscall (netbsd-amd64), type IfData struct, Type uint8
+pkg syscall (netbsd-amd64), type IfMsghdr struct
+pkg syscall (netbsd-amd64), type IfMsghdr struct, Addrs int32
+pkg syscall (netbsd-amd64), type IfMsghdr struct, Data IfData
+pkg syscall (netbsd-amd64), type IfMsghdr struct, Flags int32
+pkg syscall (netbsd-amd64), type IfMsghdr struct, Index uint16
+pkg syscall (netbsd-amd64), type IfMsghdr struct, Msglen uint16
+pkg syscall (netbsd-amd64), type IfMsghdr struct, Pad_cgo_0 [2]uint8
+pkg syscall (netbsd-amd64), type IfMsghdr struct, Type uint8
+pkg syscall (netbsd-amd64), type IfMsghdr struct, Version uint8
+pkg syscall (netbsd-amd64), type IfaMsghdr struct
+pkg syscall (netbsd-amd64), type IfaMsghdr struct, Addrs int32
+pkg syscall (netbsd-amd64), type IfaMsghdr struct, Flags int32
+pkg syscall (netbsd-amd64), type IfaMsghdr struct, Index uint16
+pkg syscall (netbsd-amd64), type IfaMsghdr struct, Metric int32
+pkg syscall (netbsd-amd64), type IfaMsghdr struct, Msglen uint16
+pkg syscall (netbsd-amd64), type IfaMsghdr struct, Pad_cgo_0 [6]uint8
+pkg syscall (netbsd-amd64), type IfaMsghdr struct, Type uint8
+pkg syscall (netbsd-amd64), type IfaMsghdr struct, Version uint8
+pkg syscall (netbsd-amd64), type Inet6Pktinfo struct
+pkg syscall (netbsd-amd64), type Inet6Pktinfo struct, Addr [16]uint8
+pkg syscall (netbsd-amd64), type Inet6Pktinfo struct, Ifindex uint32
+pkg syscall (netbsd-amd64), type InterfaceAddrMessage struct
+pkg syscall (netbsd-amd64), type InterfaceAddrMessage struct, Data []uint8
+pkg syscall (netbsd-amd64), type InterfaceAddrMessage struct, Header IfaMsghdr
+pkg syscall (netbsd-amd64), type InterfaceAnnounceMessage struct
+pkg syscall (netbsd-amd64), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr
+pkg syscall (netbsd-amd64), type InterfaceMessage struct
+pkg syscall (netbsd-amd64), type InterfaceMessage struct, Data []uint8
+pkg syscall (netbsd-amd64), type InterfaceMessage struct, Header IfMsghdr
+pkg syscall (netbsd-amd64), type Iovec struct
+pkg syscall (netbsd-amd64), type Iovec struct, Base *uint8
+pkg syscall (netbsd-amd64), type Iovec struct, Len uint64
+pkg syscall (netbsd-amd64), type Kevent_t struct
+pkg syscall (netbsd-amd64), type Kevent_t struct, Data int64
+pkg syscall (netbsd-amd64), type Kevent_t struct, Fflags uint32
+pkg syscall (netbsd-amd64), type Kevent_t struct, Filter uint32
+pkg syscall (netbsd-amd64), type Kevent_t struct, Flags uint32
+pkg syscall (netbsd-amd64), type Kevent_t struct, Ident uint64
+pkg syscall (netbsd-amd64), type Kevent_t struct, Pad_cgo_0 [4]uint8
+pkg syscall (netbsd-amd64), type Kevent_t struct, Udata int64
+pkg syscall (netbsd-amd64), type Mclpool [0]uint8
+pkg syscall (netbsd-amd64), type Msghdr struct
+pkg syscall (netbsd-amd64), type Msghdr struct, Control *uint8
+pkg syscall (netbsd-amd64), type Msghdr struct, Controllen uint32
+pkg syscall (netbsd-amd64), type Msghdr struct, Flags int32
+pkg syscall (netbsd-amd64), type Msghdr struct, Iov *Iovec
+pkg syscall (netbsd-amd64), type Msghdr struct, Iovlen int32
+pkg syscall (netbsd-amd64), type Msghdr struct, Name *uint8
+pkg syscall (netbsd-amd64), type Msghdr struct, Namelen uint32
+pkg syscall (netbsd-amd64), type Msghdr struct, Pad_cgo_0 [4]uint8
+pkg syscall (netbsd-amd64), type Msghdr struct, Pad_cgo_1 [4]uint8
+pkg syscall (netbsd-amd64), type RawSockaddr struct, Data [14]int8
+pkg syscall (netbsd-amd64), type RawSockaddr struct, Family uint8
+pkg syscall (netbsd-amd64), type RawSockaddr struct, Len uint8
+pkg syscall (netbsd-amd64), type RawSockaddrAny struct, Pad [92]int8
+pkg syscall (netbsd-amd64), type RawSockaddrDatalink struct
+pkg syscall (netbsd-amd64), type RawSockaddrDatalink struct, Alen uint8
+pkg syscall (netbsd-amd64), type RawSockaddrDatalink struct, Data [12]int8
+pkg syscall (netbsd-amd64), type RawSockaddrDatalink struct, Family uint8
+pkg syscall (netbsd-amd64), type RawSockaddrDatalink struct, Index uint16
+pkg syscall (netbsd-amd64), type RawSockaddrDatalink struct, Len uint8
+pkg syscall (netbsd-amd64), type RawSockaddrDatalink struct, Nlen uint8
+pkg syscall (netbsd-amd64), type RawSockaddrDatalink struct, Slen uint8
+pkg syscall (netbsd-amd64), type RawSockaddrDatalink struct, Type uint8
+pkg syscall (netbsd-amd64), type RawSockaddrInet4 struct, Family uint8
+pkg syscall (netbsd-amd64), type RawSockaddrInet4 struct, Len uint8
+pkg syscall (netbsd-amd64), type RawSockaddrInet4 struct, Zero [8]int8
+pkg syscall (netbsd-amd64), type RawSockaddrInet6 struct, Family uint8
+pkg syscall (netbsd-amd64), type RawSockaddrInet6 struct, Len uint8
+pkg syscall (netbsd-amd64), type RawSockaddrUnix struct
+pkg syscall (netbsd-amd64), type RawSockaddrUnix struct, Family uint8
+pkg syscall (netbsd-amd64), type RawSockaddrUnix struct, Len uint8
+pkg syscall (netbsd-amd64), type RawSockaddrUnix struct, Path [104]int8
+pkg syscall (netbsd-amd64), type Rlimit struct
+pkg syscall (netbsd-amd64), type Rlimit struct, Cur uint64
+pkg syscall (netbsd-amd64), type Rlimit struct, Max uint64
+pkg syscall (netbsd-amd64), type RouteMessage struct
+pkg syscall (netbsd-amd64), type RouteMessage struct, Data []uint8
+pkg syscall (netbsd-amd64), type RouteMessage struct, Header RtMsghdr
+pkg syscall (netbsd-amd64), type RoutingMessage interface, unexported methods
+pkg syscall (netbsd-amd64), type RtMetrics struct
+pkg syscall (netbsd-amd64), type RtMetrics struct, Expire int64
+pkg syscall (netbsd-amd64), type RtMetrics struct, Hopcount uint64
+pkg syscall (netbsd-amd64), type RtMetrics struct, Locks uint64
+pkg syscall (netbsd-amd64), type RtMetrics struct, Mtu uint64
+pkg syscall (netbsd-amd64), type RtMetrics struct, Pksent int64
+pkg syscall (netbsd-amd64), type RtMetrics struct, Recvpipe uint64
+pkg syscall (netbsd-amd64), type RtMetrics struct, Rtt uint64
+pkg syscall (netbsd-amd64), type RtMetrics struct, Rttvar uint64
+pkg syscall (netbsd-amd64), type RtMetrics struct, Sendpipe uint64
+pkg syscall (netbsd-amd64), type RtMetrics struct, Ssthresh uint64
+pkg syscall (netbsd-amd64), type RtMsghdr struct
+pkg syscall (netbsd-amd64), type RtMsghdr struct, Addrs int32
+pkg syscall (netbsd-amd64), type RtMsghdr struct, Errno int32
+pkg syscall (netbsd-amd64), type RtMsghdr struct, Flags int32
+pkg syscall (netbsd-amd64), type RtMsghdr struct, Index uint16
+pkg syscall (netbsd-amd64), type RtMsghdr struct, Inits int32
+pkg syscall (netbsd-amd64), type RtMsghdr struct, Msglen uint16
+pkg syscall (netbsd-amd64), type RtMsghdr struct, Pad_cgo_0 [2]uint8
+pkg syscall (netbsd-amd64), type RtMsghdr struct, Pad_cgo_1 [4]uint8
+pkg syscall (netbsd-amd64), type RtMsghdr struct, Pid int32
+pkg syscall (netbsd-amd64), type RtMsghdr struct, Rmx RtMetrics
+pkg syscall (netbsd-amd64), type RtMsghdr struct, Seq int32
+pkg syscall (netbsd-amd64), type RtMsghdr struct, Type uint8
+pkg syscall (netbsd-amd64), type RtMsghdr struct, Use int32
+pkg syscall (netbsd-amd64), type RtMsghdr struct, Version uint8
+pkg syscall (netbsd-amd64), type Rusage struct, Idrss int64
+pkg syscall (netbsd-amd64), type Rusage struct, Inblock int64
+pkg syscall (netbsd-amd64), type Rusage struct, Isrss int64
+pkg syscall (netbsd-amd64), type Rusage struct, Ixrss int64
+pkg syscall (netbsd-amd64), type Rusage struct, Majflt int64
+pkg syscall (netbsd-amd64), type Rusage struct, Maxrss int64
+pkg syscall (netbsd-amd64), type Rusage struct, Minflt int64
+pkg syscall (netbsd-amd64), type Rusage struct, Msgrcv int64
+pkg syscall (netbsd-amd64), type Rusage struct, Msgsnd int64
+pkg syscall (netbsd-amd64), type Rusage struct, Nivcsw int64
+pkg syscall (netbsd-amd64), type Rusage struct, Nsignals int64
+pkg syscall (netbsd-amd64), type Rusage struct, Nswap int64
+pkg syscall (netbsd-amd64), type Rusage struct, Nvcsw int64
+pkg syscall (netbsd-amd64), type Rusage struct, Oublock int64
+pkg syscall (netbsd-amd64), type Rusage struct, Stime Timeval
+pkg syscall (netbsd-amd64), type Rusage struct, Utime Timeval
+pkg syscall (netbsd-amd64), type SockaddrDatalink struct
+pkg syscall (netbsd-amd64), type SockaddrDatalink struct, Alen uint8
+pkg syscall (netbsd-amd64), type SockaddrDatalink struct, Data [12]int8
+pkg syscall (netbsd-amd64), type SockaddrDatalink struct, Family uint8
+pkg syscall (netbsd-amd64), type SockaddrDatalink struct, Index uint16
+pkg syscall (netbsd-amd64), type SockaddrDatalink struct, Len uint8
+pkg syscall (netbsd-amd64), type SockaddrDatalink struct, Nlen uint8
+pkg syscall (netbsd-amd64), type SockaddrDatalink struct, Slen uint8
+pkg syscall (netbsd-amd64), type SockaddrDatalink struct, Type uint8
+pkg syscall (netbsd-amd64), type SocketControlMessage struct
+pkg syscall (netbsd-amd64), type SocketControlMessage struct, Data []uint8
+pkg syscall (netbsd-amd64), type SocketControlMessage struct, Header Cmsghdr
+pkg syscall (netbsd-amd64), type Stat_t struct
+pkg syscall (netbsd-amd64), type Stat_t struct, Atimespec Timespec
+pkg syscall (netbsd-amd64), type Stat_t struct, Birthtimespec Timespec
+pkg syscall (netbsd-amd64), type Stat_t struct, Blksize uint32
+pkg syscall (netbsd-amd64), type Stat_t struct, Blocks int64
+pkg syscall (netbsd-amd64), type Stat_t struct, Ctimespec Timespec
+pkg syscall (netbsd-amd64), type Stat_t struct, Dev uint64
+pkg syscall (netbsd-amd64), type Stat_t struct, Flags uint32
+pkg syscall (netbsd-amd64), type Stat_t struct, Gen uint32
+pkg syscall (netbsd-amd64), type Stat_t struct, Gid uint32
+pkg syscall (netbsd-amd64), type Stat_t struct, Ino uint64
+pkg syscall (netbsd-amd64), type Stat_t struct, Mode uint32
+pkg syscall (netbsd-amd64), type Stat_t struct, Mtimespec Timespec
+pkg syscall (netbsd-amd64), type Stat_t struct, Nlink uint32
+pkg syscall (netbsd-amd64), type Stat_t struct, Pad_cgo_0 [4]uint8
+pkg syscall (netbsd-amd64), type Stat_t struct, Pad_cgo_1 [4]uint8
+pkg syscall (netbsd-amd64), type Stat_t struct, Pad_cgo_2 [4]uint8
+pkg syscall (netbsd-amd64), type Stat_t struct, Rdev uint64
+pkg syscall (netbsd-amd64), type Stat_t struct, Size int64
+pkg syscall (netbsd-amd64), type Stat_t struct, Spare [2]uint32
+pkg syscall (netbsd-amd64), type Stat_t struct, Uid uint32
+pkg syscall (netbsd-amd64), type Statfs_t [0]uint8
+pkg syscall (netbsd-amd64), type SysProcAttr struct, Chroot string
+pkg syscall (netbsd-amd64), type SysProcAttr struct, Credential *Credential
+pkg syscall (netbsd-amd64), type SysProcAttr struct, Noctty bool
+pkg syscall (netbsd-amd64), type SysProcAttr struct, Ptrace bool
+pkg syscall (netbsd-amd64), type SysProcAttr struct, Setctty bool
+pkg syscall (netbsd-amd64), type SysProcAttr struct, Setpgid bool
+pkg syscall (netbsd-amd64), type SysProcAttr struct, Setsid bool
+pkg syscall (netbsd-amd64), type Sysctlnode struct
+pkg syscall (netbsd-amd64), type Sysctlnode struct, Flags uint32
+pkg syscall (netbsd-amd64), type Sysctlnode struct, Name [32]int8
+pkg syscall (netbsd-amd64), type Sysctlnode struct, Num int32
+pkg syscall (netbsd-amd64), type Sysctlnode struct, Un [16]uint8
+pkg syscall (netbsd-amd64), type Sysctlnode struct, Ver uint32
+pkg syscall (netbsd-amd64), type Sysctlnode struct, X__rsvd uint32
+pkg syscall (netbsd-amd64), type Sysctlnode struct, X_sysctl_desc [8]uint8
+pkg syscall (netbsd-amd64), type Sysctlnode struct, X_sysctl_func [8]uint8
+pkg syscall (netbsd-amd64), type Sysctlnode struct, X_sysctl_parent [8]uint8
+pkg syscall (netbsd-amd64), type Sysctlnode struct, X_sysctl_size [8]uint8
+pkg syscall (netbsd-amd64), type Timespec struct, Nsec int64
+pkg syscall (netbsd-amd64), type Timespec struct, Sec int64
+pkg syscall (netbsd-amd64), type Timeval struct, Pad_cgo_0 [4]uint8
+pkg syscall (netbsd-amd64), type Timeval struct, Sec int64
+pkg syscall (netbsd-amd64), type Timeval struct, Usec int32
+pkg syscall (netbsd-amd64), type WaitStatus uint32
+pkg syscall (netbsd-amd64), var Stderr int
+pkg syscall (netbsd-amd64), var Stdin int
+pkg syscall (netbsd-amd64), var Stdout int
+pkg syscall (netbsd-amd64-cgo), const AF_APPLETALK ideal-int
+pkg syscall (netbsd-amd64-cgo), const AF_ARP ideal-int
+pkg syscall (netbsd-amd64-cgo), const AF_BLUETOOTH ideal-int
+pkg syscall (netbsd-amd64-cgo), const AF_CCITT ideal-int
+pkg syscall (netbsd-amd64-cgo), const AF_CHAOS ideal-int
+pkg syscall (netbsd-amd64-cgo), const AF_CNT ideal-int
+pkg syscall (netbsd-amd64-cgo), const AF_COIP ideal-int
+pkg syscall (netbsd-amd64-cgo), const AF_DATAKIT ideal-int
+pkg syscall (netbsd-amd64-cgo), const AF_DECnet ideal-int
+pkg syscall (netbsd-amd64-cgo), const AF_DLI ideal-int
+pkg syscall (netbsd-amd64-cgo), const AF_E164 ideal-int
+pkg syscall (netbsd-amd64-cgo), const AF_ECMA ideal-int
+pkg syscall (netbsd-amd64-cgo), const AF_HYLINK ideal-int
+pkg syscall (netbsd-amd64-cgo), const AF_IEEE80211 ideal-int
+pkg syscall (netbsd-amd64-cgo), const AF_IMPLINK ideal-int
+pkg syscall (netbsd-amd64-cgo), const AF_IPX ideal-int
+pkg syscall (netbsd-amd64-cgo), const AF_ISDN ideal-int
+pkg syscall (netbsd-amd64-cgo), const AF_ISO ideal-int
+pkg syscall (netbsd-amd64-cgo), const AF_LAT ideal-int
+pkg syscall (netbsd-amd64-cgo), const AF_LINK ideal-int
+pkg syscall (netbsd-amd64-cgo), const AF_LOCAL ideal-int
+pkg syscall (netbsd-amd64-cgo), const AF_MAX ideal-int
+pkg syscall (netbsd-amd64-cgo), const AF_MPLS ideal-int
+pkg syscall (netbsd-amd64-cgo), const AF_NATM ideal-int
+pkg syscall (netbsd-amd64-cgo), const AF_NS ideal-int
+pkg syscall (netbsd-amd64-cgo), const AF_OROUTE ideal-int
+pkg syscall (netbsd-amd64-cgo), const AF_OSI ideal-int
+pkg syscall (netbsd-amd64-cgo), const AF_PUP ideal-int
+pkg syscall (netbsd-amd64-cgo), const AF_ROUTE ideal-int
+pkg syscall (netbsd-amd64-cgo), const AF_SNA ideal-int
+pkg syscall (netbsd-amd64-cgo), const ARPHRD_ARCNET ideal-int
+pkg syscall (netbsd-amd64-cgo), const ARPHRD_ETHER ideal-int
+pkg syscall (netbsd-amd64-cgo), const ARPHRD_FRELAY ideal-int
+pkg syscall (netbsd-amd64-cgo), const ARPHRD_IEEE1394 ideal-int
+pkg syscall (netbsd-amd64-cgo), const ARPHRD_IEEE802 ideal-int
+pkg syscall (netbsd-amd64-cgo), const ARPHRD_STRIP ideal-int
+pkg syscall (netbsd-amd64-cgo), const B0 ideal-int
+pkg syscall (netbsd-amd64-cgo), const B110 ideal-int
+pkg syscall (netbsd-amd64-cgo), const B115200 ideal-int
+pkg syscall (netbsd-amd64-cgo), const B1200 ideal-int
+pkg syscall (netbsd-amd64-cgo), const B134 ideal-int
+pkg syscall (netbsd-amd64-cgo), const B14400 ideal-int
+pkg syscall (netbsd-amd64-cgo), const B150 ideal-int
+pkg syscall (netbsd-amd64-cgo), const B1800 ideal-int
+pkg syscall (netbsd-amd64-cgo), const B19200 ideal-int
+pkg syscall (netbsd-amd64-cgo), const B200 ideal-int
+pkg syscall (netbsd-amd64-cgo), const B230400 ideal-int
+pkg syscall (netbsd-amd64-cgo), const B2400 ideal-int
+pkg syscall (netbsd-amd64-cgo), const B28800 ideal-int
+pkg syscall (netbsd-amd64-cgo), const B300 ideal-int
+pkg syscall (netbsd-amd64-cgo), const B38400 ideal-int
+pkg syscall (netbsd-amd64-cgo), const B460800 ideal-int
+pkg syscall (netbsd-amd64-cgo), const B4800 ideal-int
+pkg syscall (netbsd-amd64-cgo), const B50 ideal-int
+pkg syscall (netbsd-amd64-cgo), const B57600 ideal-int
+pkg syscall (netbsd-amd64-cgo), const B600 ideal-int
+pkg syscall (netbsd-amd64-cgo), const B7200 ideal-int
+pkg syscall (netbsd-amd64-cgo), const B75 ideal-int
+pkg syscall (netbsd-amd64-cgo), const B76800 ideal-int
+pkg syscall (netbsd-amd64-cgo), const B921600 ideal-int
+pkg syscall (netbsd-amd64-cgo), const B9600 ideal-int
+pkg syscall (netbsd-amd64-cgo), const BIOCFEEDBACK ideal-int
+pkg syscall (netbsd-amd64-cgo), const BIOCFLUSH ideal-int
+pkg syscall (netbsd-amd64-cgo), const BIOCGBLEN ideal-int
+pkg syscall (netbsd-amd64-cgo), const BIOCGDLT ideal-int
+pkg syscall (netbsd-amd64-cgo), const BIOCGDLTLIST ideal-int
+pkg syscall (netbsd-amd64-cgo), const BIOCGETIF ideal-int
+pkg syscall (netbsd-amd64-cgo), const BIOCGFEEDBACK ideal-int
+pkg syscall (netbsd-amd64-cgo), const BIOCGHDRCMPLT ideal-int
+pkg syscall (netbsd-amd64-cgo), const BIOCGRTIMEOUT ideal-int
+pkg syscall (netbsd-amd64-cgo), const BIOCGSEESENT ideal-int
+pkg syscall (netbsd-amd64-cgo), const BIOCGSTATS ideal-int
+pkg syscall (netbsd-amd64-cgo), const BIOCGSTATSOLD ideal-int
+pkg syscall (netbsd-amd64-cgo), const BIOCIMMEDIATE ideal-int
+pkg syscall (netbsd-amd64-cgo), const BIOCPROMISC ideal-int
+pkg syscall (netbsd-amd64-cgo), const BIOCSBLEN ideal-int
+pkg syscall (netbsd-amd64-cgo), const BIOCSDLT ideal-int
+pkg syscall (netbsd-amd64-cgo), const BIOCSETF ideal-int
+pkg syscall (netbsd-amd64-cgo), const BIOCSETIF ideal-int
+pkg syscall (netbsd-amd64-cgo), const BIOCSFEEDBACK ideal-int
+pkg syscall (netbsd-amd64-cgo), const BIOCSHDRCMPLT ideal-int
+pkg syscall (netbsd-amd64-cgo), const BIOCSRTIMEOUT ideal-int
+pkg syscall (netbsd-amd64-cgo), const BIOCSSEESENT ideal-int
+pkg syscall (netbsd-amd64-cgo), const BIOCSTCPF ideal-int
+pkg syscall (netbsd-amd64-cgo), const BIOCSUDPF ideal-int
+pkg syscall (netbsd-amd64-cgo), const BIOCVERSION ideal-int
+pkg syscall (netbsd-amd64-cgo), const BPF_A ideal-int
+pkg syscall (netbsd-amd64-cgo), const BPF_ABS ideal-int
+pkg syscall (netbsd-amd64-cgo), const BPF_ADD ideal-int
+pkg syscall (netbsd-amd64-cgo), const BPF_ALIGNMENT ideal-int
+pkg syscall (netbsd-amd64-cgo), const BPF_ALIGNMENT32 ideal-int
+pkg syscall (netbsd-amd64-cgo), const BPF_ALU ideal-int
+pkg syscall (netbsd-amd64-cgo), const BPF_AND ideal-int
+pkg syscall (netbsd-amd64-cgo), const BPF_B ideal-int
+pkg syscall (netbsd-amd64-cgo), const BPF_DFLTBUFSIZE ideal-int
+pkg syscall (netbsd-amd64-cgo), const BPF_DIV ideal-int
+pkg syscall (netbsd-amd64-cgo), const BPF_H ideal-int
+pkg syscall (netbsd-amd64-cgo), const BPF_IMM ideal-int
+pkg syscall (netbsd-amd64-cgo), const BPF_IND ideal-int
+pkg syscall (netbsd-amd64-cgo), const BPF_JA ideal-int
+pkg syscall (netbsd-amd64-cgo), const BPF_JEQ ideal-int
+pkg syscall (netbsd-amd64-cgo), const BPF_JGE ideal-int
+pkg syscall (netbsd-amd64-cgo), const BPF_JGT ideal-int
+pkg syscall (netbsd-amd64-cgo), const BPF_JMP ideal-int
+pkg syscall (netbsd-amd64-cgo), const BPF_JSET ideal-int
+pkg syscall (netbsd-amd64-cgo), const BPF_K ideal-int
+pkg syscall (netbsd-amd64-cgo), const BPF_LD ideal-int
+pkg syscall (netbsd-amd64-cgo), const BPF_LDX ideal-int
+pkg syscall (netbsd-amd64-cgo), const BPF_LEN ideal-int
+pkg syscall (netbsd-amd64-cgo), const BPF_LSH ideal-int
+pkg syscall (netbsd-amd64-cgo), const BPF_MAJOR_VERSION ideal-int
+pkg syscall (netbsd-amd64-cgo), const BPF_MAXBUFSIZE ideal-int
+pkg syscall (netbsd-amd64-cgo), const BPF_MAXINSNS ideal-int
+pkg syscall (netbsd-amd64-cgo), const BPF_MEM ideal-int
+pkg syscall (netbsd-amd64-cgo), const BPF_MEMWORDS ideal-int
+pkg syscall (netbsd-amd64-cgo), const BPF_MINBUFSIZE ideal-int
+pkg syscall (netbsd-amd64-cgo), const BPF_MINOR_VERSION ideal-int
+pkg syscall (netbsd-amd64-cgo), const BPF_MISC ideal-int
+pkg syscall (netbsd-amd64-cgo), const BPF_MSH ideal-int
+pkg syscall (netbsd-amd64-cgo), const BPF_MUL ideal-int
+pkg syscall (netbsd-amd64-cgo), const BPF_NEG ideal-int
+pkg syscall (netbsd-amd64-cgo), const BPF_OR ideal-int
+pkg syscall (netbsd-amd64-cgo), const BPF_RELEASE ideal-int
+pkg syscall (netbsd-amd64-cgo), const BPF_RET ideal-int
+pkg syscall (netbsd-amd64-cgo), const BPF_RSH ideal-int
+pkg syscall (netbsd-amd64-cgo), const BPF_ST ideal-int
+pkg syscall (netbsd-amd64-cgo), const BPF_STX ideal-int
+pkg syscall (netbsd-amd64-cgo), const BPF_SUB ideal-int
+pkg syscall (netbsd-amd64-cgo), const BPF_TAX ideal-int
+pkg syscall (netbsd-amd64-cgo), const BPF_TXA ideal-int
+pkg syscall (netbsd-amd64-cgo), const BPF_W ideal-int
+pkg syscall (netbsd-amd64-cgo), const BPF_X ideal-int
+pkg syscall (netbsd-amd64-cgo), const BRKINT ideal-int
+pkg syscall (netbsd-amd64-cgo), const CFLUSH ideal-int
+pkg syscall (netbsd-amd64-cgo), const CLOCAL ideal-int
+pkg syscall (netbsd-amd64-cgo), const CREAD ideal-int
+pkg syscall (netbsd-amd64-cgo), const CS5 ideal-int
+pkg syscall (netbsd-amd64-cgo), const CS6 ideal-int
+pkg syscall (netbsd-amd64-cgo), const CS7 ideal-int
+pkg syscall (netbsd-amd64-cgo), const CS8 ideal-int
+pkg syscall (netbsd-amd64-cgo), const CSIZE ideal-int
+pkg syscall (netbsd-amd64-cgo), const CSTART ideal-int
+pkg syscall (netbsd-amd64-cgo), const CSTATUS ideal-int
+pkg syscall (netbsd-amd64-cgo), const CSTOP ideal-int
+pkg syscall (netbsd-amd64-cgo), const CSTOPB ideal-int
+pkg syscall (netbsd-amd64-cgo), const CSUSP ideal-int
+pkg syscall (netbsd-amd64-cgo), const CTL_MAXNAME ideal-int
+pkg syscall (netbsd-amd64-cgo), const CTL_NET ideal-int
+pkg syscall (netbsd-amd64-cgo), const CTL_QUERY ideal-int
+pkg syscall (netbsd-amd64-cgo), const DIOCBSFLUSH ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_A429 ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_A653_ICM ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_AIRONET_HEADER ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_AOS ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_ARCNET ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_ARCNET_LINUX ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_ATM_CLIP ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_ATM_RFC1483 ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_AURORA ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_AX25 ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_AX25_KISS ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_BACNET_MS_TP ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_BLUETOOTH_HCI_H4 ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_CAN20B ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_CAN_SOCKETCAN ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_CHAOS ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_CISCO_IOS ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_C_HDLC ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_C_HDLC_WITH_DIR ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_DECT ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_DOCSIS ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_ECONET ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_EN10MB ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_EN3MB ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_ENC ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_ERF ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_ERF_ETH ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_ERF_POS ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_FC_2 ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_FC_2_WITH_FRAME_DELIMS ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_FDDI ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_FLEXRAY ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_FRELAY ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_FRELAY_WITH_DIR ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_GCOM_SERIAL ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_GCOM_T1E1 ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_GPF_F ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_GPF_T ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_GPRS_LLC ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_GSMTAP_ABIS ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_GSMTAP_UM ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_HDLC ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_HHDLC ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_HIPPI ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_IBM_SN ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_IBM_SP ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_IEEE802 ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_IEEE802_11 ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_IEEE802_11_RADIO ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_IEEE802_11_RADIO_AVS ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_IEEE802_15_4 ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_IEEE802_15_4_LINUX ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_IEEE802_15_4_NONASK_PHY ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_IEEE802_16_MAC_CPS ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_IEEE802_16_MAC_CPS_RADIO ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_IPMB ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_IPMB_LINUX ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_IPNET ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_IPV4 ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_IPV6 ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_IP_OVER_FC ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_ATM1 ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_ATM2 ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_CHDLC ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_ES ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_ETHER ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_FRELAY ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_GGSN ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_ISM ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_MFR ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_MLFR ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_MLPPP ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_MONITOR ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_PIC_PEER ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_PPP ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_PPPOE ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_PPPOE_ATM ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_SERVICES ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_ST ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_VP ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_LAPB_WITH_DIR ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_LAPD ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_LIN ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_LINUX_EVDEV ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_LINUX_IRDA ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_LINUX_LAPD ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_LINUX_SLL ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_LOOP ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_LTALK ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_MFR ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_MOST ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_MPLS ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_MTP2 ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_MTP2_WITH_PHDR ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_MTP3 ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_NULL ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_PCI_EXP ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_PFLOG ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_PFSYNC ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_PPI ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_PPP ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_PPP_BSDOS ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_PPP_ETHER ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_PPP_PPPD ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_PPP_SERIAL ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_PPP_WITH_DIR ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_PRISM_HEADER ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_PRONET ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_RAIF1 ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_RAW ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_RAWAF_MASK ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_RIO ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_SCCP ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_SITA ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_SLIP ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_SLIP_BSDOS ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_SUNATM ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_SYMANTEC_FIREWALL ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_TZSP ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_USB ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_USB_LINUX ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_USB_LINUX_MMAPPED ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_WIHART ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_X2E_SERIAL ideal-int
+pkg syscall (netbsd-amd64-cgo), const DLT_X2E_XORAYA ideal-int
+pkg syscall (netbsd-amd64-cgo), const DT_BLK ideal-int
+pkg syscall (netbsd-amd64-cgo), const DT_CHR ideal-int
+pkg syscall (netbsd-amd64-cgo), const DT_DIR ideal-int
+pkg syscall (netbsd-amd64-cgo), const DT_FIFO ideal-int
+pkg syscall (netbsd-amd64-cgo), const DT_LNK ideal-int
+pkg syscall (netbsd-amd64-cgo), const DT_REG ideal-int
+pkg syscall (netbsd-amd64-cgo), const DT_SOCK ideal-int
+pkg syscall (netbsd-amd64-cgo), const DT_UNKNOWN ideal-int
+pkg syscall (netbsd-amd64-cgo), const DT_WHT ideal-int
+pkg syscall (netbsd-amd64-cgo), const EAUTH Errno
+pkg syscall (netbsd-amd64-cgo), const EBADMSG Errno
+pkg syscall (netbsd-amd64-cgo), const EBADRPC Errno
+pkg syscall (netbsd-amd64-cgo), const ECHO ideal-int
+pkg syscall (netbsd-amd64-cgo), const ECHOCTL ideal-int
+pkg syscall (netbsd-amd64-cgo), const ECHOE ideal-int
+pkg syscall (netbsd-amd64-cgo), const ECHOK ideal-int
+pkg syscall (netbsd-amd64-cgo), const ECHOKE ideal-int
+pkg syscall (netbsd-amd64-cgo), const ECHONL ideal-int
+pkg syscall (netbsd-amd64-cgo), const ECHOPRT ideal-int
+pkg syscall (netbsd-amd64-cgo), const EFTYPE Errno
+pkg syscall (netbsd-amd64-cgo), const ELAST Errno
+pkg syscall (netbsd-amd64-cgo), const EMULTIHOP Errno
+pkg syscall (netbsd-amd64-cgo), const EMUL_LINUX ideal-int
+pkg syscall (netbsd-amd64-cgo), const EMUL_LINUX32 ideal-int
+pkg syscall (netbsd-amd64-cgo), const EMUL_MAXID ideal-int
+pkg syscall (netbsd-amd64-cgo), const ENEEDAUTH Errno
+pkg syscall (netbsd-amd64-cgo), const ENOATTR Errno
+pkg syscall (netbsd-amd64-cgo), const ENODATA Errno
+pkg syscall (netbsd-amd64-cgo), const ENOLINK Errno
+pkg syscall (netbsd-amd64-cgo), const ENOSR Errno
+pkg syscall (netbsd-amd64-cgo), const ENOSTR Errno
+pkg syscall (netbsd-amd64-cgo), const EPROCLIM Errno
+pkg syscall (netbsd-amd64-cgo), const EPROCUNAVAIL Errno
+pkg syscall (netbsd-amd64-cgo), const EPROGMISMATCH Errno
+pkg syscall (netbsd-amd64-cgo), const EPROGUNAVAIL Errno
+pkg syscall (netbsd-amd64-cgo), const EPROTO Errno
+pkg syscall (netbsd-amd64-cgo), const ERPCMISMATCH Errno
+pkg syscall (netbsd-amd64-cgo), const ETHERCAP_JUMBO_MTU ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERCAP_VLAN_HWTAGGING ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERCAP_VLAN_MTU ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERMIN ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERMTU ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERMTU_JUMBO ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_8023 ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_AARP ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_ACCTON ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_AEONIC ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_ALPHA ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_AMBER ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_AMOEBA ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_APOLLO ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_APOLLODOMAIN ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_APPLETALK ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_APPLITEK ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_ARGONAUT ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_ARP ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_AT ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_ATALK ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_ATOMIC ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_ATT ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_ATTSTANFORD ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_AUTOPHON ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_AXIS ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_BCLOOP ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_BOFL ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_CABLETRON ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_CHAOS ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_COMDESIGN ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_COMPUGRAPHIC ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_COUNTERPOINT ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_CRONUS ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_CRONUSVLN ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DCA ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DDE ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DEBNI ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DECAM ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DECCUST ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DECDIAG ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DECDNS ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DECDTS ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DECEXPER ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DECLAST ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DECLTM ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DECMUMPS ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DECNETBIOS ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DELTACON ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DIDDLE ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DLOG1 ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DLOG2 ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DN ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DOGFIGHT ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DSMD ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_ECMA ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_ENCRYPT ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_ES ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_EXCELAN ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_EXPERDATA ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_FLIP ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_FLOWCONTROL ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_FRARP ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_GENDYN ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_HAYES ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_HIPPI_FP ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_HITACHI ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_HP ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_IEEEPUP ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_IEEEPUPAT ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_IMLBL ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_IMLBLDIAG ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_IP ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_IPAS ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_IPV6 ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_IPX ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_IPXNEW ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_KALPANA ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_LANBRIDGE ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_LANPROBE ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_LAT ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_LBACK ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_LITTLE ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_LOGICRAFT ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_LOOPBACK ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_MATRA ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_MAX ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_MERIT ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_MICP ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_MOPDL ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_MOPRC ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_MOTOROLA ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_MPLS ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_MPLS_MCAST ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_MUMPS ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPCC ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPCLAIM ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPCLREQ ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPCLRSP ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPCREQ ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPCRSP ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPDG ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPDGB ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPDLTE ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPRAR ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPRAS ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPRST ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPSCD ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPVCD ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBS ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NCD ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NESTAR ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NETBEUI ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NOVELL ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NS ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NSAT ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NSCOMPAT ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NTRAILER ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_OS9 ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_OS9NET ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_PACER ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_PAE ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_PCS ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_PLANNING ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_PPP ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_PPPOE ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_PPPOEDISC ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_PRIMENTS ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_PUP ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_PUPAT ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_RACAL ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_RATIONAL ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_RAWFR ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_RCL ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_RDP ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_RETIX ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_REVARP ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SCA ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SECTRA ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SECUREDATA ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SGITW ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SG_BOUNCE ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SG_DIAG ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SG_NETGAMES ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SG_RESV ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SIMNET ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SLOWPROTOCOLS ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SNA ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SNMP ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SONIX ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SPIDER ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SPRITE ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_STP ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_TALARIS ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_TALARISMC ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_TCPCOMP ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_TCPSM ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_TEC ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_TIGAN ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_TRAIL ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_TRANSETHER ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_TYMSHARE ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_UBBST ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_UBDEBUG ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_UBDIAGLOOP ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_UBDL ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_UBNIU ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_UBNMC ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VALID ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VARIAN ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VAXELN ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VEECO ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VEXP ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VGLAB ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VINES ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VINESECHO ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VINESLOOP ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VITAL ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VLAN ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VLTLMAN ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VPROD ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VURESERVED ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_WATERLOO ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_WELLFLEET ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_X25 ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_X75 ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_XNSSM ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_XTP ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHER_ADDR_LEN ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHER_CRC_LEN ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHER_CRC_POLY_BE ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHER_CRC_POLY_LE ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHER_HDR_LEN ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHER_MAX_LEN ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHER_MAX_LEN_JUMBO ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHER_MIN_LEN ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHER_PPPOE_ENCAP_LEN ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHER_TYPE_LEN ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETHER_VLAN_ENCAP_LEN ideal-int
+pkg syscall (netbsd-amd64-cgo), const ETIME Errno
+pkg syscall (netbsd-amd64-cgo), const EVFILT_AIO ideal-int
+pkg syscall (netbsd-amd64-cgo), const EVFILT_PROC ideal-int
+pkg syscall (netbsd-amd64-cgo), const EVFILT_READ ideal-int
+pkg syscall (netbsd-amd64-cgo), const EVFILT_SIGNAL ideal-int
+pkg syscall (netbsd-amd64-cgo), const EVFILT_SYSCOUNT ideal-int
+pkg syscall (netbsd-amd64-cgo), const EVFILT_TIMER ideal-int
+pkg syscall (netbsd-amd64-cgo), const EVFILT_VNODE ideal-int
+pkg syscall (netbsd-amd64-cgo), const EVFILT_WRITE ideal-int
+pkg syscall (netbsd-amd64-cgo), const EV_ADD ideal-int
+pkg syscall (netbsd-amd64-cgo), const EV_CLEAR ideal-int
+pkg syscall (netbsd-amd64-cgo), const EV_DELETE ideal-int
+pkg syscall (netbsd-amd64-cgo), const EV_DISABLE ideal-int
+pkg syscall (netbsd-amd64-cgo), const EV_ENABLE ideal-int
+pkg syscall (netbsd-amd64-cgo), const EV_EOF ideal-int
+pkg syscall (netbsd-amd64-cgo), const EV_ERROR ideal-int
+pkg syscall (netbsd-amd64-cgo), const EV_FLAG1 ideal-int
+pkg syscall (netbsd-amd64-cgo), const EV_ONESHOT ideal-int
+pkg syscall (netbsd-amd64-cgo), const EV_SYSFLAGS ideal-int
+pkg syscall (netbsd-amd64-cgo), const EXTA ideal-int
+pkg syscall (netbsd-amd64-cgo), const EXTB ideal-int
+pkg syscall (netbsd-amd64-cgo), const EXTPROC ideal-int
+pkg syscall (netbsd-amd64-cgo), const FD_CLOEXEC ideal-int
+pkg syscall (netbsd-amd64-cgo), const FD_SETSIZE ideal-int
+pkg syscall (netbsd-amd64-cgo), const FLUSHO ideal-int
+pkg syscall (netbsd-amd64-cgo), const F_CLOSEM ideal-int
+pkg syscall (netbsd-amd64-cgo), const F_DUPFD ideal-int
+pkg syscall (netbsd-amd64-cgo), const F_DUPFD_CLOEXEC ideal-int
+pkg syscall (netbsd-amd64-cgo), const F_FSCTL ideal-int
+pkg syscall (netbsd-amd64-cgo), const F_FSDIRMASK ideal-int
+pkg syscall (netbsd-amd64-cgo), const F_FSIN ideal-int
+pkg syscall (netbsd-amd64-cgo), const F_FSINOUT ideal-int
+pkg syscall (netbsd-amd64-cgo), const F_FSOUT ideal-int
+pkg syscall (netbsd-amd64-cgo), const F_FSPRIV ideal-int
+pkg syscall (netbsd-amd64-cgo), const F_FSVOID ideal-int
+pkg syscall (netbsd-amd64-cgo), const F_GETFD ideal-int
+pkg syscall (netbsd-amd64-cgo), const F_GETFL ideal-int
+pkg syscall (netbsd-amd64-cgo), const F_GETLK ideal-int
+pkg syscall (netbsd-amd64-cgo), const F_GETNOSIGPIPE ideal-int
+pkg syscall (netbsd-amd64-cgo), const F_GETOWN ideal-int
+pkg syscall (netbsd-amd64-cgo), const F_MAXFD ideal-int
+pkg syscall (netbsd-amd64-cgo), const F_OK ideal-int
+pkg syscall (netbsd-amd64-cgo), const F_PARAM_MASK ideal-int
+pkg syscall (netbsd-amd64-cgo), const F_PARAM_MAX ideal-int
+pkg syscall (netbsd-amd64-cgo), const F_RDLCK ideal-int
+pkg syscall (netbsd-amd64-cgo), const F_SETFD ideal-int
+pkg syscall (netbsd-amd64-cgo), const F_SETFL ideal-int
+pkg syscall (netbsd-amd64-cgo), const F_SETLK ideal-int
+pkg syscall (netbsd-amd64-cgo), const F_SETLKW ideal-int
+pkg syscall (netbsd-amd64-cgo), const F_SETNOSIGPIPE ideal-int
+pkg syscall (netbsd-amd64-cgo), const F_SETOWN ideal-int
+pkg syscall (netbsd-amd64-cgo), const F_UNLCK ideal-int
+pkg syscall (netbsd-amd64-cgo), const F_WRLCK ideal-int
+pkg syscall (netbsd-amd64-cgo), const HUPCL ideal-int
+pkg syscall (netbsd-amd64-cgo), const ICANON ideal-int
+pkg syscall (netbsd-amd64-cgo), const ICMP6_FILTER = 18
+pkg syscall (netbsd-amd64-cgo), const ICMP6_FILTER ideal-int
+pkg syscall (netbsd-amd64-cgo), const ICRNL ideal-int
+pkg syscall (netbsd-amd64-cgo), const IEXTEN ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFAN_ARRIVAL ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFAN_DEPARTURE ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFA_ROUTE ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFF_ALLMULTI ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFF_CANTCHANGE ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFF_DEBUG ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFF_LINK0 ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFF_LINK1 ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFF_LINK2 ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFF_NOARP ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFF_NOTRAILERS ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFF_OACTIVE ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFF_POINTOPOINT ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFF_PROMISC ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFF_RUNNING ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFF_SIMPLEX ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFNAMSIZ ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_1822 ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_A12MPPSWITCH ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_AAL2 ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_AAL5 ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_ADSL ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_AFLANE8023 ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_AFLANE8025 ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_ARAP ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_ARCNET ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_ARCNETPLUS ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_ASYNC ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_ATM ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_ATMDXI ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_ATMFUNI ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_ATMIMA ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_ATMLOGICAL ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_ATMRADIO ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_ATMSUBINTERFACE ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_ATMVCIENDPT ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_ATMVIRTUAL ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_BGPPOLICYACCOUNTING ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_BRIDGE ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_BSC ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_CARP ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_CCTEMUL ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_CEPT ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_CES ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_CHANNEL ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_CNR ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_COFFEE ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_COMPOSITELINK ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_DCN ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_DIGITALPOWERLINE ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_DLSW ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_DOCSCABLEDOWNSTREAM ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_DOCSCABLEMACLAYER ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_DOCSCABLEUPSTREAM ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_DOCSCABLEUPSTREAMCHANNEL ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_DS0 ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_DS0BUNDLE ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_DS1FDL ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_DS3 ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_DTM ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_DVBASILN ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_DVBASIOUT ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_DVBRCCDOWNSTREAM ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_DVBRCCMACLAYER ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_DVBRCCUPSTREAM ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_ECONET ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_EON ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_EPLRS ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_ESCON ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_ETHER ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_FAITH ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_FAST ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_FASTETHER ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_FASTETHERFX ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_FDDI ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_FIBRECHANNEL ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_FRAMERELAYINTERCONNECT ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_FRAMERELAYMPI ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_FRDLCIENDPT ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_FRELAY ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_FRELAYDCE ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_FRF16MFRBUNDLE ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_FRFORWARD ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_G703AT2MB ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_G703AT64K ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_GIF ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_GIGABITETHERNET ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_GR303IDT ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_GR303RDT ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_H323GATEKEEPER ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_H323PROXY ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_HDH1822 ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_HDLC ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_HDSL2 ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_HIPERLAN2 ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_HIPPI ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_HIPPIINTERFACE ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_HOSTPAD ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_HSSI ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_HY ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_IBM370PARCHAN ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_IDSL ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_IEEE1394 ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_IEEE80211 ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_IEEE80212 ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_IEEE8023ADLAG ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_IFGSN ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_IMT ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_INFINIBAND ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_INTERLEAVE ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_IP ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_IPFORWARD ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_IPOVERATM ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_IPOVERCDLC ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_IPOVERCLAW ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_IPSWITCH ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_ISDN ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_ISDNBASIC ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_ISDNPRIMARY ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_ISDNS ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_ISDNU ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_ISO88022LLC ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_ISO88023 ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_ISO88024 ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_ISO88025 ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_ISO88025CRFPINT ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_ISO88025DTR ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_ISO88025FIBER ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_ISO88026 ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_ISUP ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_L2VLAN ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_L3IPVLAN ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_L3IPXVLAN ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_LAPB ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_LAPD ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_LAPF ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_LINEGROUP ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_LOCALTALK ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_LOOP ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_MEDIAMAILOVERIP ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_MFSIGLINK ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_MIOX25 ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_MODEM ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_MPC ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_MPLS ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_MPLSTUNNEL ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_MSDSL ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_MVL ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_MYRINET ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_NFAS ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_NSIP ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_OPTICALCHANNEL ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_OPTICALTRANSPORT ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_OTHER ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_P10 ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_P80 ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_PARA ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_PFLOG ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_PFSYNC ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_PLC ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_PON155 ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_PON622 ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_POS ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_PPP ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_PPPMULTILINKBUNDLE ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_PROPATM ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_PROPBWAP2MP ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_PROPCNLS ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_PROPMUX ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_PROPVIRTUAL ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_PROPWIRELESSP2P ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_PTPSERIAL ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_PVC ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_Q2931 ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_QLLC ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_RADIOMAC ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_RADSL ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_REACHDSL ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_RFC1483 ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_RS232 ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_RSRB ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_SDLC ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_SDSL ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_SHDSL ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_SIP ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_SIPSIG ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_SIPTG ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_SLIP ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_SMDSDXI ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_SMDSICIP ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_SONET ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_SONETOVERHEADCHANNEL ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_SONETPATH ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_SONETVT ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_SRP ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_SS7SIGLINK ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_STACKTOSTACK ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_STARLAN ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_STF ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_T1 ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_TDLC ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_TELINK ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_TERMPAD ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_TR008 ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_TRANSPHDLC ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_TUNNEL ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_ULTRA ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_USB ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_V11 ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_V35 ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_V36 ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_V37 ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_VDSL ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_VIRTUALIPADDRESS ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_VIRTUALTG ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_VOICEDID ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_VOICEEM ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_VOICEEMFGD ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_VOICEENCAP ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_VOICEFGDEANA ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_VOICEFXO ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_VOICEFXS ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_VOICEOVERATM ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_VOICEOVERCABLE ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_VOICEOVERFRAMERELAY ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_VOICEOVERIP ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_X213 ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_X25 ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_X25DDN ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_X25HUNTGROUP ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_X25MLP ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_X25PLE ideal-int
+pkg syscall (netbsd-amd64-cgo), const IFT_XETHER ideal-int
+pkg syscall (netbsd-amd64-cgo), const IGNBRK ideal-int
+pkg syscall (netbsd-amd64-cgo), const IGNCR ideal-int
+pkg syscall (netbsd-amd64-cgo), const IGNPAR ideal-int
+pkg syscall (netbsd-amd64-cgo), const IMAXBEL ideal-int
+pkg syscall (netbsd-amd64-cgo), const INLCR ideal-int
+pkg syscall (netbsd-amd64-cgo), const INPCK ideal-int
+pkg syscall (netbsd-amd64-cgo), const IN_CLASSA_HOST ideal-int
+pkg syscall (netbsd-amd64-cgo), const IN_CLASSA_MAX ideal-int
+pkg syscall (netbsd-amd64-cgo), const IN_CLASSA_NET ideal-int
+pkg syscall (netbsd-amd64-cgo), const IN_CLASSA_NSHIFT ideal-int
+pkg syscall (netbsd-amd64-cgo), const IN_CLASSB_HOST ideal-int
+pkg syscall (netbsd-amd64-cgo), const IN_CLASSB_MAX ideal-int
+pkg syscall (netbsd-amd64-cgo), const IN_CLASSB_NET ideal-int
+pkg syscall (netbsd-amd64-cgo), const IN_CLASSB_NSHIFT ideal-int
+pkg syscall (netbsd-amd64-cgo), const IN_CLASSC_HOST ideal-int
+pkg syscall (netbsd-amd64-cgo), const IN_CLASSC_NET ideal-int
+pkg syscall (netbsd-amd64-cgo), const IN_CLASSC_NSHIFT ideal-int
+pkg syscall (netbsd-amd64-cgo), const IN_CLASSD_HOST ideal-int
+pkg syscall (netbsd-amd64-cgo), const IN_CLASSD_NET ideal-int
+pkg syscall (netbsd-amd64-cgo), const IN_CLASSD_NSHIFT ideal-int
+pkg syscall (netbsd-amd64-cgo), const IN_LOOPBACKNET ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPPROTO_AH ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPPROTO_CARP ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPPROTO_DONE ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPPROTO_DSTOPTS ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPPROTO_EGP ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPPROTO_ENCAP ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPPROTO_EON ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPPROTO_ESP ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPPROTO_ETHERIP ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPPROTO_FRAGMENT ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPPROTO_GGP ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPPROTO_GRE ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPPROTO_HOPOPTS ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPPROTO_ICMP ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPPROTO_ICMPV6 ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPPROTO_IDP ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPPROTO_IGMP ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPPROTO_IPCOMP ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPPROTO_IPIP ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPPROTO_IPV4 ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPPROTO_IPV6_ICMP ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPPROTO_MAX ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPPROTO_MAXID ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPPROTO_MOBILE ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPPROTO_NONE ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPPROTO_PFSYNC ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPPROTO_PIM ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPPROTO_PUP ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPPROTO_RAW ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPPROTO_ROUTING ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPPROTO_RSVP ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPPROTO_TP ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPPROTO_VRRP ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPV6_CHECKSUM ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPV6_DEFHLIM ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPV6_DONTFRAG ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPV6_DSTOPTS ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPV6_FAITH ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPV6_FLOWINFO_MASK ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPV6_FLOWLABEL_MASK ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPV6_FRAGTTL ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPV6_HLIMDEC ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPV6_HOPLIMIT ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPV6_HOPOPTS ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPV6_IPSEC_POLICY ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPV6_MAXHLIM ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPV6_MAXPACKET ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPV6_MMTU ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPV6_NEXTHOP ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPV6_PATHMTU ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPV6_PKTINFO ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPV6_PORTRANGE ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPV6_PORTRANGE_DEFAULT ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPV6_PORTRANGE_HIGH ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPV6_PORTRANGE_LOW ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPV6_RECVDSTOPTS ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPV6_RECVHOPLIMIT ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPV6_RECVHOPOPTS ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPV6_RECVPATHMTU ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPV6_RECVPKTINFO ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPV6_RECVRTHDR ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPV6_RECVTCLASS ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPV6_RTHDR ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPV6_RTHDRDSTOPTS ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPV6_RTHDR_LOOSE ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPV6_RTHDR_STRICT ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPV6_RTHDR_TYPE_0 ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPV6_SOCKOPT_RESERVED1 ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPV6_TCLASS ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPV6_USE_MIN_MTU ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPV6_VERSION ideal-int
+pkg syscall (netbsd-amd64-cgo), const IPV6_VERSION_MASK ideal-int
+pkg syscall (netbsd-amd64-cgo), const IP_DEFAULT_MULTICAST_LOOP ideal-int
+pkg syscall (netbsd-amd64-cgo), const IP_DEFAULT_MULTICAST_TTL ideal-int
+pkg syscall (netbsd-amd64-cgo), const IP_DF ideal-int
+pkg syscall (netbsd-amd64-cgo), const IP_EF ideal-int
+pkg syscall (netbsd-amd64-cgo), const IP_ERRORMTU ideal-int
+pkg syscall (netbsd-amd64-cgo), const IP_HDRINCL ideal-int
+pkg syscall (netbsd-amd64-cgo), const IP_IPSEC_POLICY ideal-int
+pkg syscall (netbsd-amd64-cgo), const IP_MAXPACKET ideal-int
+pkg syscall (netbsd-amd64-cgo), const IP_MAX_MEMBERSHIPS ideal-int
+pkg syscall (netbsd-amd64-cgo), const IP_MF ideal-int
+pkg syscall (netbsd-amd64-cgo), const IP_MINFRAGSIZE ideal-int
+pkg syscall (netbsd-amd64-cgo), const IP_MINTTL ideal-int
+pkg syscall (netbsd-amd64-cgo), const IP_MSS ideal-int
+pkg syscall (netbsd-amd64-cgo), const IP_OFFMASK ideal-int
+pkg syscall (netbsd-amd64-cgo), const IP_OPTIONS ideal-int
+pkg syscall (netbsd-amd64-cgo), const IP_PORTRANGE ideal-int
+pkg syscall (netbsd-amd64-cgo), const IP_PORTRANGE_DEFAULT ideal-int
+pkg syscall (netbsd-amd64-cgo), const IP_PORTRANGE_HIGH ideal-int
+pkg syscall (netbsd-amd64-cgo), const IP_PORTRANGE_LOW ideal-int
+pkg syscall (netbsd-amd64-cgo), const IP_RECVDSTADDR ideal-int
+pkg syscall (netbsd-amd64-cgo), const IP_RECVIF ideal-int
+pkg syscall (netbsd-amd64-cgo), const IP_RECVOPTS ideal-int
+pkg syscall (netbsd-amd64-cgo), const IP_RECVRETOPTS ideal-int
+pkg syscall (netbsd-amd64-cgo), const IP_RECVTTL ideal-int
+pkg syscall (netbsd-amd64-cgo), const IP_RETOPTS ideal-int
+pkg syscall (netbsd-amd64-cgo), const IP_RF ideal-int
+pkg syscall (netbsd-amd64-cgo), const ISIG ideal-int
+pkg syscall (netbsd-amd64-cgo), const ISTRIP ideal-int
+pkg syscall (netbsd-amd64-cgo), const IXANY ideal-int
+pkg syscall (netbsd-amd64-cgo), const IXOFF ideal-int
+pkg syscall (netbsd-amd64-cgo), const IXON ideal-int
+pkg syscall (netbsd-amd64-cgo), const LOCK_EX ideal-int
+pkg syscall (netbsd-amd64-cgo), const LOCK_NB ideal-int
+pkg syscall (netbsd-amd64-cgo), const LOCK_SH ideal-int
+pkg syscall (netbsd-amd64-cgo), const LOCK_UN ideal-int
+pkg syscall (netbsd-amd64-cgo), const MSG_BCAST ideal-int
+pkg syscall (netbsd-amd64-cgo), const MSG_CMSG_CLOEXEC ideal-int
+pkg syscall (netbsd-amd64-cgo), const MSG_CONTROLMBUF ideal-int
+pkg syscall (netbsd-amd64-cgo), const MSG_CTRUNC ideal-int
+pkg syscall (netbsd-amd64-cgo), const MSG_DONTROUTE ideal-int
+pkg syscall (netbsd-amd64-cgo), const MSG_DONTWAIT ideal-int
+pkg syscall (netbsd-amd64-cgo), const MSG_EOR ideal-int
+pkg syscall (netbsd-amd64-cgo), const MSG_IOVUSRSPACE ideal-int
+pkg syscall (netbsd-amd64-cgo), const MSG_LENUSRSPACE ideal-int
+pkg syscall (netbsd-amd64-cgo), const MSG_MCAST ideal-int
+pkg syscall (netbsd-amd64-cgo), const MSG_NAMEMBUF ideal-int
+pkg syscall (netbsd-amd64-cgo), const MSG_NBIO ideal-int
+pkg syscall (netbsd-amd64-cgo), const MSG_NOSIGNAL ideal-int
+pkg syscall (netbsd-amd64-cgo), const MSG_OOB ideal-int
+pkg syscall (netbsd-amd64-cgo), const MSG_PEEK ideal-int
+pkg syscall (netbsd-amd64-cgo), const MSG_TRUNC ideal-int
+pkg syscall (netbsd-amd64-cgo), const MSG_USERFLAGS ideal-int
+pkg syscall (netbsd-amd64-cgo), const MSG_WAITALL ideal-int
+pkg syscall (netbsd-amd64-cgo), const NAME_MAX ideal-int
+pkg syscall (netbsd-amd64-cgo), const NET_RT_DUMP ideal-int
+pkg syscall (netbsd-amd64-cgo), const NET_RT_FLAGS ideal-int
+pkg syscall (netbsd-amd64-cgo), const NET_RT_IFLIST ideal-int
+pkg syscall (netbsd-amd64-cgo), const NET_RT_MAXID ideal-int
+pkg syscall (netbsd-amd64-cgo), const NET_RT_OIFLIST ideal-int
+pkg syscall (netbsd-amd64-cgo), const NET_RT_OOIFLIST ideal-int
+pkg syscall (netbsd-amd64-cgo), const NOFLSH ideal-int
+pkg syscall (netbsd-amd64-cgo), const NOTE_ATTRIB ideal-int
+pkg syscall (netbsd-amd64-cgo), const NOTE_CHILD ideal-int
+pkg syscall (netbsd-amd64-cgo), const NOTE_DELETE ideal-int
+pkg syscall (netbsd-amd64-cgo), const NOTE_EXEC ideal-int
+pkg syscall (netbsd-amd64-cgo), const NOTE_EXIT ideal-int
+pkg syscall (netbsd-amd64-cgo), const NOTE_EXTEND ideal-int
+pkg syscall (netbsd-amd64-cgo), const NOTE_FORK ideal-int
+pkg syscall (netbsd-amd64-cgo), const NOTE_LINK ideal-int
+pkg syscall (netbsd-amd64-cgo), const NOTE_LOWAT ideal-int
+pkg syscall (netbsd-amd64-cgo), const NOTE_PCTRLMASK ideal-int
+pkg syscall (netbsd-amd64-cgo), const NOTE_PDATAMASK ideal-int
+pkg syscall (netbsd-amd64-cgo), const NOTE_RENAME ideal-int
+pkg syscall (netbsd-amd64-cgo), const NOTE_REVOKE ideal-int
+pkg syscall (netbsd-amd64-cgo), const NOTE_TRACK ideal-int
+pkg syscall (netbsd-amd64-cgo), const NOTE_TRACKERR ideal-int
+pkg syscall (netbsd-amd64-cgo), const NOTE_WRITE ideal-int
+pkg syscall (netbsd-amd64-cgo), const OCRNL ideal-int
+pkg syscall (netbsd-amd64-cgo), const OFIOGETBMAP ideal-int
+pkg syscall (netbsd-amd64-cgo), const ONLCR ideal-int
+pkg syscall (netbsd-amd64-cgo), const ONLRET ideal-int
+pkg syscall (netbsd-amd64-cgo), const ONOCR ideal-int
+pkg syscall (netbsd-amd64-cgo), const ONOEOT ideal-int
+pkg syscall (netbsd-amd64-cgo), const OPOST ideal-int
+pkg syscall (netbsd-amd64-cgo), const O_ACCMODE ideal-int
+pkg syscall (netbsd-amd64-cgo), const O_ALT_IO ideal-int
+pkg syscall (netbsd-amd64-cgo), const O_DIRECT ideal-int
+pkg syscall (netbsd-amd64-cgo), const O_DIRECTORY ideal-int
+pkg syscall (netbsd-amd64-cgo), const O_DSYNC ideal-int
+pkg syscall (netbsd-amd64-cgo), const O_EXLOCK ideal-int
+pkg syscall (netbsd-amd64-cgo), const O_FSYNC ideal-int
+pkg syscall (netbsd-amd64-cgo), const O_NDELAY ideal-int
+pkg syscall (netbsd-amd64-cgo), const O_NOFOLLOW ideal-int
+pkg syscall (netbsd-amd64-cgo), const O_NOSIGPIPE ideal-int
+pkg syscall (netbsd-amd64-cgo), const O_RSYNC ideal-int
+pkg syscall (netbsd-amd64-cgo), const O_SHLOCK ideal-int
+pkg syscall (netbsd-amd64-cgo), const PARENB ideal-int
+pkg syscall (netbsd-amd64-cgo), const PARMRK ideal-int
+pkg syscall (netbsd-amd64-cgo), const PARODD ideal-int
+pkg syscall (netbsd-amd64-cgo), const PENDIN ideal-int
+pkg syscall (netbsd-amd64-cgo), const PRIO_PGRP = 1
+pkg syscall (netbsd-amd64-cgo), const PRIO_PGRP ideal-int
+pkg syscall (netbsd-amd64-cgo), const PRIO_PROCESS = 0
+pkg syscall (netbsd-amd64-cgo), const PRIO_PROCESS ideal-int
+pkg syscall (netbsd-amd64-cgo), const PRIO_USER = 2
+pkg syscall (netbsd-amd64-cgo), const PRIO_USER ideal-int
+pkg syscall (netbsd-amd64-cgo), const PRI_IOFLUSH ideal-int
+pkg syscall (netbsd-amd64-cgo), const PTRACE_CONT ideal-int
+pkg syscall (netbsd-amd64-cgo), const PTRACE_KILL ideal-int
+pkg syscall (netbsd-amd64-cgo), const PTRACE_TRACEME ideal-int
+pkg syscall (netbsd-amd64-cgo), const RLIMIT_AS ideal-int
+pkg syscall (netbsd-amd64-cgo), const RLIMIT_CORE ideal-int
+pkg syscall (netbsd-amd64-cgo), const RLIMIT_CPU ideal-int
+pkg syscall (netbsd-amd64-cgo), const RLIMIT_DATA ideal-int
+pkg syscall (netbsd-amd64-cgo), const RLIMIT_FSIZE ideal-int
+pkg syscall (netbsd-amd64-cgo), const RLIMIT_NOFILE ideal-int
+pkg syscall (netbsd-amd64-cgo), const RLIMIT_STACK ideal-int
+pkg syscall (netbsd-amd64-cgo), const RLIM_INFINITY ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTAX_AUTHOR ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTAX_BRD ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTAX_DST ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTAX_GATEWAY ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTAX_GENMASK ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTAX_IFA ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTAX_IFP ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTAX_MAX ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTAX_NETMASK ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTAX_TAG ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTA_AUTHOR ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTA_BRD ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTA_DST ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTA_GATEWAY ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTA_GENMASK ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTA_IFA ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTA_IFP ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTA_NETMASK ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTA_TAG ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTF_ANNOUNCE ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTF_BLACKHOLE ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTF_CLONED ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTF_CLONING ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTF_DONE ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTF_DYNAMIC ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTF_GATEWAY ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTF_HOST ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTF_LLINFO ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTF_MASK ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTF_MODIFIED ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTF_PROTO1 ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTF_PROTO2 ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTF_REJECT ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTF_SRC ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTF_STATIC ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTF_UP ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTF_XRESOLVE ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTM_ADD ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTM_CHANGE ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTM_CHGADDR ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTM_DELADDR ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTM_DELETE ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTM_GET ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTM_IEEE80211 ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTM_IFANNOUNCE ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTM_IFINFO ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTM_LLINFO_UPD ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTM_LOCK ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTM_LOSING ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTM_MISS ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTM_NEWADDR ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTM_OIFINFO ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTM_OLDADD ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTM_OLDDEL ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTM_OOIFINFO ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTM_REDIRECT ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTM_RESOLVE ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTM_RTTUNIT ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTM_SETGATE ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTM_VERSION ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTV_EXPIRE ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTV_HOPCOUNT ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTV_MTU ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTV_RPIPE ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTV_RTT ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTV_RTTVAR ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTV_SPIPE ideal-int
+pkg syscall (netbsd-amd64-cgo), const RTV_SSTHRESH ideal-int
+pkg syscall (netbsd-amd64-cgo), const RUSAGE_CHILDREN ideal-int
+pkg syscall (netbsd-amd64-cgo), const RUSAGE_SELF ideal-int
+pkg syscall (netbsd-amd64-cgo), const SCM_CREDS ideal-int
+pkg syscall (netbsd-amd64-cgo), const SCM_RIGHTS ideal-int
+pkg syscall (netbsd-amd64-cgo), const SCM_TIMESTAMP ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIGCHLD Signal
+pkg syscall (netbsd-amd64-cgo), const SIGCONT Signal
+pkg syscall (netbsd-amd64-cgo), const SIGEMT Signal
+pkg syscall (netbsd-amd64-cgo), const SIGINFO Signal
+pkg syscall (netbsd-amd64-cgo), const SIGIO Signal
+pkg syscall (netbsd-amd64-cgo), const SIGIOT Signal
+pkg syscall (netbsd-amd64-cgo), const SIGPROF Signal
+pkg syscall (netbsd-amd64-cgo), const SIGPWR Signal
+pkg syscall (netbsd-amd64-cgo), const SIGSTOP Signal
+pkg syscall (netbsd-amd64-cgo), const SIGSYS Signal
+pkg syscall (netbsd-amd64-cgo), const SIGTSTP Signal
+pkg syscall (netbsd-amd64-cgo), const SIGTTIN Signal
+pkg syscall (netbsd-amd64-cgo), const SIGTTOU Signal
+pkg syscall (netbsd-amd64-cgo), const SIGURG Signal
+pkg syscall (netbsd-amd64-cgo), const SIGUSR1 Signal
+pkg syscall (netbsd-amd64-cgo), const SIGUSR2 Signal
+pkg syscall (netbsd-amd64-cgo), const SIGVTALRM Signal
+pkg syscall (netbsd-amd64-cgo), const SIGWINCH Signal
+pkg syscall (netbsd-amd64-cgo), const SIGXCPU Signal
+pkg syscall (netbsd-amd64-cgo), const SIGXFSZ Signal
+pkg syscall (netbsd-amd64-cgo), const SIOCADDMULTI ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCADDRT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCAIFADDR ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCALIFADDR ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCATMARK ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCDELMULTI ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCDELRT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCDIFADDR ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCDIFPHYADDR ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCDLIFADDR ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCGDRVSPEC ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCGETPFSYNC ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCGETSGCNT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCGETVIFCNT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCGHIWAT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCGIFADDR ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCGIFADDRPREF ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCGIFALIAS ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCGIFBRDADDR ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCGIFCAP ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCGIFCONF ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCGIFDATA ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCGIFDLT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCGIFDSTADDR ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCGIFFLAGS ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCGIFGENERIC ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCGIFMEDIA ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCGIFMETRIC ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCGIFMTU ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCGIFNETMASK ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCGIFPDSTADDR ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCGIFPSRCADDR ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCGLIFADDR ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCGLIFPHYADDR ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCGLINKSTR ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCGLOWAT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCGPGRP ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCGVH ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCIFCREATE ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCIFDESTROY ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCIFGCLONERS ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCINITIFADDR ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCSDRVSPEC ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCSETPFSYNC ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCSHIWAT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCSIFADDR ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCSIFADDRPREF ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCSIFBRDADDR ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCSIFCAP ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCSIFDSTADDR ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCSIFFLAGS ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCSIFGENERIC ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCSIFMEDIA ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCSIFMETRIC ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCSIFMTU ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCSIFNETMASK ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCSIFPHYADDR ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCSLIFPHYADDR ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCSLINKSTR ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCSLOWAT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCSPGRP ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCSVH ideal-int
+pkg syscall (netbsd-amd64-cgo), const SIOCZIFDATA ideal-int
+pkg syscall (netbsd-amd64-cgo), const SOCK_CLOEXEC ideal-int
+pkg syscall (netbsd-amd64-cgo), const SOCK_FLAGS_MASK ideal-int
+pkg syscall (netbsd-amd64-cgo), const SOCK_NONBLOCK ideal-int
+pkg syscall (netbsd-amd64-cgo), const SOCK_NOSIGPIPE ideal-int
+pkg syscall (netbsd-amd64-cgo), const SOCK_RDM ideal-int
+pkg syscall (netbsd-amd64-cgo), const SO_ACCEPTCONN ideal-int
+pkg syscall (netbsd-amd64-cgo), const SO_ACCEPTFILTER ideal-int
+pkg syscall (netbsd-amd64-cgo), const SO_DEBUG ideal-int
+pkg syscall (netbsd-amd64-cgo), const SO_ERROR ideal-int
+pkg syscall (netbsd-amd64-cgo), const SO_NOHEADER ideal-int
+pkg syscall (netbsd-amd64-cgo), const SO_NOSIGPIPE ideal-int
+pkg syscall (netbsd-amd64-cgo), const SO_OOBINLINE ideal-int
+pkg syscall (netbsd-amd64-cgo), const SO_OVERFLOWED ideal-int
+pkg syscall (netbsd-amd64-cgo), const SO_RCVLOWAT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SO_RCVTIMEO ideal-int
+pkg syscall (netbsd-amd64-cgo), const SO_REUSEPORT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SO_SNDLOWAT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SO_SNDTIMEO ideal-int
+pkg syscall (netbsd-amd64-cgo), const SO_TIMESTAMP ideal-int
+pkg syscall (netbsd-amd64-cgo), const SO_TYPE ideal-int
+pkg syscall (netbsd-amd64-cgo), const SO_USELOOPBACK ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYSCTL_VERSION ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYSCTL_VERS_0 ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYSCTL_VERS_1 ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYSCTL_VERS_MASK ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_ACCEPT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_ACCESS ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_ACCT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_ADJTIME ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_BIND ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_BREAK ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_CHDIR ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_CHFLAGS ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_CHMOD ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_CHOWN ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_CHROOT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_CLOCK_GETRES ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_CLOCK_GETTIME ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_CLOCK_SETTIME ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_CLOSE ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_CONNECT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_DUP ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_DUP2 ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_DUP3 ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_EXECVE ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_EXIT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTRCTL ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTR_DELETE_FD ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTR_DELETE_FILE ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTR_DELETE_LINK ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTR_GET_FD ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTR_GET_FILE ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTR_GET_LINK ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTR_LIST_FD ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTR_LIST_FILE ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTR_LIST_LINK ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTR_SET_FD ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTR_SET_FILE ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTR_SET_LINK ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_FACCESSAT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_FCHDIR ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_FCHFLAGS ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_FCHMOD ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_FCHMODAT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_FCHOWN ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_FCHOWNAT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_FCHROOT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_FCNTL ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_FDATASYNC ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_FEXECVE ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_FGETXATTR ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_FHSTAT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_FKTRACE ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_FLISTXATTR ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_FLOCK ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_FORK ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_FPATHCONF ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_FREMOVEXATTR ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_FSETXATTR ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_FSTAT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_FSTATAT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_FSTATVFS1 ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_FSYNC ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_FSYNC_RANGE ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_FTRUNCATE ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_FUTIMENS ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_FUTIMES ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_GETCONTEXT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_GETDENTS ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_GETEGID ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_GETEUID ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_GETFH ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_GETGID ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_GETGROUPS ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_GETITIMER ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_GETPEERNAME ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_GETPGID ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_GETPGRP ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_GETPID ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_GETPPID ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_GETPRIORITY ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_GETRLIMIT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_GETRUSAGE ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_GETSID ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_GETSOCKNAME ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_GETSOCKOPT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_GETTIMEOFDAY ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_GETUID ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_GETVFSSTAT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_GETXATTR ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_IOCTL ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_ISSETUGID ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_KEVENT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_KILL ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_KQUEUE ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_KQUEUE1 ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_KTRACE ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_LCHFLAGS ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_LCHMOD ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_LCHOWN ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_LGETXATTR ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_LINK ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_LINKAT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_LISTEN ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_LISTXATTR ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_LLISTXATTR ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_LREMOVEXATTR ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_LSEEK ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_LSETXATTR ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_LSTAT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_LUTIMES ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_MADVISE ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_MINCORE ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_MINHERIT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_MKDIR ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_MKDIRAT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_MKFIFO ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_MKFIFOAT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_MKNOD ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_MKNODAT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_MLOCK ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_MLOCKALL ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_MMAP ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_MODCTL ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_MOUNT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_MPROTECT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_MREMAP ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_MSGCTL ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_MSGGET ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_MSGRCV ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_MSGSND ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_MUNLOCK ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_MUNLOCKALL ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_MUNMAP ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_NANOSLEEP ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_NTP_ADJTIME ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_NTP_GETTIME ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_OPEN ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_OPENAT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_PACCEPT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_PATHCONF ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_PIPE ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_PIPE2 ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_PMC_CONTROL ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_PMC_GET_INFO ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_POLL ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_POLLTS ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_POSIX_FADVISE ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_POSIX_SPAWN ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_PREAD ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_PREADV ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_PROFIL ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_PSELECT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_PSET_ASSIGN ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_PSET_CREATE ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_PSET_DESTROY ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_PTRACE ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_PWRITE ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_PWRITEV ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_RASCTL ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_READ ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_READLINK ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_READLINKAT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_READV ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_REBOOT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_RECVFROM ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_RECVMMSG ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_RECVMSG ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_REMOVEXATTR ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_RENAME ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_RENAMEAT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_REVOKE ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_RMDIR ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_SBRK ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_SCHED_YIELD ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_SELECT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_SEMCONFIG ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_SEMGET ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_SEMOP ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_SENDMMSG ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_SENDMSG ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_SENDTO ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_SETCONTEXT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_SETEGID ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_SETEUID ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_SETGID ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_SETGROUPS ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_SETITIMER ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_SETPGID ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_SETPRIORITY ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_SETREGID ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_SETREUID ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_SETRLIMIT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_SETSID ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_SETSOCKOPT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_SETTIMEOFDAY ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_SETUID ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_SETXATTR ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_SHMAT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_SHMCTL ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_SHMDT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_SHMGET ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_SHUTDOWN ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_SIGQUEUEINFO ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_SOCKET ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_SOCKETPAIR ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_SSTK ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_STAT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_STATVFS1 ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_SWAPCTL ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_SYMLINK ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_SYMLINKAT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_SYNC ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_SYSARCH ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_TIMER_CREATE ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_TIMER_DELETE ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_TIMER_GETOVERRUN ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_TIMER_GETTIME ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_TIMER_SETTIME ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_TRUNCATE ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_UMASK ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_UNDELETE ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_UNLINK ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_UNLINKAT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_UNMOUNT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_UTIMENSAT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_UTIMES ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_UTRACE ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_UUIDGEN ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_VADVISE ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_VFORK ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_WAIT4 ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_WRITE ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS_WRITEV ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS__LWP_CONTINUE ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS__LWP_CREATE ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS__LWP_CTL ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS__LWP_DETACH ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS__LWP_EXIT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS__LWP_GETNAME ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS__LWP_GETPRIVATE ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS__LWP_KILL ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS__LWP_PARK ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS__LWP_SELF ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS__LWP_SETNAME ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS__LWP_SETPRIVATE ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS__LWP_SUSPEND ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS__LWP_UNPARK ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS__LWP_UNPARK_ALL ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS__LWP_WAIT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS__LWP_WAKEUP ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS__PSET_BIND ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS__SCHED_GETAFFINITY ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS__SCHED_GETPARAM ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS__SCHED_SETAFFINITY ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS__SCHED_SETPARAM ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS___CLONE ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS___GETCWD ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS___GETLOGIN ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS___POSIX_CHOWN ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS___POSIX_FCHOWN ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS___POSIX_LCHOWN ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS___POSIX_RENAME ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS___QUOTACTL ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS___SEMCTL ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS___SETLOGIN ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS___SIGACTION_SIGTRAMP ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS___SIGTIMEDWAIT ideal-int
+pkg syscall (netbsd-amd64-cgo), const SYS___SYSCTL ideal-int
+pkg syscall (netbsd-amd64-cgo), const S_ARCH1 ideal-int
+pkg syscall (netbsd-amd64-cgo), const S_ARCH2 ideal-int
+pkg syscall (netbsd-amd64-cgo), const S_BLKSIZE ideal-int
+pkg syscall (netbsd-amd64-cgo), const S_IEXEC ideal-int
+pkg syscall (netbsd-amd64-cgo), const S_IFWHT ideal-int
+pkg syscall (netbsd-amd64-cgo), const S_IREAD ideal-int
+pkg syscall (netbsd-amd64-cgo), const S_IRGRP ideal-int
+pkg syscall (netbsd-amd64-cgo), const S_IROTH ideal-int
+pkg syscall (netbsd-amd64-cgo), const S_IRWXG ideal-int
+pkg syscall (netbsd-amd64-cgo), const S_IRWXO ideal-int
+pkg syscall (netbsd-amd64-cgo), const S_IRWXU ideal-int
+pkg syscall (netbsd-amd64-cgo), const S_ISTXT ideal-int
+pkg syscall (netbsd-amd64-cgo), const S_IWGRP ideal-int
+pkg syscall (netbsd-amd64-cgo), const S_IWOTH ideal-int
+pkg syscall (netbsd-amd64-cgo), const S_IWRITE ideal-int
+pkg syscall (netbsd-amd64-cgo), const S_IXGRP ideal-int
+pkg syscall (netbsd-amd64-cgo), const S_IXOTH ideal-int
+pkg syscall (netbsd-amd64-cgo), const S_LOGIN_SET ideal-int
+pkg syscall (netbsd-amd64-cgo), const SizeofBpfHdr ideal-int
+pkg syscall (netbsd-amd64-cgo), const SizeofBpfInsn ideal-int
+pkg syscall (netbsd-amd64-cgo), const SizeofBpfProgram ideal-int
+pkg syscall (netbsd-amd64-cgo), const SizeofBpfStat ideal-int
+pkg syscall (netbsd-amd64-cgo), const SizeofBpfVersion ideal-int
+pkg syscall (netbsd-amd64-cgo), const SizeofCmsghdr ideal-int
+pkg syscall (netbsd-amd64-cgo), const SizeofICMPv6Filter = 32
+pkg syscall (netbsd-amd64-cgo), const SizeofICMPv6Filter ideal-int
+pkg syscall (netbsd-amd64-cgo), const SizeofIPMreq ideal-int
+pkg syscall (netbsd-amd64-cgo), const SizeofIPv6MTUInfo = 32
+pkg syscall (netbsd-amd64-cgo), const SizeofIPv6MTUInfo ideal-int
+pkg syscall (netbsd-amd64-cgo), const SizeofIPv6Mreq ideal-int
+pkg syscall (netbsd-amd64-cgo), const SizeofIfAnnounceMsghdr ideal-int
+pkg syscall (netbsd-amd64-cgo), const SizeofIfData ideal-int
+pkg syscall (netbsd-amd64-cgo), const SizeofIfMsghdr ideal-int
+pkg syscall (netbsd-amd64-cgo), const SizeofIfaMsghdr ideal-int
+pkg syscall (netbsd-amd64-cgo), const SizeofInet6Pktinfo ideal-int
+pkg syscall (netbsd-amd64-cgo), const SizeofLinger ideal-int
+pkg syscall (netbsd-amd64-cgo), const SizeofMsghdr ideal-int
+pkg syscall (netbsd-amd64-cgo), const SizeofRtMetrics ideal-int
+pkg syscall (netbsd-amd64-cgo), const SizeofRtMsghdr ideal-int
+pkg syscall (netbsd-amd64-cgo), const SizeofSockaddrAny ideal-int
+pkg syscall (netbsd-amd64-cgo), const SizeofSockaddrDatalink ideal-int
+pkg syscall (netbsd-amd64-cgo), const SizeofSockaddrInet4 ideal-int
+pkg syscall (netbsd-amd64-cgo), const SizeofSockaddrInet6 ideal-int
+pkg syscall (netbsd-amd64-cgo), const SizeofSockaddrUnix ideal-int
+pkg syscall (netbsd-amd64-cgo), const TCIFLUSH ideal-int
+pkg syscall (netbsd-amd64-cgo), const TCIOFLUSH ideal-int
+pkg syscall (netbsd-amd64-cgo), const TCOFLUSH ideal-int
+pkg syscall (netbsd-amd64-cgo), const TCP_CONGCTL ideal-int
+pkg syscall (netbsd-amd64-cgo), const TCP_KEEPCNT ideal-int
+pkg syscall (netbsd-amd64-cgo), const TCP_KEEPIDLE ideal-int
+pkg syscall (netbsd-amd64-cgo), const TCP_KEEPINIT ideal-int
+pkg syscall (netbsd-amd64-cgo), const TCP_KEEPINTVL ideal-int
+pkg syscall (netbsd-amd64-cgo), const TCP_MAXBURST ideal-int
+pkg syscall (netbsd-amd64-cgo), const TCP_MAXSEG ideal-int
+pkg syscall (netbsd-amd64-cgo), const TCP_MAXWIN ideal-int
+pkg syscall (netbsd-amd64-cgo), const TCP_MAX_WINSHIFT ideal-int
+pkg syscall (netbsd-amd64-cgo), const TCP_MD5SIG ideal-int
+pkg syscall (netbsd-amd64-cgo), const TCP_MINMSS ideal-int
+pkg syscall (netbsd-amd64-cgo), const TCP_MSS ideal-int
+pkg syscall (netbsd-amd64-cgo), const TCSAFLUSH ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCCBRK ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCCDTR ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCCONS ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCDCDTIMESTAMP ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCDRAIN ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCEXCL ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCEXT ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCFLAG_CDTRCTS ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCFLAG_CLOCAL ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCFLAG_CRTSCTS ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCFLAG_MDMBUF ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCFLAG_SOFTCAR ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCFLUSH ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCGETA ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCGETD ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCGFLAGS ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCGLINED ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCGPGRP ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCGQSIZE ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCGRANTPT ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCGSID ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCGSIZE ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCGWINSZ ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCMBIC ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCMBIS ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCMGET ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCMSET ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCM_CAR ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCM_CD ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCM_CTS ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCM_DSR ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCM_DTR ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCM_LE ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCM_RI ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCM_RNG ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCM_RTS ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCM_SR ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCM_ST ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCNOTTY ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCNXCL ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCOUTQ ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCPKT ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCPKT_DATA ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCPKT_DOSTOP ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCPKT_FLUSHREAD ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCPKT_FLUSHWRITE ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCPKT_IOCTL ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCPKT_NOSTOP ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCPKT_START ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCPKT_STOP ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCPTMGET ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCPTSNAME ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCRCVFRAME ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCREMOTE ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCSBRK ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCSCTTY ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCSDTR ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCSETA ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCSETAF ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCSETAW ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCSETD ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCSFLAGS ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCSIG ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCSLINED ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCSPGRP ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCSQSIZE ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCSSIZE ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCSTART ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCSTAT ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCSTI ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCSTOP ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCSWINSZ ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCUCNTL ideal-int
+pkg syscall (netbsd-amd64-cgo), const TIOCXMTFRAME ideal-int
+pkg syscall (netbsd-amd64-cgo), const TOSTOP ideal-int
+pkg syscall (netbsd-amd64-cgo), const VDISCARD ideal-int
+pkg syscall (netbsd-amd64-cgo), const VDSUSP ideal-int
+pkg syscall (netbsd-amd64-cgo), const VEOF ideal-int
+pkg syscall (netbsd-amd64-cgo), const VEOL ideal-int
+pkg syscall (netbsd-amd64-cgo), const VEOL2 ideal-int
+pkg syscall (netbsd-amd64-cgo), const VERASE ideal-int
+pkg syscall (netbsd-amd64-cgo), const VINTR ideal-int
+pkg syscall (netbsd-amd64-cgo), const VKILL ideal-int
+pkg syscall (netbsd-amd64-cgo), const VLNEXT ideal-int
+pkg syscall (netbsd-amd64-cgo), const VMIN ideal-int
+pkg syscall (netbsd-amd64-cgo), const VQUIT ideal-int
+pkg syscall (netbsd-amd64-cgo), const VREPRINT ideal-int
+pkg syscall (netbsd-amd64-cgo), const VSTART ideal-int
+pkg syscall (netbsd-amd64-cgo), const VSTATUS ideal-int
+pkg syscall (netbsd-amd64-cgo), const VSTOP ideal-int
+pkg syscall (netbsd-amd64-cgo), const VSUSP ideal-int
+pkg syscall (netbsd-amd64-cgo), const VTIME ideal-int
+pkg syscall (netbsd-amd64-cgo), const VWERASE ideal-int
+pkg syscall (netbsd-amd64-cgo), const WALL ideal-int
+pkg syscall (netbsd-amd64-cgo), const WALLSIG ideal-int
+pkg syscall (netbsd-amd64-cgo), const WALTSIG ideal-int
+pkg syscall (netbsd-amd64-cgo), const WCLONE ideal-int
+pkg syscall (netbsd-amd64-cgo), const WCOREFLAG ideal-int
+pkg syscall (netbsd-amd64-cgo), const WNOHANG ideal-int
+pkg syscall (netbsd-amd64-cgo), const WNOWAIT ideal-int
+pkg syscall (netbsd-amd64-cgo), const WNOZOMBIE ideal-int
+pkg syscall (netbsd-amd64-cgo), const WOPTSCHECKED ideal-int
+pkg syscall (netbsd-amd64-cgo), const WSTOPPED ideal-int
+pkg syscall (netbsd-amd64-cgo), const WUNTRACED ideal-int
+pkg syscall (netbsd-amd64-cgo), func Accept(int) (int, Sockaddr, error)
+pkg syscall (netbsd-amd64-cgo), func Access(string, uint32) error
+pkg syscall (netbsd-amd64-cgo), func Adjtime(*Timeval, *Timeval) error
+pkg syscall (netbsd-amd64-cgo), func Bind(int, Sockaddr) error
+pkg syscall (netbsd-amd64-cgo), func BpfBuflen(int) (int, error)
+pkg syscall (netbsd-amd64-cgo), func BpfDatalink(int) (int, error)
+pkg syscall (netbsd-amd64-cgo), func BpfHeadercmpl(int) (int, error)
+pkg syscall (netbsd-amd64-cgo), func BpfInterface(int, string) (string, error)
+pkg syscall (netbsd-amd64-cgo), func BpfJump(int, int, int, int) *BpfInsn
+pkg syscall (netbsd-amd64-cgo), func BpfStats(int) (*BpfStat, error)
+pkg syscall (netbsd-amd64-cgo), func BpfStmt(int, int) *BpfInsn
+pkg syscall (netbsd-amd64-cgo), func BpfTimeout(int) (*Timeval, error)
+pkg syscall (netbsd-amd64-cgo), func CheckBpfVersion(int) error
+pkg syscall (netbsd-amd64-cgo), func Chflags(string, int) error
+pkg syscall (netbsd-amd64-cgo), func Chroot(string) error
+pkg syscall (netbsd-amd64-cgo), func Close(int) error
+pkg syscall (netbsd-amd64-cgo), func CloseOnExec(int)
+pkg syscall (netbsd-amd64-cgo), func CmsgLen(int) int
+pkg syscall (netbsd-amd64-cgo), func CmsgSpace(int) int
+pkg syscall (netbsd-amd64-cgo), func Connect(int, Sockaddr) error
+pkg syscall (netbsd-amd64-cgo), func Dup(int) (int, error)
+pkg syscall (netbsd-amd64-cgo), func Dup2(int, int) error
+pkg syscall (netbsd-amd64-cgo), func Fchdir(int) error
+pkg syscall (netbsd-amd64-cgo), func Fchflags(int, int) error
+pkg syscall (netbsd-amd64-cgo), func Fchmod(int, uint32) error
+pkg syscall (netbsd-amd64-cgo), func Fchown(int, int, int) error
+pkg syscall (netbsd-amd64-cgo), func Flock(int, int) error
+pkg syscall (netbsd-amd64-cgo), func FlushBpf(int) error
+pkg syscall (netbsd-amd64-cgo), func ForkExec(string, []string, *ProcAttr) (int, error)
+pkg syscall (netbsd-amd64-cgo), func Fpathconf(int, int) (int, error)
+pkg syscall (netbsd-amd64-cgo), func Fstat(int, *Stat_t) error
+pkg syscall (netbsd-amd64-cgo), func Fsync(int) error
+pkg syscall (netbsd-amd64-cgo), func Ftruncate(int, int64) error
+pkg syscall (netbsd-amd64-cgo), func Futimes(int, []Timeval) error
+pkg syscall (netbsd-amd64-cgo), func Getdirentries(int, []uint8, *uintptr) (int, error)
+pkg syscall (netbsd-amd64-cgo), func Getpeername(int) (Sockaddr, error)
+pkg syscall (netbsd-amd64-cgo), func Getpgid(int) (int, error)
+pkg syscall (netbsd-amd64-cgo), func Getpgrp() int
+pkg syscall (netbsd-amd64-cgo), func Getpriority(int, int) (int, error)
+pkg syscall (netbsd-amd64-cgo), func Getrlimit(int, *Rlimit) error
+pkg syscall (netbsd-amd64-cgo), func Getrusage(int, *Rusage) error
+pkg syscall (netbsd-amd64-cgo), func Getsid(int) (int, error)
+pkg syscall (netbsd-amd64-cgo), func Getsockname(int) (Sockaddr, error)
+pkg syscall (netbsd-amd64-cgo), func GetsockoptByte(int, int, int) (uint8, error)
+pkg syscall (netbsd-amd64-cgo), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
+pkg syscall (netbsd-amd64-cgo), func GetsockoptIPMreq(int, int, int) (*IPMreq, error)
+pkg syscall (netbsd-amd64-cgo), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
+pkg syscall (netbsd-amd64-cgo), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error)
+pkg syscall (netbsd-amd64-cgo), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error)
+pkg syscall (netbsd-amd64-cgo), func GetsockoptInt(int, int, int) (int, error)
+pkg syscall (netbsd-amd64-cgo), func Issetugid() bool
+pkg syscall (netbsd-amd64-cgo), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error)
+pkg syscall (netbsd-amd64-cgo), func Kill(int, Signal) error
+pkg syscall (netbsd-amd64-cgo), func Kqueue() (int, error)
+pkg syscall (netbsd-amd64-cgo), func Listen(int, int) error
+pkg syscall (netbsd-amd64-cgo), func Lstat(string, *Stat_t) error
+pkg syscall (netbsd-amd64-cgo), func Mkfifo(string, uint32) error
+pkg syscall (netbsd-amd64-cgo), func Mknod(string, uint32, int) error
+pkg syscall (netbsd-amd64-cgo), func Mmap(int, int64, int, int, int) ([]uint8, error)
+pkg syscall (netbsd-amd64-cgo), func Munmap([]uint8) error
+pkg syscall (netbsd-amd64-cgo), func Nanosleep(*Timespec, *Timespec) error
+pkg syscall (netbsd-amd64-cgo), func Open(string, int, uint32) (int, error)
+pkg syscall (netbsd-amd64-cgo), func ParseDirent([]uint8, int, []string) (int, int, []string)
+pkg syscall (netbsd-amd64-cgo), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error)
+pkg syscall (netbsd-amd64-cgo), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error)
+pkg syscall (netbsd-amd64-cgo), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error)
+pkg syscall (netbsd-amd64-cgo), func ParseUnixRights(*SocketControlMessage) ([]int, error)
+pkg syscall (netbsd-amd64-cgo), func Pathconf(string, int) (int, error)
+pkg syscall (netbsd-amd64-cgo), func Pipe([]int) error
+pkg syscall (netbsd-amd64-cgo), func Pread(int, []uint8, int64) (int, error)
+pkg syscall (netbsd-amd64-cgo), func Pwrite(int, []uint8, int64) (int, error)
+pkg syscall (netbsd-amd64-cgo), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (netbsd-amd64-cgo), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (netbsd-amd64-cgo), func Read(int, []uint8) (int, error)
+pkg syscall (netbsd-amd64-cgo), func ReadDirent(int, []uint8) (int, error)
+pkg syscall (netbsd-amd64-cgo), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
+pkg syscall (netbsd-amd64-cgo), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
+pkg syscall (netbsd-amd64-cgo), func Revoke(string) error
+pkg syscall (netbsd-amd64-cgo), func RouteRIB(int, int) ([]uint8, error)
+pkg syscall (netbsd-amd64-cgo), func Seek(int, int64, int) (int64, error)
+pkg syscall (netbsd-amd64-cgo), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error
+pkg syscall (netbsd-amd64-cgo), func Sendfile(int, int, *int64, int) (int, error)
+pkg syscall (netbsd-amd64-cgo), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
+pkg syscall (netbsd-amd64-cgo), func Sendto(int, []uint8, int, Sockaddr) error
+pkg syscall (netbsd-amd64-cgo), func SetBpf(int, []BpfInsn) error
+pkg syscall (netbsd-amd64-cgo), func SetBpfBuflen(int, int) (int, error)
+pkg syscall (netbsd-amd64-cgo), func SetBpfDatalink(int, int) (int, error)
+pkg syscall (netbsd-amd64-cgo), func SetBpfHeadercmpl(int, int) error
+pkg syscall (netbsd-amd64-cgo), func SetBpfImmediate(int, int) error
+pkg syscall (netbsd-amd64-cgo), func SetBpfInterface(int, string) error
+pkg syscall (netbsd-amd64-cgo), func SetBpfPromisc(int, int) error
+pkg syscall (netbsd-amd64-cgo), func SetBpfTimeout(int, *Timeval) error
+pkg syscall (netbsd-amd64-cgo), func SetKevent(*Kevent_t, int, int, int)
+pkg syscall (netbsd-amd64-cgo), func SetNonblock(int, bool) error
+pkg syscall (netbsd-amd64-cgo), func Setegid(int) error
+pkg syscall (netbsd-amd64-cgo), func Seteuid(int) error
+pkg syscall (netbsd-amd64-cgo), func Setgid(int) error
+pkg syscall (netbsd-amd64-cgo), func Setgroups([]int) error
+pkg syscall (netbsd-amd64-cgo), func Setpgid(int, int) error
+pkg syscall (netbsd-amd64-cgo), func Setpriority(int, int, int) error
+pkg syscall (netbsd-amd64-cgo), func Setregid(int, int) error
+pkg syscall (netbsd-amd64-cgo), func Setreuid(int, int) error
+pkg syscall (netbsd-amd64-cgo), func Setrlimit(int, *Rlimit) error
+pkg syscall (netbsd-amd64-cgo), func Setsid() (int, error)
+pkg syscall (netbsd-amd64-cgo), func SetsockoptByte(int, int, int, uint8) error
+pkg syscall (netbsd-amd64-cgo), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
+pkg syscall (netbsd-amd64-cgo), func SetsockoptIPMreq(int, int, int, *IPMreq) error
+pkg syscall (netbsd-amd64-cgo), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error
+pkg syscall (netbsd-amd64-cgo), func SetsockoptInet4Addr(int, int, int, [4]uint8) error
+pkg syscall (netbsd-amd64-cgo), func SetsockoptInt(int, int, int, int) error
+pkg syscall (netbsd-amd64-cgo), func SetsockoptLinger(int, int, int, *Linger) error
+pkg syscall (netbsd-amd64-cgo), func SetsockoptString(int, int, int, string) error
+pkg syscall (netbsd-amd64-cgo), func SetsockoptTimeval(int, int, int, *Timeval) error
+pkg syscall (netbsd-amd64-cgo), func Settimeofday(*Timeval) error
+pkg syscall (netbsd-amd64-cgo), func Setuid(int) error
+pkg syscall (netbsd-amd64-cgo), func Shutdown(int, int) error
+pkg syscall (netbsd-amd64-cgo), func SlicePtrFromStrings([]string) ([]*uint8, error)
+pkg syscall (netbsd-amd64-cgo), func Socket(int, int, int) (int, error)
+pkg syscall (netbsd-amd64-cgo), func Socketpair(int, int, int) ([2]int, error)
+pkg syscall (netbsd-amd64-cgo), func Stat(string, *Stat_t) error
+pkg syscall (netbsd-amd64-cgo), func StringSlicePtr([]string) []*uint8
+pkg syscall (netbsd-amd64-cgo), func Sync() error
+pkg syscall (netbsd-amd64-cgo), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (netbsd-amd64-cgo), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (netbsd-amd64-cgo), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (netbsd-amd64-cgo), func Sysctl(string) (string, error)
+pkg syscall (netbsd-amd64-cgo), func SysctlUint32(string) (uint32, error)
+pkg syscall (netbsd-amd64-cgo), func TimevalToNsec(Timeval) int64
+pkg syscall (netbsd-amd64-cgo), func Truncate(string, int64) error
+pkg syscall (netbsd-amd64-cgo), func Umask(int) int
+pkg syscall (netbsd-amd64-cgo), func UnixRights(...int) []uint8
+pkg syscall (netbsd-amd64-cgo), func Unmount(string, int) error
+pkg syscall (netbsd-amd64-cgo), func Wait4(int, *WaitStatus, int, *Rusage) (int, error)
+pkg syscall (netbsd-amd64-cgo), func Write(int, []uint8) (int, error)
+pkg syscall (netbsd-amd64-cgo), method (*Cmsghdr) SetLen(int)
+pkg syscall (netbsd-amd64-cgo), method (*Iovec) SetLen(int)
+pkg syscall (netbsd-amd64-cgo), method (*Msghdr) SetControllen(int)
+pkg syscall (netbsd-amd64-cgo), type BpfHdr struct
+pkg syscall (netbsd-amd64-cgo), type BpfHdr struct, Caplen uint32
+pkg syscall (netbsd-amd64-cgo), type BpfHdr struct, Datalen uint32
+pkg syscall (netbsd-amd64-cgo), type BpfHdr struct, Hdrlen uint16
+pkg syscall (netbsd-amd64-cgo), type BpfHdr struct, Pad_cgo_0 [6]uint8
+pkg syscall (netbsd-amd64-cgo), type BpfHdr struct, Tstamp BpfTimeval
+pkg syscall (netbsd-amd64-cgo), type BpfInsn struct
+pkg syscall (netbsd-amd64-cgo), type BpfInsn struct, Code uint16
+pkg syscall (netbsd-amd64-cgo), type BpfInsn struct, Jf uint8
+pkg syscall (netbsd-amd64-cgo), type BpfInsn struct, Jt uint8
+pkg syscall (netbsd-amd64-cgo), type BpfInsn struct, K uint32
+pkg syscall (netbsd-amd64-cgo), type BpfProgram struct
+pkg syscall (netbsd-amd64-cgo), type BpfProgram struct, Insns *BpfInsn
+pkg syscall (netbsd-amd64-cgo), type BpfProgram struct, Len uint32
+pkg syscall (netbsd-amd64-cgo), type BpfProgram struct, Pad_cgo_0 [4]uint8
+pkg syscall (netbsd-amd64-cgo), type BpfStat struct
+pkg syscall (netbsd-amd64-cgo), type BpfStat struct, Capt uint64
+pkg syscall (netbsd-amd64-cgo), type BpfStat struct, Drop uint64
+pkg syscall (netbsd-amd64-cgo), type BpfStat struct, Padding [13]uint64
+pkg syscall (netbsd-amd64-cgo), type BpfStat struct, Recv uint64
+pkg syscall (netbsd-amd64-cgo), type BpfTimeval struct
+pkg syscall (netbsd-amd64-cgo), type BpfTimeval struct, Sec int64
+pkg syscall (netbsd-amd64-cgo), type BpfTimeval struct, Usec int64
+pkg syscall (netbsd-amd64-cgo), type BpfVersion struct
+pkg syscall (netbsd-amd64-cgo), type BpfVersion struct, Major uint16
+pkg syscall (netbsd-amd64-cgo), type BpfVersion struct, Minor uint16
+pkg syscall (netbsd-amd64-cgo), type Cmsghdr struct
+pkg syscall (netbsd-amd64-cgo), type Cmsghdr struct, Len uint32
+pkg syscall (netbsd-amd64-cgo), type Cmsghdr struct, Level int32
+pkg syscall (netbsd-amd64-cgo), type Cmsghdr struct, Type int32
+pkg syscall (netbsd-amd64-cgo), type Credential struct
+pkg syscall (netbsd-amd64-cgo), type Credential struct, Gid uint32
+pkg syscall (netbsd-amd64-cgo), type Credential struct, Groups []uint32
+pkg syscall (netbsd-amd64-cgo), type Credential struct, Uid uint32
+pkg syscall (netbsd-amd64-cgo), type Dirent struct
+pkg syscall (netbsd-amd64-cgo), type Dirent struct, Fileno uint64
+pkg syscall (netbsd-amd64-cgo), type Dirent struct, Name [512]int8
+pkg syscall (netbsd-amd64-cgo), type Dirent struct, Namlen uint16
+pkg syscall (netbsd-amd64-cgo), type Dirent struct, Pad_cgo_0 [3]uint8
+pkg syscall (netbsd-amd64-cgo), type Dirent struct, Reclen uint16
+pkg syscall (netbsd-amd64-cgo), type Dirent struct, Type uint8
+pkg syscall (netbsd-amd64-cgo), type FdSet struct
+pkg syscall (netbsd-amd64-cgo), type FdSet struct, Bits [8]uint32
+pkg syscall (netbsd-amd64-cgo), type Flock_t struct
+pkg syscall (netbsd-amd64-cgo), type Flock_t struct, Len int64
+pkg syscall (netbsd-amd64-cgo), type Flock_t struct, Pid int32
+pkg syscall (netbsd-amd64-cgo), type Flock_t struct, Start int64
+pkg syscall (netbsd-amd64-cgo), type Flock_t struct, Type int16
+pkg syscall (netbsd-amd64-cgo), type Flock_t struct, Whence int16
+pkg syscall (netbsd-amd64-cgo), type Fsid struct
+pkg syscall (netbsd-amd64-cgo), type Fsid struct, X__fsid_val [2]int32
+pkg syscall (netbsd-amd64-cgo), type ICMPv6Filter struct
+pkg syscall (netbsd-amd64-cgo), type ICMPv6Filter struct, Filt [8]uint32
+pkg syscall (netbsd-amd64-cgo), type IPv6MTUInfo struct
+pkg syscall (netbsd-amd64-cgo), type IPv6MTUInfo struct, Addr RawSockaddrInet6
+pkg syscall (netbsd-amd64-cgo), type IPv6MTUInfo struct, Mtu uint32
+pkg syscall (netbsd-amd64-cgo), type IfAnnounceMsghdr struct
+pkg syscall (netbsd-amd64-cgo), type IfAnnounceMsghdr struct, Index uint16
+pkg syscall (netbsd-amd64-cgo), type IfAnnounceMsghdr struct, Msglen uint16
+pkg syscall (netbsd-amd64-cgo), type IfAnnounceMsghdr struct, Name [16]int8
+pkg syscall (netbsd-amd64-cgo), type IfAnnounceMsghdr struct, Type uint8
+pkg syscall (netbsd-amd64-cgo), type IfAnnounceMsghdr struct, Version uint8
+pkg syscall (netbsd-amd64-cgo), type IfAnnounceMsghdr struct, What uint16
+pkg syscall (netbsd-amd64-cgo), type IfData struct
+pkg syscall (netbsd-amd64-cgo), type IfData struct, Addrlen uint8
+pkg syscall (netbsd-amd64-cgo), type IfData struct, Baudrate uint64
+pkg syscall (netbsd-amd64-cgo), type IfData struct, Collisions uint64
+pkg syscall (netbsd-amd64-cgo), type IfData struct, Hdrlen uint8
+pkg syscall (netbsd-amd64-cgo), type IfData struct, Ibytes uint64
+pkg syscall (netbsd-amd64-cgo), type IfData struct, Ierrors uint64
+pkg syscall (netbsd-amd64-cgo), type IfData struct, Imcasts uint64
+pkg syscall (netbsd-amd64-cgo), type IfData struct, Ipackets uint64
+pkg syscall (netbsd-amd64-cgo), type IfData struct, Iqdrops uint64
+pkg syscall (netbsd-amd64-cgo), type IfData struct, Lastchange Timespec
+pkg syscall (netbsd-amd64-cgo), type IfData struct, Link_state int32
+pkg syscall (netbsd-amd64-cgo), type IfData struct, Metric uint64
+pkg syscall (netbsd-amd64-cgo), type IfData struct, Mtu uint64
+pkg syscall (netbsd-amd64-cgo), type IfData struct, Noproto uint64
+pkg syscall (netbsd-amd64-cgo), type IfData struct, Obytes uint64
+pkg syscall (netbsd-amd64-cgo), type IfData struct, Oerrors uint64
+pkg syscall (netbsd-amd64-cgo), type IfData struct, Omcasts uint64
+pkg syscall (netbsd-amd64-cgo), type IfData struct, Opackets uint64
+pkg syscall (netbsd-amd64-cgo), type IfData struct, Pad_cgo_0 [1]uint8
+pkg syscall (netbsd-amd64-cgo), type IfData struct, Type uint8
+pkg syscall (netbsd-amd64-cgo), type IfMsghdr struct
+pkg syscall (netbsd-amd64-cgo), type IfMsghdr struct, Addrs int32
+pkg syscall (netbsd-amd64-cgo), type IfMsghdr struct, Data IfData
+pkg syscall (netbsd-amd64-cgo), type IfMsghdr struct, Flags int32
+pkg syscall (netbsd-amd64-cgo), type IfMsghdr struct, Index uint16
+pkg syscall (netbsd-amd64-cgo), type IfMsghdr struct, Msglen uint16
+pkg syscall (netbsd-amd64-cgo), type IfMsghdr struct, Pad_cgo_0 [2]uint8
+pkg syscall (netbsd-amd64-cgo), type IfMsghdr struct, Type uint8
+pkg syscall (netbsd-amd64-cgo), type IfMsghdr struct, Version uint8
+pkg syscall (netbsd-amd64-cgo), type IfaMsghdr struct
+pkg syscall (netbsd-amd64-cgo), type IfaMsghdr struct, Addrs int32
+pkg syscall (netbsd-amd64-cgo), type IfaMsghdr struct, Flags int32
+pkg syscall (netbsd-amd64-cgo), type IfaMsghdr struct, Index uint16
+pkg syscall (netbsd-amd64-cgo), type IfaMsghdr struct, Metric int32
+pkg syscall (netbsd-amd64-cgo), type IfaMsghdr struct, Msglen uint16
+pkg syscall (netbsd-amd64-cgo), type IfaMsghdr struct, Pad_cgo_0 [6]uint8
+pkg syscall (netbsd-amd64-cgo), type IfaMsghdr struct, Type uint8
+pkg syscall (netbsd-amd64-cgo), type IfaMsghdr struct, Version uint8
+pkg syscall (netbsd-amd64-cgo), type Inet6Pktinfo struct
+pkg syscall (netbsd-amd64-cgo), type Inet6Pktinfo struct, Addr [16]uint8
+pkg syscall (netbsd-amd64-cgo), type Inet6Pktinfo struct, Ifindex uint32
+pkg syscall (netbsd-amd64-cgo), type InterfaceAddrMessage struct
+pkg syscall (netbsd-amd64-cgo), type InterfaceAddrMessage struct, Data []uint8
+pkg syscall (netbsd-amd64-cgo), type InterfaceAddrMessage struct, Header IfaMsghdr
+pkg syscall (netbsd-amd64-cgo), type InterfaceAnnounceMessage struct
+pkg syscall (netbsd-amd64-cgo), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr
+pkg syscall (netbsd-amd64-cgo), type InterfaceMessage struct
+pkg syscall (netbsd-amd64-cgo), type InterfaceMessage struct, Data []uint8
+pkg syscall (netbsd-amd64-cgo), type InterfaceMessage struct, Header IfMsghdr
+pkg syscall (netbsd-amd64-cgo), type Iovec struct
+pkg syscall (netbsd-amd64-cgo), type Iovec struct, Base *uint8
+pkg syscall (netbsd-amd64-cgo), type Iovec struct, Len uint64
+pkg syscall (netbsd-amd64-cgo), type Kevent_t struct
+pkg syscall (netbsd-amd64-cgo), type Kevent_t struct, Data int64
+pkg syscall (netbsd-amd64-cgo), type Kevent_t struct, Fflags uint32
+pkg syscall (netbsd-amd64-cgo), type Kevent_t struct, Filter uint32
+pkg syscall (netbsd-amd64-cgo), type Kevent_t struct, Flags uint32
+pkg syscall (netbsd-amd64-cgo), type Kevent_t struct, Ident uint64
+pkg syscall (netbsd-amd64-cgo), type Kevent_t struct, Pad_cgo_0 [4]uint8
+pkg syscall (netbsd-amd64-cgo), type Kevent_t struct, Udata int64
+pkg syscall (netbsd-amd64-cgo), type Mclpool [0]uint8
+pkg syscall (netbsd-amd64-cgo), type Msghdr struct
+pkg syscall (netbsd-amd64-cgo), type Msghdr struct, Control *uint8
+pkg syscall (netbsd-amd64-cgo), type Msghdr struct, Controllen uint32
+pkg syscall (netbsd-amd64-cgo), type Msghdr struct, Flags int32
+pkg syscall (netbsd-amd64-cgo), type Msghdr struct, Iov *Iovec
+pkg syscall (netbsd-amd64-cgo), type Msghdr struct, Iovlen int32
+pkg syscall (netbsd-amd64-cgo), type Msghdr struct, Name *uint8
+pkg syscall (netbsd-amd64-cgo), type Msghdr struct, Namelen uint32
+pkg syscall (netbsd-amd64-cgo), type Msghdr struct, Pad_cgo_0 [4]uint8
+pkg syscall (netbsd-amd64-cgo), type Msghdr struct, Pad_cgo_1 [4]uint8
+pkg syscall (netbsd-amd64-cgo), type RawSockaddr struct, Data [14]int8
+pkg syscall (netbsd-amd64-cgo), type RawSockaddr struct, Family uint8
+pkg syscall (netbsd-amd64-cgo), type RawSockaddr struct, Len uint8
+pkg syscall (netbsd-amd64-cgo), type RawSockaddrAny struct, Pad [92]int8
+pkg syscall (netbsd-amd64-cgo), type RawSockaddrDatalink struct
+pkg syscall (netbsd-amd64-cgo), type RawSockaddrDatalink struct, Alen uint8
+pkg syscall (netbsd-amd64-cgo), type RawSockaddrDatalink struct, Data [12]int8
+pkg syscall (netbsd-amd64-cgo), type RawSockaddrDatalink struct, Family uint8
+pkg syscall (netbsd-amd64-cgo), type RawSockaddrDatalink struct, Index uint16
+pkg syscall (netbsd-amd64-cgo), type RawSockaddrDatalink struct, Len uint8
+pkg syscall (netbsd-amd64-cgo), type RawSockaddrDatalink struct, Nlen uint8
+pkg syscall (netbsd-amd64-cgo), type RawSockaddrDatalink struct, Slen uint8
+pkg syscall (netbsd-amd64-cgo), type RawSockaddrDatalink struct, Type uint8
+pkg syscall (netbsd-amd64-cgo), type RawSockaddrInet4 struct, Family uint8
+pkg syscall (netbsd-amd64-cgo), type RawSockaddrInet4 struct, Len uint8
+pkg syscall (netbsd-amd64-cgo), type RawSockaddrInet4 struct, Zero [8]int8
+pkg syscall (netbsd-amd64-cgo), type RawSockaddrInet6 struct, Family uint8
+pkg syscall (netbsd-amd64-cgo), type RawSockaddrInet6 struct, Len uint8
+pkg syscall (netbsd-amd64-cgo), type RawSockaddrUnix struct
+pkg syscall (netbsd-amd64-cgo), type RawSockaddrUnix struct, Family uint8
+pkg syscall (netbsd-amd64-cgo), type RawSockaddrUnix struct, Len uint8
+pkg syscall (netbsd-amd64-cgo), type RawSockaddrUnix struct, Path [104]int8
+pkg syscall (netbsd-amd64-cgo), type Rlimit struct
+pkg syscall (netbsd-amd64-cgo), type Rlimit struct, Cur uint64
+pkg syscall (netbsd-amd64-cgo), type Rlimit struct, Max uint64
+pkg syscall (netbsd-amd64-cgo), type RouteMessage struct
+pkg syscall (netbsd-amd64-cgo), type RouteMessage struct, Data []uint8
+pkg syscall (netbsd-amd64-cgo), type RouteMessage struct, Header RtMsghdr
+pkg syscall (netbsd-amd64-cgo), type RoutingMessage interface, unexported methods
+pkg syscall (netbsd-amd64-cgo), type RtMetrics struct
+pkg syscall (netbsd-amd64-cgo), type RtMetrics struct, Expire int64
+pkg syscall (netbsd-amd64-cgo), type RtMetrics struct, Hopcount uint64
+pkg syscall (netbsd-amd64-cgo), type RtMetrics struct, Locks uint64
+pkg syscall (netbsd-amd64-cgo), type RtMetrics struct, Mtu uint64
+pkg syscall (netbsd-amd64-cgo), type RtMetrics struct, Pksent int64
+pkg syscall (netbsd-amd64-cgo), type RtMetrics struct, Recvpipe uint64
+pkg syscall (netbsd-amd64-cgo), type RtMetrics struct, Rtt uint64
+pkg syscall (netbsd-amd64-cgo), type RtMetrics struct, Rttvar uint64
+pkg syscall (netbsd-amd64-cgo), type RtMetrics struct, Sendpipe uint64
+pkg syscall (netbsd-amd64-cgo), type RtMetrics struct, Ssthresh uint64
+pkg syscall (netbsd-amd64-cgo), type RtMsghdr struct
+pkg syscall (netbsd-amd64-cgo), type RtMsghdr struct, Addrs int32
+pkg syscall (netbsd-amd64-cgo), type RtMsghdr struct, Errno int32
+pkg syscall (netbsd-amd64-cgo), type RtMsghdr struct, Flags int32
+pkg syscall (netbsd-amd64-cgo), type RtMsghdr struct, Index uint16
+pkg syscall (netbsd-amd64-cgo), type RtMsghdr struct, Inits int32
+pkg syscall (netbsd-amd64-cgo), type RtMsghdr struct, Msglen uint16
+pkg syscall (netbsd-amd64-cgo), type RtMsghdr struct, Pad_cgo_0 [2]uint8
+pkg syscall (netbsd-amd64-cgo), type RtMsghdr struct, Pad_cgo_1 [4]uint8
+pkg syscall (netbsd-amd64-cgo), type RtMsghdr struct, Pid int32
+pkg syscall (netbsd-amd64-cgo), type RtMsghdr struct, Rmx RtMetrics
+pkg syscall (netbsd-amd64-cgo), type RtMsghdr struct, Seq int32
+pkg syscall (netbsd-amd64-cgo), type RtMsghdr struct, Type uint8
+pkg syscall (netbsd-amd64-cgo), type RtMsghdr struct, Use int32
+pkg syscall (netbsd-amd64-cgo), type RtMsghdr struct, Version uint8
+pkg syscall (netbsd-amd64-cgo), type Rusage struct, Idrss int64
+pkg syscall (netbsd-amd64-cgo), type Rusage struct, Inblock int64
+pkg syscall (netbsd-amd64-cgo), type Rusage struct, Isrss int64
+pkg syscall (netbsd-amd64-cgo), type Rusage struct, Ixrss int64
+pkg syscall (netbsd-amd64-cgo), type Rusage struct, Majflt int64
+pkg syscall (netbsd-amd64-cgo), type Rusage struct, Maxrss int64
+pkg syscall (netbsd-amd64-cgo), type Rusage struct, Minflt int64
+pkg syscall (netbsd-amd64-cgo), type Rusage struct, Msgrcv int64
+pkg syscall (netbsd-amd64-cgo), type Rusage struct, Msgsnd int64
+pkg syscall (netbsd-amd64-cgo), type Rusage struct, Nivcsw int64
+pkg syscall (netbsd-amd64-cgo), type Rusage struct, Nsignals int64
+pkg syscall (netbsd-amd64-cgo), type Rusage struct, Nswap int64
+pkg syscall (netbsd-amd64-cgo), type Rusage struct, Nvcsw int64
+pkg syscall (netbsd-amd64-cgo), type Rusage struct, Oublock int64
+pkg syscall (netbsd-amd64-cgo), type Rusage struct, Stime Timeval
+pkg syscall (netbsd-amd64-cgo), type Rusage struct, Utime Timeval
+pkg syscall (netbsd-amd64-cgo), type SockaddrDatalink struct
+pkg syscall (netbsd-amd64-cgo), type SockaddrDatalink struct, Alen uint8
+pkg syscall (netbsd-amd64-cgo), type SockaddrDatalink struct, Data [12]int8
+pkg syscall (netbsd-amd64-cgo), type SockaddrDatalink struct, Family uint8
+pkg syscall (netbsd-amd64-cgo), type SockaddrDatalink struct, Index uint16
+pkg syscall (netbsd-amd64-cgo), type SockaddrDatalink struct, Len uint8
+pkg syscall (netbsd-amd64-cgo), type SockaddrDatalink struct, Nlen uint8
+pkg syscall (netbsd-amd64-cgo), type SockaddrDatalink struct, Slen uint8
+pkg syscall (netbsd-amd64-cgo), type SockaddrDatalink struct, Type uint8
+pkg syscall (netbsd-amd64-cgo), type SocketControlMessage struct
+pkg syscall (netbsd-amd64-cgo), type SocketControlMessage struct, Data []uint8
+pkg syscall (netbsd-amd64-cgo), type SocketControlMessage struct, Header Cmsghdr
+pkg syscall (netbsd-amd64-cgo), type Stat_t struct
+pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Atimespec Timespec
+pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Birthtimespec Timespec
+pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Blksize uint32
+pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Blocks int64
+pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Ctimespec Timespec
+pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Dev uint64
+pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Flags uint32
+pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Gen uint32
+pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Gid uint32
+pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Ino uint64
+pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Mode uint32
+pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Mtimespec Timespec
+pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Nlink uint32
+pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Pad_cgo_0 [4]uint8
+pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Pad_cgo_1 [4]uint8
+pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Pad_cgo_2 [4]uint8
+pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Rdev uint64
+pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Size int64
+pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Spare [2]uint32
+pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Uid uint32
+pkg syscall (netbsd-amd64-cgo), type Statfs_t [0]uint8
+pkg syscall (netbsd-amd64-cgo), type SysProcAttr struct, Chroot string
+pkg syscall (netbsd-amd64-cgo), type SysProcAttr struct, Credential *Credential
+pkg syscall (netbsd-amd64-cgo), type SysProcAttr struct, Noctty bool
+pkg syscall (netbsd-amd64-cgo), type SysProcAttr struct, Ptrace bool
+pkg syscall (netbsd-amd64-cgo), type SysProcAttr struct, Setctty bool
+pkg syscall (netbsd-amd64-cgo), type SysProcAttr struct, Setpgid bool
+pkg syscall (netbsd-amd64-cgo), type SysProcAttr struct, Setsid bool
+pkg syscall (netbsd-amd64-cgo), type Sysctlnode struct
+pkg syscall (netbsd-amd64-cgo), type Sysctlnode struct, Flags uint32
+pkg syscall (netbsd-amd64-cgo), type Sysctlnode struct, Name [32]int8
+pkg syscall (netbsd-amd64-cgo), type Sysctlnode struct, Num int32
+pkg syscall (netbsd-amd64-cgo), type Sysctlnode struct, Un [16]uint8
+pkg syscall (netbsd-amd64-cgo), type Sysctlnode struct, Ver uint32
+pkg syscall (netbsd-amd64-cgo), type Sysctlnode struct, X__rsvd uint32
+pkg syscall (netbsd-amd64-cgo), type Sysctlnode struct, X_sysctl_desc [8]uint8
+pkg syscall (netbsd-amd64-cgo), type Sysctlnode struct, X_sysctl_func [8]uint8
+pkg syscall (netbsd-amd64-cgo), type Sysctlnode struct, X_sysctl_parent [8]uint8
+pkg syscall (netbsd-amd64-cgo), type Sysctlnode struct, X_sysctl_size [8]uint8
+pkg syscall (netbsd-amd64-cgo), type Timespec struct, Nsec int64
+pkg syscall (netbsd-amd64-cgo), type Timespec struct, Sec int64
+pkg syscall (netbsd-amd64-cgo), type Timeval struct, Pad_cgo_0 [4]uint8
+pkg syscall (netbsd-amd64-cgo), type Timeval struct, Sec int64
+pkg syscall (netbsd-amd64-cgo), type Timeval struct, Usec int32
+pkg syscall (netbsd-amd64-cgo), type WaitStatus uint32
+pkg syscall (netbsd-amd64-cgo), var Stderr int
+pkg syscall (netbsd-amd64-cgo), var Stdin int
+pkg syscall (netbsd-amd64-cgo), var Stdout int
+pkg syscall (netbsd-arm), const AF_APPLETALK ideal-int
+pkg syscall (netbsd-arm), const AF_ARP ideal-int
+pkg syscall (netbsd-arm), const AF_BLUETOOTH ideal-int
+pkg syscall (netbsd-arm), const AF_CCITT ideal-int
+pkg syscall (netbsd-arm), const AF_CHAOS ideal-int
+pkg syscall (netbsd-arm), const AF_CNT ideal-int
+pkg syscall (netbsd-arm), const AF_COIP ideal-int
+pkg syscall (netbsd-arm), const AF_DATAKIT ideal-int
+pkg syscall (netbsd-arm), const AF_DECnet ideal-int
+pkg syscall (netbsd-arm), const AF_DLI ideal-int
+pkg syscall (netbsd-arm), const AF_E164 ideal-int
+pkg syscall (netbsd-arm), const AF_ECMA ideal-int
+pkg syscall (netbsd-arm), const AF_HYLINK ideal-int
+pkg syscall (netbsd-arm), const AF_IEEE80211 ideal-int
+pkg syscall (netbsd-arm), const AF_IMPLINK ideal-int
+pkg syscall (netbsd-arm), const AF_IPX ideal-int
+pkg syscall (netbsd-arm), const AF_ISDN ideal-int
+pkg syscall (netbsd-arm), const AF_ISO ideal-int
+pkg syscall (netbsd-arm), const AF_LAT ideal-int
+pkg syscall (netbsd-arm), const AF_LINK ideal-int
+pkg syscall (netbsd-arm), const AF_LOCAL ideal-int
+pkg syscall (netbsd-arm), const AF_MAX ideal-int
+pkg syscall (netbsd-arm), const AF_MPLS ideal-int
+pkg syscall (netbsd-arm), const AF_NATM ideal-int
+pkg syscall (netbsd-arm), const AF_NS ideal-int
+pkg syscall (netbsd-arm), const AF_OROUTE ideal-int
+pkg syscall (netbsd-arm), const AF_OSI ideal-int
+pkg syscall (netbsd-arm), const AF_PUP ideal-int
+pkg syscall (netbsd-arm), const AF_ROUTE ideal-int
+pkg syscall (netbsd-arm), const AF_SNA ideal-int
+pkg syscall (netbsd-arm), const ARPHRD_ARCNET ideal-int
+pkg syscall (netbsd-arm), const ARPHRD_ETHER ideal-int
+pkg syscall (netbsd-arm), const ARPHRD_FRELAY ideal-int
+pkg syscall (netbsd-arm), const ARPHRD_IEEE1394 ideal-int
+pkg syscall (netbsd-arm), const ARPHRD_IEEE802 ideal-int
+pkg syscall (netbsd-arm), const ARPHRD_STRIP ideal-int
+pkg syscall (netbsd-arm), const B0 ideal-int
+pkg syscall (netbsd-arm), const B110 ideal-int
+pkg syscall (netbsd-arm), const B115200 ideal-int
+pkg syscall (netbsd-arm), const B1200 ideal-int
+pkg syscall (netbsd-arm), const B134 ideal-int
+pkg syscall (netbsd-arm), const B14400 ideal-int
+pkg syscall (netbsd-arm), const B150 ideal-int
+pkg syscall (netbsd-arm), const B1800 ideal-int
+pkg syscall (netbsd-arm), const B19200 ideal-int
+pkg syscall (netbsd-arm), const B200 ideal-int
+pkg syscall (netbsd-arm), const B230400 ideal-int
+pkg syscall (netbsd-arm), const B2400 ideal-int
+pkg syscall (netbsd-arm), const B28800 ideal-int
+pkg syscall (netbsd-arm), const B300 ideal-int
+pkg syscall (netbsd-arm), const B38400 ideal-int
+pkg syscall (netbsd-arm), const B460800 ideal-int
+pkg syscall (netbsd-arm), const B4800 ideal-int
+pkg syscall (netbsd-arm), const B50 ideal-int
+pkg syscall (netbsd-arm), const B57600 ideal-int
+pkg syscall (netbsd-arm), const B600 ideal-int
+pkg syscall (netbsd-arm), const B7200 ideal-int
+pkg syscall (netbsd-arm), const B75 ideal-int
+pkg syscall (netbsd-arm), const B76800 ideal-int
+pkg syscall (netbsd-arm), const B921600 ideal-int
+pkg syscall (netbsd-arm), const B9600 ideal-int
+pkg syscall (netbsd-arm), const BIOCFEEDBACK ideal-int
+pkg syscall (netbsd-arm), const BIOCFLUSH ideal-int
+pkg syscall (netbsd-arm), const BIOCGBLEN ideal-int
+pkg syscall (netbsd-arm), const BIOCGDLT ideal-int
+pkg syscall (netbsd-arm), const BIOCGDLTLIST ideal-int
+pkg syscall (netbsd-arm), const BIOCGETIF ideal-int
+pkg syscall (netbsd-arm), const BIOCGFEEDBACK ideal-int
+pkg syscall (netbsd-arm), const BIOCGHDRCMPLT ideal-int
+pkg syscall (netbsd-arm), const BIOCGRTIMEOUT ideal-int
+pkg syscall (netbsd-arm), const BIOCGSEESENT ideal-int
+pkg syscall (netbsd-arm), const BIOCGSTATS ideal-int
+pkg syscall (netbsd-arm), const BIOCGSTATSOLD ideal-int
+pkg syscall (netbsd-arm), const BIOCIMMEDIATE ideal-int
+pkg syscall (netbsd-arm), const BIOCPROMISC ideal-int
+pkg syscall (netbsd-arm), const BIOCSBLEN ideal-int
+pkg syscall (netbsd-arm), const BIOCSDLT ideal-int
+pkg syscall (netbsd-arm), const BIOCSETF ideal-int
+pkg syscall (netbsd-arm), const BIOCSETIF ideal-int
+pkg syscall (netbsd-arm), const BIOCSFEEDBACK ideal-int
+pkg syscall (netbsd-arm), const BIOCSHDRCMPLT ideal-int
+pkg syscall (netbsd-arm), const BIOCSRTIMEOUT ideal-int
+pkg syscall (netbsd-arm), const BIOCSSEESENT ideal-int
+pkg syscall (netbsd-arm), const BIOCSTCPF ideal-int
+pkg syscall (netbsd-arm), const BIOCSUDPF ideal-int
+pkg syscall (netbsd-arm), const BIOCVERSION ideal-int
+pkg syscall (netbsd-arm), const BPF_A ideal-int
+pkg syscall (netbsd-arm), const BPF_ABS ideal-int
+pkg syscall (netbsd-arm), const BPF_ADD ideal-int
+pkg syscall (netbsd-arm), const BPF_ALIGNMENT ideal-int
+pkg syscall (netbsd-arm), const BPF_ALIGNMENT32 ideal-int
+pkg syscall (netbsd-arm), const BPF_ALU ideal-int
+pkg syscall (netbsd-arm), const BPF_AND ideal-int
+pkg syscall (netbsd-arm), const BPF_B ideal-int
+pkg syscall (netbsd-arm), const BPF_DFLTBUFSIZE ideal-int
+pkg syscall (netbsd-arm), const BPF_DIV ideal-int
+pkg syscall (netbsd-arm), const BPF_H ideal-int
+pkg syscall (netbsd-arm), const BPF_IMM ideal-int
+pkg syscall (netbsd-arm), const BPF_IND ideal-int
+pkg syscall (netbsd-arm), const BPF_JA ideal-int
+pkg syscall (netbsd-arm), const BPF_JEQ ideal-int
+pkg syscall (netbsd-arm), const BPF_JGE ideal-int
+pkg syscall (netbsd-arm), const BPF_JGT ideal-int
+pkg syscall (netbsd-arm), const BPF_JMP ideal-int
+pkg syscall (netbsd-arm), const BPF_JSET ideal-int
+pkg syscall (netbsd-arm), const BPF_K ideal-int
+pkg syscall (netbsd-arm), const BPF_LD ideal-int
+pkg syscall (netbsd-arm), const BPF_LDX ideal-int
+pkg syscall (netbsd-arm), const BPF_LEN ideal-int
+pkg syscall (netbsd-arm), const BPF_LSH ideal-int
+pkg syscall (netbsd-arm), const BPF_MAJOR_VERSION ideal-int
+pkg syscall (netbsd-arm), const BPF_MAXBUFSIZE ideal-int
+pkg syscall (netbsd-arm), const BPF_MAXINSNS ideal-int
+pkg syscall (netbsd-arm), const BPF_MEM ideal-int
+pkg syscall (netbsd-arm), const BPF_MEMWORDS ideal-int
+pkg syscall (netbsd-arm), const BPF_MINBUFSIZE ideal-int
+pkg syscall (netbsd-arm), const BPF_MINOR_VERSION ideal-int
+pkg syscall (netbsd-arm), const BPF_MISC ideal-int
+pkg syscall (netbsd-arm), const BPF_MSH ideal-int
+pkg syscall (netbsd-arm), const BPF_MUL ideal-int
+pkg syscall (netbsd-arm), const BPF_NEG ideal-int
+pkg syscall (netbsd-arm), const BPF_OR ideal-int
+pkg syscall (netbsd-arm), const BPF_RELEASE ideal-int
+pkg syscall (netbsd-arm), const BPF_RET ideal-int
+pkg syscall (netbsd-arm), const BPF_RSH ideal-int
+pkg syscall (netbsd-arm), const BPF_ST ideal-int
+pkg syscall (netbsd-arm), const BPF_STX ideal-int
+pkg syscall (netbsd-arm), const BPF_SUB ideal-int
+pkg syscall (netbsd-arm), const BPF_TAX ideal-int
+pkg syscall (netbsd-arm), const BPF_TXA ideal-int
+pkg syscall (netbsd-arm), const BPF_W ideal-int
+pkg syscall (netbsd-arm), const BPF_X ideal-int
+pkg syscall (netbsd-arm), const BRKINT ideal-int
+pkg syscall (netbsd-arm), const CFLUSH ideal-int
+pkg syscall (netbsd-arm), const CLOCAL ideal-int
+pkg syscall (netbsd-arm), const CREAD ideal-int
+pkg syscall (netbsd-arm), const CS5 ideal-int
+pkg syscall (netbsd-arm), const CS6 ideal-int
+pkg syscall (netbsd-arm), const CS7 ideal-int
+pkg syscall (netbsd-arm), const CS8 ideal-int
+pkg syscall (netbsd-arm), const CSIZE ideal-int
+pkg syscall (netbsd-arm), const CSTART ideal-int
+pkg syscall (netbsd-arm), const CSTATUS ideal-int
+pkg syscall (netbsd-arm), const CSTOP ideal-int
+pkg syscall (netbsd-arm), const CSTOPB ideal-int
+pkg syscall (netbsd-arm), const CSUSP ideal-int
+pkg syscall (netbsd-arm), const CTL_MAXNAME ideal-int
+pkg syscall (netbsd-arm), const CTL_NET ideal-int
+pkg syscall (netbsd-arm), const CTL_QUERY ideal-int
+pkg syscall (netbsd-arm), const DIOCBSFLUSH ideal-int
+pkg syscall (netbsd-arm), const DLT_A429 ideal-int
+pkg syscall (netbsd-arm), const DLT_A653_ICM ideal-int
+pkg syscall (netbsd-arm), const DLT_AIRONET_HEADER ideal-int
+pkg syscall (netbsd-arm), const DLT_AOS ideal-int
+pkg syscall (netbsd-arm), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int
+pkg syscall (netbsd-arm), const DLT_ARCNET ideal-int
+pkg syscall (netbsd-arm), const DLT_ARCNET_LINUX ideal-int
+pkg syscall (netbsd-arm), const DLT_ATM_CLIP ideal-int
+pkg syscall (netbsd-arm), const DLT_ATM_RFC1483 ideal-int
+pkg syscall (netbsd-arm), const DLT_AURORA ideal-int
+pkg syscall (netbsd-arm), const DLT_AX25 ideal-int
+pkg syscall (netbsd-arm), const DLT_AX25_KISS ideal-int
+pkg syscall (netbsd-arm), const DLT_BACNET_MS_TP ideal-int
+pkg syscall (netbsd-arm), const DLT_BLUETOOTH_HCI_H4 ideal-int
+pkg syscall (netbsd-arm), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR ideal-int
+pkg syscall (netbsd-arm), const DLT_CAN20B ideal-int
+pkg syscall (netbsd-arm), const DLT_CAN_SOCKETCAN ideal-int
+pkg syscall (netbsd-arm), const DLT_CHAOS ideal-int
+pkg syscall (netbsd-arm), const DLT_CISCO_IOS ideal-int
+pkg syscall (netbsd-arm), const DLT_C_HDLC ideal-int
+pkg syscall (netbsd-arm), const DLT_C_HDLC_WITH_DIR ideal-int
+pkg syscall (netbsd-arm), const DLT_DECT ideal-int
+pkg syscall (netbsd-arm), const DLT_DOCSIS ideal-int
+pkg syscall (netbsd-arm), const DLT_ECONET ideal-int
+pkg syscall (netbsd-arm), const DLT_EN10MB ideal-int
+pkg syscall (netbsd-arm), const DLT_EN3MB ideal-int
+pkg syscall (netbsd-arm), const DLT_ENC ideal-int
+pkg syscall (netbsd-arm), const DLT_ERF ideal-int
+pkg syscall (netbsd-arm), const DLT_ERF_ETH ideal-int
+pkg syscall (netbsd-arm), const DLT_ERF_POS ideal-int
+pkg syscall (netbsd-arm), const DLT_FC_2 ideal-int
+pkg syscall (netbsd-arm), const DLT_FC_2_WITH_FRAME_DELIMS ideal-int
+pkg syscall (netbsd-arm), const DLT_FDDI ideal-int
+pkg syscall (netbsd-arm), const DLT_FLEXRAY ideal-int
+pkg syscall (netbsd-arm), const DLT_FRELAY ideal-int
+pkg syscall (netbsd-arm), const DLT_FRELAY_WITH_DIR ideal-int
+pkg syscall (netbsd-arm), const DLT_GCOM_SERIAL ideal-int
+pkg syscall (netbsd-arm), const DLT_GCOM_T1E1 ideal-int
+pkg syscall (netbsd-arm), const DLT_GPF_F ideal-int
+pkg syscall (netbsd-arm), const DLT_GPF_T ideal-int
+pkg syscall (netbsd-arm), const DLT_GPRS_LLC ideal-int
+pkg syscall (netbsd-arm), const DLT_GSMTAP_ABIS ideal-int
+pkg syscall (netbsd-arm), const DLT_GSMTAP_UM ideal-int
+pkg syscall (netbsd-arm), const DLT_HDLC ideal-int
+pkg syscall (netbsd-arm), const DLT_HHDLC ideal-int
+pkg syscall (netbsd-arm), const DLT_HIPPI ideal-int
+pkg syscall (netbsd-arm), const DLT_IBM_SN ideal-int
+pkg syscall (netbsd-arm), const DLT_IBM_SP ideal-int
+pkg syscall (netbsd-arm), const DLT_IEEE802 ideal-int
+pkg syscall (netbsd-arm), const DLT_IEEE802_11 ideal-int
+pkg syscall (netbsd-arm), const DLT_IEEE802_11_RADIO ideal-int
+pkg syscall (netbsd-arm), const DLT_IEEE802_11_RADIO_AVS ideal-int
+pkg syscall (netbsd-arm), const DLT_IEEE802_15_4 ideal-int
+pkg syscall (netbsd-arm), const DLT_IEEE802_15_4_LINUX ideal-int
+pkg syscall (netbsd-arm), const DLT_IEEE802_15_4_NONASK_PHY ideal-int
+pkg syscall (netbsd-arm), const DLT_IEEE802_16_MAC_CPS ideal-int
+pkg syscall (netbsd-arm), const DLT_IEEE802_16_MAC_CPS_RADIO ideal-int
+pkg syscall (netbsd-arm), const DLT_IPMB ideal-int
+pkg syscall (netbsd-arm), const DLT_IPMB_LINUX ideal-int
+pkg syscall (netbsd-arm), const DLT_IPNET ideal-int
+pkg syscall (netbsd-arm), const DLT_IPV4 ideal-int
+pkg syscall (netbsd-arm), const DLT_IPV6 ideal-int
+pkg syscall (netbsd-arm), const DLT_IP_OVER_FC ideal-int
+pkg syscall (netbsd-arm), const DLT_JUNIPER_ATM1 ideal-int
+pkg syscall (netbsd-arm), const DLT_JUNIPER_ATM2 ideal-int
+pkg syscall (netbsd-arm), const DLT_JUNIPER_CHDLC ideal-int
+pkg syscall (netbsd-arm), const DLT_JUNIPER_ES ideal-int
+pkg syscall (netbsd-arm), const DLT_JUNIPER_ETHER ideal-int
+pkg syscall (netbsd-arm), const DLT_JUNIPER_FRELAY ideal-int
+pkg syscall (netbsd-arm), const DLT_JUNIPER_GGSN ideal-int
+pkg syscall (netbsd-arm), const DLT_JUNIPER_ISM ideal-int
+pkg syscall (netbsd-arm), const DLT_JUNIPER_MFR ideal-int
+pkg syscall (netbsd-arm), const DLT_JUNIPER_MLFR ideal-int
+pkg syscall (netbsd-arm), const DLT_JUNIPER_MLPPP ideal-int
+pkg syscall (netbsd-arm), const DLT_JUNIPER_MONITOR ideal-int
+pkg syscall (netbsd-arm), const DLT_JUNIPER_PIC_PEER ideal-int
+pkg syscall (netbsd-arm), const DLT_JUNIPER_PPP ideal-int
+pkg syscall (netbsd-arm), const DLT_JUNIPER_PPPOE ideal-int
+pkg syscall (netbsd-arm), const DLT_JUNIPER_PPPOE_ATM ideal-int
+pkg syscall (netbsd-arm), const DLT_JUNIPER_SERVICES ideal-int
+pkg syscall (netbsd-arm), const DLT_JUNIPER_ST ideal-int
+pkg syscall (netbsd-arm), const DLT_JUNIPER_VP ideal-int
+pkg syscall (netbsd-arm), const DLT_LAPB_WITH_DIR ideal-int
+pkg syscall (netbsd-arm), const DLT_LAPD ideal-int
+pkg syscall (netbsd-arm), const DLT_LIN ideal-int
+pkg syscall (netbsd-arm), const DLT_LINUX_EVDEV ideal-int
+pkg syscall (netbsd-arm), const DLT_LINUX_IRDA ideal-int
+pkg syscall (netbsd-arm), const DLT_LINUX_LAPD ideal-int
+pkg syscall (netbsd-arm), const DLT_LINUX_SLL ideal-int
+pkg syscall (netbsd-arm), const DLT_LOOP ideal-int
+pkg syscall (netbsd-arm), const DLT_LTALK ideal-int
+pkg syscall (netbsd-arm), const DLT_MFR ideal-int
+pkg syscall (netbsd-arm), const DLT_MOST ideal-int
+pkg syscall (netbsd-arm), const DLT_MPLS ideal-int
+pkg syscall (netbsd-arm), const DLT_MTP2 ideal-int
+pkg syscall (netbsd-arm), const DLT_MTP2_WITH_PHDR ideal-int
+pkg syscall (netbsd-arm), const DLT_MTP3 ideal-int
+pkg syscall (netbsd-arm), const DLT_NULL ideal-int
+pkg syscall (netbsd-arm), const DLT_PCI_EXP ideal-int
+pkg syscall (netbsd-arm), const DLT_PFLOG ideal-int
+pkg syscall (netbsd-arm), const DLT_PFSYNC ideal-int
+pkg syscall (netbsd-arm), const DLT_PPI ideal-int
+pkg syscall (netbsd-arm), const DLT_PPP ideal-int
+pkg syscall (netbsd-arm), const DLT_PPP_BSDOS ideal-int
+pkg syscall (netbsd-arm), const DLT_PPP_ETHER ideal-int
+pkg syscall (netbsd-arm), const DLT_PPP_PPPD ideal-int
+pkg syscall (netbsd-arm), const DLT_PPP_SERIAL ideal-int
+pkg syscall (netbsd-arm), const DLT_PPP_WITH_DIR ideal-int
+pkg syscall (netbsd-arm), const DLT_PRISM_HEADER ideal-int
+pkg syscall (netbsd-arm), const DLT_PRONET ideal-int
+pkg syscall (netbsd-arm), const DLT_RAIF1 ideal-int
+pkg syscall (netbsd-arm), const DLT_RAW ideal-int
+pkg syscall (netbsd-arm), const DLT_RAWAF_MASK ideal-int
+pkg syscall (netbsd-arm), const DLT_RIO ideal-int
+pkg syscall (netbsd-arm), const DLT_SCCP ideal-int
+pkg syscall (netbsd-arm), const DLT_SITA ideal-int
+pkg syscall (netbsd-arm), const DLT_SLIP ideal-int
+pkg syscall (netbsd-arm), const DLT_SLIP_BSDOS ideal-int
+pkg syscall (netbsd-arm), const DLT_SUNATM ideal-int
+pkg syscall (netbsd-arm), const DLT_SYMANTEC_FIREWALL ideal-int
+pkg syscall (netbsd-arm), const DLT_TZSP ideal-int
+pkg syscall (netbsd-arm), const DLT_USB ideal-int
+pkg syscall (netbsd-arm), const DLT_USB_LINUX ideal-int
+pkg syscall (netbsd-arm), const DLT_USB_LINUX_MMAPPED ideal-int
+pkg syscall (netbsd-arm), const DLT_WIHART ideal-int
+pkg syscall (netbsd-arm), const DLT_X2E_SERIAL ideal-int
+pkg syscall (netbsd-arm), const DLT_X2E_XORAYA ideal-int
+pkg syscall (netbsd-arm), const DT_BLK ideal-int
+pkg syscall (netbsd-arm), const DT_CHR ideal-int
+pkg syscall (netbsd-arm), const DT_DIR ideal-int
+pkg syscall (netbsd-arm), const DT_FIFO ideal-int
+pkg syscall (netbsd-arm), const DT_LNK ideal-int
+pkg syscall (netbsd-arm), const DT_REG ideal-int
+pkg syscall (netbsd-arm), const DT_SOCK ideal-int
+pkg syscall (netbsd-arm), const DT_UNKNOWN ideal-int
+pkg syscall (netbsd-arm), const DT_WHT ideal-int
+pkg syscall (netbsd-arm), const EAUTH Errno
+pkg syscall (netbsd-arm), const EBADMSG Errno
+pkg syscall (netbsd-arm), const EBADRPC Errno
+pkg syscall (netbsd-arm), const ECHO ideal-int
+pkg syscall (netbsd-arm), const ECHOCTL ideal-int
+pkg syscall (netbsd-arm), const ECHOE ideal-int
+pkg syscall (netbsd-arm), const ECHOK ideal-int
+pkg syscall (netbsd-arm), const ECHOKE ideal-int
+pkg syscall (netbsd-arm), const ECHONL ideal-int
+pkg syscall (netbsd-arm), const ECHOPRT ideal-int
+pkg syscall (netbsd-arm), const EFTYPE Errno
+pkg syscall (netbsd-arm), const ELAST Errno
+pkg syscall (netbsd-arm), const EMULTIHOP Errno
+pkg syscall (netbsd-arm), const EMUL_LINUX ideal-int
+pkg syscall (netbsd-arm), const EMUL_LINUX32 ideal-int
+pkg syscall (netbsd-arm), const EMUL_MAXID ideal-int
+pkg syscall (netbsd-arm), const ENEEDAUTH Errno
+pkg syscall (netbsd-arm), const ENOATTR Errno
+pkg syscall (netbsd-arm), const ENODATA Errno
+pkg syscall (netbsd-arm), const ENOLINK Errno
+pkg syscall (netbsd-arm), const ENOSR Errno
+pkg syscall (netbsd-arm), const ENOSTR Errno
+pkg syscall (netbsd-arm), const EPROCLIM Errno
+pkg syscall (netbsd-arm), const EPROCUNAVAIL Errno
+pkg syscall (netbsd-arm), const EPROGMISMATCH Errno
+pkg syscall (netbsd-arm), const EPROGUNAVAIL Errno
+pkg syscall (netbsd-arm), const EPROTO Errno
+pkg syscall (netbsd-arm), const ERPCMISMATCH Errno
+pkg syscall (netbsd-arm), const ETHERCAP_JUMBO_MTU ideal-int
+pkg syscall (netbsd-arm), const ETHERCAP_VLAN_HWTAGGING ideal-int
+pkg syscall (netbsd-arm), const ETHERCAP_VLAN_MTU ideal-int
+pkg syscall (netbsd-arm), const ETHERMIN ideal-int
+pkg syscall (netbsd-arm), const ETHERMTU ideal-int
+pkg syscall (netbsd-arm), const ETHERMTU_JUMBO ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_8023 ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_AARP ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_ACCTON ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_AEONIC ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_ALPHA ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_AMBER ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_AMOEBA ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_APOLLO ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_APOLLODOMAIN ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_APPLETALK ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_APPLITEK ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_ARGONAUT ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_ARP ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_AT ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_ATALK ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_ATOMIC ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_ATT ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_ATTSTANFORD ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_AUTOPHON ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_AXIS ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_BCLOOP ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_BOFL ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_CABLETRON ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_CHAOS ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_COMDESIGN ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_COMPUGRAPHIC ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_COUNTERPOINT ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_CRONUS ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_CRONUSVLN ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_DCA ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_DDE ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_DEBNI ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_DECAM ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_DECCUST ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_DECDIAG ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_DECDNS ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_DECDTS ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_DECEXPER ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_DECLAST ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_DECLTM ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_DECMUMPS ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_DECNETBIOS ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_DELTACON ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_DIDDLE ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_DLOG1 ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_DLOG2 ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_DN ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_DOGFIGHT ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_DSMD ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_ECMA ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_ENCRYPT ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_ES ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_EXCELAN ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_EXPERDATA ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_FLIP ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_FLOWCONTROL ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_FRARP ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_GENDYN ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_HAYES ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_HIPPI_FP ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_HITACHI ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_HP ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_IEEEPUP ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_IEEEPUPAT ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_IMLBL ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_IMLBLDIAG ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_IP ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_IPAS ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_IPV6 ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_IPX ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_IPXNEW ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_KALPANA ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_LANBRIDGE ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_LANPROBE ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_LAT ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_LBACK ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_LITTLE ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_LOGICRAFT ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_LOOPBACK ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_MATRA ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_MAX ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_MERIT ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_MICP ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_MOPDL ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_MOPRC ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_MOTOROLA ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_MPLS ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_MPLS_MCAST ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_MUMPS ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_NBPCC ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_NBPCLAIM ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_NBPCLREQ ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_NBPCLRSP ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_NBPCREQ ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_NBPCRSP ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_NBPDG ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_NBPDGB ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_NBPDLTE ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_NBPRAR ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_NBPRAS ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_NBPRST ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_NBPSCD ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_NBPVCD ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_NBS ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_NCD ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_NESTAR ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_NETBEUI ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_NOVELL ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_NS ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_NSAT ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_NSCOMPAT ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_NTRAILER ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_OS9 ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_OS9NET ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_PACER ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_PAE ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_PCS ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_PLANNING ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_PPP ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_PPPOE ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_PPPOEDISC ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_PRIMENTS ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_PUP ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_PUPAT ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_RACAL ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_RATIONAL ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_RAWFR ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_RCL ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_RDP ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_RETIX ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_REVARP ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_SCA ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_SECTRA ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_SECUREDATA ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_SGITW ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_SG_BOUNCE ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_SG_DIAG ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_SG_NETGAMES ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_SG_RESV ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_SIMNET ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_SLOWPROTOCOLS ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_SNA ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_SNMP ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_SONIX ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_SPIDER ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_SPRITE ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_STP ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_TALARIS ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_TALARISMC ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_TCPCOMP ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_TCPSM ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_TEC ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_TIGAN ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_TRAIL ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_TRANSETHER ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_TYMSHARE ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_UBBST ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_UBDEBUG ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_UBDIAGLOOP ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_UBDL ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_UBNIU ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_UBNMC ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_VALID ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_VARIAN ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_VAXELN ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_VEECO ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_VEXP ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_VGLAB ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_VINES ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_VINESECHO ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_VINESLOOP ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_VITAL ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_VLAN ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_VLTLMAN ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_VPROD ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_VURESERVED ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_WATERLOO ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_WELLFLEET ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_X25 ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_X75 ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_XNSSM ideal-int
+pkg syscall (netbsd-arm), const ETHERTYPE_XTP ideal-int
+pkg syscall (netbsd-arm), const ETHER_ADDR_LEN ideal-int
+pkg syscall (netbsd-arm), const ETHER_CRC_LEN ideal-int
+pkg syscall (netbsd-arm), const ETHER_CRC_POLY_BE ideal-int
+pkg syscall (netbsd-arm), const ETHER_CRC_POLY_LE ideal-int
+pkg syscall (netbsd-arm), const ETHER_HDR_LEN ideal-int
+pkg syscall (netbsd-arm), const ETHER_MAX_LEN ideal-int
+pkg syscall (netbsd-arm), const ETHER_MAX_LEN_JUMBO ideal-int
+pkg syscall (netbsd-arm), const ETHER_MIN_LEN ideal-int
+pkg syscall (netbsd-arm), const ETHER_PPPOE_ENCAP_LEN ideal-int
+pkg syscall (netbsd-arm), const ETHER_TYPE_LEN ideal-int
+pkg syscall (netbsd-arm), const ETHER_VLAN_ENCAP_LEN ideal-int
+pkg syscall (netbsd-arm), const ETIME Errno
+pkg syscall (netbsd-arm), const EVFILT_AIO ideal-int
+pkg syscall (netbsd-arm), const EVFILT_PROC ideal-int
+pkg syscall (netbsd-arm), const EVFILT_READ ideal-int
+pkg syscall (netbsd-arm), const EVFILT_SIGNAL ideal-int
+pkg syscall (netbsd-arm), const EVFILT_SYSCOUNT ideal-int
+pkg syscall (netbsd-arm), const EVFILT_TIMER ideal-int
+pkg syscall (netbsd-arm), const EVFILT_VNODE ideal-int
+pkg syscall (netbsd-arm), const EVFILT_WRITE ideal-int
+pkg syscall (netbsd-arm), const EV_ADD ideal-int
+pkg syscall (netbsd-arm), const EV_CLEAR ideal-int
+pkg syscall (netbsd-arm), const EV_DELETE ideal-int
+pkg syscall (netbsd-arm), const EV_DISABLE ideal-int
+pkg syscall (netbsd-arm), const EV_ENABLE ideal-int
+pkg syscall (netbsd-arm), const EV_EOF ideal-int
+pkg syscall (netbsd-arm), const EV_ERROR ideal-int
+pkg syscall (netbsd-arm), const EV_FLAG1 ideal-int
+pkg syscall (netbsd-arm), const EV_ONESHOT ideal-int
+pkg syscall (netbsd-arm), const EV_SYSFLAGS ideal-int
+pkg syscall (netbsd-arm), const EXTA ideal-int
+pkg syscall (netbsd-arm), const EXTB ideal-int
+pkg syscall (netbsd-arm), const EXTPROC ideal-int
+pkg syscall (netbsd-arm), const FD_CLOEXEC ideal-int
+pkg syscall (netbsd-arm), const FD_SETSIZE ideal-int
+pkg syscall (netbsd-arm), const FLUSHO ideal-int
+pkg syscall (netbsd-arm), const F_CLOSEM ideal-int
+pkg syscall (netbsd-arm), const F_DUPFD ideal-int
+pkg syscall (netbsd-arm), const F_DUPFD_CLOEXEC ideal-int
+pkg syscall (netbsd-arm), const F_FSCTL ideal-int
+pkg syscall (netbsd-arm), const F_FSDIRMASK ideal-int
+pkg syscall (netbsd-arm), const F_FSIN ideal-int
+pkg syscall (netbsd-arm), const F_FSINOUT ideal-int
+pkg syscall (netbsd-arm), const F_FSOUT ideal-int
+pkg syscall (netbsd-arm), const F_FSPRIV ideal-int
+pkg syscall (netbsd-arm), const F_FSVOID ideal-int
+pkg syscall (netbsd-arm), const F_GETFD ideal-int
+pkg syscall (netbsd-arm), const F_GETFL ideal-int
+pkg syscall (netbsd-arm), const F_GETLK ideal-int
+pkg syscall (netbsd-arm), const F_GETNOSIGPIPE ideal-int
+pkg syscall (netbsd-arm), const F_GETOWN ideal-int
+pkg syscall (netbsd-arm), const F_MAXFD ideal-int
+pkg syscall (netbsd-arm), const F_OK ideal-int
+pkg syscall (netbsd-arm), const F_PARAM_MASK ideal-int
+pkg syscall (netbsd-arm), const F_PARAM_MAX ideal-int
+pkg syscall (netbsd-arm), const F_RDLCK ideal-int
+pkg syscall (netbsd-arm), const F_SETFD ideal-int
+pkg syscall (netbsd-arm), const F_SETFL ideal-int
+pkg syscall (netbsd-arm), const F_SETLK ideal-int
+pkg syscall (netbsd-arm), const F_SETLKW ideal-int
+pkg syscall (netbsd-arm), const F_SETNOSIGPIPE ideal-int
+pkg syscall (netbsd-arm), const F_SETOWN ideal-int
+pkg syscall (netbsd-arm), const F_UNLCK ideal-int
+pkg syscall (netbsd-arm), const F_WRLCK ideal-int
+pkg syscall (netbsd-arm), const HUPCL ideal-int
+pkg syscall (netbsd-arm), const ICANON ideal-int
+pkg syscall (netbsd-arm), const ICMP6_FILTER = 18
+pkg syscall (netbsd-arm), const ICMP6_FILTER ideal-int
+pkg syscall (netbsd-arm), const ICRNL ideal-int
+pkg syscall (netbsd-arm), const IEXTEN ideal-int
+pkg syscall (netbsd-arm), const IFAN_ARRIVAL ideal-int
+pkg syscall (netbsd-arm), const IFAN_DEPARTURE ideal-int
+pkg syscall (netbsd-arm), const IFA_ROUTE ideal-int
+pkg syscall (netbsd-arm), const IFF_ALLMULTI ideal-int
+pkg syscall (netbsd-arm), const IFF_CANTCHANGE ideal-int
+pkg syscall (netbsd-arm), const IFF_DEBUG ideal-int
+pkg syscall (netbsd-arm), const IFF_LINK0 ideal-int
+pkg syscall (netbsd-arm), const IFF_LINK1 ideal-int
+pkg syscall (netbsd-arm), const IFF_LINK2 ideal-int
+pkg syscall (netbsd-arm), const IFF_NOARP ideal-int
+pkg syscall (netbsd-arm), const IFF_NOTRAILERS ideal-int
+pkg syscall (netbsd-arm), const IFF_OACTIVE ideal-int
+pkg syscall (netbsd-arm), const IFF_POINTOPOINT ideal-int
+pkg syscall (netbsd-arm), const IFF_PROMISC ideal-int
+pkg syscall (netbsd-arm), const IFF_RUNNING ideal-int
+pkg syscall (netbsd-arm), const IFF_SIMPLEX ideal-int
+pkg syscall (netbsd-arm), const IFNAMSIZ ideal-int
+pkg syscall (netbsd-arm), const IFT_1822 ideal-int
+pkg syscall (netbsd-arm), const IFT_A12MPPSWITCH ideal-int
+pkg syscall (netbsd-arm), const IFT_AAL2 ideal-int
+pkg syscall (netbsd-arm), const IFT_AAL5 ideal-int
+pkg syscall (netbsd-arm), const IFT_ADSL ideal-int
+pkg syscall (netbsd-arm), const IFT_AFLANE8023 ideal-int
+pkg syscall (netbsd-arm), const IFT_AFLANE8025 ideal-int
+pkg syscall (netbsd-arm), const IFT_ARAP ideal-int
+pkg syscall (netbsd-arm), const IFT_ARCNET ideal-int
+pkg syscall (netbsd-arm), const IFT_ARCNETPLUS ideal-int
+pkg syscall (netbsd-arm), const IFT_ASYNC ideal-int
+pkg syscall (netbsd-arm), const IFT_ATM ideal-int
+pkg syscall (netbsd-arm), const IFT_ATMDXI ideal-int
+pkg syscall (netbsd-arm), const IFT_ATMFUNI ideal-int
+pkg syscall (netbsd-arm), const IFT_ATMIMA ideal-int
+pkg syscall (netbsd-arm), const IFT_ATMLOGICAL ideal-int
+pkg syscall (netbsd-arm), const IFT_ATMRADIO ideal-int
+pkg syscall (netbsd-arm), const IFT_ATMSUBINTERFACE ideal-int
+pkg syscall (netbsd-arm), const IFT_ATMVCIENDPT ideal-int
+pkg syscall (netbsd-arm), const IFT_ATMVIRTUAL ideal-int
+pkg syscall (netbsd-arm), const IFT_BGPPOLICYACCOUNTING ideal-int
+pkg syscall (netbsd-arm), const IFT_BRIDGE ideal-int
+pkg syscall (netbsd-arm), const IFT_BSC ideal-int
+pkg syscall (netbsd-arm), const IFT_CARP ideal-int
+pkg syscall (netbsd-arm), const IFT_CCTEMUL ideal-int
+pkg syscall (netbsd-arm), const IFT_CEPT ideal-int
+pkg syscall (netbsd-arm), const IFT_CES ideal-int
+pkg syscall (netbsd-arm), const IFT_CHANNEL ideal-int
+pkg syscall (netbsd-arm), const IFT_CNR ideal-int
+pkg syscall (netbsd-arm), const IFT_COFFEE ideal-int
+pkg syscall (netbsd-arm), const IFT_COMPOSITELINK ideal-int
+pkg syscall (netbsd-arm), const IFT_DCN ideal-int
+pkg syscall (netbsd-arm), const IFT_DIGITALPOWERLINE ideal-int
+pkg syscall (netbsd-arm), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int
+pkg syscall (netbsd-arm), const IFT_DLSW ideal-int
+pkg syscall (netbsd-arm), const IFT_DOCSCABLEDOWNSTREAM ideal-int
+pkg syscall (netbsd-arm), const IFT_DOCSCABLEMACLAYER ideal-int
+pkg syscall (netbsd-arm), const IFT_DOCSCABLEUPSTREAM ideal-int
+pkg syscall (netbsd-arm), const IFT_DOCSCABLEUPSTREAMCHANNEL ideal-int
+pkg syscall (netbsd-arm), const IFT_DS0 ideal-int
+pkg syscall (netbsd-arm), const IFT_DS0BUNDLE ideal-int
+pkg syscall (netbsd-arm), const IFT_DS1FDL ideal-int
+pkg syscall (netbsd-arm), const IFT_DS3 ideal-int
+pkg syscall (netbsd-arm), const IFT_DTM ideal-int
+pkg syscall (netbsd-arm), const IFT_DVBASILN ideal-int
+pkg syscall (netbsd-arm), const IFT_DVBASIOUT ideal-int
+pkg syscall (netbsd-arm), const IFT_DVBRCCDOWNSTREAM ideal-int
+pkg syscall (netbsd-arm), const IFT_DVBRCCMACLAYER ideal-int
+pkg syscall (netbsd-arm), const IFT_DVBRCCUPSTREAM ideal-int
+pkg syscall (netbsd-arm), const IFT_ECONET ideal-int
+pkg syscall (netbsd-arm), const IFT_EON ideal-int
+pkg syscall (netbsd-arm), const IFT_EPLRS ideal-int
+pkg syscall (netbsd-arm), const IFT_ESCON ideal-int
+pkg syscall (netbsd-arm), const IFT_ETHER ideal-int
+pkg syscall (netbsd-arm), const IFT_FAITH ideal-int
+pkg syscall (netbsd-arm), const IFT_FAST ideal-int
+pkg syscall (netbsd-arm), const IFT_FASTETHER ideal-int
+pkg syscall (netbsd-arm), const IFT_FASTETHERFX ideal-int
+pkg syscall (netbsd-arm), const IFT_FDDI ideal-int
+pkg syscall (netbsd-arm), const IFT_FIBRECHANNEL ideal-int
+pkg syscall (netbsd-arm), const IFT_FRAMERELAYINTERCONNECT ideal-int
+pkg syscall (netbsd-arm), const IFT_FRAMERELAYMPI ideal-int
+pkg syscall (netbsd-arm), const IFT_FRDLCIENDPT ideal-int
+pkg syscall (netbsd-arm), const IFT_FRELAY ideal-int
+pkg syscall (netbsd-arm), const IFT_FRELAYDCE ideal-int
+pkg syscall (netbsd-arm), const IFT_FRF16MFRBUNDLE ideal-int
+pkg syscall (netbsd-arm), const IFT_FRFORWARD ideal-int
+pkg syscall (netbsd-arm), const IFT_G703AT2MB ideal-int
+pkg syscall (netbsd-arm), const IFT_G703AT64K ideal-int
+pkg syscall (netbsd-arm), const IFT_GIF ideal-int
+pkg syscall (netbsd-arm), const IFT_GIGABITETHERNET ideal-int
+pkg syscall (netbsd-arm), const IFT_GR303IDT ideal-int
+pkg syscall (netbsd-arm), const IFT_GR303RDT ideal-int
+pkg syscall (netbsd-arm), const IFT_H323GATEKEEPER ideal-int
+pkg syscall (netbsd-arm), const IFT_H323PROXY ideal-int
+pkg syscall (netbsd-arm), const IFT_HDH1822 ideal-int
+pkg syscall (netbsd-arm), const IFT_HDLC ideal-int
+pkg syscall (netbsd-arm), const IFT_HDSL2 ideal-int
+pkg syscall (netbsd-arm), const IFT_HIPERLAN2 ideal-int
+pkg syscall (netbsd-arm), const IFT_HIPPI ideal-int
+pkg syscall (netbsd-arm), const IFT_HIPPIINTERFACE ideal-int
+pkg syscall (netbsd-arm), const IFT_HOSTPAD ideal-int
+pkg syscall (netbsd-arm), const IFT_HSSI ideal-int
+pkg syscall (netbsd-arm), const IFT_HY ideal-int
+pkg syscall (netbsd-arm), const IFT_IBM370PARCHAN ideal-int
+pkg syscall (netbsd-arm), const IFT_IDSL ideal-int
+pkg syscall (netbsd-arm), const IFT_IEEE1394 ideal-int
+pkg syscall (netbsd-arm), const IFT_IEEE80211 ideal-int
+pkg syscall (netbsd-arm), const IFT_IEEE80212 ideal-int
+pkg syscall (netbsd-arm), const IFT_IEEE8023ADLAG ideal-int
+pkg syscall (netbsd-arm), const IFT_IFGSN ideal-int
+pkg syscall (netbsd-arm), const IFT_IMT ideal-int
+pkg syscall (netbsd-arm), const IFT_INFINIBAND ideal-int
+pkg syscall (netbsd-arm), const IFT_INTERLEAVE ideal-int
+pkg syscall (netbsd-arm), const IFT_IP ideal-int
+pkg syscall (netbsd-arm), const IFT_IPFORWARD ideal-int
+pkg syscall (netbsd-arm), const IFT_IPOVERATM ideal-int
+pkg syscall (netbsd-arm), const IFT_IPOVERCDLC ideal-int
+pkg syscall (netbsd-arm), const IFT_IPOVERCLAW ideal-int
+pkg syscall (netbsd-arm), const IFT_IPSWITCH ideal-int
+pkg syscall (netbsd-arm), const IFT_ISDN ideal-int
+pkg syscall (netbsd-arm), const IFT_ISDNBASIC ideal-int
+pkg syscall (netbsd-arm), const IFT_ISDNPRIMARY ideal-int
+pkg syscall (netbsd-arm), const IFT_ISDNS ideal-int
+pkg syscall (netbsd-arm), const IFT_ISDNU ideal-int
+pkg syscall (netbsd-arm), const IFT_ISO88022LLC ideal-int
+pkg syscall (netbsd-arm), const IFT_ISO88023 ideal-int
+pkg syscall (netbsd-arm), const IFT_ISO88024 ideal-int
+pkg syscall (netbsd-arm), const IFT_ISO88025 ideal-int
+pkg syscall (netbsd-arm), const IFT_ISO88025CRFPINT ideal-int
+pkg syscall (netbsd-arm), const IFT_ISO88025DTR ideal-int
+pkg syscall (netbsd-arm), const IFT_ISO88025FIBER ideal-int
+pkg syscall (netbsd-arm), const IFT_ISO88026 ideal-int
+pkg syscall (netbsd-arm), const IFT_ISUP ideal-int
+pkg syscall (netbsd-arm), const IFT_L2VLAN ideal-int
+pkg syscall (netbsd-arm), const IFT_L3IPVLAN ideal-int
+pkg syscall (netbsd-arm), const IFT_L3IPXVLAN ideal-int
+pkg syscall (netbsd-arm), const IFT_LAPB ideal-int
+pkg syscall (netbsd-arm), const IFT_LAPD ideal-int
+pkg syscall (netbsd-arm), const IFT_LAPF ideal-int
+pkg syscall (netbsd-arm), const IFT_LINEGROUP ideal-int
+pkg syscall (netbsd-arm), const IFT_LOCALTALK ideal-int
+pkg syscall (netbsd-arm), const IFT_LOOP ideal-int
+pkg syscall (netbsd-arm), const IFT_MEDIAMAILOVERIP ideal-int
+pkg syscall (netbsd-arm), const IFT_MFSIGLINK ideal-int
+pkg syscall (netbsd-arm), const IFT_MIOX25 ideal-int
+pkg syscall (netbsd-arm), const IFT_MODEM ideal-int
+pkg syscall (netbsd-arm), const IFT_MPC ideal-int
+pkg syscall (netbsd-arm), const IFT_MPLS ideal-int
+pkg syscall (netbsd-arm), const IFT_MPLSTUNNEL ideal-int
+pkg syscall (netbsd-arm), const IFT_MSDSL ideal-int
+pkg syscall (netbsd-arm), const IFT_MVL ideal-int
+pkg syscall (netbsd-arm), const IFT_MYRINET ideal-int
+pkg syscall (netbsd-arm), const IFT_NFAS ideal-int
+pkg syscall (netbsd-arm), const IFT_NSIP ideal-int
+pkg syscall (netbsd-arm), const IFT_OPTICALCHANNEL ideal-int
+pkg syscall (netbsd-arm), const IFT_OPTICALTRANSPORT ideal-int
+pkg syscall (netbsd-arm), const IFT_OTHER ideal-int
+pkg syscall (netbsd-arm), const IFT_P10 ideal-int
+pkg syscall (netbsd-arm), const IFT_P80 ideal-int
+pkg syscall (netbsd-arm), const IFT_PARA ideal-int
+pkg syscall (netbsd-arm), const IFT_PFLOG ideal-int
+pkg syscall (netbsd-arm), const IFT_PFSYNC ideal-int
+pkg syscall (netbsd-arm), const IFT_PLC ideal-int
+pkg syscall (netbsd-arm), const IFT_PON155 ideal-int
+pkg syscall (netbsd-arm), const IFT_PON622 ideal-int
+pkg syscall (netbsd-arm), const IFT_POS ideal-int
+pkg syscall (netbsd-arm), const IFT_PPP ideal-int
+pkg syscall (netbsd-arm), const IFT_PPPMULTILINKBUNDLE ideal-int
+pkg syscall (netbsd-arm), const IFT_PROPATM ideal-int
+pkg syscall (netbsd-arm), const IFT_PROPBWAP2MP ideal-int
+pkg syscall (netbsd-arm), const IFT_PROPCNLS ideal-int
+pkg syscall (netbsd-arm), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int
+pkg syscall (netbsd-arm), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int
+pkg syscall (netbsd-arm), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int
+pkg syscall (netbsd-arm), const IFT_PROPMUX ideal-int
+pkg syscall (netbsd-arm), const IFT_PROPVIRTUAL ideal-int
+pkg syscall (netbsd-arm), const IFT_PROPWIRELESSP2P ideal-int
+pkg syscall (netbsd-arm), const IFT_PTPSERIAL ideal-int
+pkg syscall (netbsd-arm), const IFT_PVC ideal-int
+pkg syscall (netbsd-arm), const IFT_Q2931 ideal-int
+pkg syscall (netbsd-arm), const IFT_QLLC ideal-int
+pkg syscall (netbsd-arm), const IFT_RADIOMAC ideal-int
+pkg syscall (netbsd-arm), const IFT_RADSL ideal-int
+pkg syscall (netbsd-arm), const IFT_REACHDSL ideal-int
+pkg syscall (netbsd-arm), const IFT_RFC1483 ideal-int
+pkg syscall (netbsd-arm), const IFT_RS232 ideal-int
+pkg syscall (netbsd-arm), const IFT_RSRB ideal-int
+pkg syscall (netbsd-arm), const IFT_SDLC ideal-int
+pkg syscall (netbsd-arm), const IFT_SDSL ideal-int
+pkg syscall (netbsd-arm), const IFT_SHDSL ideal-int
+pkg syscall (netbsd-arm), const IFT_SIP ideal-int
+pkg syscall (netbsd-arm), const IFT_SIPSIG ideal-int
+pkg syscall (netbsd-arm), const IFT_SIPTG ideal-int
+pkg syscall (netbsd-arm), const IFT_SLIP ideal-int
+pkg syscall (netbsd-arm), const IFT_SMDSDXI ideal-int
+pkg syscall (netbsd-arm), const IFT_SMDSICIP ideal-int
+pkg syscall (netbsd-arm), const IFT_SONET ideal-int
+pkg syscall (netbsd-arm), const IFT_SONETOVERHEADCHANNEL ideal-int
+pkg syscall (netbsd-arm), const IFT_SONETPATH ideal-int
+pkg syscall (netbsd-arm), const IFT_SONETVT ideal-int
+pkg syscall (netbsd-arm), const IFT_SRP ideal-int
+pkg syscall (netbsd-arm), const IFT_SS7SIGLINK ideal-int
+pkg syscall (netbsd-arm), const IFT_STACKTOSTACK ideal-int
+pkg syscall (netbsd-arm), const IFT_STARLAN ideal-int
+pkg syscall (netbsd-arm), const IFT_STF ideal-int
+pkg syscall (netbsd-arm), const IFT_T1 ideal-int
+pkg syscall (netbsd-arm), const IFT_TDLC ideal-int
+pkg syscall (netbsd-arm), const IFT_TELINK ideal-int
+pkg syscall (netbsd-arm), const IFT_TERMPAD ideal-int
+pkg syscall (netbsd-arm), const IFT_TR008 ideal-int
+pkg syscall (netbsd-arm), const IFT_TRANSPHDLC ideal-int
+pkg syscall (netbsd-arm), const IFT_TUNNEL ideal-int
+pkg syscall (netbsd-arm), const IFT_ULTRA ideal-int
+pkg syscall (netbsd-arm), const IFT_USB ideal-int
+pkg syscall (netbsd-arm), const IFT_V11 ideal-int
+pkg syscall (netbsd-arm), const IFT_V35 ideal-int
+pkg syscall (netbsd-arm), const IFT_V36 ideal-int
+pkg syscall (netbsd-arm), const IFT_V37 ideal-int
+pkg syscall (netbsd-arm), const IFT_VDSL ideal-int
+pkg syscall (netbsd-arm), const IFT_VIRTUALIPADDRESS ideal-int
+pkg syscall (netbsd-arm), const IFT_VIRTUALTG ideal-int
+pkg syscall (netbsd-arm), const IFT_VOICEDID ideal-int
+pkg syscall (netbsd-arm), const IFT_VOICEEM ideal-int
+pkg syscall (netbsd-arm), const IFT_VOICEEMFGD ideal-int
+pkg syscall (netbsd-arm), const IFT_VOICEENCAP ideal-int
+pkg syscall (netbsd-arm), const IFT_VOICEFGDEANA ideal-int
+pkg syscall (netbsd-arm), const IFT_VOICEFXO ideal-int
+pkg syscall (netbsd-arm), const IFT_VOICEFXS ideal-int
+pkg syscall (netbsd-arm), const IFT_VOICEOVERATM ideal-int
+pkg syscall (netbsd-arm), const IFT_VOICEOVERCABLE ideal-int
+pkg syscall (netbsd-arm), const IFT_VOICEOVERFRAMERELAY ideal-int
+pkg syscall (netbsd-arm), const IFT_VOICEOVERIP ideal-int
+pkg syscall (netbsd-arm), const IFT_X213 ideal-int
+pkg syscall (netbsd-arm), const IFT_X25 ideal-int
+pkg syscall (netbsd-arm), const IFT_X25DDN ideal-int
+pkg syscall (netbsd-arm), const IFT_X25HUNTGROUP ideal-int
+pkg syscall (netbsd-arm), const IFT_X25MLP ideal-int
+pkg syscall (netbsd-arm), const IFT_X25PLE ideal-int
+pkg syscall (netbsd-arm), const IFT_XETHER ideal-int
+pkg syscall (netbsd-arm), const IGNBRK ideal-int
+pkg syscall (netbsd-arm), const IGNCR ideal-int
+pkg syscall (netbsd-arm), const IGNPAR ideal-int
+pkg syscall (netbsd-arm), const IMAXBEL ideal-int
+pkg syscall (netbsd-arm), const INLCR ideal-int
+pkg syscall (netbsd-arm), const INPCK ideal-int
+pkg syscall (netbsd-arm), const IN_CLASSA_HOST ideal-int
+pkg syscall (netbsd-arm), const IN_CLASSA_MAX ideal-int
+pkg syscall (netbsd-arm), const IN_CLASSA_NET ideal-int
+pkg syscall (netbsd-arm), const IN_CLASSA_NSHIFT ideal-int
+pkg syscall (netbsd-arm), const IN_CLASSB_HOST ideal-int
+pkg syscall (netbsd-arm), const IN_CLASSB_MAX ideal-int
+pkg syscall (netbsd-arm), const IN_CLASSB_NET ideal-int
+pkg syscall (netbsd-arm), const IN_CLASSB_NSHIFT ideal-int
+pkg syscall (netbsd-arm), const IN_CLASSC_HOST ideal-int
+pkg syscall (netbsd-arm), const IN_CLASSC_NET ideal-int
+pkg syscall (netbsd-arm), const IN_CLASSC_NSHIFT ideal-int
+pkg syscall (netbsd-arm), const IN_CLASSD_HOST ideal-int
+pkg syscall (netbsd-arm), const IN_CLASSD_NET ideal-int
+pkg syscall (netbsd-arm), const IN_CLASSD_NSHIFT ideal-int
+pkg syscall (netbsd-arm), const IN_LOOPBACKNET ideal-int
+pkg syscall (netbsd-arm), const IPPROTO_AH ideal-int
+pkg syscall (netbsd-arm), const IPPROTO_CARP ideal-int
+pkg syscall (netbsd-arm), const IPPROTO_DONE ideal-int
+pkg syscall (netbsd-arm), const IPPROTO_DSTOPTS ideal-int
+pkg syscall (netbsd-arm), const IPPROTO_EGP ideal-int
+pkg syscall (netbsd-arm), const IPPROTO_ENCAP ideal-int
+pkg syscall (netbsd-arm), const IPPROTO_EON ideal-int
+pkg syscall (netbsd-arm), const IPPROTO_ESP ideal-int
+pkg syscall (netbsd-arm), const IPPROTO_ETHERIP ideal-int
+pkg syscall (netbsd-arm), const IPPROTO_FRAGMENT ideal-int
+pkg syscall (netbsd-arm), const IPPROTO_GGP ideal-int
+pkg syscall (netbsd-arm), const IPPROTO_GRE ideal-int
+pkg syscall (netbsd-arm), const IPPROTO_HOPOPTS ideal-int
+pkg syscall (netbsd-arm), const IPPROTO_ICMP ideal-int
+pkg syscall (netbsd-arm), const IPPROTO_ICMPV6 ideal-int
+pkg syscall (netbsd-arm), const IPPROTO_IDP ideal-int
+pkg syscall (netbsd-arm), const IPPROTO_IGMP ideal-int
+pkg syscall (netbsd-arm), const IPPROTO_IPCOMP ideal-int
+pkg syscall (netbsd-arm), const IPPROTO_IPIP ideal-int
+pkg syscall (netbsd-arm), const IPPROTO_IPV4 ideal-int
+pkg syscall (netbsd-arm), const IPPROTO_IPV6_ICMP ideal-int
+pkg syscall (netbsd-arm), const IPPROTO_MAX ideal-int
+pkg syscall (netbsd-arm), const IPPROTO_MAXID ideal-int
+pkg syscall (netbsd-arm), const IPPROTO_MOBILE ideal-int
+pkg syscall (netbsd-arm), const IPPROTO_NONE ideal-int
+pkg syscall (netbsd-arm), const IPPROTO_PFSYNC ideal-int
+pkg syscall (netbsd-arm), const IPPROTO_PIM ideal-int
+pkg syscall (netbsd-arm), const IPPROTO_PUP ideal-int
+pkg syscall (netbsd-arm), const IPPROTO_RAW ideal-int
+pkg syscall (netbsd-arm), const IPPROTO_ROUTING ideal-int
+pkg syscall (netbsd-arm), const IPPROTO_RSVP ideal-int
+pkg syscall (netbsd-arm), const IPPROTO_TP ideal-int
+pkg syscall (netbsd-arm), const IPPROTO_VRRP ideal-int
+pkg syscall (netbsd-arm), const IPV6_CHECKSUM ideal-int
+pkg syscall (netbsd-arm), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int
+pkg syscall (netbsd-arm), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int
+pkg syscall (netbsd-arm), const IPV6_DEFHLIM ideal-int
+pkg syscall (netbsd-arm), const IPV6_DONTFRAG ideal-int
+pkg syscall (netbsd-arm), const IPV6_DSTOPTS ideal-int
+pkg syscall (netbsd-arm), const IPV6_FAITH ideal-int
+pkg syscall (netbsd-arm), const IPV6_FLOWINFO_MASK ideal-int
+pkg syscall (netbsd-arm), const IPV6_FLOWLABEL_MASK ideal-int
+pkg syscall (netbsd-arm), const IPV6_FRAGTTL ideal-int
+pkg syscall (netbsd-arm), const IPV6_HLIMDEC ideal-int
+pkg syscall (netbsd-arm), const IPV6_HOPLIMIT ideal-int
+pkg syscall (netbsd-arm), const IPV6_HOPOPTS ideal-int
+pkg syscall (netbsd-arm), const IPV6_IPSEC_POLICY ideal-int
+pkg syscall (netbsd-arm), const IPV6_MAXHLIM ideal-int
+pkg syscall (netbsd-arm), const IPV6_MAXPACKET ideal-int
+pkg syscall (netbsd-arm), const IPV6_MMTU ideal-int
+pkg syscall (netbsd-arm), const IPV6_NEXTHOP ideal-int
+pkg syscall (netbsd-arm), const IPV6_PATHMTU ideal-int
+pkg syscall (netbsd-arm), const IPV6_PKTINFO ideal-int
+pkg syscall (netbsd-arm), const IPV6_PORTRANGE ideal-int
+pkg syscall (netbsd-arm), const IPV6_PORTRANGE_DEFAULT ideal-int
+pkg syscall (netbsd-arm), const IPV6_PORTRANGE_HIGH ideal-int
+pkg syscall (netbsd-arm), const IPV6_PORTRANGE_LOW ideal-int
+pkg syscall (netbsd-arm), const IPV6_RECVDSTOPTS ideal-int
+pkg syscall (netbsd-arm), const IPV6_RECVHOPLIMIT ideal-int
+pkg syscall (netbsd-arm), const IPV6_RECVHOPOPTS ideal-int
+pkg syscall (netbsd-arm), const IPV6_RECVPATHMTU ideal-int
+pkg syscall (netbsd-arm), const IPV6_RECVPKTINFO ideal-int
+pkg syscall (netbsd-arm), const IPV6_RECVRTHDR ideal-int
+pkg syscall (netbsd-arm), const IPV6_RECVTCLASS ideal-int
+pkg syscall (netbsd-arm), const IPV6_RTHDR ideal-int
+pkg syscall (netbsd-arm), const IPV6_RTHDRDSTOPTS ideal-int
+pkg syscall (netbsd-arm), const IPV6_RTHDR_LOOSE ideal-int
+pkg syscall (netbsd-arm), const IPV6_RTHDR_STRICT ideal-int
+pkg syscall (netbsd-arm), const IPV6_RTHDR_TYPE_0 ideal-int
+pkg syscall (netbsd-arm), const IPV6_SOCKOPT_RESERVED1 ideal-int
+pkg syscall (netbsd-arm), const IPV6_TCLASS ideal-int
+pkg syscall (netbsd-arm), const IPV6_USE_MIN_MTU ideal-int
+pkg syscall (netbsd-arm), const IPV6_VERSION ideal-int
+pkg syscall (netbsd-arm), const IPV6_VERSION_MASK ideal-int
+pkg syscall (netbsd-arm), const IP_DEFAULT_MULTICAST_LOOP ideal-int
+pkg syscall (netbsd-arm), const IP_DEFAULT_MULTICAST_TTL ideal-int
+pkg syscall (netbsd-arm), const IP_DF ideal-int
+pkg syscall (netbsd-arm), const IP_EF ideal-int
+pkg syscall (netbsd-arm), const IP_ERRORMTU ideal-int
+pkg syscall (netbsd-arm), const IP_HDRINCL ideal-int
+pkg syscall (netbsd-arm), const IP_IPSEC_POLICY ideal-int
+pkg syscall (netbsd-arm), const IP_MAXPACKET ideal-int
+pkg syscall (netbsd-arm), const IP_MAX_MEMBERSHIPS ideal-int
+pkg syscall (netbsd-arm), const IP_MF ideal-int
+pkg syscall (netbsd-arm), const IP_MINFRAGSIZE ideal-int
+pkg syscall (netbsd-arm), const IP_MINTTL ideal-int
+pkg syscall (netbsd-arm), const IP_MSS ideal-int
+pkg syscall (netbsd-arm), const IP_OFFMASK ideal-int
+pkg syscall (netbsd-arm), const IP_OPTIONS ideal-int
+pkg syscall (netbsd-arm), const IP_PORTRANGE ideal-int
+pkg syscall (netbsd-arm), const IP_PORTRANGE_DEFAULT ideal-int
+pkg syscall (netbsd-arm), const IP_PORTRANGE_HIGH ideal-int
+pkg syscall (netbsd-arm), const IP_PORTRANGE_LOW ideal-int
+pkg syscall (netbsd-arm), const IP_RECVDSTADDR ideal-int
+pkg syscall (netbsd-arm), const IP_RECVIF ideal-int
+pkg syscall (netbsd-arm), const IP_RECVOPTS ideal-int
+pkg syscall (netbsd-arm), const IP_RECVRETOPTS ideal-int
+pkg syscall (netbsd-arm), const IP_RECVTTL ideal-int
+pkg syscall (netbsd-arm), const IP_RETOPTS ideal-int
+pkg syscall (netbsd-arm), const IP_RF ideal-int
+pkg syscall (netbsd-arm), const ISIG ideal-int
+pkg syscall (netbsd-arm), const ISTRIP ideal-int
+pkg syscall (netbsd-arm), const IXANY ideal-int
+pkg syscall (netbsd-arm), const IXOFF ideal-int
+pkg syscall (netbsd-arm), const IXON ideal-int
+pkg syscall (netbsd-arm), const LOCK_EX ideal-int
+pkg syscall (netbsd-arm), const LOCK_NB ideal-int
+pkg syscall (netbsd-arm), const LOCK_SH ideal-int
+pkg syscall (netbsd-arm), const LOCK_UN ideal-int
+pkg syscall (netbsd-arm), const MSG_BCAST ideal-int
+pkg syscall (netbsd-arm), const MSG_CMSG_CLOEXEC ideal-int
+pkg syscall (netbsd-arm), const MSG_CONTROLMBUF ideal-int
+pkg syscall (netbsd-arm), const MSG_CTRUNC ideal-int
+pkg syscall (netbsd-arm), const MSG_DONTROUTE ideal-int
+pkg syscall (netbsd-arm), const MSG_DONTWAIT ideal-int
+pkg syscall (netbsd-arm), const MSG_EOR ideal-int
+pkg syscall (netbsd-arm), const MSG_IOVUSRSPACE ideal-int
+pkg syscall (netbsd-arm), const MSG_LENUSRSPACE ideal-int
+pkg syscall (netbsd-arm), const MSG_MCAST ideal-int
+pkg syscall (netbsd-arm), const MSG_NAMEMBUF ideal-int
+pkg syscall (netbsd-arm), const MSG_NBIO ideal-int
+pkg syscall (netbsd-arm), const MSG_NOSIGNAL ideal-int
+pkg syscall (netbsd-arm), const MSG_OOB ideal-int
+pkg syscall (netbsd-arm), const MSG_PEEK ideal-int
+pkg syscall (netbsd-arm), const MSG_TRUNC ideal-int
+pkg syscall (netbsd-arm), const MSG_USERFLAGS ideal-int
+pkg syscall (netbsd-arm), const MSG_WAITALL ideal-int
+pkg syscall (netbsd-arm), const NAME_MAX ideal-int
+pkg syscall (netbsd-arm), const NET_RT_DUMP ideal-int
+pkg syscall (netbsd-arm), const NET_RT_FLAGS ideal-int
+pkg syscall (netbsd-arm), const NET_RT_IFLIST ideal-int
+pkg syscall (netbsd-arm), const NET_RT_MAXID ideal-int
+pkg syscall (netbsd-arm), const NET_RT_OIFLIST ideal-int
+pkg syscall (netbsd-arm), const NET_RT_OOIFLIST ideal-int
+pkg syscall (netbsd-arm), const NOFLSH ideal-int
+pkg syscall (netbsd-arm), const NOTE_ATTRIB ideal-int
+pkg syscall (netbsd-arm), const NOTE_CHILD ideal-int
+pkg syscall (netbsd-arm), const NOTE_DELETE ideal-int
+pkg syscall (netbsd-arm), const NOTE_EXEC ideal-int
+pkg syscall (netbsd-arm), const NOTE_EXIT ideal-int
+pkg syscall (netbsd-arm), const NOTE_EXTEND ideal-int
+pkg syscall (netbsd-arm), const NOTE_FORK ideal-int
+pkg syscall (netbsd-arm), const NOTE_LINK ideal-int
+pkg syscall (netbsd-arm), const NOTE_LOWAT ideal-int
+pkg syscall (netbsd-arm), const NOTE_PCTRLMASK ideal-int
+pkg syscall (netbsd-arm), const NOTE_PDATAMASK ideal-int
+pkg syscall (netbsd-arm), const NOTE_RENAME ideal-int
+pkg syscall (netbsd-arm), const NOTE_REVOKE ideal-int
+pkg syscall (netbsd-arm), const NOTE_TRACK ideal-int
+pkg syscall (netbsd-arm), const NOTE_TRACKERR ideal-int
+pkg syscall (netbsd-arm), const NOTE_WRITE ideal-int
+pkg syscall (netbsd-arm), const OCRNL ideal-int
+pkg syscall (netbsd-arm), const OFIOGETBMAP ideal-int
+pkg syscall (netbsd-arm), const ONLCR ideal-int
+pkg syscall (netbsd-arm), const ONLRET ideal-int
+pkg syscall (netbsd-arm), const ONOCR ideal-int
+pkg syscall (netbsd-arm), const ONOEOT ideal-int
+pkg syscall (netbsd-arm), const OPOST ideal-int
+pkg syscall (netbsd-arm), const O_ACCMODE ideal-int
+pkg syscall (netbsd-arm), const O_ALT_IO ideal-int
+pkg syscall (netbsd-arm), const O_DIRECT ideal-int
+pkg syscall (netbsd-arm), const O_DIRECTORY ideal-int
+pkg syscall (netbsd-arm), const O_DSYNC ideal-int
+pkg syscall (netbsd-arm), const O_EXLOCK ideal-int
+pkg syscall (netbsd-arm), const O_FSYNC ideal-int
+pkg syscall (netbsd-arm), const O_NDELAY ideal-int
+pkg syscall (netbsd-arm), const O_NOFOLLOW ideal-int
+pkg syscall (netbsd-arm), const O_NOSIGPIPE ideal-int
+pkg syscall (netbsd-arm), const O_RSYNC ideal-int
+pkg syscall (netbsd-arm), const O_SHLOCK ideal-int
+pkg syscall (netbsd-arm), const PARENB ideal-int
+pkg syscall (netbsd-arm), const PARMRK ideal-int
+pkg syscall (netbsd-arm), const PARODD ideal-int
+pkg syscall (netbsd-arm), const PENDIN ideal-int
+pkg syscall (netbsd-arm), const PRIO_PGRP = 1
+pkg syscall (netbsd-arm), const PRIO_PGRP ideal-int
+pkg syscall (netbsd-arm), const PRIO_PROCESS = 0
+pkg syscall (netbsd-arm), const PRIO_PROCESS ideal-int
+pkg syscall (netbsd-arm), const PRIO_USER = 2
+pkg syscall (netbsd-arm), const PRIO_USER ideal-int
+pkg syscall (netbsd-arm), const PRI_IOFLUSH ideal-int
+pkg syscall (netbsd-arm), const PTRACE_CONT ideal-int
+pkg syscall (netbsd-arm), const PTRACE_KILL ideal-int
+pkg syscall (netbsd-arm), const PTRACE_TRACEME ideal-int
+pkg syscall (netbsd-arm), const RLIMIT_AS ideal-int
+pkg syscall (netbsd-arm), const RLIMIT_CORE ideal-int
+pkg syscall (netbsd-arm), const RLIMIT_CPU ideal-int
+pkg syscall (netbsd-arm), const RLIMIT_DATA ideal-int
+pkg syscall (netbsd-arm), const RLIMIT_FSIZE ideal-int
+pkg syscall (netbsd-arm), const RLIMIT_NOFILE ideal-int
+pkg syscall (netbsd-arm), const RLIMIT_STACK ideal-int
+pkg syscall (netbsd-arm), const RLIM_INFINITY ideal-int
+pkg syscall (netbsd-arm), const RTAX_AUTHOR ideal-int
+pkg syscall (netbsd-arm), const RTAX_BRD ideal-int
+pkg syscall (netbsd-arm), const RTAX_DST ideal-int
+pkg syscall (netbsd-arm), const RTAX_GATEWAY ideal-int
+pkg syscall (netbsd-arm), const RTAX_GENMASK ideal-int
+pkg syscall (netbsd-arm), const RTAX_IFA ideal-int
+pkg syscall (netbsd-arm), const RTAX_IFP ideal-int
+pkg syscall (netbsd-arm), const RTAX_MAX ideal-int
+pkg syscall (netbsd-arm), const RTAX_NETMASK ideal-int
+pkg syscall (netbsd-arm), const RTAX_TAG ideal-int
+pkg syscall (netbsd-arm), const RTA_AUTHOR ideal-int
+pkg syscall (netbsd-arm), const RTA_BRD ideal-int
+pkg syscall (netbsd-arm), const RTA_DST ideal-int
+pkg syscall (netbsd-arm), const RTA_GATEWAY ideal-int
+pkg syscall (netbsd-arm), const RTA_GENMASK ideal-int
+pkg syscall (netbsd-arm), const RTA_IFA ideal-int
+pkg syscall (netbsd-arm), const RTA_IFP ideal-int
+pkg syscall (netbsd-arm), const RTA_NETMASK ideal-int
+pkg syscall (netbsd-arm), const RTA_TAG ideal-int
+pkg syscall (netbsd-arm), const RTF_ANNOUNCE ideal-int
+pkg syscall (netbsd-arm), const RTF_BLACKHOLE ideal-int
+pkg syscall (netbsd-arm), const RTF_CLONED ideal-int
+pkg syscall (netbsd-arm), const RTF_CLONING ideal-int
+pkg syscall (netbsd-arm), const RTF_DONE ideal-int
+pkg syscall (netbsd-arm), const RTF_DYNAMIC ideal-int
+pkg syscall (netbsd-arm), const RTF_GATEWAY ideal-int
+pkg syscall (netbsd-arm), const RTF_HOST ideal-int
+pkg syscall (netbsd-arm), const RTF_LLINFO ideal-int
+pkg syscall (netbsd-arm), const RTF_MASK ideal-int
+pkg syscall (netbsd-arm), const RTF_MODIFIED ideal-int
+pkg syscall (netbsd-arm), const RTF_PROTO1 ideal-int
+pkg syscall (netbsd-arm), const RTF_PROTO2 ideal-int
+pkg syscall (netbsd-arm), const RTF_REJECT ideal-int
+pkg syscall (netbsd-arm), const RTF_SRC ideal-int
+pkg syscall (netbsd-arm), const RTF_STATIC ideal-int
+pkg syscall (netbsd-arm), const RTF_UP ideal-int
+pkg syscall (netbsd-arm), const RTF_XRESOLVE ideal-int
+pkg syscall (netbsd-arm), const RTM_ADD ideal-int
+pkg syscall (netbsd-arm), const RTM_CHANGE ideal-int
+pkg syscall (netbsd-arm), const RTM_CHGADDR ideal-int
+pkg syscall (netbsd-arm), const RTM_DELADDR ideal-int
+pkg syscall (netbsd-arm), const RTM_DELETE ideal-int
+pkg syscall (netbsd-arm), const RTM_GET ideal-int
+pkg syscall (netbsd-arm), const RTM_IEEE80211 ideal-int
+pkg syscall (netbsd-arm), const RTM_IFANNOUNCE ideal-int
+pkg syscall (netbsd-arm), const RTM_IFINFO ideal-int
+pkg syscall (netbsd-arm), const RTM_LLINFO_UPD ideal-int
+pkg syscall (netbsd-arm), const RTM_LOCK ideal-int
+pkg syscall (netbsd-arm), const RTM_LOSING ideal-int
+pkg syscall (netbsd-arm), const RTM_MISS ideal-int
+pkg syscall (netbsd-arm), const RTM_NEWADDR ideal-int
+pkg syscall (netbsd-arm), const RTM_OIFINFO ideal-int
+pkg syscall (netbsd-arm), const RTM_OLDADD ideal-int
+pkg syscall (netbsd-arm), const RTM_OLDDEL ideal-int
+pkg syscall (netbsd-arm), const RTM_OOIFINFO ideal-int
+pkg syscall (netbsd-arm), const RTM_REDIRECT ideal-int
+pkg syscall (netbsd-arm), const RTM_RESOLVE ideal-int
+pkg syscall (netbsd-arm), const RTM_RTTUNIT ideal-int
+pkg syscall (netbsd-arm), const RTM_SETGATE ideal-int
+pkg syscall (netbsd-arm), const RTM_VERSION ideal-int
+pkg syscall (netbsd-arm), const RTV_EXPIRE ideal-int
+pkg syscall (netbsd-arm), const RTV_HOPCOUNT ideal-int
+pkg syscall (netbsd-arm), const RTV_MTU ideal-int
+pkg syscall (netbsd-arm), const RTV_RPIPE ideal-int
+pkg syscall (netbsd-arm), const RTV_RTT ideal-int
+pkg syscall (netbsd-arm), const RTV_RTTVAR ideal-int
+pkg syscall (netbsd-arm), const RTV_SPIPE ideal-int
+pkg syscall (netbsd-arm), const RTV_SSTHRESH ideal-int
+pkg syscall (netbsd-arm), const RUSAGE_CHILDREN ideal-int
+pkg syscall (netbsd-arm), const RUSAGE_SELF ideal-int
+pkg syscall (netbsd-arm), const SCM_CREDS ideal-int
+pkg syscall (netbsd-arm), const SCM_RIGHTS ideal-int
+pkg syscall (netbsd-arm), const SCM_TIMESTAMP ideal-int
+pkg syscall (netbsd-arm), const SIGCHLD Signal
+pkg syscall (netbsd-arm), const SIGCONT Signal
+pkg syscall (netbsd-arm), const SIGEMT Signal
+pkg syscall (netbsd-arm), const SIGINFO Signal
+pkg syscall (netbsd-arm), const SIGIO Signal
+pkg syscall (netbsd-arm), const SIGIOT Signal
+pkg syscall (netbsd-arm), const SIGPROF Signal
+pkg syscall (netbsd-arm), const SIGPWR Signal
+pkg syscall (netbsd-arm), const SIGSTOP Signal
+pkg syscall (netbsd-arm), const SIGSYS Signal
+pkg syscall (netbsd-arm), const SIGTSTP Signal
+pkg syscall (netbsd-arm), const SIGTTIN Signal
+pkg syscall (netbsd-arm), const SIGTTOU Signal
+pkg syscall (netbsd-arm), const SIGURG Signal
+pkg syscall (netbsd-arm), const SIGUSR1 Signal
+pkg syscall (netbsd-arm), const SIGUSR2 Signal
+pkg syscall (netbsd-arm), const SIGVTALRM Signal
+pkg syscall (netbsd-arm), const SIGWINCH Signal
+pkg syscall (netbsd-arm), const SIGXCPU Signal
+pkg syscall (netbsd-arm), const SIGXFSZ Signal
+pkg syscall (netbsd-arm), const SIOCADDMULTI ideal-int
+pkg syscall (netbsd-arm), const SIOCADDRT ideal-int
+pkg syscall (netbsd-arm), const SIOCAIFADDR ideal-int
+pkg syscall (netbsd-arm), const SIOCALIFADDR ideal-int
+pkg syscall (netbsd-arm), const SIOCATMARK ideal-int
+pkg syscall (netbsd-arm), const SIOCDELMULTI ideal-int
+pkg syscall (netbsd-arm), const SIOCDELRT ideal-int
+pkg syscall (netbsd-arm), const SIOCDIFADDR ideal-int
+pkg syscall (netbsd-arm), const SIOCDIFPHYADDR ideal-int
+pkg syscall (netbsd-arm), const SIOCDLIFADDR ideal-int
+pkg syscall (netbsd-arm), const SIOCGDRVSPEC ideal-int
+pkg syscall (netbsd-arm), const SIOCGETPFSYNC ideal-int
+pkg syscall (netbsd-arm), const SIOCGETSGCNT ideal-int
+pkg syscall (netbsd-arm), const SIOCGETVIFCNT ideal-int
+pkg syscall (netbsd-arm), const SIOCGHIWAT ideal-int
+pkg syscall (netbsd-arm), const SIOCGIFADDR ideal-int
+pkg syscall (netbsd-arm), const SIOCGIFADDRPREF ideal-int
+pkg syscall (netbsd-arm), const SIOCGIFALIAS ideal-int
+pkg syscall (netbsd-arm), const SIOCGIFBRDADDR ideal-int
+pkg syscall (netbsd-arm), const SIOCGIFCAP ideal-int
+pkg syscall (netbsd-arm), const SIOCGIFCONF ideal-int
+pkg syscall (netbsd-arm), const SIOCGIFDATA ideal-int
+pkg syscall (netbsd-arm), const SIOCGIFDLT ideal-int
+pkg syscall (netbsd-arm), const SIOCGIFDSTADDR ideal-int
+pkg syscall (netbsd-arm), const SIOCGIFFLAGS ideal-int
+pkg syscall (netbsd-arm), const SIOCGIFGENERIC ideal-int
+pkg syscall (netbsd-arm), const SIOCGIFMEDIA ideal-int
+pkg syscall (netbsd-arm), const SIOCGIFMETRIC ideal-int
+pkg syscall (netbsd-arm), const SIOCGIFMTU ideal-int
+pkg syscall (netbsd-arm), const SIOCGIFNETMASK ideal-int
+pkg syscall (netbsd-arm), const SIOCGIFPDSTADDR ideal-int
+pkg syscall (netbsd-arm), const SIOCGIFPSRCADDR ideal-int
+pkg syscall (netbsd-arm), const SIOCGLIFADDR ideal-int
+pkg syscall (netbsd-arm), const SIOCGLIFPHYADDR ideal-int
+pkg syscall (netbsd-arm), const SIOCGLINKSTR ideal-int
+pkg syscall (netbsd-arm), const SIOCGLOWAT ideal-int
+pkg syscall (netbsd-arm), const SIOCGPGRP ideal-int
+pkg syscall (netbsd-arm), const SIOCGVH ideal-int
+pkg syscall (netbsd-arm), const SIOCIFCREATE ideal-int
+pkg syscall (netbsd-arm), const SIOCIFDESTROY ideal-int
+pkg syscall (netbsd-arm), const SIOCIFGCLONERS ideal-int
+pkg syscall (netbsd-arm), const SIOCINITIFADDR ideal-int
+pkg syscall (netbsd-arm), const SIOCSDRVSPEC ideal-int
+pkg syscall (netbsd-arm), const SIOCSETPFSYNC ideal-int
+pkg syscall (netbsd-arm), const SIOCSHIWAT ideal-int
+pkg syscall (netbsd-arm), const SIOCSIFADDR ideal-int
+pkg syscall (netbsd-arm), const SIOCSIFADDRPREF ideal-int
+pkg syscall (netbsd-arm), const SIOCSIFBRDADDR ideal-int
+pkg syscall (netbsd-arm), const SIOCSIFCAP ideal-int
+pkg syscall (netbsd-arm), const SIOCSIFDSTADDR ideal-int
+pkg syscall (netbsd-arm), const SIOCSIFFLAGS ideal-int
+pkg syscall (netbsd-arm), const SIOCSIFGENERIC ideal-int
+pkg syscall (netbsd-arm), const SIOCSIFMEDIA ideal-int
+pkg syscall (netbsd-arm), const SIOCSIFMETRIC ideal-int
+pkg syscall (netbsd-arm), const SIOCSIFMTU ideal-int
+pkg syscall (netbsd-arm), const SIOCSIFNETMASK ideal-int
+pkg syscall (netbsd-arm), const SIOCSIFPHYADDR ideal-int
+pkg syscall (netbsd-arm), const SIOCSLIFPHYADDR ideal-int
+pkg syscall (netbsd-arm), const SIOCSLINKSTR ideal-int
+pkg syscall (netbsd-arm), const SIOCSLOWAT ideal-int
+pkg syscall (netbsd-arm), const SIOCSPGRP ideal-int
+pkg syscall (netbsd-arm), const SIOCSVH ideal-int
+pkg syscall (netbsd-arm), const SIOCZIFDATA ideal-int
+pkg syscall (netbsd-arm), const SOCK_CLOEXEC ideal-int
+pkg syscall (netbsd-arm), const SOCK_FLAGS_MASK ideal-int
+pkg syscall (netbsd-arm), const SOCK_NONBLOCK ideal-int
+pkg syscall (netbsd-arm), const SOCK_NOSIGPIPE ideal-int
+pkg syscall (netbsd-arm), const SOCK_RDM ideal-int
+pkg syscall (netbsd-arm), const SO_ACCEPTCONN ideal-int
+pkg syscall (netbsd-arm), const SO_ACCEPTFILTER ideal-int
+pkg syscall (netbsd-arm), const SO_DEBUG ideal-int
+pkg syscall (netbsd-arm), const SO_ERROR ideal-int
+pkg syscall (netbsd-arm), const SO_NOHEADER ideal-int
+pkg syscall (netbsd-arm), const SO_NOSIGPIPE ideal-int
+pkg syscall (netbsd-arm), const SO_OOBINLINE ideal-int
+pkg syscall (netbsd-arm), const SO_OVERFLOWED ideal-int
+pkg syscall (netbsd-arm), const SO_RCVLOWAT ideal-int
+pkg syscall (netbsd-arm), const SO_RCVTIMEO ideal-int
+pkg syscall (netbsd-arm), const SO_REUSEPORT ideal-int
+pkg syscall (netbsd-arm), const SO_SNDLOWAT ideal-int
+pkg syscall (netbsd-arm), const SO_SNDTIMEO ideal-int
+pkg syscall (netbsd-arm), const SO_TIMESTAMP ideal-int
+pkg syscall (netbsd-arm), const SO_TYPE ideal-int
+pkg syscall (netbsd-arm), const SO_USELOOPBACK ideal-int
+pkg syscall (netbsd-arm), const SYSCTL_VERSION ideal-int
+pkg syscall (netbsd-arm), const SYSCTL_VERS_0 ideal-int
+pkg syscall (netbsd-arm), const SYSCTL_VERS_1 ideal-int
+pkg syscall (netbsd-arm), const SYSCTL_VERS_MASK ideal-int
+pkg syscall (netbsd-arm), const SYS_ACCEPT ideal-int
+pkg syscall (netbsd-arm), const SYS_ACCESS ideal-int
+pkg syscall (netbsd-arm), const SYS_ACCT ideal-int
+pkg syscall (netbsd-arm), const SYS_ADJTIME ideal-int
+pkg syscall (netbsd-arm), const SYS_BIND ideal-int
+pkg syscall (netbsd-arm), const SYS_BREAK ideal-int
+pkg syscall (netbsd-arm), const SYS_CHDIR ideal-int
+pkg syscall (netbsd-arm), const SYS_CHFLAGS ideal-int
+pkg syscall (netbsd-arm), const SYS_CHMOD ideal-int
+pkg syscall (netbsd-arm), const SYS_CHOWN ideal-int
+pkg syscall (netbsd-arm), const SYS_CHROOT ideal-int
+pkg syscall (netbsd-arm), const SYS_CLOCK_GETRES ideal-int
+pkg syscall (netbsd-arm), const SYS_CLOCK_GETTIME ideal-int
+pkg syscall (netbsd-arm), const SYS_CLOCK_SETTIME ideal-int
+pkg syscall (netbsd-arm), const SYS_CLOSE ideal-int
+pkg syscall (netbsd-arm), const SYS_CONNECT ideal-int
+pkg syscall (netbsd-arm), const SYS_DUP ideal-int
+pkg syscall (netbsd-arm), const SYS_DUP2 ideal-int
+pkg syscall (netbsd-arm), const SYS_DUP3 ideal-int
+pkg syscall (netbsd-arm), const SYS_EXECVE ideal-int
+pkg syscall (netbsd-arm), const SYS_EXIT ideal-int
+pkg syscall (netbsd-arm), const SYS_EXTATTRCTL ideal-int
+pkg syscall (netbsd-arm), const SYS_EXTATTR_DELETE_FD ideal-int
+pkg syscall (netbsd-arm), const SYS_EXTATTR_DELETE_FILE ideal-int
+pkg syscall (netbsd-arm), const SYS_EXTATTR_DELETE_LINK ideal-int
+pkg syscall (netbsd-arm), const SYS_EXTATTR_GET_FD ideal-int
+pkg syscall (netbsd-arm), const SYS_EXTATTR_GET_FILE ideal-int
+pkg syscall (netbsd-arm), const SYS_EXTATTR_GET_LINK ideal-int
+pkg syscall (netbsd-arm), const SYS_EXTATTR_LIST_FD ideal-int
+pkg syscall (netbsd-arm), const SYS_EXTATTR_LIST_FILE ideal-int
+pkg syscall (netbsd-arm), const SYS_EXTATTR_LIST_LINK ideal-int
+pkg syscall (netbsd-arm), const SYS_EXTATTR_SET_FD ideal-int
+pkg syscall (netbsd-arm), const SYS_EXTATTR_SET_FILE ideal-int
+pkg syscall (netbsd-arm), const SYS_EXTATTR_SET_LINK ideal-int
+pkg syscall (netbsd-arm), const SYS_FACCESSAT ideal-int
+pkg syscall (netbsd-arm), const SYS_FCHDIR ideal-int
+pkg syscall (netbsd-arm), const SYS_FCHFLAGS ideal-int
+pkg syscall (netbsd-arm), const SYS_FCHMOD ideal-int
+pkg syscall (netbsd-arm), const SYS_FCHMODAT ideal-int
+pkg syscall (netbsd-arm), const SYS_FCHOWN ideal-int
+pkg syscall (netbsd-arm), const SYS_FCHOWNAT ideal-int
+pkg syscall (netbsd-arm), const SYS_FCHROOT ideal-int
+pkg syscall (netbsd-arm), const SYS_FCNTL ideal-int
+pkg syscall (netbsd-arm), const SYS_FDATASYNC ideal-int
+pkg syscall (netbsd-arm), const SYS_FEXECVE ideal-int
+pkg syscall (netbsd-arm), const SYS_FGETXATTR ideal-int
+pkg syscall (netbsd-arm), const SYS_FHSTAT ideal-int
+pkg syscall (netbsd-arm), const SYS_FKTRACE ideal-int
+pkg syscall (netbsd-arm), const SYS_FLISTXATTR ideal-int
+pkg syscall (netbsd-arm), const SYS_FLOCK ideal-int
+pkg syscall (netbsd-arm), const SYS_FORK ideal-int
+pkg syscall (netbsd-arm), const SYS_FPATHCONF ideal-int
+pkg syscall (netbsd-arm), const SYS_FREMOVEXATTR ideal-int
+pkg syscall (netbsd-arm), const SYS_FSETXATTR ideal-int
+pkg syscall (netbsd-arm), const SYS_FSTAT ideal-int
+pkg syscall (netbsd-arm), const SYS_FSTATAT ideal-int
+pkg syscall (netbsd-arm), const SYS_FSTATVFS1 ideal-int
+pkg syscall (netbsd-arm), const SYS_FSYNC ideal-int
+pkg syscall (netbsd-arm), const SYS_FSYNC_RANGE ideal-int
+pkg syscall (netbsd-arm), const SYS_FTRUNCATE ideal-int
+pkg syscall (netbsd-arm), const SYS_FUTIMENS ideal-int
+pkg syscall (netbsd-arm), const SYS_FUTIMES ideal-int
+pkg syscall (netbsd-arm), const SYS_GETCONTEXT ideal-int
+pkg syscall (netbsd-arm), const SYS_GETDENTS ideal-int
+pkg syscall (netbsd-arm), const SYS_GETEGID ideal-int
+pkg syscall (netbsd-arm), const SYS_GETEUID ideal-int
+pkg syscall (netbsd-arm), const SYS_GETFH ideal-int
+pkg syscall (netbsd-arm), const SYS_GETGID ideal-int
+pkg syscall (netbsd-arm), const SYS_GETGROUPS ideal-int
+pkg syscall (netbsd-arm), const SYS_GETITIMER ideal-int
+pkg syscall (netbsd-arm), const SYS_GETPEERNAME ideal-int
+pkg syscall (netbsd-arm), const SYS_GETPGID ideal-int
+pkg syscall (netbsd-arm), const SYS_GETPGRP ideal-int
+pkg syscall (netbsd-arm), const SYS_GETPID ideal-int
+pkg syscall (netbsd-arm), const SYS_GETPPID ideal-int
+pkg syscall (netbsd-arm), const SYS_GETPRIORITY ideal-int
+pkg syscall (netbsd-arm), const SYS_GETRLIMIT ideal-int
+pkg syscall (netbsd-arm), const SYS_GETRUSAGE ideal-int
+pkg syscall (netbsd-arm), const SYS_GETSID ideal-int
+pkg syscall (netbsd-arm), const SYS_GETSOCKNAME ideal-int
+pkg syscall (netbsd-arm), const SYS_GETSOCKOPT ideal-int
+pkg syscall (netbsd-arm), const SYS_GETTIMEOFDAY ideal-int
+pkg syscall (netbsd-arm), const SYS_GETUID ideal-int
+pkg syscall (netbsd-arm), const SYS_GETVFSSTAT ideal-int
+pkg syscall (netbsd-arm), const SYS_GETXATTR ideal-int
+pkg syscall (netbsd-arm), const SYS_IOCTL ideal-int
+pkg syscall (netbsd-arm), const SYS_ISSETUGID ideal-int
+pkg syscall (netbsd-arm), const SYS_KEVENT ideal-int
+pkg syscall (netbsd-arm), const SYS_KILL ideal-int
+pkg syscall (netbsd-arm), const SYS_KQUEUE ideal-int
+pkg syscall (netbsd-arm), const SYS_KQUEUE1 ideal-int
+pkg syscall (netbsd-arm), const SYS_KTRACE ideal-int
+pkg syscall (netbsd-arm), const SYS_LCHFLAGS ideal-int
+pkg syscall (netbsd-arm), const SYS_LCHMOD ideal-int
+pkg syscall (netbsd-arm), const SYS_LCHOWN ideal-int
+pkg syscall (netbsd-arm), const SYS_LGETXATTR ideal-int
+pkg syscall (netbsd-arm), const SYS_LINK ideal-int
+pkg syscall (netbsd-arm), const SYS_LINKAT ideal-int
+pkg syscall (netbsd-arm), const SYS_LISTEN ideal-int
+pkg syscall (netbsd-arm), const SYS_LISTXATTR ideal-int
+pkg syscall (netbsd-arm), const SYS_LLISTXATTR ideal-int
+pkg syscall (netbsd-arm), const SYS_LREMOVEXATTR ideal-int
+pkg syscall (netbsd-arm), const SYS_LSEEK ideal-int
+pkg syscall (netbsd-arm), const SYS_LSETXATTR ideal-int
+pkg syscall (netbsd-arm), const SYS_LSTAT ideal-int
+pkg syscall (netbsd-arm), const SYS_LUTIMES ideal-int
+pkg syscall (netbsd-arm), const SYS_MADVISE ideal-int
+pkg syscall (netbsd-arm), const SYS_MINCORE ideal-int
+pkg syscall (netbsd-arm), const SYS_MINHERIT ideal-int
+pkg syscall (netbsd-arm), const SYS_MKDIR ideal-int
+pkg syscall (netbsd-arm), const SYS_MKDIRAT ideal-int
+pkg syscall (netbsd-arm), const SYS_MKFIFO ideal-int
+pkg syscall (netbsd-arm), const SYS_MKFIFOAT ideal-int
+pkg syscall (netbsd-arm), const SYS_MKNOD ideal-int
+pkg syscall (netbsd-arm), const SYS_MKNODAT ideal-int
+pkg syscall (netbsd-arm), const SYS_MLOCK ideal-int
+pkg syscall (netbsd-arm), const SYS_MLOCKALL ideal-int
+pkg syscall (netbsd-arm), const SYS_MMAP ideal-int
+pkg syscall (netbsd-arm), const SYS_MODCTL ideal-int
+pkg syscall (netbsd-arm), const SYS_MOUNT ideal-int
+pkg syscall (netbsd-arm), const SYS_MPROTECT ideal-int
+pkg syscall (netbsd-arm), const SYS_MREMAP ideal-int
+pkg syscall (netbsd-arm), const SYS_MSGCTL ideal-int
+pkg syscall (netbsd-arm), const SYS_MSGGET ideal-int
+pkg syscall (netbsd-arm), const SYS_MSGRCV ideal-int
+pkg syscall (netbsd-arm), const SYS_MSGSND ideal-int
+pkg syscall (netbsd-arm), const SYS_MUNLOCK ideal-int
+pkg syscall (netbsd-arm), const SYS_MUNLOCKALL ideal-int
+pkg syscall (netbsd-arm), const SYS_MUNMAP ideal-int
+pkg syscall (netbsd-arm), const SYS_NANOSLEEP ideal-int
+pkg syscall (netbsd-arm), const SYS_NTP_ADJTIME ideal-int
+pkg syscall (netbsd-arm), const SYS_NTP_GETTIME ideal-int
+pkg syscall (netbsd-arm), const SYS_OPEN ideal-int
+pkg syscall (netbsd-arm), const SYS_OPENAT ideal-int
+pkg syscall (netbsd-arm), const SYS_PACCEPT ideal-int
+pkg syscall (netbsd-arm), const SYS_PATHCONF ideal-int
+pkg syscall (netbsd-arm), const SYS_PIPE ideal-int
+pkg syscall (netbsd-arm), const SYS_PIPE2 ideal-int
+pkg syscall (netbsd-arm), const SYS_PMC_CONTROL ideal-int
+pkg syscall (netbsd-arm), const SYS_PMC_GET_INFO ideal-int
+pkg syscall (netbsd-arm), const SYS_POLL ideal-int
+pkg syscall (netbsd-arm), const SYS_POLLTS ideal-int
+pkg syscall (netbsd-arm), const SYS_POSIX_FADVISE ideal-int
+pkg syscall (netbsd-arm), const SYS_POSIX_SPAWN ideal-int
+pkg syscall (netbsd-arm), const SYS_PREAD ideal-int
+pkg syscall (netbsd-arm), const SYS_PREADV ideal-int
+pkg syscall (netbsd-arm), const SYS_PROFIL ideal-int
+pkg syscall (netbsd-arm), const SYS_PSELECT ideal-int
+pkg syscall (netbsd-arm), const SYS_PSET_ASSIGN ideal-int
+pkg syscall (netbsd-arm), const SYS_PSET_CREATE ideal-int
+pkg syscall (netbsd-arm), const SYS_PSET_DESTROY ideal-int
+pkg syscall (netbsd-arm), const SYS_PTRACE ideal-int
+pkg syscall (netbsd-arm), const SYS_PWRITE ideal-int
+pkg syscall (netbsd-arm), const SYS_PWRITEV ideal-int
+pkg syscall (netbsd-arm), const SYS_RASCTL ideal-int
+pkg syscall (netbsd-arm), const SYS_READ ideal-int
+pkg syscall (netbsd-arm), const SYS_READLINK ideal-int
+pkg syscall (netbsd-arm), const SYS_READLINKAT ideal-int
+pkg syscall (netbsd-arm), const SYS_READV ideal-int
+pkg syscall (netbsd-arm), const SYS_REBOOT ideal-int
+pkg syscall (netbsd-arm), const SYS_RECVFROM ideal-int
+pkg syscall (netbsd-arm), const SYS_RECVMMSG ideal-int
+pkg syscall (netbsd-arm), const SYS_RECVMSG ideal-int
+pkg syscall (netbsd-arm), const SYS_REMOVEXATTR ideal-int
+pkg syscall (netbsd-arm), const SYS_RENAME ideal-int
+pkg syscall (netbsd-arm), const SYS_RENAMEAT ideal-int
+pkg syscall (netbsd-arm), const SYS_REVOKE ideal-int
+pkg syscall (netbsd-arm), const SYS_RMDIR ideal-int
+pkg syscall (netbsd-arm), const SYS_SBRK ideal-int
+pkg syscall (netbsd-arm), const SYS_SCHED_YIELD ideal-int
+pkg syscall (netbsd-arm), const SYS_SELECT ideal-int
+pkg syscall (netbsd-arm), const SYS_SEMCONFIG ideal-int
+pkg syscall (netbsd-arm), const SYS_SEMGET ideal-int
+pkg syscall (netbsd-arm), const SYS_SEMOP ideal-int
+pkg syscall (netbsd-arm), const SYS_SENDMMSG ideal-int
+pkg syscall (netbsd-arm), const SYS_SENDMSG ideal-int
+pkg syscall (netbsd-arm), const SYS_SENDTO ideal-int
+pkg syscall (netbsd-arm), const SYS_SETCONTEXT ideal-int
+pkg syscall (netbsd-arm), const SYS_SETEGID ideal-int
+pkg syscall (netbsd-arm), const SYS_SETEUID ideal-int
+pkg syscall (netbsd-arm), const SYS_SETGID ideal-int
+pkg syscall (netbsd-arm), const SYS_SETGROUPS ideal-int
+pkg syscall (netbsd-arm), const SYS_SETITIMER ideal-int
+pkg syscall (netbsd-arm), const SYS_SETPGID ideal-int
+pkg syscall (netbsd-arm), const SYS_SETPRIORITY ideal-int
+pkg syscall (netbsd-arm), const SYS_SETREGID ideal-int
+pkg syscall (netbsd-arm), const SYS_SETREUID ideal-int
+pkg syscall (netbsd-arm), const SYS_SETRLIMIT ideal-int
+pkg syscall (netbsd-arm), const SYS_SETSID ideal-int
+pkg syscall (netbsd-arm), const SYS_SETSOCKOPT ideal-int
+pkg syscall (netbsd-arm), const SYS_SETTIMEOFDAY ideal-int
+pkg syscall (netbsd-arm), const SYS_SETUID ideal-int
+pkg syscall (netbsd-arm), const SYS_SETXATTR ideal-int
+pkg syscall (netbsd-arm), const SYS_SHMAT ideal-int
+pkg syscall (netbsd-arm), const SYS_SHMCTL ideal-int
+pkg syscall (netbsd-arm), const SYS_SHMDT ideal-int
+pkg syscall (netbsd-arm), const SYS_SHMGET ideal-int
+pkg syscall (netbsd-arm), const SYS_SHUTDOWN ideal-int
+pkg syscall (netbsd-arm), const SYS_SIGQUEUEINFO ideal-int
+pkg syscall (netbsd-arm), const SYS_SOCKET ideal-int
+pkg syscall (netbsd-arm), const SYS_SOCKETPAIR ideal-int
+pkg syscall (netbsd-arm), const SYS_SSTK ideal-int
+pkg syscall (netbsd-arm), const SYS_STAT ideal-int
+pkg syscall (netbsd-arm), const SYS_STATVFS1 ideal-int
+pkg syscall (netbsd-arm), const SYS_SWAPCTL ideal-int
+pkg syscall (netbsd-arm), const SYS_SYMLINK ideal-int
+pkg syscall (netbsd-arm), const SYS_SYMLINKAT ideal-int
+pkg syscall (netbsd-arm), const SYS_SYNC ideal-int
+pkg syscall (netbsd-arm), const SYS_SYSARCH ideal-int
+pkg syscall (netbsd-arm), const SYS_TIMER_CREATE ideal-int
+pkg syscall (netbsd-arm), const SYS_TIMER_DELETE ideal-int
+pkg syscall (netbsd-arm), const SYS_TIMER_GETOVERRUN ideal-int
+pkg syscall (netbsd-arm), const SYS_TIMER_GETTIME ideal-int
+pkg syscall (netbsd-arm), const SYS_TIMER_SETTIME ideal-int
+pkg syscall (netbsd-arm), const SYS_TRUNCATE ideal-int
+pkg syscall (netbsd-arm), const SYS_UMASK ideal-int
+pkg syscall (netbsd-arm), const SYS_UNDELETE ideal-int
+pkg syscall (netbsd-arm), const SYS_UNLINK ideal-int
+pkg syscall (netbsd-arm), const SYS_UNLINKAT ideal-int
+pkg syscall (netbsd-arm), const SYS_UNMOUNT ideal-int
+pkg syscall (netbsd-arm), const SYS_UTIMENSAT ideal-int
+pkg syscall (netbsd-arm), const SYS_UTIMES ideal-int
+pkg syscall (netbsd-arm), const SYS_UTRACE ideal-int
+pkg syscall (netbsd-arm), const SYS_UUIDGEN ideal-int
+pkg syscall (netbsd-arm), const SYS_VADVISE ideal-int
+pkg syscall (netbsd-arm), const SYS_VFORK ideal-int
+pkg syscall (netbsd-arm), const SYS_WAIT4 ideal-int
+pkg syscall (netbsd-arm), const SYS_WRITE ideal-int
+pkg syscall (netbsd-arm), const SYS_WRITEV ideal-int
+pkg syscall (netbsd-arm), const SYS__LWP_CONTINUE ideal-int
+pkg syscall (netbsd-arm), const SYS__LWP_CREATE ideal-int
+pkg syscall (netbsd-arm), const SYS__LWP_CTL ideal-int
+pkg syscall (netbsd-arm), const SYS__LWP_DETACH ideal-int
+pkg syscall (netbsd-arm), const SYS__LWP_EXIT ideal-int
+pkg syscall (netbsd-arm), const SYS__LWP_GETNAME ideal-int
+pkg syscall (netbsd-arm), const SYS__LWP_GETPRIVATE ideal-int
+pkg syscall (netbsd-arm), const SYS__LWP_KILL ideal-int
+pkg syscall (netbsd-arm), const SYS__LWP_PARK ideal-int
+pkg syscall (netbsd-arm), const SYS__LWP_SELF ideal-int
+pkg syscall (netbsd-arm), const SYS__LWP_SETNAME ideal-int
+pkg syscall (netbsd-arm), const SYS__LWP_SETPRIVATE ideal-int
+pkg syscall (netbsd-arm), const SYS__LWP_SUSPEND ideal-int
+pkg syscall (netbsd-arm), const SYS__LWP_UNPARK ideal-int
+pkg syscall (netbsd-arm), const SYS__LWP_UNPARK_ALL ideal-int
+pkg syscall (netbsd-arm), const SYS__LWP_WAIT ideal-int
+pkg syscall (netbsd-arm), const SYS__LWP_WAKEUP ideal-int
+pkg syscall (netbsd-arm), const SYS__PSET_BIND ideal-int
+pkg syscall (netbsd-arm), const SYS__SCHED_GETAFFINITY ideal-int
+pkg syscall (netbsd-arm), const SYS__SCHED_GETPARAM ideal-int
+pkg syscall (netbsd-arm), const SYS__SCHED_SETAFFINITY ideal-int
+pkg syscall (netbsd-arm), const SYS__SCHED_SETPARAM ideal-int
+pkg syscall (netbsd-arm), const SYS___CLONE ideal-int
+pkg syscall (netbsd-arm), const SYS___GETCWD ideal-int
+pkg syscall (netbsd-arm), const SYS___GETLOGIN ideal-int
+pkg syscall (netbsd-arm), const SYS___POSIX_CHOWN ideal-int
+pkg syscall (netbsd-arm), const SYS___POSIX_FCHOWN ideal-int
+pkg syscall (netbsd-arm), const SYS___POSIX_LCHOWN ideal-int
+pkg syscall (netbsd-arm), const SYS___POSIX_RENAME ideal-int
+pkg syscall (netbsd-arm), const SYS___QUOTACTL ideal-int
+pkg syscall (netbsd-arm), const SYS___SEMCTL ideal-int
+pkg syscall (netbsd-arm), const SYS___SETLOGIN ideal-int
+pkg syscall (netbsd-arm), const SYS___SIGACTION_SIGTRAMP ideal-int
+pkg syscall (netbsd-arm), const SYS___SIGTIMEDWAIT ideal-int
+pkg syscall (netbsd-arm), const SYS___SYSCTL ideal-int
+pkg syscall (netbsd-arm), const S_ARCH1 ideal-int
+pkg syscall (netbsd-arm), const S_ARCH2 ideal-int
+pkg syscall (netbsd-arm), const S_BLKSIZE ideal-int
+pkg syscall (netbsd-arm), const S_IEXEC ideal-int
+pkg syscall (netbsd-arm), const S_IFWHT ideal-int
+pkg syscall (netbsd-arm), const S_IREAD ideal-int
+pkg syscall (netbsd-arm), const S_IRGRP ideal-int
+pkg syscall (netbsd-arm), const S_IROTH ideal-int
+pkg syscall (netbsd-arm), const S_IRWXG ideal-int
+pkg syscall (netbsd-arm), const S_IRWXO ideal-int
+pkg syscall (netbsd-arm), const S_IRWXU ideal-int
+pkg syscall (netbsd-arm), const S_ISTXT ideal-int
+pkg syscall (netbsd-arm), const S_IWGRP ideal-int
+pkg syscall (netbsd-arm), const S_IWOTH ideal-int
+pkg syscall (netbsd-arm), const S_IWRITE ideal-int
+pkg syscall (netbsd-arm), const S_IXGRP ideal-int
+pkg syscall (netbsd-arm), const S_IXOTH ideal-int
+pkg syscall (netbsd-arm), const SizeofBpfHdr ideal-int
+pkg syscall (netbsd-arm), const SizeofBpfInsn ideal-int
+pkg syscall (netbsd-arm), const SizeofBpfProgram ideal-int
+pkg syscall (netbsd-arm), const SizeofBpfStat ideal-int
+pkg syscall (netbsd-arm), const SizeofBpfVersion ideal-int
+pkg syscall (netbsd-arm), const SizeofCmsghdr ideal-int
+pkg syscall (netbsd-arm), const SizeofICMPv6Filter = 32
+pkg syscall (netbsd-arm), const SizeofICMPv6Filter ideal-int
+pkg syscall (netbsd-arm), const SizeofIPMreq ideal-int
+pkg syscall (netbsd-arm), const SizeofIPv6MTUInfo = 32
+pkg syscall (netbsd-arm), const SizeofIPv6MTUInfo ideal-int
+pkg syscall (netbsd-arm), const SizeofIPv6Mreq ideal-int
+pkg syscall (netbsd-arm), const SizeofIfAnnounceMsghdr ideal-int
+pkg syscall (netbsd-arm), const SizeofIfData ideal-int
+pkg syscall (netbsd-arm), const SizeofIfMsghdr ideal-int
+pkg syscall (netbsd-arm), const SizeofIfaMsghdr ideal-int
+pkg syscall (netbsd-arm), const SizeofInet6Pktinfo ideal-int
+pkg syscall (netbsd-arm), const SizeofLinger ideal-int
+pkg syscall (netbsd-arm), const SizeofMsghdr ideal-int
+pkg syscall (netbsd-arm), const SizeofRtMetrics ideal-int
+pkg syscall (netbsd-arm), const SizeofRtMsghdr ideal-int
+pkg syscall (netbsd-arm), const SizeofSockaddrAny ideal-int
+pkg syscall (netbsd-arm), const SizeofSockaddrDatalink ideal-int
+pkg syscall (netbsd-arm), const SizeofSockaddrInet4 ideal-int
+pkg syscall (netbsd-arm), const SizeofSockaddrInet6 ideal-int
+pkg syscall (netbsd-arm), const SizeofSockaddrUnix ideal-int
+pkg syscall (netbsd-arm), const TCIFLUSH ideal-int
+pkg syscall (netbsd-arm), const TCIOFLUSH ideal-int
+pkg syscall (netbsd-arm), const TCOFLUSH ideal-int
+pkg syscall (netbsd-arm), const TCP_CONGCTL ideal-int
+pkg syscall (netbsd-arm), const TCP_KEEPCNT ideal-int
+pkg syscall (netbsd-arm), const TCP_KEEPIDLE ideal-int
+pkg syscall (netbsd-arm), const TCP_KEEPINIT ideal-int
+pkg syscall (netbsd-arm), const TCP_KEEPINTVL ideal-int
+pkg syscall (netbsd-arm), const TCP_MAXBURST ideal-int
+pkg syscall (netbsd-arm), const TCP_MAXSEG ideal-int
+pkg syscall (netbsd-arm), const TCP_MAXWIN ideal-int
+pkg syscall (netbsd-arm), const TCP_MAX_WINSHIFT ideal-int
+pkg syscall (netbsd-arm), const TCP_MD5SIG ideal-int
+pkg syscall (netbsd-arm), const TCP_MINMSS ideal-int
+pkg syscall (netbsd-arm), const TCP_MSS ideal-int
+pkg syscall (netbsd-arm), const TCSAFLUSH ideal-int
+pkg syscall (netbsd-arm), const TIOCCBRK ideal-int
+pkg syscall (netbsd-arm), const TIOCCDTR ideal-int
+pkg syscall (netbsd-arm), const TIOCCONS ideal-int
+pkg syscall (netbsd-arm), const TIOCDCDTIMESTAMP ideal-int
+pkg syscall (netbsd-arm), const TIOCDRAIN ideal-int
+pkg syscall (netbsd-arm), const TIOCEXCL ideal-int
+pkg syscall (netbsd-arm), const TIOCEXT ideal-int
+pkg syscall (netbsd-arm), const TIOCFLAG_CDTRCTS ideal-int
+pkg syscall (netbsd-arm), const TIOCFLAG_CLOCAL ideal-int
+pkg syscall (netbsd-arm), const TIOCFLAG_CRTSCTS ideal-int
+pkg syscall (netbsd-arm), const TIOCFLAG_MDMBUF ideal-int
+pkg syscall (netbsd-arm), const TIOCFLAG_SOFTCAR ideal-int
+pkg syscall (netbsd-arm), const TIOCFLUSH ideal-int
+pkg syscall (netbsd-arm), const TIOCGETA ideal-int
+pkg syscall (netbsd-arm), const TIOCGETD ideal-int
+pkg syscall (netbsd-arm), const TIOCGFLAGS ideal-int
+pkg syscall (netbsd-arm), const TIOCGLINED ideal-int
+pkg syscall (netbsd-arm), const TIOCGPGRP ideal-int
+pkg syscall (netbsd-arm), const TIOCGQSIZE ideal-int
+pkg syscall (netbsd-arm), const TIOCGRANTPT ideal-int
+pkg syscall (netbsd-arm), const TIOCGSID ideal-int
+pkg syscall (netbsd-arm), const TIOCGSIZE ideal-int
+pkg syscall (netbsd-arm), const TIOCGWINSZ ideal-int
+pkg syscall (netbsd-arm), const TIOCMBIC ideal-int
+pkg syscall (netbsd-arm), const TIOCMBIS ideal-int
+pkg syscall (netbsd-arm), const TIOCMGET ideal-int
+pkg syscall (netbsd-arm), const TIOCMSET ideal-int
+pkg syscall (netbsd-arm), const TIOCM_CAR ideal-int
+pkg syscall (netbsd-arm), const TIOCM_CD ideal-int
+pkg syscall (netbsd-arm), const TIOCM_CTS ideal-int
+pkg syscall (netbsd-arm), const TIOCM_DSR ideal-int
+pkg syscall (netbsd-arm), const TIOCM_DTR ideal-int
+pkg syscall (netbsd-arm), const TIOCM_LE ideal-int
+pkg syscall (netbsd-arm), const TIOCM_RI ideal-int
+pkg syscall (netbsd-arm), const TIOCM_RNG ideal-int
+pkg syscall (netbsd-arm), const TIOCM_RTS ideal-int
+pkg syscall (netbsd-arm), const TIOCM_SR ideal-int
+pkg syscall (netbsd-arm), const TIOCM_ST ideal-int
+pkg syscall (netbsd-arm), const TIOCNOTTY ideal-int
+pkg syscall (netbsd-arm), const TIOCNXCL ideal-int
+pkg syscall (netbsd-arm), const TIOCOUTQ ideal-int
+pkg syscall (netbsd-arm), const TIOCPKT ideal-int
+pkg syscall (netbsd-arm), const TIOCPKT_DATA ideal-int
+pkg syscall (netbsd-arm), const TIOCPKT_DOSTOP ideal-int
+pkg syscall (netbsd-arm), const TIOCPKT_FLUSHREAD ideal-int
+pkg syscall (netbsd-arm), const TIOCPKT_FLUSHWRITE ideal-int
+pkg syscall (netbsd-arm), const TIOCPKT_IOCTL ideal-int
+pkg syscall (netbsd-arm), const TIOCPKT_NOSTOP ideal-int
+pkg syscall (netbsd-arm), const TIOCPKT_START ideal-int
+pkg syscall (netbsd-arm), const TIOCPKT_STOP ideal-int
+pkg syscall (netbsd-arm), const TIOCPTMGET ideal-int
+pkg syscall (netbsd-arm), const TIOCPTSNAME ideal-int
+pkg syscall (netbsd-arm), const TIOCRCVFRAME ideal-int
+pkg syscall (netbsd-arm), const TIOCREMOTE ideal-int
+pkg syscall (netbsd-arm), const TIOCSBRK ideal-int
+pkg syscall (netbsd-arm), const TIOCSCTTY ideal-int
+pkg syscall (netbsd-arm), const TIOCSDTR ideal-int
+pkg syscall (netbsd-arm), const TIOCSETA ideal-int
+pkg syscall (netbsd-arm), const TIOCSETAF ideal-int
+pkg syscall (netbsd-arm), const TIOCSETAW ideal-int
+pkg syscall (netbsd-arm), const TIOCSETD ideal-int
+pkg syscall (netbsd-arm), const TIOCSFLAGS ideal-int
+pkg syscall (netbsd-arm), const TIOCSIG ideal-int
+pkg syscall (netbsd-arm), const TIOCSLINED ideal-int
+pkg syscall (netbsd-arm), const TIOCSPGRP ideal-int
+pkg syscall (netbsd-arm), const TIOCSQSIZE ideal-int
+pkg syscall (netbsd-arm), const TIOCSSIZE ideal-int
+pkg syscall (netbsd-arm), const TIOCSTART ideal-int
+pkg syscall (netbsd-arm), const TIOCSTAT ideal-int
+pkg syscall (netbsd-arm), const TIOCSTI ideal-int
+pkg syscall (netbsd-arm), const TIOCSTOP ideal-int
+pkg syscall (netbsd-arm), const TIOCSWINSZ ideal-int
+pkg syscall (netbsd-arm), const TIOCUCNTL ideal-int
+pkg syscall (netbsd-arm), const TIOCXMTFRAME ideal-int
+pkg syscall (netbsd-arm), const TOSTOP ideal-int
+pkg syscall (netbsd-arm), const VDISCARD ideal-int
+pkg syscall (netbsd-arm), const VDSUSP ideal-int
+pkg syscall (netbsd-arm), const VEOF ideal-int
+pkg syscall (netbsd-arm), const VEOL ideal-int
+pkg syscall (netbsd-arm), const VEOL2 ideal-int
+pkg syscall (netbsd-arm), const VERASE ideal-int
+pkg syscall (netbsd-arm), const VINTR ideal-int
+pkg syscall (netbsd-arm), const VKILL ideal-int
+pkg syscall (netbsd-arm), const VLNEXT ideal-int
+pkg syscall (netbsd-arm), const VMIN ideal-int
+pkg syscall (netbsd-arm), const VQUIT ideal-int
+pkg syscall (netbsd-arm), const VREPRINT ideal-int
+pkg syscall (netbsd-arm), const VSTART ideal-int
+pkg syscall (netbsd-arm), const VSTATUS ideal-int
+pkg syscall (netbsd-arm), const VSTOP ideal-int
+pkg syscall (netbsd-arm), const VSUSP ideal-int
+pkg syscall (netbsd-arm), const VTIME ideal-int
+pkg syscall (netbsd-arm), const VWERASE ideal-int
+pkg syscall (netbsd-arm), const WALL ideal-int
+pkg syscall (netbsd-arm), const WALLSIG ideal-int
+pkg syscall (netbsd-arm), const WALTSIG ideal-int
+pkg syscall (netbsd-arm), const WCLONE ideal-int
+pkg syscall (netbsd-arm), const WCOREFLAG ideal-int
+pkg syscall (netbsd-arm), const WNOHANG ideal-int
+pkg syscall (netbsd-arm), const WNOWAIT ideal-int
+pkg syscall (netbsd-arm), const WNOZOMBIE ideal-int
+pkg syscall (netbsd-arm), const WOPTSCHECKED ideal-int
+pkg syscall (netbsd-arm), const WSTOPPED ideal-int
+pkg syscall (netbsd-arm), const WUNTRACED ideal-int
+pkg syscall (netbsd-arm), func Accept(int) (int, Sockaddr, error)
+pkg syscall (netbsd-arm), func Access(string, uint32) error
+pkg syscall (netbsd-arm), func Adjtime(*Timeval, *Timeval) error
+pkg syscall (netbsd-arm), func Bind(int, Sockaddr) error
+pkg syscall (netbsd-arm), func BpfBuflen(int) (int, error)
+pkg syscall (netbsd-arm), func BpfDatalink(int) (int, error)
+pkg syscall (netbsd-arm), func BpfHeadercmpl(int) (int, error)
+pkg syscall (netbsd-arm), func BpfInterface(int, string) (string, error)
+pkg syscall (netbsd-arm), func BpfJump(int, int, int, int) *BpfInsn
+pkg syscall (netbsd-arm), func BpfStats(int) (*BpfStat, error)
+pkg syscall (netbsd-arm), func BpfStmt(int, int) *BpfInsn
+pkg syscall (netbsd-arm), func BpfTimeout(int) (*Timeval, error)
+pkg syscall (netbsd-arm), func CheckBpfVersion(int) error
+pkg syscall (netbsd-arm), func Chflags(string, int) error
+pkg syscall (netbsd-arm), func Chroot(string) error
+pkg syscall (netbsd-arm), func Close(int) error
+pkg syscall (netbsd-arm), func CloseOnExec(int)
+pkg syscall (netbsd-arm), func CmsgLen(int) int
+pkg syscall (netbsd-arm), func CmsgSpace(int) int
+pkg syscall (netbsd-arm), func Connect(int, Sockaddr) error
+pkg syscall (netbsd-arm), func Dup(int) (int, error)
+pkg syscall (netbsd-arm), func Dup2(int, int) error
+pkg syscall (netbsd-arm), func Fchdir(int) error
+pkg syscall (netbsd-arm), func Fchflags(string, int) error
+pkg syscall (netbsd-arm), func Fchmod(int, uint32) error
+pkg syscall (netbsd-arm), func Fchown(int, int, int) error
+pkg syscall (netbsd-arm), func Flock(int, int) error
+pkg syscall (netbsd-arm), func FlushBpf(int) error
+pkg syscall (netbsd-arm), func ForkExec(string, []string, *ProcAttr) (int, error)
+pkg syscall (netbsd-arm), func Fpathconf(int, int) (int, error)
+pkg syscall (netbsd-arm), func Fstat(int, *Stat_t) error
+pkg syscall (netbsd-arm), func Fsync(int) error
+pkg syscall (netbsd-arm), func Ftruncate(int, int64) error
+pkg syscall (netbsd-arm), func Futimes(int, []Timeval) error
+pkg syscall (netbsd-arm), func Getdirentries(int, []uint8, *uintptr) (int, error)
+pkg syscall (netbsd-arm), func Getpeername(int) (Sockaddr, error)
+pkg syscall (netbsd-arm), func Getpgid(int) (int, error)
+pkg syscall (netbsd-arm), func Getpgrp() int
+pkg syscall (netbsd-arm), func Getpriority(int, int) (int, error)
+pkg syscall (netbsd-arm), func Getrlimit(int, *Rlimit) error
+pkg syscall (netbsd-arm), func Getrusage(int, *Rusage) error
+pkg syscall (netbsd-arm), func Getsid(int) (int, error)
+pkg syscall (netbsd-arm), func Getsockname(int) (Sockaddr, error)
+pkg syscall (netbsd-arm), func GetsockoptByte(int, int, int) (uint8, error)
+pkg syscall (netbsd-arm), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
+pkg syscall (netbsd-arm), func GetsockoptIPMreq(int, int, int) (*IPMreq, error)
+pkg syscall (netbsd-arm), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
+pkg syscall (netbsd-arm), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error)
+pkg syscall (netbsd-arm), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error)
+pkg syscall (netbsd-arm), func GetsockoptInt(int, int, int) (int, error)
+pkg syscall (netbsd-arm), func Issetugid() bool
+pkg syscall (netbsd-arm), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error)
+pkg syscall (netbsd-arm), func Kill(int, Signal) error
+pkg syscall (netbsd-arm), func Kqueue() (int, error)
+pkg syscall (netbsd-arm), func Listen(int, int) error
+pkg syscall (netbsd-arm), func Lstat(string, *Stat_t) error
+pkg syscall (netbsd-arm), func Mkfifo(string, uint32) error
+pkg syscall (netbsd-arm), func Mknod(string, uint32, int) error
+pkg syscall (netbsd-arm), func Mmap(int, int64, int, int, int) ([]uint8, error)
+pkg syscall (netbsd-arm), func Munmap([]uint8) error
+pkg syscall (netbsd-arm), func Nanosleep(*Timespec, *Timespec) error
+pkg syscall (netbsd-arm), func Open(string, int, uint32) (int, error)
+pkg syscall (netbsd-arm), func ParseDirent([]uint8, int, []string) (int, int, []string)
+pkg syscall (netbsd-arm), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error)
+pkg syscall (netbsd-arm), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error)
+pkg syscall (netbsd-arm), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error)
+pkg syscall (netbsd-arm), func ParseUnixRights(*SocketControlMessage) ([]int, error)
+pkg syscall (netbsd-arm), func Pathconf(string, int) (int, error)
+pkg syscall (netbsd-arm), func Pipe([]int) error
+pkg syscall (netbsd-arm), func Pread(int, []uint8, int64) (int, error)
+pkg syscall (netbsd-arm), func Pwrite(int, []uint8, int64) (int, error)
+pkg syscall (netbsd-arm), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (netbsd-arm), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (netbsd-arm), func Read(int, []uint8) (int, error)
+pkg syscall (netbsd-arm), func ReadDirent(int, []uint8) (int, error)
+pkg syscall (netbsd-arm), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
+pkg syscall (netbsd-arm), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
+pkg syscall (netbsd-arm), func Revoke(string) error
+pkg syscall (netbsd-arm), func RouteRIB(int, int) ([]uint8, error)
+pkg syscall (netbsd-arm), func Seek(int, int64, int) (int64, error)
+pkg syscall (netbsd-arm), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error
+pkg syscall (netbsd-arm), func Sendfile(int, int, *int64, int) (int, error)
+pkg syscall (netbsd-arm), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
+pkg syscall (netbsd-arm), func Sendto(int, []uint8, int, Sockaddr) error
+pkg syscall (netbsd-arm), func SetBpf(int, []BpfInsn) error
+pkg syscall (netbsd-arm), func SetBpfBuflen(int, int) (int, error)
+pkg syscall (netbsd-arm), func SetBpfDatalink(int, int) (int, error)
+pkg syscall (netbsd-arm), func SetBpfHeadercmpl(int, int) error
+pkg syscall (netbsd-arm), func SetBpfImmediate(int, int) error
+pkg syscall (netbsd-arm), func SetBpfInterface(int, string) error
+pkg syscall (netbsd-arm), func SetBpfPromisc(int, int) error
+pkg syscall (netbsd-arm), func SetBpfTimeout(int, *Timeval) error
+pkg syscall (netbsd-arm), func SetKevent(*Kevent_t, int, int, int)
+pkg syscall (netbsd-arm), func SetNonblock(int, bool) error
+pkg syscall (netbsd-arm), func Setegid(int) error
+pkg syscall (netbsd-arm), func Seteuid(int) error
+pkg syscall (netbsd-arm), func Setgid(int) error
+pkg syscall (netbsd-arm), func Setgroups([]int) error
+pkg syscall (netbsd-arm), func Setpgid(int, int) error
+pkg syscall (netbsd-arm), func Setpriority(int, int, int) error
+pkg syscall (netbsd-arm), func Setregid(int, int) error
+pkg syscall (netbsd-arm), func Setreuid(int, int) error
+pkg syscall (netbsd-arm), func Setrlimit(int, *Rlimit) error
+pkg syscall (netbsd-arm), func Setsid() (int, error)
+pkg syscall (netbsd-arm), func SetsockoptByte(int, int, int, uint8) error
+pkg syscall (netbsd-arm), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
+pkg syscall (netbsd-arm), func SetsockoptIPMreq(int, int, int, *IPMreq) error
+pkg syscall (netbsd-arm), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error
+pkg syscall (netbsd-arm), func SetsockoptInet4Addr(int, int, int, [4]uint8) error
+pkg syscall (netbsd-arm), func SetsockoptInt(int, int, int, int) error
+pkg syscall (netbsd-arm), func SetsockoptLinger(int, int, int, *Linger) error
+pkg syscall (netbsd-arm), func SetsockoptString(int, int, int, string) error
+pkg syscall (netbsd-arm), func SetsockoptTimeval(int, int, int, *Timeval) error
+pkg syscall (netbsd-arm), func Settimeofday(*Timeval) error
+pkg syscall (netbsd-arm), func Setuid(int) error
+pkg syscall (netbsd-arm), func Shutdown(int, int) error
+pkg syscall (netbsd-arm), func SlicePtrFromStrings([]string) ([]*uint8, error)
+pkg syscall (netbsd-arm), func Socket(int, int, int) (int, error)
+pkg syscall (netbsd-arm), func Socketpair(int, int, int) ([2]int, error)
+pkg syscall (netbsd-arm), func Stat(string, *Stat_t) error
+pkg syscall (netbsd-arm), func StringSlicePtr([]string) []*uint8
+pkg syscall (netbsd-arm), func Sync() error
+pkg syscall (netbsd-arm), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (netbsd-arm), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (netbsd-arm), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (netbsd-arm), func Sysctl(string) (string, error)
+pkg syscall (netbsd-arm), func SysctlUint32(string) (uint32, error)
+pkg syscall (netbsd-arm), func TimevalToNsec(Timeval) int64
+pkg syscall (netbsd-arm), func Truncate(string, int64) error
+pkg syscall (netbsd-arm), func Umask(int) int
+pkg syscall (netbsd-arm), func UnixRights(...int) []uint8
+pkg syscall (netbsd-arm), func Unmount(string, int) error
+pkg syscall (netbsd-arm), func Wait4(int, *WaitStatus, int, *Rusage) (int, error)
+pkg syscall (netbsd-arm), func Write(int, []uint8) (int, error)
+pkg syscall (netbsd-arm), method (*Cmsghdr) SetLen(int)
+pkg syscall (netbsd-arm), method (*Iovec) SetLen(int)
+pkg syscall (netbsd-arm), method (*Msghdr) SetControllen(int)
+pkg syscall (netbsd-arm), type BpfHdr struct
+pkg syscall (netbsd-arm), type BpfHdr struct, Caplen uint32
+pkg syscall (netbsd-arm), type BpfHdr struct, Datalen uint32
+pkg syscall (netbsd-arm), type BpfHdr struct, Hdrlen uint16
+pkg syscall (netbsd-arm), type BpfHdr struct, Pad_cgo_0 [2]uint8
+pkg syscall (netbsd-arm), type BpfHdr struct, Tstamp BpfTimeval
+pkg syscall (netbsd-arm), type BpfInsn struct
+pkg syscall (netbsd-arm), type BpfInsn struct, Code uint16
+pkg syscall (netbsd-arm), type BpfInsn struct, Jf uint8
+pkg syscall (netbsd-arm), type BpfInsn struct, Jt uint8
+pkg syscall (netbsd-arm), type BpfInsn struct, K uint32
+pkg syscall (netbsd-arm), type BpfProgram struct
+pkg syscall (netbsd-arm), type BpfProgram struct, Insns *BpfInsn
+pkg syscall (netbsd-arm), type BpfProgram struct, Len uint32
+pkg syscall (netbsd-arm), type BpfStat struct
+pkg syscall (netbsd-arm), type BpfStat struct, Capt uint64
+pkg syscall (netbsd-arm), type BpfStat struct, Drop uint64
+pkg syscall (netbsd-arm), type BpfStat struct, Padding [13]uint64
+pkg syscall (netbsd-arm), type BpfStat struct, Recv uint64
+pkg syscall (netbsd-arm), type BpfTimeval struct
+pkg syscall (netbsd-arm), type BpfTimeval struct, Sec int32
+pkg syscall (netbsd-arm), type BpfTimeval struct, Usec int32
+pkg syscall (netbsd-arm), type BpfVersion struct
+pkg syscall (netbsd-arm), type BpfVersion struct, Major uint16
+pkg syscall (netbsd-arm), type BpfVersion struct, Minor uint16
+pkg syscall (netbsd-arm), type Cmsghdr struct
+pkg syscall (netbsd-arm), type Cmsghdr struct, Len uint32
+pkg syscall (netbsd-arm), type Cmsghdr struct, Level int32
+pkg syscall (netbsd-arm), type Cmsghdr struct, Type int32
+pkg syscall (netbsd-arm), type Credential struct
+pkg syscall (netbsd-arm), type Credential struct, Gid uint32
+pkg syscall (netbsd-arm), type Credential struct, Groups []uint32
+pkg syscall (netbsd-arm), type Credential struct, Uid uint32
+pkg syscall (netbsd-arm), type Dirent struct
+pkg syscall (netbsd-arm), type Dirent struct, Fileno uint64
+pkg syscall (netbsd-arm), type Dirent struct, Name [512]int8
+pkg syscall (netbsd-arm), type Dirent struct, Namlen uint16
+pkg syscall (netbsd-arm), type Dirent struct, Pad_cgo_0 [3]uint8
+pkg syscall (netbsd-arm), type Dirent struct, Reclen uint16
+pkg syscall (netbsd-arm), type Dirent struct, Type uint8
+pkg syscall (netbsd-arm), type FdSet struct
+pkg syscall (netbsd-arm), type FdSet struct, Bits [8]uint32
+pkg syscall (netbsd-arm), type Flock_t struct
+pkg syscall (netbsd-arm), type Flock_t struct, Len int64
+pkg syscall (netbsd-arm), type Flock_t struct, Pid int32
+pkg syscall (netbsd-arm), type Flock_t struct, Start int64
+pkg syscall (netbsd-arm), type Flock_t struct, Type int16
+pkg syscall (netbsd-arm), type Flock_t struct, Whence int16
+pkg syscall (netbsd-arm), type Fsid struct
+pkg syscall (netbsd-arm), type Fsid struct, X__fsid_val [2]int32
+pkg syscall (netbsd-arm), type ICMPv6Filter struct
+pkg syscall (netbsd-arm), type ICMPv6Filter struct, Filt [8]uint32
+pkg syscall (netbsd-arm), type IPv6MTUInfo struct
+pkg syscall (netbsd-arm), type IPv6MTUInfo struct, Addr RawSockaddrInet6
+pkg syscall (netbsd-arm), type IPv6MTUInfo struct, Mtu uint32
+pkg syscall (netbsd-arm), type IfAnnounceMsghdr struct
+pkg syscall (netbsd-arm), type IfAnnounceMsghdr struct, Index uint16
+pkg syscall (netbsd-arm), type IfAnnounceMsghdr struct, Msglen uint16
+pkg syscall (netbsd-arm), type IfAnnounceMsghdr struct, Name [16]int8
+pkg syscall (netbsd-arm), type IfAnnounceMsghdr struct, Type uint8
+pkg syscall (netbsd-arm), type IfAnnounceMsghdr struct, Version uint8
+pkg syscall (netbsd-arm), type IfAnnounceMsghdr struct, What uint16
+pkg syscall (netbsd-arm), type IfData struct
+pkg syscall (netbsd-arm), type IfData struct, Addrlen uint8
+pkg syscall (netbsd-arm), type IfData struct, Baudrate uint64
+pkg syscall (netbsd-arm), type IfData struct, Collisions uint64
+pkg syscall (netbsd-arm), type IfData struct, Hdrlen uint8
+pkg syscall (netbsd-arm), type IfData struct, Ibytes uint64
+pkg syscall (netbsd-arm), type IfData struct, Ierrors uint64
+pkg syscall (netbsd-arm), type IfData struct, Imcasts uint64
+pkg syscall (netbsd-arm), type IfData struct, Ipackets uint64
+pkg syscall (netbsd-arm), type IfData struct, Iqdrops uint64
+pkg syscall (netbsd-arm), type IfData struct, Lastchange Timespec
+pkg syscall (netbsd-arm), type IfData struct, Link_state int32
+pkg syscall (netbsd-arm), type IfData struct, Metric uint64
+pkg syscall (netbsd-arm), type IfData struct, Mtu uint64
+pkg syscall (netbsd-arm), type IfData struct, Noproto uint64
+pkg syscall (netbsd-arm), type IfData struct, Obytes uint64
+pkg syscall (netbsd-arm), type IfData struct, Oerrors uint64
+pkg syscall (netbsd-arm), type IfData struct, Omcasts uint64
+pkg syscall (netbsd-arm), type IfData struct, Opackets uint64
+pkg syscall (netbsd-arm), type IfData struct, Pad_cgo_0 [1]uint8
+pkg syscall (netbsd-arm), type IfData struct, Type uint8
+pkg syscall (netbsd-arm), type IfMsghdr struct
+pkg syscall (netbsd-arm), type IfMsghdr struct, Addrs int32
+pkg syscall (netbsd-arm), type IfMsghdr struct, Data IfData
+pkg syscall (netbsd-arm), type IfMsghdr struct, Flags int32
+pkg syscall (netbsd-arm), type IfMsghdr struct, Index uint16
+pkg syscall (netbsd-arm), type IfMsghdr struct, Msglen uint16
+pkg syscall (netbsd-arm), type IfMsghdr struct, Pad_cgo_0 [2]uint8
+pkg syscall (netbsd-arm), type IfMsghdr struct, Pad_cgo_1 [4]uint8
+pkg syscall (netbsd-arm), type IfMsghdr struct, Type uint8
+pkg syscall (netbsd-arm), type IfMsghdr struct, Version uint8
+pkg syscall (netbsd-arm), type IfaMsghdr struct
+pkg syscall (netbsd-arm), type IfaMsghdr struct, Addrs int32
+pkg syscall (netbsd-arm), type IfaMsghdr struct, Flags int32
+pkg syscall (netbsd-arm), type IfaMsghdr struct, Index uint16
+pkg syscall (netbsd-arm), type IfaMsghdr struct, Metric int32
+pkg syscall (netbsd-arm), type IfaMsghdr struct, Msglen uint16
+pkg syscall (netbsd-arm), type IfaMsghdr struct, Pad_cgo_0 [6]uint8
+pkg syscall (netbsd-arm), type IfaMsghdr struct, Type uint8
+pkg syscall (netbsd-arm), type IfaMsghdr struct, Version uint8
+pkg syscall (netbsd-arm), type Inet6Pktinfo struct
+pkg syscall (netbsd-arm), type Inet6Pktinfo struct, Addr [16]uint8
+pkg syscall (netbsd-arm), type Inet6Pktinfo struct, Ifindex uint32
+pkg syscall (netbsd-arm), type InterfaceAddrMessage struct
+pkg syscall (netbsd-arm), type InterfaceAddrMessage struct, Data []uint8
+pkg syscall (netbsd-arm), type InterfaceAddrMessage struct, Header IfaMsghdr
+pkg syscall (netbsd-arm), type InterfaceAnnounceMessage struct
+pkg syscall (netbsd-arm), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr
+pkg syscall (netbsd-arm), type InterfaceMessage struct
+pkg syscall (netbsd-arm), type InterfaceMessage struct, Data []uint8
+pkg syscall (netbsd-arm), type InterfaceMessage struct, Header IfMsghdr
+pkg syscall (netbsd-arm), type Iovec struct
+pkg syscall (netbsd-arm), type Iovec struct, Base *uint8
+pkg syscall (netbsd-arm), type Iovec struct, Len uint32
+pkg syscall (netbsd-arm), type Kevent_t struct
+pkg syscall (netbsd-arm), type Kevent_t struct, Data int64
+pkg syscall (netbsd-arm), type Kevent_t struct, Fflags uint32
+pkg syscall (netbsd-arm), type Kevent_t struct, Filter uint32
+pkg syscall (netbsd-arm), type Kevent_t struct, Flags uint32
+pkg syscall (netbsd-arm), type Kevent_t struct, Ident uint32
+pkg syscall (netbsd-arm), type Kevent_t struct, Udata int32
+pkg syscall (netbsd-arm), type Mclpool [0]uint8
+pkg syscall (netbsd-arm), type Msghdr struct
+pkg syscall (netbsd-arm), type Msghdr struct, Control *uint8
+pkg syscall (netbsd-arm), type Msghdr struct, Controllen uint32
+pkg syscall (netbsd-arm), type Msghdr struct, Flags int32
+pkg syscall (netbsd-arm), type Msghdr struct, Iov *Iovec
+pkg syscall (netbsd-arm), type Msghdr struct, Iovlen int32
+pkg syscall (netbsd-arm), type Msghdr struct, Name *uint8
+pkg syscall (netbsd-arm), type Msghdr struct, Namelen uint32
+pkg syscall (netbsd-arm), type RawSockaddr struct, Data [14]int8
+pkg syscall (netbsd-arm), type RawSockaddr struct, Family uint8
+pkg syscall (netbsd-arm), type RawSockaddr struct, Len uint8
+pkg syscall (netbsd-arm), type RawSockaddrAny struct, Pad [92]int8
+pkg syscall (netbsd-arm), type RawSockaddrDatalink struct
+pkg syscall (netbsd-arm), type RawSockaddrDatalink struct, Alen uint8
+pkg syscall (netbsd-arm), type RawSockaddrDatalink struct, Data [12]int8
+pkg syscall (netbsd-arm), type RawSockaddrDatalink struct, Family uint8
+pkg syscall (netbsd-arm), type RawSockaddrDatalink struct, Index uint16
+pkg syscall (netbsd-arm), type RawSockaddrDatalink struct, Len uint8
+pkg syscall (netbsd-arm), type RawSockaddrDatalink struct, Nlen uint8
+pkg syscall (netbsd-arm), type RawSockaddrDatalink struct, Slen uint8
+pkg syscall (netbsd-arm), type RawSockaddrDatalink struct, Type uint8
+pkg syscall (netbsd-arm), type RawSockaddrInet4 struct, Family uint8
+pkg syscall (netbsd-arm), type RawSockaddrInet4 struct, Len uint8
+pkg syscall (netbsd-arm), type RawSockaddrInet4 struct, Zero [8]int8
+pkg syscall (netbsd-arm), type RawSockaddrInet6 struct, Family uint8
+pkg syscall (netbsd-arm), type RawSockaddrInet6 struct, Len uint8
+pkg syscall (netbsd-arm), type RawSockaddrUnix struct
+pkg syscall (netbsd-arm), type RawSockaddrUnix struct, Family uint8
+pkg syscall (netbsd-arm), type RawSockaddrUnix struct, Len uint8
+pkg syscall (netbsd-arm), type RawSockaddrUnix struct, Path [104]int8
+pkg syscall (netbsd-arm), type Rlimit struct
+pkg syscall (netbsd-arm), type Rlimit struct, Cur uint64
+pkg syscall (netbsd-arm), type Rlimit struct, Max uint64
+pkg syscall (netbsd-arm), type RouteMessage struct
+pkg syscall (netbsd-arm), type RouteMessage struct, Data []uint8
+pkg syscall (netbsd-arm), type RouteMessage struct, Header RtMsghdr
+pkg syscall (netbsd-arm), type RoutingMessage interface, unexported methods
+pkg syscall (netbsd-arm), type RtMetrics struct
+pkg syscall (netbsd-arm), type RtMetrics struct, Expire int64
+pkg syscall (netbsd-arm), type RtMetrics struct, Hopcount uint64
+pkg syscall (netbsd-arm), type RtMetrics struct, Locks uint64
+pkg syscall (netbsd-arm), type RtMetrics struct, Mtu uint64
+pkg syscall (netbsd-arm), type RtMetrics struct, Pksent int64
+pkg syscall (netbsd-arm), type RtMetrics struct, Recvpipe uint64
+pkg syscall (netbsd-arm), type RtMetrics struct, Rtt uint64
+pkg syscall (netbsd-arm), type RtMetrics struct, Rttvar uint64
+pkg syscall (netbsd-arm), type RtMetrics struct, Sendpipe uint64
+pkg syscall (netbsd-arm), type RtMetrics struct, Ssthresh uint64
+pkg syscall (netbsd-arm), type RtMsghdr struct
+pkg syscall (netbsd-arm), type RtMsghdr struct, Addrs int32
+pkg syscall (netbsd-arm), type RtMsghdr struct, Errno int32
+pkg syscall (netbsd-arm), type RtMsghdr struct, Flags int32
+pkg syscall (netbsd-arm), type RtMsghdr struct, Index uint16
+pkg syscall (netbsd-arm), type RtMsghdr struct, Inits int32
+pkg syscall (netbsd-arm), type RtMsghdr struct, Msglen uint16
+pkg syscall (netbsd-arm), type RtMsghdr struct, Pad_cgo_0 [2]uint8
+pkg syscall (netbsd-arm), type RtMsghdr struct, Pad_cgo_1 [4]uint8
+pkg syscall (netbsd-arm), type RtMsghdr struct, Pid int32
+pkg syscall (netbsd-arm), type RtMsghdr struct, Rmx RtMetrics
+pkg syscall (netbsd-arm), type RtMsghdr struct, Seq int32
+pkg syscall (netbsd-arm), type RtMsghdr struct, Type uint8
+pkg syscall (netbsd-arm), type RtMsghdr struct, Use int32
+pkg syscall (netbsd-arm), type RtMsghdr struct, Version uint8
+pkg syscall (netbsd-arm), type Rusage struct, Idrss int32
+pkg syscall (netbsd-arm), type Rusage struct, Inblock int32
+pkg syscall (netbsd-arm), type Rusage struct, Isrss int32
+pkg syscall (netbsd-arm), type Rusage struct, Ixrss int32
+pkg syscall (netbsd-arm), type Rusage struct, Majflt int32
+pkg syscall (netbsd-arm), type Rusage struct, Maxrss int32
+pkg syscall (netbsd-arm), type Rusage struct, Minflt int32
+pkg syscall (netbsd-arm), type Rusage struct, Msgrcv int32
+pkg syscall (netbsd-arm), type Rusage struct, Msgsnd int32
+pkg syscall (netbsd-arm), type Rusage struct, Nivcsw int32
+pkg syscall (netbsd-arm), type Rusage struct, Nsignals int32
+pkg syscall (netbsd-arm), type Rusage struct, Nswap int32
+pkg syscall (netbsd-arm), type Rusage struct, Nvcsw int32
+pkg syscall (netbsd-arm), type Rusage struct, Oublock int32
+pkg syscall (netbsd-arm), type Rusage struct, Stime Timeval
+pkg syscall (netbsd-arm), type Rusage struct, Utime Timeval
+pkg syscall (netbsd-arm), type SockaddrDatalink struct
+pkg syscall (netbsd-arm), type SockaddrDatalink struct, Alen uint8
+pkg syscall (netbsd-arm), type SockaddrDatalink struct, Data [12]int8
+pkg syscall (netbsd-arm), type SockaddrDatalink struct, Family uint8
+pkg syscall (netbsd-arm), type SockaddrDatalink struct, Index uint16
+pkg syscall (netbsd-arm), type SockaddrDatalink struct, Len uint8
+pkg syscall (netbsd-arm), type SockaddrDatalink struct, Nlen uint8
+pkg syscall (netbsd-arm), type SockaddrDatalink struct, Slen uint8
+pkg syscall (netbsd-arm), type SockaddrDatalink struct, Type uint8
+pkg syscall (netbsd-arm), type SocketControlMessage struct
+pkg syscall (netbsd-arm), type SocketControlMessage struct, Data []uint8
+pkg syscall (netbsd-arm), type SocketControlMessage struct, Header Cmsghdr
+pkg syscall (netbsd-arm), type Stat_t struct
+pkg syscall (netbsd-arm), type Stat_t struct, Atimespec Timespec
+pkg syscall (netbsd-arm), type Stat_t struct, Birthtimespec Timespec
+pkg syscall (netbsd-arm), type Stat_t struct, Blksize uint32
+pkg syscall (netbsd-arm), type Stat_t struct, Blocks int64
+pkg syscall (netbsd-arm), type Stat_t struct, Ctimespec Timespec
+pkg syscall (netbsd-arm), type Stat_t struct, Dev uint64
+pkg syscall (netbsd-arm), type Stat_t struct, Flags uint32
+pkg syscall (netbsd-arm), type Stat_t struct, Gen uint32
+pkg syscall (netbsd-arm), type Stat_t struct, Gid uint32
+pkg syscall (netbsd-arm), type Stat_t struct, Ino uint64
+pkg syscall (netbsd-arm), type Stat_t struct, Mode uint32
+pkg syscall (netbsd-arm), type Stat_t struct, Mtimespec Timespec
+pkg syscall (netbsd-arm), type Stat_t struct, Nlink uint32
+pkg syscall (netbsd-arm), type Stat_t struct, Rdev uint64
+pkg syscall (netbsd-arm), type Stat_t struct, Size int64
+pkg syscall (netbsd-arm), type Stat_t struct, Spare [2]uint32
+pkg syscall (netbsd-arm), type Stat_t struct, Uid uint32
+pkg syscall (netbsd-arm), type Statfs_t [0]uint8
+pkg syscall (netbsd-arm), type SysProcAttr struct, Chroot string
+pkg syscall (netbsd-arm), type SysProcAttr struct, Credential *Credential
+pkg syscall (netbsd-arm), type SysProcAttr struct, Noctty bool
+pkg syscall (netbsd-arm), type SysProcAttr struct, Ptrace bool
+pkg syscall (netbsd-arm), type SysProcAttr struct, Setctty bool
+pkg syscall (netbsd-arm), type SysProcAttr struct, Setpgid bool
+pkg syscall (netbsd-arm), type SysProcAttr struct, Setsid bool
+pkg syscall (netbsd-arm), type Sysctlnode struct
+pkg syscall (netbsd-arm), type Sysctlnode struct, Flags uint32
+pkg syscall (netbsd-arm), type Sysctlnode struct, Name [32]int8
+pkg syscall (netbsd-arm), type Sysctlnode struct, Num int32
+pkg syscall (netbsd-arm), type Sysctlnode struct, Un [16]uint8
+pkg syscall (netbsd-arm), type Sysctlnode struct, Ver uint32
+pkg syscall (netbsd-arm), type Sysctlnode struct, X__rsvd uint32
+pkg syscall (netbsd-arm), type Sysctlnode struct, X_sysctl_desc [8]uint8
+pkg syscall (netbsd-arm), type Sysctlnode struct, X_sysctl_func [8]uint8
+pkg syscall (netbsd-arm), type Sysctlnode struct, X_sysctl_parent [8]uint8
+pkg syscall (netbsd-arm), type Sysctlnode struct, X_sysctl_size [8]uint8
+pkg syscall (netbsd-arm), type Timespec struct, Nsec int32
+pkg syscall (netbsd-arm), type Timespec struct, Sec int64
+pkg syscall (netbsd-arm), type Timeval struct, Sec int64
+pkg syscall (netbsd-arm), type Timeval struct, Usec int32
+pkg syscall (netbsd-arm), type WaitStatus uint32
+pkg syscall (netbsd-arm), var Stderr int
+pkg syscall (netbsd-arm), var Stdin int
+pkg syscall (netbsd-arm), var Stdout int
+pkg syscall (netbsd-arm-cgo), const AF_APPLETALK ideal-int
+pkg syscall (netbsd-arm-cgo), const AF_ARP ideal-int
+pkg syscall (netbsd-arm-cgo), const AF_BLUETOOTH ideal-int
+pkg syscall (netbsd-arm-cgo), const AF_CCITT ideal-int
+pkg syscall (netbsd-arm-cgo), const AF_CHAOS ideal-int
+pkg syscall (netbsd-arm-cgo), const AF_CNT ideal-int
+pkg syscall (netbsd-arm-cgo), const AF_COIP ideal-int
+pkg syscall (netbsd-arm-cgo), const AF_DATAKIT ideal-int
+pkg syscall (netbsd-arm-cgo), const AF_DECnet ideal-int
+pkg syscall (netbsd-arm-cgo), const AF_DLI ideal-int
+pkg syscall (netbsd-arm-cgo), const AF_E164 ideal-int
+pkg syscall (netbsd-arm-cgo), const AF_ECMA ideal-int
+pkg syscall (netbsd-arm-cgo), const AF_HYLINK ideal-int
+pkg syscall (netbsd-arm-cgo), const AF_IEEE80211 ideal-int
+pkg syscall (netbsd-arm-cgo), const AF_IMPLINK ideal-int
+pkg syscall (netbsd-arm-cgo), const AF_IPX ideal-int
+pkg syscall (netbsd-arm-cgo), const AF_ISDN ideal-int
+pkg syscall (netbsd-arm-cgo), const AF_ISO ideal-int
+pkg syscall (netbsd-arm-cgo), const AF_LAT ideal-int
+pkg syscall (netbsd-arm-cgo), const AF_LINK ideal-int
+pkg syscall (netbsd-arm-cgo), const AF_LOCAL ideal-int
+pkg syscall (netbsd-arm-cgo), const AF_MAX ideal-int
+pkg syscall (netbsd-arm-cgo), const AF_MPLS ideal-int
+pkg syscall (netbsd-arm-cgo), const AF_NATM ideal-int
+pkg syscall (netbsd-arm-cgo), const AF_NS ideal-int
+pkg syscall (netbsd-arm-cgo), const AF_OROUTE ideal-int
+pkg syscall (netbsd-arm-cgo), const AF_OSI ideal-int
+pkg syscall (netbsd-arm-cgo), const AF_PUP ideal-int
+pkg syscall (netbsd-arm-cgo), const AF_ROUTE ideal-int
+pkg syscall (netbsd-arm-cgo), const AF_SNA ideal-int
+pkg syscall (netbsd-arm-cgo), const ARPHRD_ARCNET ideal-int
+pkg syscall (netbsd-arm-cgo), const ARPHRD_ETHER ideal-int
+pkg syscall (netbsd-arm-cgo), const ARPHRD_FRELAY ideal-int
+pkg syscall (netbsd-arm-cgo), const ARPHRD_IEEE1394 ideal-int
+pkg syscall (netbsd-arm-cgo), const ARPHRD_IEEE802 ideal-int
+pkg syscall (netbsd-arm-cgo), const ARPHRD_STRIP ideal-int
+pkg syscall (netbsd-arm-cgo), const B0 ideal-int
+pkg syscall (netbsd-arm-cgo), const B110 ideal-int
+pkg syscall (netbsd-arm-cgo), const B115200 ideal-int
+pkg syscall (netbsd-arm-cgo), const B1200 ideal-int
+pkg syscall (netbsd-arm-cgo), const B134 ideal-int
+pkg syscall (netbsd-arm-cgo), const B14400 ideal-int
+pkg syscall (netbsd-arm-cgo), const B150 ideal-int
+pkg syscall (netbsd-arm-cgo), const B1800 ideal-int
+pkg syscall (netbsd-arm-cgo), const B19200 ideal-int
+pkg syscall (netbsd-arm-cgo), const B200 ideal-int
+pkg syscall (netbsd-arm-cgo), const B230400 ideal-int
+pkg syscall (netbsd-arm-cgo), const B2400 ideal-int
+pkg syscall (netbsd-arm-cgo), const B28800 ideal-int
+pkg syscall (netbsd-arm-cgo), const B300 ideal-int
+pkg syscall (netbsd-arm-cgo), const B38400 ideal-int
+pkg syscall (netbsd-arm-cgo), const B460800 ideal-int
+pkg syscall (netbsd-arm-cgo), const B4800 ideal-int
+pkg syscall (netbsd-arm-cgo), const B50 ideal-int
+pkg syscall (netbsd-arm-cgo), const B57600 ideal-int
+pkg syscall (netbsd-arm-cgo), const B600 ideal-int
+pkg syscall (netbsd-arm-cgo), const B7200 ideal-int
+pkg syscall (netbsd-arm-cgo), const B75 ideal-int
+pkg syscall (netbsd-arm-cgo), const B76800 ideal-int
+pkg syscall (netbsd-arm-cgo), const B921600 ideal-int
+pkg syscall (netbsd-arm-cgo), const B9600 ideal-int
+pkg syscall (netbsd-arm-cgo), const BIOCFEEDBACK ideal-int
+pkg syscall (netbsd-arm-cgo), const BIOCFLUSH ideal-int
+pkg syscall (netbsd-arm-cgo), const BIOCGBLEN ideal-int
+pkg syscall (netbsd-arm-cgo), const BIOCGDLT ideal-int
+pkg syscall (netbsd-arm-cgo), const BIOCGDLTLIST ideal-int
+pkg syscall (netbsd-arm-cgo), const BIOCGETIF ideal-int
+pkg syscall (netbsd-arm-cgo), const BIOCGFEEDBACK ideal-int
+pkg syscall (netbsd-arm-cgo), const BIOCGHDRCMPLT ideal-int
+pkg syscall (netbsd-arm-cgo), const BIOCGRTIMEOUT ideal-int
+pkg syscall (netbsd-arm-cgo), const BIOCGSEESENT ideal-int
+pkg syscall (netbsd-arm-cgo), const BIOCGSTATS ideal-int
+pkg syscall (netbsd-arm-cgo), const BIOCGSTATSOLD ideal-int
+pkg syscall (netbsd-arm-cgo), const BIOCIMMEDIATE ideal-int
+pkg syscall (netbsd-arm-cgo), const BIOCPROMISC ideal-int
+pkg syscall (netbsd-arm-cgo), const BIOCSBLEN ideal-int
+pkg syscall (netbsd-arm-cgo), const BIOCSDLT ideal-int
+pkg syscall (netbsd-arm-cgo), const BIOCSETF ideal-int
+pkg syscall (netbsd-arm-cgo), const BIOCSETIF ideal-int
+pkg syscall (netbsd-arm-cgo), const BIOCSFEEDBACK ideal-int
+pkg syscall (netbsd-arm-cgo), const BIOCSHDRCMPLT ideal-int
+pkg syscall (netbsd-arm-cgo), const BIOCSRTIMEOUT ideal-int
+pkg syscall (netbsd-arm-cgo), const BIOCSSEESENT ideal-int
+pkg syscall (netbsd-arm-cgo), const BIOCSTCPF ideal-int
+pkg syscall (netbsd-arm-cgo), const BIOCSUDPF ideal-int
+pkg syscall (netbsd-arm-cgo), const BIOCVERSION ideal-int
+pkg syscall (netbsd-arm-cgo), const BPF_A ideal-int
+pkg syscall (netbsd-arm-cgo), const BPF_ABS ideal-int
+pkg syscall (netbsd-arm-cgo), const BPF_ADD ideal-int
+pkg syscall (netbsd-arm-cgo), const BPF_ALIGNMENT ideal-int
+pkg syscall (netbsd-arm-cgo), const BPF_ALIGNMENT32 ideal-int
+pkg syscall (netbsd-arm-cgo), const BPF_ALU ideal-int
+pkg syscall (netbsd-arm-cgo), const BPF_AND ideal-int
+pkg syscall (netbsd-arm-cgo), const BPF_B ideal-int
+pkg syscall (netbsd-arm-cgo), const BPF_DFLTBUFSIZE ideal-int
+pkg syscall (netbsd-arm-cgo), const BPF_DIV ideal-int
+pkg syscall (netbsd-arm-cgo), const BPF_H ideal-int
+pkg syscall (netbsd-arm-cgo), const BPF_IMM ideal-int
+pkg syscall (netbsd-arm-cgo), const BPF_IND ideal-int
+pkg syscall (netbsd-arm-cgo), const BPF_JA ideal-int
+pkg syscall (netbsd-arm-cgo), const BPF_JEQ ideal-int
+pkg syscall (netbsd-arm-cgo), const BPF_JGE ideal-int
+pkg syscall (netbsd-arm-cgo), const BPF_JGT ideal-int
+pkg syscall (netbsd-arm-cgo), const BPF_JMP ideal-int
+pkg syscall (netbsd-arm-cgo), const BPF_JSET ideal-int
+pkg syscall (netbsd-arm-cgo), const BPF_K ideal-int
+pkg syscall (netbsd-arm-cgo), const BPF_LD ideal-int
+pkg syscall (netbsd-arm-cgo), const BPF_LDX ideal-int
+pkg syscall (netbsd-arm-cgo), const BPF_LEN ideal-int
+pkg syscall (netbsd-arm-cgo), const BPF_LSH ideal-int
+pkg syscall (netbsd-arm-cgo), const BPF_MAJOR_VERSION ideal-int
+pkg syscall (netbsd-arm-cgo), const BPF_MAXBUFSIZE ideal-int
+pkg syscall (netbsd-arm-cgo), const BPF_MAXINSNS ideal-int
+pkg syscall (netbsd-arm-cgo), const BPF_MEM ideal-int
+pkg syscall (netbsd-arm-cgo), const BPF_MEMWORDS ideal-int
+pkg syscall (netbsd-arm-cgo), const BPF_MINBUFSIZE ideal-int
+pkg syscall (netbsd-arm-cgo), const BPF_MINOR_VERSION ideal-int
+pkg syscall (netbsd-arm-cgo), const BPF_MISC ideal-int
+pkg syscall (netbsd-arm-cgo), const BPF_MSH ideal-int
+pkg syscall (netbsd-arm-cgo), const BPF_MUL ideal-int
+pkg syscall (netbsd-arm-cgo), const BPF_NEG ideal-int
+pkg syscall (netbsd-arm-cgo), const BPF_OR ideal-int
+pkg syscall (netbsd-arm-cgo), const BPF_RELEASE ideal-int
+pkg syscall (netbsd-arm-cgo), const BPF_RET ideal-int
+pkg syscall (netbsd-arm-cgo), const BPF_RSH ideal-int
+pkg syscall (netbsd-arm-cgo), const BPF_ST ideal-int
+pkg syscall (netbsd-arm-cgo), const BPF_STX ideal-int
+pkg syscall (netbsd-arm-cgo), const BPF_SUB ideal-int
+pkg syscall (netbsd-arm-cgo), const BPF_TAX ideal-int
+pkg syscall (netbsd-arm-cgo), const BPF_TXA ideal-int
+pkg syscall (netbsd-arm-cgo), const BPF_W ideal-int
+pkg syscall (netbsd-arm-cgo), const BPF_X ideal-int
+pkg syscall (netbsd-arm-cgo), const BRKINT ideal-int
+pkg syscall (netbsd-arm-cgo), const CFLUSH ideal-int
+pkg syscall (netbsd-arm-cgo), const CLOCAL ideal-int
+pkg syscall (netbsd-arm-cgo), const CREAD ideal-int
+pkg syscall (netbsd-arm-cgo), const CS5 ideal-int
+pkg syscall (netbsd-arm-cgo), const CS6 ideal-int
+pkg syscall (netbsd-arm-cgo), const CS7 ideal-int
+pkg syscall (netbsd-arm-cgo), const CS8 ideal-int
+pkg syscall (netbsd-arm-cgo), const CSIZE ideal-int
+pkg syscall (netbsd-arm-cgo), const CSTART ideal-int
+pkg syscall (netbsd-arm-cgo), const CSTATUS ideal-int
+pkg syscall (netbsd-arm-cgo), const CSTOP ideal-int
+pkg syscall (netbsd-arm-cgo), const CSTOPB ideal-int
+pkg syscall (netbsd-arm-cgo), const CSUSP ideal-int
+pkg syscall (netbsd-arm-cgo), const CTL_MAXNAME ideal-int
+pkg syscall (netbsd-arm-cgo), const CTL_NET ideal-int
+pkg syscall (netbsd-arm-cgo), const CTL_QUERY ideal-int
+pkg syscall (netbsd-arm-cgo), const DIOCBSFLUSH ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_A429 ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_A653_ICM ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_AIRONET_HEADER ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_AOS ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_ARCNET ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_ARCNET_LINUX ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_ATM_CLIP ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_ATM_RFC1483 ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_AURORA ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_AX25 ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_AX25_KISS ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_BACNET_MS_TP ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_BLUETOOTH_HCI_H4 ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_CAN20B ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_CAN_SOCKETCAN ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_CHAOS ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_CISCO_IOS ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_C_HDLC ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_C_HDLC_WITH_DIR ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_DECT ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_DOCSIS ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_ECONET ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_EN10MB ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_EN3MB ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_ENC ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_ERF ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_ERF_ETH ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_ERF_POS ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_FC_2 ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_FC_2_WITH_FRAME_DELIMS ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_FDDI ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_FLEXRAY ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_FRELAY ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_FRELAY_WITH_DIR ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_GCOM_SERIAL ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_GCOM_T1E1 ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_GPF_F ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_GPF_T ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_GPRS_LLC ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_GSMTAP_ABIS ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_GSMTAP_UM ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_HDLC ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_HHDLC ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_HIPPI ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_IBM_SN ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_IBM_SP ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_IEEE802 ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_IEEE802_11 ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_IEEE802_11_RADIO ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_IEEE802_11_RADIO_AVS ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_IEEE802_15_4 ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_IEEE802_15_4_LINUX ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_IEEE802_15_4_NONASK_PHY ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_IEEE802_16_MAC_CPS ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_IEEE802_16_MAC_CPS_RADIO ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_IPMB ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_IPMB_LINUX ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_IPNET ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_IPV4 ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_IPV6 ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_IP_OVER_FC ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_ATM1 ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_ATM2 ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_CHDLC ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_ES ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_ETHER ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_FRELAY ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_GGSN ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_ISM ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_MFR ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_MLFR ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_MLPPP ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_MONITOR ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_PIC_PEER ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_PPP ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_PPPOE ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_PPPOE_ATM ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_SERVICES ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_ST ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_VP ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_LAPB_WITH_DIR ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_LAPD ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_LIN ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_LINUX_EVDEV ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_LINUX_IRDA ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_LINUX_LAPD ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_LINUX_SLL ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_LOOP ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_LTALK ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_MFR ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_MOST ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_MPLS ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_MTP2 ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_MTP2_WITH_PHDR ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_MTP3 ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_NULL ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_PCI_EXP ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_PFLOG ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_PFSYNC ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_PPI ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_PPP ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_PPP_BSDOS ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_PPP_ETHER ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_PPP_PPPD ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_PPP_SERIAL ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_PPP_WITH_DIR ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_PRISM_HEADER ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_PRONET ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_RAIF1 ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_RAW ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_RAWAF_MASK ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_RIO ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_SCCP ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_SITA ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_SLIP ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_SLIP_BSDOS ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_SUNATM ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_SYMANTEC_FIREWALL ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_TZSP ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_USB ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_USB_LINUX ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_USB_LINUX_MMAPPED ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_WIHART ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_X2E_SERIAL ideal-int
+pkg syscall (netbsd-arm-cgo), const DLT_X2E_XORAYA ideal-int
+pkg syscall (netbsd-arm-cgo), const DT_BLK ideal-int
+pkg syscall (netbsd-arm-cgo), const DT_CHR ideal-int
+pkg syscall (netbsd-arm-cgo), const DT_DIR ideal-int
+pkg syscall (netbsd-arm-cgo), const DT_FIFO ideal-int
+pkg syscall (netbsd-arm-cgo), const DT_LNK ideal-int
+pkg syscall (netbsd-arm-cgo), const DT_REG ideal-int
+pkg syscall (netbsd-arm-cgo), const DT_SOCK ideal-int
+pkg syscall (netbsd-arm-cgo), const DT_UNKNOWN ideal-int
+pkg syscall (netbsd-arm-cgo), const DT_WHT ideal-int
+pkg syscall (netbsd-arm-cgo), const EAUTH Errno
+pkg syscall (netbsd-arm-cgo), const EBADMSG Errno
+pkg syscall (netbsd-arm-cgo), const EBADRPC Errno
+pkg syscall (netbsd-arm-cgo), const ECHO ideal-int
+pkg syscall (netbsd-arm-cgo), const ECHOCTL ideal-int
+pkg syscall (netbsd-arm-cgo), const ECHOE ideal-int
+pkg syscall (netbsd-arm-cgo), const ECHOK ideal-int
+pkg syscall (netbsd-arm-cgo), const ECHOKE ideal-int
+pkg syscall (netbsd-arm-cgo), const ECHONL ideal-int
+pkg syscall (netbsd-arm-cgo), const ECHOPRT ideal-int
+pkg syscall (netbsd-arm-cgo), const EFTYPE Errno
+pkg syscall (netbsd-arm-cgo), const ELAST Errno
+pkg syscall (netbsd-arm-cgo), const EMULTIHOP Errno
+pkg syscall (netbsd-arm-cgo), const EMUL_LINUX ideal-int
+pkg syscall (netbsd-arm-cgo), const EMUL_LINUX32 ideal-int
+pkg syscall (netbsd-arm-cgo), const EMUL_MAXID ideal-int
+pkg syscall (netbsd-arm-cgo), const ENEEDAUTH Errno
+pkg syscall (netbsd-arm-cgo), const ENOATTR Errno
+pkg syscall (netbsd-arm-cgo), const ENODATA Errno
+pkg syscall (netbsd-arm-cgo), const ENOLINK Errno
+pkg syscall (netbsd-arm-cgo), const ENOSR Errno
+pkg syscall (netbsd-arm-cgo), const ENOSTR Errno
+pkg syscall (netbsd-arm-cgo), const EPROCLIM Errno
+pkg syscall (netbsd-arm-cgo), const EPROCUNAVAIL Errno
+pkg syscall (netbsd-arm-cgo), const EPROGMISMATCH Errno
+pkg syscall (netbsd-arm-cgo), const EPROGUNAVAIL Errno
+pkg syscall (netbsd-arm-cgo), const EPROTO Errno
+pkg syscall (netbsd-arm-cgo), const ERPCMISMATCH Errno
+pkg syscall (netbsd-arm-cgo), const ETHERCAP_JUMBO_MTU ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERCAP_VLAN_HWTAGGING ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERCAP_VLAN_MTU ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERMIN ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERMTU ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERMTU_JUMBO ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_8023 ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_AARP ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_ACCTON ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_AEONIC ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_ALPHA ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_AMBER ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_AMOEBA ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_APOLLO ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_APOLLODOMAIN ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_APPLETALK ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_APPLITEK ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_ARGONAUT ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_ARP ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_AT ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_ATALK ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_ATOMIC ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_ATT ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_ATTSTANFORD ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_AUTOPHON ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_AXIS ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_BCLOOP ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_BOFL ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_CABLETRON ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_CHAOS ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_COMDESIGN ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_COMPUGRAPHIC ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_COUNTERPOINT ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_CRONUS ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_CRONUSVLN ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DCA ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DDE ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DEBNI ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DECAM ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DECCUST ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DECDIAG ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DECDNS ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DECDTS ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DECEXPER ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DECLAST ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DECLTM ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DECMUMPS ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DECNETBIOS ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DELTACON ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DIDDLE ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DLOG1 ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DLOG2 ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DN ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DOGFIGHT ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DSMD ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_ECMA ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_ENCRYPT ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_ES ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_EXCELAN ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_EXPERDATA ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_FLIP ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_FLOWCONTROL ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_FRARP ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_GENDYN ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_HAYES ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_HIPPI_FP ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_HITACHI ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_HP ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_IEEEPUP ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_IEEEPUPAT ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_IMLBL ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_IMLBLDIAG ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_IP ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_IPAS ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_IPV6 ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_IPX ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_IPXNEW ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_KALPANA ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_LANBRIDGE ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_LANPROBE ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_LAT ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_LBACK ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_LITTLE ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_LOGICRAFT ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_LOOPBACK ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_MATRA ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_MAX ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_MERIT ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_MICP ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_MOPDL ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_MOPRC ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_MOTOROLA ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_MPLS ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_MPLS_MCAST ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_MUMPS ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPCC ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPCLAIM ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPCLREQ ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPCLRSP ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPCREQ ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPCRSP ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPDG ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPDGB ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPDLTE ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPRAR ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPRAS ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPRST ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPSCD ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPVCD ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBS ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NCD ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NESTAR ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NETBEUI ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NOVELL ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NS ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NSAT ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NSCOMPAT ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NTRAILER ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_OS9 ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_OS9NET ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_PACER ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_PAE ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_PCS ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_PLANNING ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_PPP ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_PPPOE ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_PPPOEDISC ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_PRIMENTS ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_PUP ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_PUPAT ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_RACAL ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_RATIONAL ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_RAWFR ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_RCL ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_RDP ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_RETIX ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_REVARP ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SCA ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SECTRA ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SECUREDATA ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SGITW ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SG_BOUNCE ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SG_DIAG ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SG_NETGAMES ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SG_RESV ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SIMNET ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SLOWPROTOCOLS ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SNA ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SNMP ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SONIX ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SPIDER ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SPRITE ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_STP ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_TALARIS ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_TALARISMC ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_TCPCOMP ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_TCPSM ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_TEC ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_TIGAN ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_TRAIL ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_TRANSETHER ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_TYMSHARE ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_UBBST ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_UBDEBUG ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_UBDIAGLOOP ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_UBDL ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_UBNIU ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_UBNMC ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VALID ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VARIAN ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VAXELN ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VEECO ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VEXP ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VGLAB ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VINES ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VINESECHO ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VINESLOOP ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VITAL ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VLAN ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VLTLMAN ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VPROD ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VURESERVED ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_WATERLOO ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_WELLFLEET ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_X25 ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_X75 ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_XNSSM ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHERTYPE_XTP ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHER_ADDR_LEN ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHER_CRC_LEN ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHER_CRC_POLY_BE ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHER_CRC_POLY_LE ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHER_HDR_LEN ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHER_MAX_LEN ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHER_MAX_LEN_JUMBO ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHER_MIN_LEN ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHER_PPPOE_ENCAP_LEN ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHER_TYPE_LEN ideal-int
+pkg syscall (netbsd-arm-cgo), const ETHER_VLAN_ENCAP_LEN ideal-int
+pkg syscall (netbsd-arm-cgo), const ETIME Errno
+pkg syscall (netbsd-arm-cgo), const EVFILT_AIO ideal-int
+pkg syscall (netbsd-arm-cgo), const EVFILT_PROC ideal-int
+pkg syscall (netbsd-arm-cgo), const EVFILT_READ ideal-int
+pkg syscall (netbsd-arm-cgo), const EVFILT_SIGNAL ideal-int
+pkg syscall (netbsd-arm-cgo), const EVFILT_SYSCOUNT ideal-int
+pkg syscall (netbsd-arm-cgo), const EVFILT_TIMER ideal-int
+pkg syscall (netbsd-arm-cgo), const EVFILT_VNODE ideal-int
+pkg syscall (netbsd-arm-cgo), const EVFILT_WRITE ideal-int
+pkg syscall (netbsd-arm-cgo), const EV_ADD ideal-int
+pkg syscall (netbsd-arm-cgo), const EV_CLEAR ideal-int
+pkg syscall (netbsd-arm-cgo), const EV_DELETE ideal-int
+pkg syscall (netbsd-arm-cgo), const EV_DISABLE ideal-int
+pkg syscall (netbsd-arm-cgo), const EV_ENABLE ideal-int
+pkg syscall (netbsd-arm-cgo), const EV_EOF ideal-int
+pkg syscall (netbsd-arm-cgo), const EV_ERROR ideal-int
+pkg syscall (netbsd-arm-cgo), const EV_FLAG1 ideal-int
+pkg syscall (netbsd-arm-cgo), const EV_ONESHOT ideal-int
+pkg syscall (netbsd-arm-cgo), const EV_SYSFLAGS ideal-int
+pkg syscall (netbsd-arm-cgo), const EXTA ideal-int
+pkg syscall (netbsd-arm-cgo), const EXTB ideal-int
+pkg syscall (netbsd-arm-cgo), const EXTPROC ideal-int
+pkg syscall (netbsd-arm-cgo), const FD_CLOEXEC ideal-int
+pkg syscall (netbsd-arm-cgo), const FD_SETSIZE ideal-int
+pkg syscall (netbsd-arm-cgo), const FLUSHO ideal-int
+pkg syscall (netbsd-arm-cgo), const F_CLOSEM ideal-int
+pkg syscall (netbsd-arm-cgo), const F_DUPFD ideal-int
+pkg syscall (netbsd-arm-cgo), const F_DUPFD_CLOEXEC ideal-int
+pkg syscall (netbsd-arm-cgo), const F_FSCTL ideal-int
+pkg syscall (netbsd-arm-cgo), const F_FSDIRMASK ideal-int
+pkg syscall (netbsd-arm-cgo), const F_FSIN ideal-int
+pkg syscall (netbsd-arm-cgo), const F_FSINOUT ideal-int
+pkg syscall (netbsd-arm-cgo), const F_FSOUT ideal-int
+pkg syscall (netbsd-arm-cgo), const F_FSPRIV ideal-int
+pkg syscall (netbsd-arm-cgo), const F_FSVOID ideal-int
+pkg syscall (netbsd-arm-cgo), const F_GETFD ideal-int
+pkg syscall (netbsd-arm-cgo), const F_GETFL ideal-int
+pkg syscall (netbsd-arm-cgo), const F_GETLK ideal-int
+pkg syscall (netbsd-arm-cgo), const F_GETNOSIGPIPE ideal-int
+pkg syscall (netbsd-arm-cgo), const F_GETOWN ideal-int
+pkg syscall (netbsd-arm-cgo), const F_MAXFD ideal-int
+pkg syscall (netbsd-arm-cgo), const F_OK ideal-int
+pkg syscall (netbsd-arm-cgo), const F_PARAM_MASK ideal-int
+pkg syscall (netbsd-arm-cgo), const F_PARAM_MAX ideal-int
+pkg syscall (netbsd-arm-cgo), const F_RDLCK ideal-int
+pkg syscall (netbsd-arm-cgo), const F_SETFD ideal-int
+pkg syscall (netbsd-arm-cgo), const F_SETFL ideal-int
+pkg syscall (netbsd-arm-cgo), const F_SETLK ideal-int
+pkg syscall (netbsd-arm-cgo), const F_SETLKW ideal-int
+pkg syscall (netbsd-arm-cgo), const F_SETNOSIGPIPE ideal-int
+pkg syscall (netbsd-arm-cgo), const F_SETOWN ideal-int
+pkg syscall (netbsd-arm-cgo), const F_UNLCK ideal-int
+pkg syscall (netbsd-arm-cgo), const F_WRLCK ideal-int
+pkg syscall (netbsd-arm-cgo), const HUPCL ideal-int
+pkg syscall (netbsd-arm-cgo), const ICANON ideal-int
+pkg syscall (netbsd-arm-cgo), const ICMP6_FILTER = 18
+pkg syscall (netbsd-arm-cgo), const ICMP6_FILTER ideal-int
+pkg syscall (netbsd-arm-cgo), const ICRNL ideal-int
+pkg syscall (netbsd-arm-cgo), const IEXTEN ideal-int
+pkg syscall (netbsd-arm-cgo), const IFAN_ARRIVAL ideal-int
+pkg syscall (netbsd-arm-cgo), const IFAN_DEPARTURE ideal-int
+pkg syscall (netbsd-arm-cgo), const IFA_ROUTE ideal-int
+pkg syscall (netbsd-arm-cgo), const IFF_ALLMULTI ideal-int
+pkg syscall (netbsd-arm-cgo), const IFF_CANTCHANGE ideal-int
+pkg syscall (netbsd-arm-cgo), const IFF_DEBUG ideal-int
+pkg syscall (netbsd-arm-cgo), const IFF_LINK0 ideal-int
+pkg syscall (netbsd-arm-cgo), const IFF_LINK1 ideal-int
+pkg syscall (netbsd-arm-cgo), const IFF_LINK2 ideal-int
+pkg syscall (netbsd-arm-cgo), const IFF_NOARP ideal-int
+pkg syscall (netbsd-arm-cgo), const IFF_NOTRAILERS ideal-int
+pkg syscall (netbsd-arm-cgo), const IFF_OACTIVE ideal-int
+pkg syscall (netbsd-arm-cgo), const IFF_POINTOPOINT ideal-int
+pkg syscall (netbsd-arm-cgo), const IFF_PROMISC ideal-int
+pkg syscall (netbsd-arm-cgo), const IFF_RUNNING ideal-int
+pkg syscall (netbsd-arm-cgo), const IFF_SIMPLEX ideal-int
+pkg syscall (netbsd-arm-cgo), const IFNAMSIZ ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_1822 ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_A12MPPSWITCH ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_AAL2 ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_AAL5 ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_ADSL ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_AFLANE8023 ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_AFLANE8025 ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_ARAP ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_ARCNET ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_ARCNETPLUS ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_ASYNC ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_ATM ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_ATMDXI ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_ATMFUNI ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_ATMIMA ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_ATMLOGICAL ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_ATMRADIO ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_ATMSUBINTERFACE ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_ATMVCIENDPT ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_ATMVIRTUAL ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_BGPPOLICYACCOUNTING ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_BRIDGE ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_BSC ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_CARP ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_CCTEMUL ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_CEPT ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_CES ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_CHANNEL ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_CNR ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_COFFEE ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_COMPOSITELINK ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_DCN ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_DIGITALPOWERLINE ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_DLSW ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_DOCSCABLEDOWNSTREAM ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_DOCSCABLEMACLAYER ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_DOCSCABLEUPSTREAM ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_DOCSCABLEUPSTREAMCHANNEL ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_DS0 ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_DS0BUNDLE ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_DS1FDL ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_DS3 ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_DTM ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_DVBASILN ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_DVBASIOUT ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_DVBRCCDOWNSTREAM ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_DVBRCCMACLAYER ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_DVBRCCUPSTREAM ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_ECONET ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_EON ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_EPLRS ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_ESCON ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_ETHER ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_FAITH ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_FAST ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_FASTETHER ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_FASTETHERFX ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_FDDI ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_FIBRECHANNEL ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_FRAMERELAYINTERCONNECT ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_FRAMERELAYMPI ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_FRDLCIENDPT ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_FRELAY ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_FRELAYDCE ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_FRF16MFRBUNDLE ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_FRFORWARD ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_G703AT2MB ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_G703AT64K ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_GIF ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_GIGABITETHERNET ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_GR303IDT ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_GR303RDT ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_H323GATEKEEPER ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_H323PROXY ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_HDH1822 ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_HDLC ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_HDSL2 ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_HIPERLAN2 ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_HIPPI ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_HIPPIINTERFACE ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_HOSTPAD ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_HSSI ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_HY ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_IBM370PARCHAN ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_IDSL ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_IEEE1394 ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_IEEE80211 ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_IEEE80212 ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_IEEE8023ADLAG ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_IFGSN ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_IMT ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_INFINIBAND ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_INTERLEAVE ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_IP ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_IPFORWARD ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_IPOVERATM ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_IPOVERCDLC ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_IPOVERCLAW ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_IPSWITCH ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_ISDN ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_ISDNBASIC ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_ISDNPRIMARY ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_ISDNS ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_ISDNU ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_ISO88022LLC ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_ISO88023 ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_ISO88024 ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_ISO88025 ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_ISO88025CRFPINT ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_ISO88025DTR ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_ISO88025FIBER ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_ISO88026 ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_ISUP ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_L2VLAN ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_L3IPVLAN ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_L3IPXVLAN ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_LAPB ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_LAPD ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_LAPF ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_LINEGROUP ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_LOCALTALK ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_LOOP ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_MEDIAMAILOVERIP ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_MFSIGLINK ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_MIOX25 ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_MODEM ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_MPC ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_MPLS ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_MPLSTUNNEL ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_MSDSL ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_MVL ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_MYRINET ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_NFAS ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_NSIP ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_OPTICALCHANNEL ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_OPTICALTRANSPORT ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_OTHER ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_P10 ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_P80 ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_PARA ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_PFLOG ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_PFSYNC ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_PLC ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_PON155 ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_PON622 ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_POS ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_PPP ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_PPPMULTILINKBUNDLE ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_PROPATM ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_PROPBWAP2MP ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_PROPCNLS ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_PROPMUX ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_PROPVIRTUAL ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_PROPWIRELESSP2P ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_PTPSERIAL ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_PVC ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_Q2931 ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_QLLC ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_RADIOMAC ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_RADSL ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_REACHDSL ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_RFC1483 ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_RS232 ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_RSRB ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_SDLC ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_SDSL ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_SHDSL ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_SIP ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_SIPSIG ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_SIPTG ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_SLIP ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_SMDSDXI ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_SMDSICIP ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_SONET ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_SONETOVERHEADCHANNEL ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_SONETPATH ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_SONETVT ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_SRP ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_SS7SIGLINK ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_STACKTOSTACK ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_STARLAN ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_STF ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_T1 ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_TDLC ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_TELINK ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_TERMPAD ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_TR008 ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_TRANSPHDLC ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_TUNNEL ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_ULTRA ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_USB ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_V11 ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_V35 ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_V36 ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_V37 ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_VDSL ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_VIRTUALIPADDRESS ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_VIRTUALTG ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_VOICEDID ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_VOICEEM ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_VOICEEMFGD ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_VOICEENCAP ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_VOICEFGDEANA ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_VOICEFXO ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_VOICEFXS ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_VOICEOVERATM ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_VOICEOVERCABLE ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_VOICEOVERFRAMERELAY ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_VOICEOVERIP ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_X213 ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_X25 ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_X25DDN ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_X25HUNTGROUP ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_X25MLP ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_X25PLE ideal-int
+pkg syscall (netbsd-arm-cgo), const IFT_XETHER ideal-int
+pkg syscall (netbsd-arm-cgo), const IGNBRK ideal-int
+pkg syscall (netbsd-arm-cgo), const IGNCR ideal-int
+pkg syscall (netbsd-arm-cgo), const IGNPAR ideal-int
+pkg syscall (netbsd-arm-cgo), const IMAXBEL ideal-int
+pkg syscall (netbsd-arm-cgo), const INLCR ideal-int
+pkg syscall (netbsd-arm-cgo), const INPCK ideal-int
+pkg syscall (netbsd-arm-cgo), const IN_CLASSA_HOST ideal-int
+pkg syscall (netbsd-arm-cgo), const IN_CLASSA_MAX ideal-int
+pkg syscall (netbsd-arm-cgo), const IN_CLASSA_NET ideal-int
+pkg syscall (netbsd-arm-cgo), const IN_CLASSA_NSHIFT ideal-int
+pkg syscall (netbsd-arm-cgo), const IN_CLASSB_HOST ideal-int
+pkg syscall (netbsd-arm-cgo), const IN_CLASSB_MAX ideal-int
+pkg syscall (netbsd-arm-cgo), const IN_CLASSB_NET ideal-int
+pkg syscall (netbsd-arm-cgo), const IN_CLASSB_NSHIFT ideal-int
+pkg syscall (netbsd-arm-cgo), const IN_CLASSC_HOST ideal-int
+pkg syscall (netbsd-arm-cgo), const IN_CLASSC_NET ideal-int
+pkg syscall (netbsd-arm-cgo), const IN_CLASSC_NSHIFT ideal-int
+pkg syscall (netbsd-arm-cgo), const IN_CLASSD_HOST ideal-int
+pkg syscall (netbsd-arm-cgo), const IN_CLASSD_NET ideal-int
+pkg syscall (netbsd-arm-cgo), const IN_CLASSD_NSHIFT ideal-int
+pkg syscall (netbsd-arm-cgo), const IN_LOOPBACKNET ideal-int
+pkg syscall (netbsd-arm-cgo), const IPPROTO_AH ideal-int
+pkg syscall (netbsd-arm-cgo), const IPPROTO_CARP ideal-int
+pkg syscall (netbsd-arm-cgo), const IPPROTO_DONE ideal-int
+pkg syscall (netbsd-arm-cgo), const IPPROTO_DSTOPTS ideal-int
+pkg syscall (netbsd-arm-cgo), const IPPROTO_EGP ideal-int
+pkg syscall (netbsd-arm-cgo), const IPPROTO_ENCAP ideal-int
+pkg syscall (netbsd-arm-cgo), const IPPROTO_EON ideal-int
+pkg syscall (netbsd-arm-cgo), const IPPROTO_ESP ideal-int
+pkg syscall (netbsd-arm-cgo), const IPPROTO_ETHERIP ideal-int
+pkg syscall (netbsd-arm-cgo), const IPPROTO_FRAGMENT ideal-int
+pkg syscall (netbsd-arm-cgo), const IPPROTO_GGP ideal-int
+pkg syscall (netbsd-arm-cgo), const IPPROTO_GRE ideal-int
+pkg syscall (netbsd-arm-cgo), const IPPROTO_HOPOPTS ideal-int
+pkg syscall (netbsd-arm-cgo), const IPPROTO_ICMP ideal-int
+pkg syscall (netbsd-arm-cgo), const IPPROTO_ICMPV6 ideal-int
+pkg syscall (netbsd-arm-cgo), const IPPROTO_IDP ideal-int
+pkg syscall (netbsd-arm-cgo), const IPPROTO_IGMP ideal-int
+pkg syscall (netbsd-arm-cgo), const IPPROTO_IPCOMP ideal-int
+pkg syscall (netbsd-arm-cgo), const IPPROTO_IPIP ideal-int
+pkg syscall (netbsd-arm-cgo), const IPPROTO_IPV4 ideal-int
+pkg syscall (netbsd-arm-cgo), const IPPROTO_IPV6_ICMP ideal-int
+pkg syscall (netbsd-arm-cgo), const IPPROTO_MAX ideal-int
+pkg syscall (netbsd-arm-cgo), const IPPROTO_MAXID ideal-int
+pkg syscall (netbsd-arm-cgo), const IPPROTO_MOBILE ideal-int
+pkg syscall (netbsd-arm-cgo), const IPPROTO_NONE ideal-int
+pkg syscall (netbsd-arm-cgo), const IPPROTO_PFSYNC ideal-int
+pkg syscall (netbsd-arm-cgo), const IPPROTO_PIM ideal-int
+pkg syscall (netbsd-arm-cgo), const IPPROTO_PUP ideal-int
+pkg syscall (netbsd-arm-cgo), const IPPROTO_RAW ideal-int
+pkg syscall (netbsd-arm-cgo), const IPPROTO_ROUTING ideal-int
+pkg syscall (netbsd-arm-cgo), const IPPROTO_RSVP ideal-int
+pkg syscall (netbsd-arm-cgo), const IPPROTO_TP ideal-int
+pkg syscall (netbsd-arm-cgo), const IPPROTO_VRRP ideal-int
+pkg syscall (netbsd-arm-cgo), const IPV6_CHECKSUM ideal-int
+pkg syscall (netbsd-arm-cgo), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int
+pkg syscall (netbsd-arm-cgo), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int
+pkg syscall (netbsd-arm-cgo), const IPV6_DEFHLIM ideal-int
+pkg syscall (netbsd-arm-cgo), const IPV6_DONTFRAG ideal-int
+pkg syscall (netbsd-arm-cgo), const IPV6_DSTOPTS ideal-int
+pkg syscall (netbsd-arm-cgo), const IPV6_FAITH ideal-int
+pkg syscall (netbsd-arm-cgo), const IPV6_FLOWINFO_MASK ideal-int
+pkg syscall (netbsd-arm-cgo), const IPV6_FLOWLABEL_MASK ideal-int
+pkg syscall (netbsd-arm-cgo), const IPV6_FRAGTTL ideal-int
+pkg syscall (netbsd-arm-cgo), const IPV6_HLIMDEC ideal-int
+pkg syscall (netbsd-arm-cgo), const IPV6_HOPLIMIT ideal-int
+pkg syscall (netbsd-arm-cgo), const IPV6_HOPOPTS ideal-int
+pkg syscall (netbsd-arm-cgo), const IPV6_IPSEC_POLICY ideal-int
+pkg syscall (netbsd-arm-cgo), const IPV6_MAXHLIM ideal-int
+pkg syscall (netbsd-arm-cgo), const IPV6_MAXPACKET ideal-int
+pkg syscall (netbsd-arm-cgo), const IPV6_MMTU ideal-int
+pkg syscall (netbsd-arm-cgo), const IPV6_NEXTHOP ideal-int
+pkg syscall (netbsd-arm-cgo), const IPV6_PATHMTU ideal-int
+pkg syscall (netbsd-arm-cgo), const IPV6_PKTINFO ideal-int
+pkg syscall (netbsd-arm-cgo), const IPV6_PORTRANGE ideal-int
+pkg syscall (netbsd-arm-cgo), const IPV6_PORTRANGE_DEFAULT ideal-int
+pkg syscall (netbsd-arm-cgo), const IPV6_PORTRANGE_HIGH ideal-int
+pkg syscall (netbsd-arm-cgo), const IPV6_PORTRANGE_LOW ideal-int
+pkg syscall (netbsd-arm-cgo), const IPV6_RECVDSTOPTS ideal-int
+pkg syscall (netbsd-arm-cgo), const IPV6_RECVHOPLIMIT ideal-int
+pkg syscall (netbsd-arm-cgo), const IPV6_RECVHOPOPTS ideal-int
+pkg syscall (netbsd-arm-cgo), const IPV6_RECVPATHMTU ideal-int
+pkg syscall (netbsd-arm-cgo), const IPV6_RECVPKTINFO ideal-int
+pkg syscall (netbsd-arm-cgo), const IPV6_RECVRTHDR ideal-int
+pkg syscall (netbsd-arm-cgo), const IPV6_RECVTCLASS ideal-int
+pkg syscall (netbsd-arm-cgo), const IPV6_RTHDR ideal-int
+pkg syscall (netbsd-arm-cgo), const IPV6_RTHDRDSTOPTS ideal-int
+pkg syscall (netbsd-arm-cgo), const IPV6_RTHDR_LOOSE ideal-int
+pkg syscall (netbsd-arm-cgo), const IPV6_RTHDR_STRICT ideal-int
+pkg syscall (netbsd-arm-cgo), const IPV6_RTHDR_TYPE_0 ideal-int
+pkg syscall (netbsd-arm-cgo), const IPV6_SOCKOPT_RESERVED1 ideal-int
+pkg syscall (netbsd-arm-cgo), const IPV6_TCLASS ideal-int
+pkg syscall (netbsd-arm-cgo), const IPV6_USE_MIN_MTU ideal-int
+pkg syscall (netbsd-arm-cgo), const IPV6_VERSION ideal-int
+pkg syscall (netbsd-arm-cgo), const IPV6_VERSION_MASK ideal-int
+pkg syscall (netbsd-arm-cgo), const IP_DEFAULT_MULTICAST_LOOP ideal-int
+pkg syscall (netbsd-arm-cgo), const IP_DEFAULT_MULTICAST_TTL ideal-int
+pkg syscall (netbsd-arm-cgo), const IP_DF ideal-int
+pkg syscall (netbsd-arm-cgo), const IP_EF ideal-int
+pkg syscall (netbsd-arm-cgo), const IP_ERRORMTU ideal-int
+pkg syscall (netbsd-arm-cgo), const IP_HDRINCL ideal-int
+pkg syscall (netbsd-arm-cgo), const IP_IPSEC_POLICY ideal-int
+pkg syscall (netbsd-arm-cgo), const IP_MAXPACKET ideal-int
+pkg syscall (netbsd-arm-cgo), const IP_MAX_MEMBERSHIPS ideal-int
+pkg syscall (netbsd-arm-cgo), const IP_MF ideal-int
+pkg syscall (netbsd-arm-cgo), const IP_MINFRAGSIZE ideal-int
+pkg syscall (netbsd-arm-cgo), const IP_MINTTL ideal-int
+pkg syscall (netbsd-arm-cgo), const IP_MSS ideal-int
+pkg syscall (netbsd-arm-cgo), const IP_OFFMASK ideal-int
+pkg syscall (netbsd-arm-cgo), const IP_OPTIONS ideal-int
+pkg syscall (netbsd-arm-cgo), const IP_PORTRANGE ideal-int
+pkg syscall (netbsd-arm-cgo), const IP_PORTRANGE_DEFAULT ideal-int
+pkg syscall (netbsd-arm-cgo), const IP_PORTRANGE_HIGH ideal-int
+pkg syscall (netbsd-arm-cgo), const IP_PORTRANGE_LOW ideal-int
+pkg syscall (netbsd-arm-cgo), const IP_RECVDSTADDR ideal-int
+pkg syscall (netbsd-arm-cgo), const IP_RECVIF ideal-int
+pkg syscall (netbsd-arm-cgo), const IP_RECVOPTS ideal-int
+pkg syscall (netbsd-arm-cgo), const IP_RECVRETOPTS ideal-int
+pkg syscall (netbsd-arm-cgo), const IP_RECVTTL ideal-int
+pkg syscall (netbsd-arm-cgo), const IP_RETOPTS ideal-int
+pkg syscall (netbsd-arm-cgo), const IP_RF ideal-int
+pkg syscall (netbsd-arm-cgo), const ISIG ideal-int
+pkg syscall (netbsd-arm-cgo), const ISTRIP ideal-int
+pkg syscall (netbsd-arm-cgo), const IXANY ideal-int
+pkg syscall (netbsd-arm-cgo), const IXOFF ideal-int
+pkg syscall (netbsd-arm-cgo), const IXON ideal-int
+pkg syscall (netbsd-arm-cgo), const LOCK_EX ideal-int
+pkg syscall (netbsd-arm-cgo), const LOCK_NB ideal-int
+pkg syscall (netbsd-arm-cgo), const LOCK_SH ideal-int
+pkg syscall (netbsd-arm-cgo), const LOCK_UN ideal-int
+pkg syscall (netbsd-arm-cgo), const MSG_BCAST ideal-int
+pkg syscall (netbsd-arm-cgo), const MSG_CMSG_CLOEXEC ideal-int
+pkg syscall (netbsd-arm-cgo), const MSG_CONTROLMBUF ideal-int
+pkg syscall (netbsd-arm-cgo), const MSG_CTRUNC ideal-int
+pkg syscall (netbsd-arm-cgo), const MSG_DONTROUTE ideal-int
+pkg syscall (netbsd-arm-cgo), const MSG_DONTWAIT ideal-int
+pkg syscall (netbsd-arm-cgo), const MSG_EOR ideal-int
+pkg syscall (netbsd-arm-cgo), const MSG_IOVUSRSPACE ideal-int
+pkg syscall (netbsd-arm-cgo), const MSG_LENUSRSPACE ideal-int
+pkg syscall (netbsd-arm-cgo), const MSG_MCAST ideal-int
+pkg syscall (netbsd-arm-cgo), const MSG_NAMEMBUF ideal-int
+pkg syscall (netbsd-arm-cgo), const MSG_NBIO ideal-int
+pkg syscall (netbsd-arm-cgo), const MSG_NOSIGNAL ideal-int
+pkg syscall (netbsd-arm-cgo), const MSG_OOB ideal-int
+pkg syscall (netbsd-arm-cgo), const MSG_PEEK ideal-int
+pkg syscall (netbsd-arm-cgo), const MSG_TRUNC ideal-int
+pkg syscall (netbsd-arm-cgo), const MSG_USERFLAGS ideal-int
+pkg syscall (netbsd-arm-cgo), const MSG_WAITALL ideal-int
+pkg syscall (netbsd-arm-cgo), const NAME_MAX ideal-int
+pkg syscall (netbsd-arm-cgo), const NET_RT_DUMP ideal-int
+pkg syscall (netbsd-arm-cgo), const NET_RT_FLAGS ideal-int
+pkg syscall (netbsd-arm-cgo), const NET_RT_IFLIST ideal-int
+pkg syscall (netbsd-arm-cgo), const NET_RT_MAXID ideal-int
+pkg syscall (netbsd-arm-cgo), const NET_RT_OIFLIST ideal-int
+pkg syscall (netbsd-arm-cgo), const NET_RT_OOIFLIST ideal-int
+pkg syscall (netbsd-arm-cgo), const NOFLSH ideal-int
+pkg syscall (netbsd-arm-cgo), const NOTE_ATTRIB ideal-int
+pkg syscall (netbsd-arm-cgo), const NOTE_CHILD ideal-int
+pkg syscall (netbsd-arm-cgo), const NOTE_DELETE ideal-int
+pkg syscall (netbsd-arm-cgo), const NOTE_EXEC ideal-int
+pkg syscall (netbsd-arm-cgo), const NOTE_EXIT ideal-int
+pkg syscall (netbsd-arm-cgo), const NOTE_EXTEND ideal-int
+pkg syscall (netbsd-arm-cgo), const NOTE_FORK ideal-int
+pkg syscall (netbsd-arm-cgo), const NOTE_LINK ideal-int
+pkg syscall (netbsd-arm-cgo), const NOTE_LOWAT ideal-int
+pkg syscall (netbsd-arm-cgo), const NOTE_PCTRLMASK ideal-int
+pkg syscall (netbsd-arm-cgo), const NOTE_PDATAMASK ideal-int
+pkg syscall (netbsd-arm-cgo), const NOTE_RENAME ideal-int
+pkg syscall (netbsd-arm-cgo), const NOTE_REVOKE ideal-int
+pkg syscall (netbsd-arm-cgo), const NOTE_TRACK ideal-int
+pkg syscall (netbsd-arm-cgo), const NOTE_TRACKERR ideal-int
+pkg syscall (netbsd-arm-cgo), const NOTE_WRITE ideal-int
+pkg syscall (netbsd-arm-cgo), const OCRNL ideal-int
+pkg syscall (netbsd-arm-cgo), const OFIOGETBMAP ideal-int
+pkg syscall (netbsd-arm-cgo), const ONLCR ideal-int
+pkg syscall (netbsd-arm-cgo), const ONLRET ideal-int
+pkg syscall (netbsd-arm-cgo), const ONOCR ideal-int
+pkg syscall (netbsd-arm-cgo), const ONOEOT ideal-int
+pkg syscall (netbsd-arm-cgo), const OPOST ideal-int
+pkg syscall (netbsd-arm-cgo), const O_ACCMODE ideal-int
+pkg syscall (netbsd-arm-cgo), const O_ALT_IO ideal-int
+pkg syscall (netbsd-arm-cgo), const O_DIRECT ideal-int
+pkg syscall (netbsd-arm-cgo), const O_DIRECTORY ideal-int
+pkg syscall (netbsd-arm-cgo), const O_DSYNC ideal-int
+pkg syscall (netbsd-arm-cgo), const O_EXLOCK ideal-int
+pkg syscall (netbsd-arm-cgo), const O_FSYNC ideal-int
+pkg syscall (netbsd-arm-cgo), const O_NDELAY ideal-int
+pkg syscall (netbsd-arm-cgo), const O_NOFOLLOW ideal-int
+pkg syscall (netbsd-arm-cgo), const O_NOSIGPIPE ideal-int
+pkg syscall (netbsd-arm-cgo), const O_RSYNC ideal-int
+pkg syscall (netbsd-arm-cgo), const O_SHLOCK ideal-int
+pkg syscall (netbsd-arm-cgo), const PARENB ideal-int
+pkg syscall (netbsd-arm-cgo), const PARMRK ideal-int
+pkg syscall (netbsd-arm-cgo), const PARODD ideal-int
+pkg syscall (netbsd-arm-cgo), const PENDIN ideal-int
+pkg syscall (netbsd-arm-cgo), const PRIO_PGRP = 1
+pkg syscall (netbsd-arm-cgo), const PRIO_PGRP ideal-int
+pkg syscall (netbsd-arm-cgo), const PRIO_PROCESS = 0
+pkg syscall (netbsd-arm-cgo), const PRIO_PROCESS ideal-int
+pkg syscall (netbsd-arm-cgo), const PRIO_USER = 2
+pkg syscall (netbsd-arm-cgo), const PRIO_USER ideal-int
+pkg syscall (netbsd-arm-cgo), const PRI_IOFLUSH ideal-int
+pkg syscall (netbsd-arm-cgo), const PTRACE_CONT ideal-int
+pkg syscall (netbsd-arm-cgo), const PTRACE_KILL ideal-int
+pkg syscall (netbsd-arm-cgo), const PTRACE_TRACEME ideal-int
+pkg syscall (netbsd-arm-cgo), const RLIMIT_AS ideal-int
+pkg syscall (netbsd-arm-cgo), const RLIMIT_CORE ideal-int
+pkg syscall (netbsd-arm-cgo), const RLIMIT_CPU ideal-int
+pkg syscall (netbsd-arm-cgo), const RLIMIT_DATA ideal-int
+pkg syscall (netbsd-arm-cgo), const RLIMIT_FSIZE ideal-int
+pkg syscall (netbsd-arm-cgo), const RLIMIT_NOFILE ideal-int
+pkg syscall (netbsd-arm-cgo), const RLIMIT_STACK ideal-int
+pkg syscall (netbsd-arm-cgo), const RLIM_INFINITY ideal-int
+pkg syscall (netbsd-arm-cgo), const RTAX_AUTHOR ideal-int
+pkg syscall (netbsd-arm-cgo), const RTAX_BRD ideal-int
+pkg syscall (netbsd-arm-cgo), const RTAX_DST ideal-int
+pkg syscall (netbsd-arm-cgo), const RTAX_GATEWAY ideal-int
+pkg syscall (netbsd-arm-cgo), const RTAX_GENMASK ideal-int
+pkg syscall (netbsd-arm-cgo), const RTAX_IFA ideal-int
+pkg syscall (netbsd-arm-cgo), const RTAX_IFP ideal-int
+pkg syscall (netbsd-arm-cgo), const RTAX_MAX ideal-int
+pkg syscall (netbsd-arm-cgo), const RTAX_NETMASK ideal-int
+pkg syscall (netbsd-arm-cgo), const RTAX_TAG ideal-int
+pkg syscall (netbsd-arm-cgo), const RTA_AUTHOR ideal-int
+pkg syscall (netbsd-arm-cgo), const RTA_BRD ideal-int
+pkg syscall (netbsd-arm-cgo), const RTA_DST ideal-int
+pkg syscall (netbsd-arm-cgo), const RTA_GATEWAY ideal-int
+pkg syscall (netbsd-arm-cgo), const RTA_GENMASK ideal-int
+pkg syscall (netbsd-arm-cgo), const RTA_IFA ideal-int
+pkg syscall (netbsd-arm-cgo), const RTA_IFP ideal-int
+pkg syscall (netbsd-arm-cgo), const RTA_NETMASK ideal-int
+pkg syscall (netbsd-arm-cgo), const RTA_TAG ideal-int
+pkg syscall (netbsd-arm-cgo), const RTF_ANNOUNCE ideal-int
+pkg syscall (netbsd-arm-cgo), const RTF_BLACKHOLE ideal-int
+pkg syscall (netbsd-arm-cgo), const RTF_CLONED ideal-int
+pkg syscall (netbsd-arm-cgo), const RTF_CLONING ideal-int
+pkg syscall (netbsd-arm-cgo), const RTF_DONE ideal-int
+pkg syscall (netbsd-arm-cgo), const RTF_DYNAMIC ideal-int
+pkg syscall (netbsd-arm-cgo), const RTF_GATEWAY ideal-int
+pkg syscall (netbsd-arm-cgo), const RTF_HOST ideal-int
+pkg syscall (netbsd-arm-cgo), const RTF_LLINFO ideal-int
+pkg syscall (netbsd-arm-cgo), const RTF_MASK ideal-int
+pkg syscall (netbsd-arm-cgo), const RTF_MODIFIED ideal-int
+pkg syscall (netbsd-arm-cgo), const RTF_PROTO1 ideal-int
+pkg syscall (netbsd-arm-cgo), const RTF_PROTO2 ideal-int
+pkg syscall (netbsd-arm-cgo), const RTF_REJECT ideal-int
+pkg syscall (netbsd-arm-cgo), const RTF_SRC ideal-int
+pkg syscall (netbsd-arm-cgo), const RTF_STATIC ideal-int
+pkg syscall (netbsd-arm-cgo), const RTF_UP ideal-int
+pkg syscall (netbsd-arm-cgo), const RTF_XRESOLVE ideal-int
+pkg syscall (netbsd-arm-cgo), const RTM_ADD ideal-int
+pkg syscall (netbsd-arm-cgo), const RTM_CHANGE ideal-int
+pkg syscall (netbsd-arm-cgo), const RTM_CHGADDR ideal-int
+pkg syscall (netbsd-arm-cgo), const RTM_DELADDR ideal-int
+pkg syscall (netbsd-arm-cgo), const RTM_DELETE ideal-int
+pkg syscall (netbsd-arm-cgo), const RTM_GET ideal-int
+pkg syscall (netbsd-arm-cgo), const RTM_IEEE80211 ideal-int
+pkg syscall (netbsd-arm-cgo), const RTM_IFANNOUNCE ideal-int
+pkg syscall (netbsd-arm-cgo), const RTM_IFINFO ideal-int
+pkg syscall (netbsd-arm-cgo), const RTM_LLINFO_UPD ideal-int
+pkg syscall (netbsd-arm-cgo), const RTM_LOCK ideal-int
+pkg syscall (netbsd-arm-cgo), const RTM_LOSING ideal-int
+pkg syscall (netbsd-arm-cgo), const RTM_MISS ideal-int
+pkg syscall (netbsd-arm-cgo), const RTM_NEWADDR ideal-int
+pkg syscall (netbsd-arm-cgo), const RTM_OIFINFO ideal-int
+pkg syscall (netbsd-arm-cgo), const RTM_OLDADD ideal-int
+pkg syscall (netbsd-arm-cgo), const RTM_OLDDEL ideal-int
+pkg syscall (netbsd-arm-cgo), const RTM_OOIFINFO ideal-int
+pkg syscall (netbsd-arm-cgo), const RTM_REDIRECT ideal-int
+pkg syscall (netbsd-arm-cgo), const RTM_RESOLVE ideal-int
+pkg syscall (netbsd-arm-cgo), const RTM_RTTUNIT ideal-int
+pkg syscall (netbsd-arm-cgo), const RTM_SETGATE ideal-int
+pkg syscall (netbsd-arm-cgo), const RTM_VERSION ideal-int
+pkg syscall (netbsd-arm-cgo), const RTV_EXPIRE ideal-int
+pkg syscall (netbsd-arm-cgo), const RTV_HOPCOUNT ideal-int
+pkg syscall (netbsd-arm-cgo), const RTV_MTU ideal-int
+pkg syscall (netbsd-arm-cgo), const RTV_RPIPE ideal-int
+pkg syscall (netbsd-arm-cgo), const RTV_RTT ideal-int
+pkg syscall (netbsd-arm-cgo), const RTV_RTTVAR ideal-int
+pkg syscall (netbsd-arm-cgo), const RTV_SPIPE ideal-int
+pkg syscall (netbsd-arm-cgo), const RTV_SSTHRESH ideal-int
+pkg syscall (netbsd-arm-cgo), const RUSAGE_CHILDREN ideal-int
+pkg syscall (netbsd-arm-cgo), const RUSAGE_SELF ideal-int
+pkg syscall (netbsd-arm-cgo), const SCM_CREDS ideal-int
+pkg syscall (netbsd-arm-cgo), const SCM_RIGHTS ideal-int
+pkg syscall (netbsd-arm-cgo), const SCM_TIMESTAMP ideal-int
+pkg syscall (netbsd-arm-cgo), const SIGCHLD Signal
+pkg syscall (netbsd-arm-cgo), const SIGCONT Signal
+pkg syscall (netbsd-arm-cgo), const SIGEMT Signal
+pkg syscall (netbsd-arm-cgo), const SIGINFO Signal
+pkg syscall (netbsd-arm-cgo), const SIGIO Signal
+pkg syscall (netbsd-arm-cgo), const SIGIOT Signal
+pkg syscall (netbsd-arm-cgo), const SIGPROF Signal
+pkg syscall (netbsd-arm-cgo), const SIGPWR Signal
+pkg syscall (netbsd-arm-cgo), const SIGSTOP Signal
+pkg syscall (netbsd-arm-cgo), const SIGSYS Signal
+pkg syscall (netbsd-arm-cgo), const SIGTSTP Signal
+pkg syscall (netbsd-arm-cgo), const SIGTTIN Signal
+pkg syscall (netbsd-arm-cgo), const SIGTTOU Signal
+pkg syscall (netbsd-arm-cgo), const SIGURG Signal
+pkg syscall (netbsd-arm-cgo), const SIGUSR1 Signal
+pkg syscall (netbsd-arm-cgo), const SIGUSR2 Signal
+pkg syscall (netbsd-arm-cgo), const SIGVTALRM Signal
+pkg syscall (netbsd-arm-cgo), const SIGWINCH Signal
+pkg syscall (netbsd-arm-cgo), const SIGXCPU Signal
+pkg syscall (netbsd-arm-cgo), const SIGXFSZ Signal
+pkg syscall (netbsd-arm-cgo), const SIOCADDMULTI ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCADDRT ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCAIFADDR ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCALIFADDR ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCATMARK ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCDELMULTI ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCDELRT ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCDIFADDR ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCDIFPHYADDR ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCDLIFADDR ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCGDRVSPEC ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCGETPFSYNC ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCGETSGCNT ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCGETVIFCNT ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCGHIWAT ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCGIFADDR ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCGIFADDRPREF ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCGIFALIAS ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCGIFBRDADDR ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCGIFCAP ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCGIFCONF ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCGIFDATA ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCGIFDLT ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCGIFDSTADDR ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCGIFFLAGS ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCGIFGENERIC ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCGIFMEDIA ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCGIFMETRIC ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCGIFMTU ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCGIFNETMASK ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCGIFPDSTADDR ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCGIFPSRCADDR ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCGLIFADDR ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCGLIFPHYADDR ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCGLINKSTR ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCGLOWAT ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCGPGRP ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCGVH ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCIFCREATE ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCIFDESTROY ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCIFGCLONERS ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCINITIFADDR ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCSDRVSPEC ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCSETPFSYNC ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCSHIWAT ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCSIFADDR ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCSIFADDRPREF ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCSIFBRDADDR ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCSIFCAP ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCSIFDSTADDR ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCSIFFLAGS ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCSIFGENERIC ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCSIFMEDIA ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCSIFMETRIC ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCSIFMTU ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCSIFNETMASK ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCSIFPHYADDR ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCSLIFPHYADDR ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCSLINKSTR ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCSLOWAT ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCSPGRP ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCSVH ideal-int
+pkg syscall (netbsd-arm-cgo), const SIOCZIFDATA ideal-int
+pkg syscall (netbsd-arm-cgo), const SOCK_CLOEXEC ideal-int
+pkg syscall (netbsd-arm-cgo), const SOCK_FLAGS_MASK ideal-int
+pkg syscall (netbsd-arm-cgo), const SOCK_NONBLOCK ideal-int
+pkg syscall (netbsd-arm-cgo), const SOCK_NOSIGPIPE ideal-int
+pkg syscall (netbsd-arm-cgo), const SOCK_RDM ideal-int
+pkg syscall (netbsd-arm-cgo), const SO_ACCEPTCONN ideal-int
+pkg syscall (netbsd-arm-cgo), const SO_ACCEPTFILTER ideal-int
+pkg syscall (netbsd-arm-cgo), const SO_DEBUG ideal-int
+pkg syscall (netbsd-arm-cgo), const SO_ERROR ideal-int
+pkg syscall (netbsd-arm-cgo), const SO_NOHEADER ideal-int
+pkg syscall (netbsd-arm-cgo), const SO_NOSIGPIPE ideal-int
+pkg syscall (netbsd-arm-cgo), const SO_OOBINLINE ideal-int
+pkg syscall (netbsd-arm-cgo), const SO_OVERFLOWED ideal-int
+pkg syscall (netbsd-arm-cgo), const SO_RCVLOWAT ideal-int
+pkg syscall (netbsd-arm-cgo), const SO_RCVTIMEO ideal-int
+pkg syscall (netbsd-arm-cgo), const SO_REUSEPORT ideal-int
+pkg syscall (netbsd-arm-cgo), const SO_SNDLOWAT ideal-int
+pkg syscall (netbsd-arm-cgo), const SO_SNDTIMEO ideal-int
+pkg syscall (netbsd-arm-cgo), const SO_TIMESTAMP ideal-int
+pkg syscall (netbsd-arm-cgo), const SO_TYPE ideal-int
+pkg syscall (netbsd-arm-cgo), const SO_USELOOPBACK ideal-int
+pkg syscall (netbsd-arm-cgo), const SYSCTL_VERSION ideal-int
+pkg syscall (netbsd-arm-cgo), const SYSCTL_VERS_0 ideal-int
+pkg syscall (netbsd-arm-cgo), const SYSCTL_VERS_1 ideal-int
+pkg syscall (netbsd-arm-cgo), const SYSCTL_VERS_MASK ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_ACCEPT ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_ACCESS ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_ACCT ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_ADJTIME ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_BIND ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_BREAK ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_CHDIR ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_CHFLAGS ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_CHMOD ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_CHOWN ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_CHROOT ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_CLOCK_GETRES ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_CLOCK_GETTIME ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_CLOCK_SETTIME ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_CLOSE ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_CONNECT ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_DUP ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_DUP2 ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_DUP3 ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_EXECVE ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_EXIT ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_EXTATTRCTL ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_EXTATTR_DELETE_FD ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_EXTATTR_DELETE_FILE ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_EXTATTR_DELETE_LINK ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_EXTATTR_GET_FD ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_EXTATTR_GET_FILE ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_EXTATTR_GET_LINK ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_EXTATTR_LIST_FD ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_EXTATTR_LIST_FILE ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_EXTATTR_LIST_LINK ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_EXTATTR_SET_FD ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_EXTATTR_SET_FILE ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_EXTATTR_SET_LINK ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_FACCESSAT ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_FCHDIR ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_FCHFLAGS ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_FCHMOD ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_FCHMODAT ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_FCHOWN ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_FCHOWNAT ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_FCHROOT ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_FCNTL ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_FDATASYNC ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_FEXECVE ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_FGETXATTR ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_FHSTAT ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_FKTRACE ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_FLISTXATTR ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_FLOCK ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_FORK ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_FPATHCONF ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_FREMOVEXATTR ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_FSETXATTR ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_FSTAT ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_FSTATAT ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_FSTATVFS1 ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_FSYNC ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_FSYNC_RANGE ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_FTRUNCATE ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_FUTIMENS ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_FUTIMES ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_GETCONTEXT ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_GETDENTS ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_GETEGID ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_GETEUID ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_GETFH ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_GETGID ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_GETGROUPS ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_GETITIMER ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_GETPEERNAME ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_GETPGID ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_GETPGRP ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_GETPID ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_GETPPID ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_GETPRIORITY ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_GETRLIMIT ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_GETRUSAGE ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_GETSID ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_GETSOCKNAME ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_GETSOCKOPT ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_GETTIMEOFDAY ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_GETUID ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_GETVFSSTAT ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_GETXATTR ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_IOCTL ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_ISSETUGID ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_KEVENT ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_KILL ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_KQUEUE ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_KQUEUE1 ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_KTRACE ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_LCHFLAGS ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_LCHMOD ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_LCHOWN ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_LGETXATTR ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_LINK ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_LINKAT ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_LISTEN ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_LISTXATTR ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_LLISTXATTR ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_LREMOVEXATTR ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_LSEEK ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_LSETXATTR ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_LSTAT ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_LUTIMES ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_MADVISE ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_MINCORE ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_MINHERIT ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_MKDIR ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_MKDIRAT ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_MKFIFO ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_MKFIFOAT ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_MKNOD ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_MKNODAT ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_MLOCK ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_MLOCKALL ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_MMAP ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_MODCTL ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_MOUNT ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_MPROTECT ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_MREMAP ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_MSGCTL ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_MSGGET ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_MSGRCV ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_MSGSND ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_MUNLOCK ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_MUNLOCKALL ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_MUNMAP ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_NANOSLEEP ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_NTP_ADJTIME ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_NTP_GETTIME ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_OPEN ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_OPENAT ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_PACCEPT ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_PATHCONF ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_PIPE ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_PIPE2 ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_PMC_CONTROL ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_PMC_GET_INFO ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_POLL ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_POLLTS ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_POSIX_FADVISE ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_POSIX_SPAWN ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_PREAD ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_PREADV ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_PROFIL ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_PSELECT ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_PSET_ASSIGN ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_PSET_CREATE ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_PSET_DESTROY ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_PTRACE ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_PWRITE ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_PWRITEV ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_RASCTL ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_READ ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_READLINK ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_READLINKAT ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_READV ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_REBOOT ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_RECVFROM ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_RECVMMSG ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_RECVMSG ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_REMOVEXATTR ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_RENAME ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_RENAMEAT ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_REVOKE ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_RMDIR ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_SBRK ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_SCHED_YIELD ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_SELECT ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_SEMCONFIG ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_SEMGET ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_SEMOP ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_SENDMMSG ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_SENDMSG ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_SENDTO ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_SETCONTEXT ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_SETEGID ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_SETEUID ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_SETGID ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_SETGROUPS ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_SETITIMER ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_SETPGID ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_SETPRIORITY ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_SETREGID ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_SETREUID ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_SETRLIMIT ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_SETSID ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_SETSOCKOPT ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_SETTIMEOFDAY ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_SETUID ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_SETXATTR ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_SHMAT ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_SHMCTL ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_SHMDT ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_SHMGET ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_SHUTDOWN ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_SIGQUEUEINFO ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_SOCKET ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_SOCKETPAIR ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_SSTK ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_STAT ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_STATVFS1 ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_SWAPCTL ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_SYMLINK ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_SYMLINKAT ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_SYNC ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_SYSARCH ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_TIMER_CREATE ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_TIMER_DELETE ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_TIMER_GETOVERRUN ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_TIMER_GETTIME ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_TIMER_SETTIME ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_TRUNCATE ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_UMASK ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_UNDELETE ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_UNLINK ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_UNLINKAT ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_UNMOUNT ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_UTIMENSAT ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_UTIMES ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_UTRACE ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_UUIDGEN ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_VADVISE ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_VFORK ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_WAIT4 ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_WRITE ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS_WRITEV ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS__LWP_CONTINUE ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS__LWP_CREATE ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS__LWP_CTL ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS__LWP_DETACH ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS__LWP_EXIT ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS__LWP_GETNAME ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS__LWP_GETPRIVATE ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS__LWP_KILL ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS__LWP_PARK ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS__LWP_SELF ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS__LWP_SETNAME ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS__LWP_SETPRIVATE ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS__LWP_SUSPEND ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS__LWP_UNPARK ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS__LWP_UNPARK_ALL ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS__LWP_WAIT ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS__LWP_WAKEUP ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS__PSET_BIND ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS__SCHED_GETAFFINITY ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS__SCHED_GETPARAM ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS__SCHED_SETAFFINITY ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS__SCHED_SETPARAM ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS___CLONE ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS___GETCWD ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS___GETLOGIN ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS___POSIX_CHOWN ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS___POSIX_FCHOWN ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS___POSIX_LCHOWN ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS___POSIX_RENAME ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS___QUOTACTL ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS___SEMCTL ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS___SETLOGIN ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS___SIGACTION_SIGTRAMP ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS___SIGTIMEDWAIT ideal-int
+pkg syscall (netbsd-arm-cgo), const SYS___SYSCTL ideal-int
+pkg syscall (netbsd-arm-cgo), const S_ARCH1 ideal-int
+pkg syscall (netbsd-arm-cgo), const S_ARCH2 ideal-int
+pkg syscall (netbsd-arm-cgo), const S_BLKSIZE ideal-int
+pkg syscall (netbsd-arm-cgo), const S_IEXEC ideal-int
+pkg syscall (netbsd-arm-cgo), const S_IFWHT ideal-int
+pkg syscall (netbsd-arm-cgo), const S_IREAD ideal-int
+pkg syscall (netbsd-arm-cgo), const S_IRGRP ideal-int
+pkg syscall (netbsd-arm-cgo), const S_IROTH ideal-int
+pkg syscall (netbsd-arm-cgo), const S_IRWXG ideal-int
+pkg syscall (netbsd-arm-cgo), const S_IRWXO ideal-int
+pkg syscall (netbsd-arm-cgo), const S_IRWXU ideal-int
+pkg syscall (netbsd-arm-cgo), const S_ISTXT ideal-int
+pkg syscall (netbsd-arm-cgo), const S_IWGRP ideal-int
+pkg syscall (netbsd-arm-cgo), const S_IWOTH ideal-int
+pkg syscall (netbsd-arm-cgo), const S_IWRITE ideal-int
+pkg syscall (netbsd-arm-cgo), const S_IXGRP ideal-int
+pkg syscall (netbsd-arm-cgo), const S_IXOTH ideal-int
+pkg syscall (netbsd-arm-cgo), const SizeofBpfHdr ideal-int
+pkg syscall (netbsd-arm-cgo), const SizeofBpfInsn ideal-int
+pkg syscall (netbsd-arm-cgo), const SizeofBpfProgram ideal-int
+pkg syscall (netbsd-arm-cgo), const SizeofBpfStat ideal-int
+pkg syscall (netbsd-arm-cgo), const SizeofBpfVersion ideal-int
+pkg syscall (netbsd-arm-cgo), const SizeofCmsghdr ideal-int
+pkg syscall (netbsd-arm-cgo), const SizeofICMPv6Filter = 32
+pkg syscall (netbsd-arm-cgo), const SizeofICMPv6Filter ideal-int
+pkg syscall (netbsd-arm-cgo), const SizeofIPMreq ideal-int
+pkg syscall (netbsd-arm-cgo), const SizeofIPv6MTUInfo = 32
+pkg syscall (netbsd-arm-cgo), const SizeofIPv6MTUInfo ideal-int
+pkg syscall (netbsd-arm-cgo), const SizeofIPv6Mreq ideal-int
+pkg syscall (netbsd-arm-cgo), const SizeofIfAnnounceMsghdr ideal-int
+pkg syscall (netbsd-arm-cgo), const SizeofIfData ideal-int
+pkg syscall (netbsd-arm-cgo), const SizeofIfMsghdr ideal-int
+pkg syscall (netbsd-arm-cgo), const SizeofIfaMsghdr ideal-int
+pkg syscall (netbsd-arm-cgo), const SizeofInet6Pktinfo ideal-int
+pkg syscall (netbsd-arm-cgo), const SizeofLinger ideal-int
+pkg syscall (netbsd-arm-cgo), const SizeofMsghdr ideal-int
+pkg syscall (netbsd-arm-cgo), const SizeofRtMetrics ideal-int
+pkg syscall (netbsd-arm-cgo), const SizeofRtMsghdr ideal-int
+pkg syscall (netbsd-arm-cgo), const SizeofSockaddrAny ideal-int
+pkg syscall (netbsd-arm-cgo), const SizeofSockaddrDatalink ideal-int
+pkg syscall (netbsd-arm-cgo), const SizeofSockaddrInet4 ideal-int
+pkg syscall (netbsd-arm-cgo), const SizeofSockaddrInet6 ideal-int
+pkg syscall (netbsd-arm-cgo), const SizeofSockaddrUnix ideal-int
+pkg syscall (netbsd-arm-cgo), const TCIFLUSH ideal-int
+pkg syscall (netbsd-arm-cgo), const TCIOFLUSH ideal-int
+pkg syscall (netbsd-arm-cgo), const TCOFLUSH ideal-int
+pkg syscall (netbsd-arm-cgo), const TCP_CONGCTL ideal-int
+pkg syscall (netbsd-arm-cgo), const TCP_KEEPCNT ideal-int
+pkg syscall (netbsd-arm-cgo), const TCP_KEEPIDLE ideal-int
+pkg syscall (netbsd-arm-cgo), const TCP_KEEPINIT ideal-int
+pkg syscall (netbsd-arm-cgo), const TCP_KEEPINTVL ideal-int
+pkg syscall (netbsd-arm-cgo), const TCP_MAXBURST ideal-int
+pkg syscall (netbsd-arm-cgo), const TCP_MAXSEG ideal-int
+pkg syscall (netbsd-arm-cgo), const TCP_MAXWIN ideal-int
+pkg syscall (netbsd-arm-cgo), const TCP_MAX_WINSHIFT ideal-int
+pkg syscall (netbsd-arm-cgo), const TCP_MD5SIG ideal-int
+pkg syscall (netbsd-arm-cgo), const TCP_MINMSS ideal-int
+pkg syscall (netbsd-arm-cgo), const TCP_MSS ideal-int
+pkg syscall (netbsd-arm-cgo), const TCSAFLUSH ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCCBRK ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCCDTR ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCCONS ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCDCDTIMESTAMP ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCDRAIN ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCEXCL ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCEXT ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCFLAG_CDTRCTS ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCFLAG_CLOCAL ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCFLAG_CRTSCTS ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCFLAG_MDMBUF ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCFLAG_SOFTCAR ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCFLUSH ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCGETA ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCGETD ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCGFLAGS ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCGLINED ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCGPGRP ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCGQSIZE ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCGRANTPT ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCGSID ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCGSIZE ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCGWINSZ ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCMBIC ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCMBIS ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCMGET ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCMSET ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCM_CAR ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCM_CD ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCM_CTS ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCM_DSR ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCM_DTR ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCM_LE ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCM_RI ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCM_RNG ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCM_RTS ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCM_SR ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCM_ST ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCNOTTY ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCNXCL ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCOUTQ ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCPKT ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCPKT_DATA ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCPKT_DOSTOP ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCPKT_FLUSHREAD ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCPKT_FLUSHWRITE ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCPKT_IOCTL ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCPKT_NOSTOP ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCPKT_START ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCPKT_STOP ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCPTMGET ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCPTSNAME ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCRCVFRAME ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCREMOTE ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCSBRK ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCSCTTY ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCSDTR ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCSETA ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCSETAF ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCSETAW ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCSETD ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCSFLAGS ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCSIG ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCSLINED ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCSPGRP ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCSQSIZE ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCSSIZE ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCSTART ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCSTAT ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCSTI ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCSTOP ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCSWINSZ ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCUCNTL ideal-int
+pkg syscall (netbsd-arm-cgo), const TIOCXMTFRAME ideal-int
+pkg syscall (netbsd-arm-cgo), const TOSTOP ideal-int
+pkg syscall (netbsd-arm-cgo), const VDISCARD ideal-int
+pkg syscall (netbsd-arm-cgo), const VDSUSP ideal-int
+pkg syscall (netbsd-arm-cgo), const VEOF ideal-int
+pkg syscall (netbsd-arm-cgo), const VEOL ideal-int
+pkg syscall (netbsd-arm-cgo), const VEOL2 ideal-int
+pkg syscall (netbsd-arm-cgo), const VERASE ideal-int
+pkg syscall (netbsd-arm-cgo), const VINTR ideal-int
+pkg syscall (netbsd-arm-cgo), const VKILL ideal-int
+pkg syscall (netbsd-arm-cgo), const VLNEXT ideal-int
+pkg syscall (netbsd-arm-cgo), const VMIN ideal-int
+pkg syscall (netbsd-arm-cgo), const VQUIT ideal-int
+pkg syscall (netbsd-arm-cgo), const VREPRINT ideal-int
+pkg syscall (netbsd-arm-cgo), const VSTART ideal-int
+pkg syscall (netbsd-arm-cgo), const VSTATUS ideal-int
+pkg syscall (netbsd-arm-cgo), const VSTOP ideal-int
+pkg syscall (netbsd-arm-cgo), const VSUSP ideal-int
+pkg syscall (netbsd-arm-cgo), const VTIME ideal-int
+pkg syscall (netbsd-arm-cgo), const VWERASE ideal-int
+pkg syscall (netbsd-arm-cgo), const WALL ideal-int
+pkg syscall (netbsd-arm-cgo), const WALLSIG ideal-int
+pkg syscall (netbsd-arm-cgo), const WALTSIG ideal-int
+pkg syscall (netbsd-arm-cgo), const WCLONE ideal-int
+pkg syscall (netbsd-arm-cgo), const WCOREFLAG ideal-int
+pkg syscall (netbsd-arm-cgo), const WNOHANG ideal-int
+pkg syscall (netbsd-arm-cgo), const WNOWAIT ideal-int
+pkg syscall (netbsd-arm-cgo), const WNOZOMBIE ideal-int
+pkg syscall (netbsd-arm-cgo), const WOPTSCHECKED ideal-int
+pkg syscall (netbsd-arm-cgo), const WSTOPPED ideal-int
+pkg syscall (netbsd-arm-cgo), const WUNTRACED ideal-int
+pkg syscall (netbsd-arm-cgo), func Accept(int) (int, Sockaddr, error)
+pkg syscall (netbsd-arm-cgo), func Access(string, uint32) error
+pkg syscall (netbsd-arm-cgo), func Adjtime(*Timeval, *Timeval) error
+pkg syscall (netbsd-arm-cgo), func Bind(int, Sockaddr) error
+pkg syscall (netbsd-arm-cgo), func BpfBuflen(int) (int, error)
+pkg syscall (netbsd-arm-cgo), func BpfDatalink(int) (int, error)
+pkg syscall (netbsd-arm-cgo), func BpfHeadercmpl(int) (int, error)
+pkg syscall (netbsd-arm-cgo), func BpfInterface(int, string) (string, error)
+pkg syscall (netbsd-arm-cgo), func BpfJump(int, int, int, int) *BpfInsn
+pkg syscall (netbsd-arm-cgo), func BpfStats(int) (*BpfStat, error)
+pkg syscall (netbsd-arm-cgo), func BpfStmt(int, int) *BpfInsn
+pkg syscall (netbsd-arm-cgo), func BpfTimeout(int) (*Timeval, error)
+pkg syscall (netbsd-arm-cgo), func CheckBpfVersion(int) error
+pkg syscall (netbsd-arm-cgo), func Chflags(string, int) error
+pkg syscall (netbsd-arm-cgo), func Chroot(string) error
+pkg syscall (netbsd-arm-cgo), func Close(int) error
+pkg syscall (netbsd-arm-cgo), func CloseOnExec(int)
+pkg syscall (netbsd-arm-cgo), func CmsgLen(int) int
+pkg syscall (netbsd-arm-cgo), func CmsgSpace(int) int
+pkg syscall (netbsd-arm-cgo), func Connect(int, Sockaddr) error
+pkg syscall (netbsd-arm-cgo), func Dup(int) (int, error)
+pkg syscall (netbsd-arm-cgo), func Dup2(int, int) error
+pkg syscall (netbsd-arm-cgo), func Fchdir(int) error
+pkg syscall (netbsd-arm-cgo), func Fchflags(string, int) error
+pkg syscall (netbsd-arm-cgo), func Fchmod(int, uint32) error
+pkg syscall (netbsd-arm-cgo), func Fchown(int, int, int) error
+pkg syscall (netbsd-arm-cgo), func Flock(int, int) error
+pkg syscall (netbsd-arm-cgo), func FlushBpf(int) error
+pkg syscall (netbsd-arm-cgo), func ForkExec(string, []string, *ProcAttr) (int, error)
+pkg syscall (netbsd-arm-cgo), func Fpathconf(int, int) (int, error)
+pkg syscall (netbsd-arm-cgo), func Fstat(int, *Stat_t) error
+pkg syscall (netbsd-arm-cgo), func Fsync(int) error
+pkg syscall (netbsd-arm-cgo), func Ftruncate(int, int64) error
+pkg syscall (netbsd-arm-cgo), func Futimes(int, []Timeval) error
+pkg syscall (netbsd-arm-cgo), func Getdirentries(int, []uint8, *uintptr) (int, error)
+pkg syscall (netbsd-arm-cgo), func Getpeername(int) (Sockaddr, error)
+pkg syscall (netbsd-arm-cgo), func Getpgid(int) (int, error)
+pkg syscall (netbsd-arm-cgo), func Getpgrp() int
+pkg syscall (netbsd-arm-cgo), func Getpriority(int, int) (int, error)
+pkg syscall (netbsd-arm-cgo), func Getrlimit(int, *Rlimit) error
+pkg syscall (netbsd-arm-cgo), func Getrusage(int, *Rusage) error
+pkg syscall (netbsd-arm-cgo), func Getsid(int) (int, error)
+pkg syscall (netbsd-arm-cgo), func Getsockname(int) (Sockaddr, error)
+pkg syscall (netbsd-arm-cgo), func GetsockoptByte(int, int, int) (uint8, error)
+pkg syscall (netbsd-arm-cgo), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
+pkg syscall (netbsd-arm-cgo), func GetsockoptIPMreq(int, int, int) (*IPMreq, error)
+pkg syscall (netbsd-arm-cgo), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
+pkg syscall (netbsd-arm-cgo), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error)
+pkg syscall (netbsd-arm-cgo), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error)
+pkg syscall (netbsd-arm-cgo), func GetsockoptInt(int, int, int) (int, error)
+pkg syscall (netbsd-arm-cgo), func Issetugid() bool
+pkg syscall (netbsd-arm-cgo), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error)
+pkg syscall (netbsd-arm-cgo), func Kill(int, Signal) error
+pkg syscall (netbsd-arm-cgo), func Kqueue() (int, error)
+pkg syscall (netbsd-arm-cgo), func Listen(int, int) error
+pkg syscall (netbsd-arm-cgo), func Lstat(string, *Stat_t) error
+pkg syscall (netbsd-arm-cgo), func Mkfifo(string, uint32) error
+pkg syscall (netbsd-arm-cgo), func Mknod(string, uint32, int) error
+pkg syscall (netbsd-arm-cgo), func Mmap(int, int64, int, int, int) ([]uint8, error)
+pkg syscall (netbsd-arm-cgo), func Munmap([]uint8) error
+pkg syscall (netbsd-arm-cgo), func Nanosleep(*Timespec, *Timespec) error
+pkg syscall (netbsd-arm-cgo), func Open(string, int, uint32) (int, error)
+pkg syscall (netbsd-arm-cgo), func ParseDirent([]uint8, int, []string) (int, int, []string)
+pkg syscall (netbsd-arm-cgo), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error)
+pkg syscall (netbsd-arm-cgo), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error)
+pkg syscall (netbsd-arm-cgo), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error)
+pkg syscall (netbsd-arm-cgo), func ParseUnixRights(*SocketControlMessage) ([]int, error)
+pkg syscall (netbsd-arm-cgo), func Pathconf(string, int) (int, error)
+pkg syscall (netbsd-arm-cgo), func Pipe([]int) error
+pkg syscall (netbsd-arm-cgo), func Pread(int, []uint8, int64) (int, error)
+pkg syscall (netbsd-arm-cgo), func Pwrite(int, []uint8, int64) (int, error)
+pkg syscall (netbsd-arm-cgo), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (netbsd-arm-cgo), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (netbsd-arm-cgo), func Read(int, []uint8) (int, error)
+pkg syscall (netbsd-arm-cgo), func ReadDirent(int, []uint8) (int, error)
+pkg syscall (netbsd-arm-cgo), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
+pkg syscall (netbsd-arm-cgo), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
+pkg syscall (netbsd-arm-cgo), func Revoke(string) error
+pkg syscall (netbsd-arm-cgo), func RouteRIB(int, int) ([]uint8, error)
+pkg syscall (netbsd-arm-cgo), func Seek(int, int64, int) (int64, error)
+pkg syscall (netbsd-arm-cgo), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error
+pkg syscall (netbsd-arm-cgo), func Sendfile(int, int, *int64, int) (int, error)
+pkg syscall (netbsd-arm-cgo), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
+pkg syscall (netbsd-arm-cgo), func Sendto(int, []uint8, int, Sockaddr) error
+pkg syscall (netbsd-arm-cgo), func SetBpf(int, []BpfInsn) error
+pkg syscall (netbsd-arm-cgo), func SetBpfBuflen(int, int) (int, error)
+pkg syscall (netbsd-arm-cgo), func SetBpfDatalink(int, int) (int, error)
+pkg syscall (netbsd-arm-cgo), func SetBpfHeadercmpl(int, int) error
+pkg syscall (netbsd-arm-cgo), func SetBpfImmediate(int, int) error
+pkg syscall (netbsd-arm-cgo), func SetBpfInterface(int, string) error
+pkg syscall (netbsd-arm-cgo), func SetBpfPromisc(int, int) error
+pkg syscall (netbsd-arm-cgo), func SetBpfTimeout(int, *Timeval) error
+pkg syscall (netbsd-arm-cgo), func SetKevent(*Kevent_t, int, int, int)
+pkg syscall (netbsd-arm-cgo), func SetNonblock(int, bool) error
+pkg syscall (netbsd-arm-cgo), func Setegid(int) error
+pkg syscall (netbsd-arm-cgo), func Seteuid(int) error
+pkg syscall (netbsd-arm-cgo), func Setgid(int) error
+pkg syscall (netbsd-arm-cgo), func Setgroups([]int) error
+pkg syscall (netbsd-arm-cgo), func Setpgid(int, int) error
+pkg syscall (netbsd-arm-cgo), func Setpriority(int, int, int) error
+pkg syscall (netbsd-arm-cgo), func Setregid(int, int) error
+pkg syscall (netbsd-arm-cgo), func Setreuid(int, int) error
+pkg syscall (netbsd-arm-cgo), func Setrlimit(int, *Rlimit) error
+pkg syscall (netbsd-arm-cgo), func Setsid() (int, error)
+pkg syscall (netbsd-arm-cgo), func SetsockoptByte(int, int, int, uint8) error
+pkg syscall (netbsd-arm-cgo), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
+pkg syscall (netbsd-arm-cgo), func SetsockoptIPMreq(int, int, int, *IPMreq) error
+pkg syscall (netbsd-arm-cgo), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error
+pkg syscall (netbsd-arm-cgo), func SetsockoptInet4Addr(int, int, int, [4]uint8) error
+pkg syscall (netbsd-arm-cgo), func SetsockoptInt(int, int, int, int) error
+pkg syscall (netbsd-arm-cgo), func SetsockoptLinger(int, int, int, *Linger) error
+pkg syscall (netbsd-arm-cgo), func SetsockoptString(int, int, int, string) error
+pkg syscall (netbsd-arm-cgo), func SetsockoptTimeval(int, int, int, *Timeval) error
+pkg syscall (netbsd-arm-cgo), func Settimeofday(*Timeval) error
+pkg syscall (netbsd-arm-cgo), func Setuid(int) error
+pkg syscall (netbsd-arm-cgo), func Shutdown(int, int) error
+pkg syscall (netbsd-arm-cgo), func SlicePtrFromStrings([]string) ([]*uint8, error)
+pkg syscall (netbsd-arm-cgo), func Socket(int, int, int) (int, error)
+pkg syscall (netbsd-arm-cgo), func Socketpair(int, int, int) ([2]int, error)
+pkg syscall (netbsd-arm-cgo), func Stat(string, *Stat_t) error
+pkg syscall (netbsd-arm-cgo), func StringSlicePtr([]string) []*uint8
+pkg syscall (netbsd-arm-cgo), func Sync() error
+pkg syscall (netbsd-arm-cgo), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (netbsd-arm-cgo), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (netbsd-arm-cgo), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (netbsd-arm-cgo), func Sysctl(string) (string, error)
+pkg syscall (netbsd-arm-cgo), func SysctlUint32(string) (uint32, error)
+pkg syscall (netbsd-arm-cgo), func TimevalToNsec(Timeval) int64
+pkg syscall (netbsd-arm-cgo), func Truncate(string, int64) error
+pkg syscall (netbsd-arm-cgo), func Umask(int) int
+pkg syscall (netbsd-arm-cgo), func UnixRights(...int) []uint8
+pkg syscall (netbsd-arm-cgo), func Unmount(string, int) error
+pkg syscall (netbsd-arm-cgo), func Wait4(int, *WaitStatus, int, *Rusage) (int, error)
+pkg syscall (netbsd-arm-cgo), func Write(int, []uint8) (int, error)
+pkg syscall (netbsd-arm-cgo), method (*Cmsghdr) SetLen(int)
+pkg syscall (netbsd-arm-cgo), method (*Iovec) SetLen(int)
+pkg syscall (netbsd-arm-cgo), method (*Msghdr) SetControllen(int)
+pkg syscall (netbsd-arm-cgo), type BpfHdr struct
+pkg syscall (netbsd-arm-cgo), type BpfHdr struct, Caplen uint32
+pkg syscall (netbsd-arm-cgo), type BpfHdr struct, Datalen uint32
+pkg syscall (netbsd-arm-cgo), type BpfHdr struct, Hdrlen uint16
+pkg syscall (netbsd-arm-cgo), type BpfHdr struct, Pad_cgo_0 [2]uint8
+pkg syscall (netbsd-arm-cgo), type BpfHdr struct, Tstamp BpfTimeval
+pkg syscall (netbsd-arm-cgo), type BpfInsn struct
+pkg syscall (netbsd-arm-cgo), type BpfInsn struct, Code uint16
+pkg syscall (netbsd-arm-cgo), type BpfInsn struct, Jf uint8
+pkg syscall (netbsd-arm-cgo), type BpfInsn struct, Jt uint8
+pkg syscall (netbsd-arm-cgo), type BpfInsn struct, K uint32
+pkg syscall (netbsd-arm-cgo), type BpfProgram struct
+pkg syscall (netbsd-arm-cgo), type BpfProgram struct, Insns *BpfInsn
+pkg syscall (netbsd-arm-cgo), type BpfProgram struct, Len uint32
+pkg syscall (netbsd-arm-cgo), type BpfStat struct
+pkg syscall (netbsd-arm-cgo), type BpfStat struct, Capt uint64
+pkg syscall (netbsd-arm-cgo), type BpfStat struct, Drop uint64
+pkg syscall (netbsd-arm-cgo), type BpfStat struct, Padding [13]uint64
+pkg syscall (netbsd-arm-cgo), type BpfStat struct, Recv uint64
+pkg syscall (netbsd-arm-cgo), type BpfTimeval struct
+pkg syscall (netbsd-arm-cgo), type BpfTimeval struct, Sec int32
+pkg syscall (netbsd-arm-cgo), type BpfTimeval struct, Usec int32
+pkg syscall (netbsd-arm-cgo), type BpfVersion struct
+pkg syscall (netbsd-arm-cgo), type BpfVersion struct, Major uint16
+pkg syscall (netbsd-arm-cgo), type BpfVersion struct, Minor uint16
+pkg syscall (netbsd-arm-cgo), type Cmsghdr struct
+pkg syscall (netbsd-arm-cgo), type Cmsghdr struct, Len uint32
+pkg syscall (netbsd-arm-cgo), type Cmsghdr struct, Level int32
+pkg syscall (netbsd-arm-cgo), type Cmsghdr struct, Type int32
+pkg syscall (netbsd-arm-cgo), type Credential struct
+pkg syscall (netbsd-arm-cgo), type Credential struct, Gid uint32
+pkg syscall (netbsd-arm-cgo), type Credential struct, Groups []uint32
+pkg syscall (netbsd-arm-cgo), type Credential struct, Uid uint32
+pkg syscall (netbsd-arm-cgo), type Dirent struct
+pkg syscall (netbsd-arm-cgo), type Dirent struct, Fileno uint64
+pkg syscall (netbsd-arm-cgo), type Dirent struct, Name [512]int8
+pkg syscall (netbsd-arm-cgo), type Dirent struct, Namlen uint16
+pkg syscall (netbsd-arm-cgo), type Dirent struct, Pad_cgo_0 [3]uint8
+pkg syscall (netbsd-arm-cgo), type Dirent struct, Reclen uint16
+pkg syscall (netbsd-arm-cgo), type Dirent struct, Type uint8
+pkg syscall (netbsd-arm-cgo), type FdSet struct
+pkg syscall (netbsd-arm-cgo), type FdSet struct, Bits [8]uint32
+pkg syscall (netbsd-arm-cgo), type Flock_t struct
+pkg syscall (netbsd-arm-cgo), type Flock_t struct, Len int64
+pkg syscall (netbsd-arm-cgo), type Flock_t struct, Pid int32
+pkg syscall (netbsd-arm-cgo), type Flock_t struct, Start int64
+pkg syscall (netbsd-arm-cgo), type Flock_t struct, Type int16
+pkg syscall (netbsd-arm-cgo), type Flock_t struct, Whence int16
+pkg syscall (netbsd-arm-cgo), type Fsid struct
+pkg syscall (netbsd-arm-cgo), type Fsid struct, X__fsid_val [2]int32
+pkg syscall (netbsd-arm-cgo), type ICMPv6Filter struct
+pkg syscall (netbsd-arm-cgo), type ICMPv6Filter struct, Filt [8]uint32
+pkg syscall (netbsd-arm-cgo), type IPv6MTUInfo struct
+pkg syscall (netbsd-arm-cgo), type IPv6MTUInfo struct, Addr RawSockaddrInet6
+pkg syscall (netbsd-arm-cgo), type IPv6MTUInfo struct, Mtu uint32
+pkg syscall (netbsd-arm-cgo), type IfAnnounceMsghdr struct
+pkg syscall (netbsd-arm-cgo), type IfAnnounceMsghdr struct, Index uint16
+pkg syscall (netbsd-arm-cgo), type IfAnnounceMsghdr struct, Msglen uint16
+pkg syscall (netbsd-arm-cgo), type IfAnnounceMsghdr struct, Name [16]int8
+pkg syscall (netbsd-arm-cgo), type IfAnnounceMsghdr struct, Type uint8
+pkg syscall (netbsd-arm-cgo), type IfAnnounceMsghdr struct, Version uint8
+pkg syscall (netbsd-arm-cgo), type IfAnnounceMsghdr struct, What uint16
+pkg syscall (netbsd-arm-cgo), type IfData struct
+pkg syscall (netbsd-arm-cgo), type IfData struct, Addrlen uint8
+pkg syscall (netbsd-arm-cgo), type IfData struct, Baudrate uint64
+pkg syscall (netbsd-arm-cgo), type IfData struct, Collisions uint64
+pkg syscall (netbsd-arm-cgo), type IfData struct, Hdrlen uint8
+pkg syscall (netbsd-arm-cgo), type IfData struct, Ibytes uint64
+pkg syscall (netbsd-arm-cgo), type IfData struct, Ierrors uint64
+pkg syscall (netbsd-arm-cgo), type IfData struct, Imcasts uint64
+pkg syscall (netbsd-arm-cgo), type IfData struct, Ipackets uint64
+pkg syscall (netbsd-arm-cgo), type IfData struct, Iqdrops uint64
+pkg syscall (netbsd-arm-cgo), type IfData struct, Lastchange Timespec
+pkg syscall (netbsd-arm-cgo), type IfData struct, Link_state int32
+pkg syscall (netbsd-arm-cgo), type IfData struct, Metric uint64
+pkg syscall (netbsd-arm-cgo), type IfData struct, Mtu uint64
+pkg syscall (netbsd-arm-cgo), type IfData struct, Noproto uint64
+pkg syscall (netbsd-arm-cgo), type IfData struct, Obytes uint64
+pkg syscall (netbsd-arm-cgo), type IfData struct, Oerrors uint64
+pkg syscall (netbsd-arm-cgo), type IfData struct, Omcasts uint64
+pkg syscall (netbsd-arm-cgo), type IfData struct, Opackets uint64
+pkg syscall (netbsd-arm-cgo), type IfData struct, Pad_cgo_0 [1]uint8
+pkg syscall (netbsd-arm-cgo), type IfData struct, Type uint8
+pkg syscall (netbsd-arm-cgo), type IfMsghdr struct
+pkg syscall (netbsd-arm-cgo), type IfMsghdr struct, Addrs int32
+pkg syscall (netbsd-arm-cgo), type IfMsghdr struct, Data IfData
+pkg syscall (netbsd-arm-cgo), type IfMsghdr struct, Flags int32
+pkg syscall (netbsd-arm-cgo), type IfMsghdr struct, Index uint16
+pkg syscall (netbsd-arm-cgo), type IfMsghdr struct, Msglen uint16
+pkg syscall (netbsd-arm-cgo), type IfMsghdr struct, Pad_cgo_0 [2]uint8
+pkg syscall (netbsd-arm-cgo), type IfMsghdr struct, Pad_cgo_1 [4]uint8
+pkg syscall (netbsd-arm-cgo), type IfMsghdr struct, Type uint8
+pkg syscall (netbsd-arm-cgo), type IfMsghdr struct, Version uint8
+pkg syscall (netbsd-arm-cgo), type IfaMsghdr struct
+pkg syscall (netbsd-arm-cgo), type IfaMsghdr struct, Addrs int32
+pkg syscall (netbsd-arm-cgo), type IfaMsghdr struct, Flags int32
+pkg syscall (netbsd-arm-cgo), type IfaMsghdr struct, Index uint16
+pkg syscall (netbsd-arm-cgo), type IfaMsghdr struct, Metric int32
+pkg syscall (netbsd-arm-cgo), type IfaMsghdr struct, Msglen uint16
+pkg syscall (netbsd-arm-cgo), type IfaMsghdr struct, Pad_cgo_0 [6]uint8
+pkg syscall (netbsd-arm-cgo), type IfaMsghdr struct, Type uint8
+pkg syscall (netbsd-arm-cgo), type IfaMsghdr struct, Version uint8
+pkg syscall (netbsd-arm-cgo), type Inet6Pktinfo struct
+pkg syscall (netbsd-arm-cgo), type Inet6Pktinfo struct, Addr [16]uint8
+pkg syscall (netbsd-arm-cgo), type Inet6Pktinfo struct, Ifindex uint32
+pkg syscall (netbsd-arm-cgo), type InterfaceAddrMessage struct
+pkg syscall (netbsd-arm-cgo), type InterfaceAddrMessage struct, Data []uint8
+pkg syscall (netbsd-arm-cgo), type InterfaceAddrMessage struct, Header IfaMsghdr
+pkg syscall (netbsd-arm-cgo), type InterfaceAnnounceMessage struct
+pkg syscall (netbsd-arm-cgo), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr
+pkg syscall (netbsd-arm-cgo), type InterfaceMessage struct
+pkg syscall (netbsd-arm-cgo), type InterfaceMessage struct, Data []uint8
+pkg syscall (netbsd-arm-cgo), type InterfaceMessage struct, Header IfMsghdr
+pkg syscall (netbsd-arm-cgo), type Iovec struct
+pkg syscall (netbsd-arm-cgo), type Iovec struct, Base *uint8
+pkg syscall (netbsd-arm-cgo), type Iovec struct, Len uint32
+pkg syscall (netbsd-arm-cgo), type Kevent_t struct
+pkg syscall (netbsd-arm-cgo), type Kevent_t struct, Data int64
+pkg syscall (netbsd-arm-cgo), type Kevent_t struct, Fflags uint32
+pkg syscall (netbsd-arm-cgo), type Kevent_t struct, Filter uint32
+pkg syscall (netbsd-arm-cgo), type Kevent_t struct, Flags uint32
+pkg syscall (netbsd-arm-cgo), type Kevent_t struct, Ident uint32
+pkg syscall (netbsd-arm-cgo), type Kevent_t struct, Udata int32
+pkg syscall (netbsd-arm-cgo), type Mclpool [0]uint8
+pkg syscall (netbsd-arm-cgo), type Msghdr struct
+pkg syscall (netbsd-arm-cgo), type Msghdr struct, Control *uint8
+pkg syscall (netbsd-arm-cgo), type Msghdr struct, Controllen uint32
+pkg syscall (netbsd-arm-cgo), type Msghdr struct, Flags int32
+pkg syscall (netbsd-arm-cgo), type Msghdr struct, Iov *Iovec
+pkg syscall (netbsd-arm-cgo), type Msghdr struct, Iovlen int32
+pkg syscall (netbsd-arm-cgo), type Msghdr struct, Name *uint8
+pkg syscall (netbsd-arm-cgo), type Msghdr struct, Namelen uint32
+pkg syscall (netbsd-arm-cgo), type RawSockaddr struct, Data [14]int8
+pkg syscall (netbsd-arm-cgo), type RawSockaddr struct, Family uint8
+pkg syscall (netbsd-arm-cgo), type RawSockaddr struct, Len uint8
+pkg syscall (netbsd-arm-cgo), type RawSockaddrAny struct, Pad [92]int8
+pkg syscall (netbsd-arm-cgo), type RawSockaddrDatalink struct
+pkg syscall (netbsd-arm-cgo), type RawSockaddrDatalink struct, Alen uint8
+pkg syscall (netbsd-arm-cgo), type RawSockaddrDatalink struct, Data [12]int8
+pkg syscall (netbsd-arm-cgo), type RawSockaddrDatalink struct, Family uint8
+pkg syscall (netbsd-arm-cgo), type RawSockaddrDatalink struct, Index uint16
+pkg syscall (netbsd-arm-cgo), type RawSockaddrDatalink struct, Len uint8
+pkg syscall (netbsd-arm-cgo), type RawSockaddrDatalink struct, Nlen uint8
+pkg syscall (netbsd-arm-cgo), type RawSockaddrDatalink struct, Slen uint8
+pkg syscall (netbsd-arm-cgo), type RawSockaddrDatalink struct, Type uint8
+pkg syscall (netbsd-arm-cgo), type RawSockaddrInet4 struct, Family uint8
+pkg syscall (netbsd-arm-cgo), type RawSockaddrInet4 struct, Len uint8
+pkg syscall (netbsd-arm-cgo), type RawSockaddrInet4 struct, Zero [8]int8
+pkg syscall (netbsd-arm-cgo), type RawSockaddrInet6 struct, Family uint8
+pkg syscall (netbsd-arm-cgo), type RawSockaddrInet6 struct, Len uint8
+pkg syscall (netbsd-arm-cgo), type RawSockaddrUnix struct
+pkg syscall (netbsd-arm-cgo), type RawSockaddrUnix struct, Family uint8
+pkg syscall (netbsd-arm-cgo), type RawSockaddrUnix struct, Len uint8
+pkg syscall (netbsd-arm-cgo), type RawSockaddrUnix struct, Path [104]int8
+pkg syscall (netbsd-arm-cgo), type Rlimit struct
+pkg syscall (netbsd-arm-cgo), type Rlimit struct, Cur uint64
+pkg syscall (netbsd-arm-cgo), type Rlimit struct, Max uint64
+pkg syscall (netbsd-arm-cgo), type RouteMessage struct
+pkg syscall (netbsd-arm-cgo), type RouteMessage struct, Data []uint8
+pkg syscall (netbsd-arm-cgo), type RouteMessage struct, Header RtMsghdr
+pkg syscall (netbsd-arm-cgo), type RoutingMessage interface, unexported methods
+pkg syscall (netbsd-arm-cgo), type RtMetrics struct
+pkg syscall (netbsd-arm-cgo), type RtMetrics struct, Expire int64
+pkg syscall (netbsd-arm-cgo), type RtMetrics struct, Hopcount uint64
+pkg syscall (netbsd-arm-cgo), type RtMetrics struct, Locks uint64
+pkg syscall (netbsd-arm-cgo), type RtMetrics struct, Mtu uint64
+pkg syscall (netbsd-arm-cgo), type RtMetrics struct, Pksent int64
+pkg syscall (netbsd-arm-cgo), type RtMetrics struct, Recvpipe uint64
+pkg syscall (netbsd-arm-cgo), type RtMetrics struct, Rtt uint64
+pkg syscall (netbsd-arm-cgo), type RtMetrics struct, Rttvar uint64
+pkg syscall (netbsd-arm-cgo), type RtMetrics struct, Sendpipe uint64
+pkg syscall (netbsd-arm-cgo), type RtMetrics struct, Ssthresh uint64
+pkg syscall (netbsd-arm-cgo), type RtMsghdr struct
+pkg syscall (netbsd-arm-cgo), type RtMsghdr struct, Addrs int32
+pkg syscall (netbsd-arm-cgo), type RtMsghdr struct, Errno int32
+pkg syscall (netbsd-arm-cgo), type RtMsghdr struct, Flags int32
+pkg syscall (netbsd-arm-cgo), type RtMsghdr struct, Index uint16
+pkg syscall (netbsd-arm-cgo), type RtMsghdr struct, Inits int32
+pkg syscall (netbsd-arm-cgo), type RtMsghdr struct, Msglen uint16
+pkg syscall (netbsd-arm-cgo), type RtMsghdr struct, Pad_cgo_0 [2]uint8
+pkg syscall (netbsd-arm-cgo), type RtMsghdr struct, Pad_cgo_1 [4]uint8
+pkg syscall (netbsd-arm-cgo), type RtMsghdr struct, Pid int32
+pkg syscall (netbsd-arm-cgo), type RtMsghdr struct, Rmx RtMetrics
+pkg syscall (netbsd-arm-cgo), type RtMsghdr struct, Seq int32
+pkg syscall (netbsd-arm-cgo), type RtMsghdr struct, Type uint8
+pkg syscall (netbsd-arm-cgo), type RtMsghdr struct, Use int32
+pkg syscall (netbsd-arm-cgo), type RtMsghdr struct, Version uint8
+pkg syscall (netbsd-arm-cgo), type Rusage struct, Idrss int32
+pkg syscall (netbsd-arm-cgo), type Rusage struct, Inblock int32
+pkg syscall (netbsd-arm-cgo), type Rusage struct, Isrss int32
+pkg syscall (netbsd-arm-cgo), type Rusage struct, Ixrss int32
+pkg syscall (netbsd-arm-cgo), type Rusage struct, Majflt int32
+pkg syscall (netbsd-arm-cgo), type Rusage struct, Maxrss int32
+pkg syscall (netbsd-arm-cgo), type Rusage struct, Minflt int32
+pkg syscall (netbsd-arm-cgo), type Rusage struct, Msgrcv int32
+pkg syscall (netbsd-arm-cgo), type Rusage struct, Msgsnd int32
+pkg syscall (netbsd-arm-cgo), type Rusage struct, Nivcsw int32
+pkg syscall (netbsd-arm-cgo), type Rusage struct, Nsignals int32
+pkg syscall (netbsd-arm-cgo), type Rusage struct, Nswap int32
+pkg syscall (netbsd-arm-cgo), type Rusage struct, Nvcsw int32
+pkg syscall (netbsd-arm-cgo), type Rusage struct, Oublock int32
+pkg syscall (netbsd-arm-cgo), type Rusage struct, Stime Timeval
+pkg syscall (netbsd-arm-cgo), type Rusage struct, Utime Timeval
+pkg syscall (netbsd-arm-cgo), type SockaddrDatalink struct
+pkg syscall (netbsd-arm-cgo), type SockaddrDatalink struct, Alen uint8
+pkg syscall (netbsd-arm-cgo), type SockaddrDatalink struct, Data [12]int8
+pkg syscall (netbsd-arm-cgo), type SockaddrDatalink struct, Family uint8
+pkg syscall (netbsd-arm-cgo), type SockaddrDatalink struct, Index uint16
+pkg syscall (netbsd-arm-cgo), type SockaddrDatalink struct, Len uint8
+pkg syscall (netbsd-arm-cgo), type SockaddrDatalink struct, Nlen uint8
+pkg syscall (netbsd-arm-cgo), type SockaddrDatalink struct, Slen uint8
+pkg syscall (netbsd-arm-cgo), type SockaddrDatalink struct, Type uint8
+pkg syscall (netbsd-arm-cgo), type SocketControlMessage struct
+pkg syscall (netbsd-arm-cgo), type SocketControlMessage struct, Data []uint8
+pkg syscall (netbsd-arm-cgo), type SocketControlMessage struct, Header Cmsghdr
+pkg syscall (netbsd-arm-cgo), type Stat_t struct
+pkg syscall (netbsd-arm-cgo), type Stat_t struct, Atimespec Timespec
+pkg syscall (netbsd-arm-cgo), type Stat_t struct, Birthtimespec Timespec
+pkg syscall (netbsd-arm-cgo), type Stat_t struct, Blksize uint32
+pkg syscall (netbsd-arm-cgo), type Stat_t struct, Blocks int64
+pkg syscall (netbsd-arm-cgo), type Stat_t struct, Ctimespec Timespec
+pkg syscall (netbsd-arm-cgo), type Stat_t struct, Dev uint64
+pkg syscall (netbsd-arm-cgo), type Stat_t struct, Flags uint32
+pkg syscall (netbsd-arm-cgo), type Stat_t struct, Gen uint32
+pkg syscall (netbsd-arm-cgo), type Stat_t struct, Gid uint32
+pkg syscall (netbsd-arm-cgo), type Stat_t struct, Ino uint64
+pkg syscall (netbsd-arm-cgo), type Stat_t struct, Mode uint32
+pkg syscall (netbsd-arm-cgo), type Stat_t struct, Mtimespec Timespec
+pkg syscall (netbsd-arm-cgo), type Stat_t struct, Nlink uint32
+pkg syscall (netbsd-arm-cgo), type Stat_t struct, Rdev uint64
+pkg syscall (netbsd-arm-cgo), type Stat_t struct, Size int64
+pkg syscall (netbsd-arm-cgo), type Stat_t struct, Spare [2]uint32
+pkg syscall (netbsd-arm-cgo), type Stat_t struct, Uid uint32
+pkg syscall (netbsd-arm-cgo), type Statfs_t [0]uint8
+pkg syscall (netbsd-arm-cgo), type SysProcAttr struct, Chroot string
+pkg syscall (netbsd-arm-cgo), type SysProcAttr struct, Credential *Credential
+pkg syscall (netbsd-arm-cgo), type SysProcAttr struct, Noctty bool
+pkg syscall (netbsd-arm-cgo), type SysProcAttr struct, Ptrace bool
+pkg syscall (netbsd-arm-cgo), type SysProcAttr struct, Setctty bool
+pkg syscall (netbsd-arm-cgo), type SysProcAttr struct, Setpgid bool
+pkg syscall (netbsd-arm-cgo), type SysProcAttr struct, Setsid bool
+pkg syscall (netbsd-arm-cgo), type Sysctlnode struct
+pkg syscall (netbsd-arm-cgo), type Sysctlnode struct, Flags uint32
+pkg syscall (netbsd-arm-cgo), type Sysctlnode struct, Name [32]int8
+pkg syscall (netbsd-arm-cgo), type Sysctlnode struct, Num int32
+pkg syscall (netbsd-arm-cgo), type Sysctlnode struct, Un [16]uint8
+pkg syscall (netbsd-arm-cgo), type Sysctlnode struct, Ver uint32
+pkg syscall (netbsd-arm-cgo), type Sysctlnode struct, X__rsvd uint32
+pkg syscall (netbsd-arm-cgo), type Sysctlnode struct, X_sysctl_desc [8]uint8
+pkg syscall (netbsd-arm-cgo), type Sysctlnode struct, X_sysctl_func [8]uint8
+pkg syscall (netbsd-arm-cgo), type Sysctlnode struct, X_sysctl_parent [8]uint8
+pkg syscall (netbsd-arm-cgo), type Sysctlnode struct, X_sysctl_size [8]uint8
+pkg syscall (netbsd-arm-cgo), type Timespec struct, Nsec int32
+pkg syscall (netbsd-arm-cgo), type Timespec struct, Sec int64
+pkg syscall (netbsd-arm-cgo), type Timeval struct, Sec int64
+pkg syscall (netbsd-arm-cgo), type Timeval struct, Usec int32
+pkg syscall (netbsd-arm-cgo), type WaitStatus uint32
+pkg syscall (netbsd-arm-cgo), var Stderr int
+pkg syscall (netbsd-arm-cgo), var Stdin int
+pkg syscall (netbsd-arm-cgo), var Stdout int
+pkg syscall (openbsd-386), const AF_APPLETALK ideal-int
+pkg syscall (openbsd-386), const AF_BLUETOOTH ideal-int
+pkg syscall (openbsd-386), const AF_CCITT ideal-int
+pkg syscall (openbsd-386), const AF_CHAOS ideal-int
+pkg syscall (openbsd-386), const AF_CNT ideal-int
+pkg syscall (openbsd-386), const AF_COIP ideal-int
+pkg syscall (openbsd-386), const AF_DATAKIT ideal-int
+pkg syscall (openbsd-386), const AF_DECnet ideal-int
+pkg syscall (openbsd-386), const AF_DLI ideal-int
+pkg syscall (openbsd-386), const AF_E164 ideal-int
+pkg syscall (openbsd-386), const AF_ECMA ideal-int
+pkg syscall (openbsd-386), const AF_ENCAP ideal-int
+pkg syscall (openbsd-386), const AF_HYLINK ideal-int
+pkg syscall (openbsd-386), const AF_IMPLINK ideal-int
+pkg syscall (openbsd-386), const AF_IPX ideal-int
+pkg syscall (openbsd-386), const AF_ISDN ideal-int
+pkg syscall (openbsd-386), const AF_ISO ideal-int
+pkg syscall (openbsd-386), const AF_KEY ideal-int
+pkg syscall (openbsd-386), const AF_LAT ideal-int
+pkg syscall (openbsd-386), const AF_LINK ideal-int
+pkg syscall (openbsd-386), const AF_LOCAL ideal-int
+pkg syscall (openbsd-386), const AF_MAX ideal-int
+pkg syscall (openbsd-386), const AF_MPLS ideal-int
+pkg syscall (openbsd-386), const AF_NATM ideal-int
+pkg syscall (openbsd-386), const AF_NS ideal-int
+pkg syscall (openbsd-386), const AF_OSI ideal-int
+pkg syscall (openbsd-386), const AF_PUP ideal-int
+pkg syscall (openbsd-386), const AF_ROUTE ideal-int
+pkg syscall (openbsd-386), const AF_SIP ideal-int
+pkg syscall (openbsd-386), const AF_SNA ideal-int
+pkg syscall (openbsd-386), const ARPHRD_ETHER ideal-int
+pkg syscall (openbsd-386), const ARPHRD_FRELAY ideal-int
+pkg syscall (openbsd-386), const ARPHRD_IEEE1394 ideal-int
+pkg syscall (openbsd-386), const ARPHRD_IEEE802 ideal-int
+pkg syscall (openbsd-386), const B0 ideal-int
+pkg syscall (openbsd-386), const B110 ideal-int
+pkg syscall (openbsd-386), const B115200 ideal-int
+pkg syscall (openbsd-386), const B1200 ideal-int
+pkg syscall (openbsd-386), const B134 ideal-int
+pkg syscall (openbsd-386), const B14400 ideal-int
+pkg syscall (openbsd-386), const B150 ideal-int
+pkg syscall (openbsd-386), const B1800 ideal-int
+pkg syscall (openbsd-386), const B19200 ideal-int
+pkg syscall (openbsd-386), const B200 ideal-int
+pkg syscall (openbsd-386), const B230400 ideal-int
+pkg syscall (openbsd-386), const B2400 ideal-int
+pkg syscall (openbsd-386), const B28800 ideal-int
+pkg syscall (openbsd-386), const B300 ideal-int
+pkg syscall (openbsd-386), const B38400 ideal-int
+pkg syscall (openbsd-386), const B4800 ideal-int
+pkg syscall (openbsd-386), const B50 ideal-int
+pkg syscall (openbsd-386), const B57600 ideal-int
+pkg syscall (openbsd-386), const B600 ideal-int
+pkg syscall (openbsd-386), const B7200 ideal-int
+pkg syscall (openbsd-386), const B75 ideal-int
+pkg syscall (openbsd-386), const B76800 ideal-int
+pkg syscall (openbsd-386), const B9600 ideal-int
+pkg syscall (openbsd-386), const BIOCFLUSH ideal-int
+pkg syscall (openbsd-386), const BIOCGBLEN ideal-int
+pkg syscall (openbsd-386), const BIOCGDIRFILT ideal-int
+pkg syscall (openbsd-386), const BIOCGDLT ideal-int
+pkg syscall (openbsd-386), const BIOCGDLTLIST ideal-int
+pkg syscall (openbsd-386), const BIOCGETIF ideal-int
+pkg syscall (openbsd-386), const BIOCGFILDROP ideal-int
+pkg syscall (openbsd-386), const BIOCGHDRCMPLT ideal-int
+pkg syscall (openbsd-386), const BIOCGRSIG ideal-int
+pkg syscall (openbsd-386), const BIOCGRTIMEOUT ideal-int
+pkg syscall (openbsd-386), const BIOCGSTATS ideal-int
+pkg syscall (openbsd-386), const BIOCIMMEDIATE ideal-int
+pkg syscall (openbsd-386), const BIOCLOCK ideal-int
+pkg syscall (openbsd-386), const BIOCPROMISC ideal-int
+pkg syscall (openbsd-386), const BIOCSBLEN ideal-int
+pkg syscall (openbsd-386), const BIOCSDIRFILT ideal-int
+pkg syscall (openbsd-386), const BIOCSDLT ideal-int
+pkg syscall (openbsd-386), const BIOCSETF ideal-int
+pkg syscall (openbsd-386), const BIOCSETIF ideal-int
+pkg syscall (openbsd-386), const BIOCSETWF ideal-int
+pkg syscall (openbsd-386), const BIOCSFILDROP ideal-int
+pkg syscall (openbsd-386), const BIOCSHDRCMPLT ideal-int
+pkg syscall (openbsd-386), const BIOCSRSIG ideal-int
+pkg syscall (openbsd-386), const BIOCSRTIMEOUT ideal-int
+pkg syscall (openbsd-386), const BIOCVERSION ideal-int
+pkg syscall (openbsd-386), const BPF_A ideal-int
+pkg syscall (openbsd-386), const BPF_ABS ideal-int
+pkg syscall (openbsd-386), const BPF_ADD ideal-int
+pkg syscall (openbsd-386), const BPF_ALIGNMENT ideal-int
+pkg syscall (openbsd-386), const BPF_ALU ideal-int
+pkg syscall (openbsd-386), const BPF_AND ideal-int
+pkg syscall (openbsd-386), const BPF_B ideal-int
+pkg syscall (openbsd-386), const BPF_DIRECTION_IN ideal-int
+pkg syscall (openbsd-386), const BPF_DIRECTION_OUT ideal-int
+pkg syscall (openbsd-386), const BPF_DIV ideal-int
+pkg syscall (openbsd-386), const BPF_H ideal-int
+pkg syscall (openbsd-386), const BPF_IMM ideal-int
+pkg syscall (openbsd-386), const BPF_IND ideal-int
+pkg syscall (openbsd-386), const BPF_JA ideal-int
+pkg syscall (openbsd-386), const BPF_JEQ ideal-int
+pkg syscall (openbsd-386), const BPF_JGE ideal-int
+pkg syscall (openbsd-386), const BPF_JGT ideal-int
+pkg syscall (openbsd-386), const BPF_JMP ideal-int
+pkg syscall (openbsd-386), const BPF_JSET ideal-int
+pkg syscall (openbsd-386), const BPF_K ideal-int
+pkg syscall (openbsd-386), const BPF_LD ideal-int
+pkg syscall (openbsd-386), const BPF_LDX ideal-int
+pkg syscall (openbsd-386), const BPF_LEN ideal-int
+pkg syscall (openbsd-386), const BPF_LSH ideal-int
+pkg syscall (openbsd-386), const BPF_MAJOR_VERSION ideal-int
+pkg syscall (openbsd-386), const BPF_MAXBUFSIZE ideal-int
+pkg syscall (openbsd-386), const BPF_MAXINSNS ideal-int
+pkg syscall (openbsd-386), const BPF_MEM ideal-int
+pkg syscall (openbsd-386), const BPF_MEMWORDS ideal-int
+pkg syscall (openbsd-386), const BPF_MINBUFSIZE ideal-int
+pkg syscall (openbsd-386), const BPF_MINOR_VERSION ideal-int
+pkg syscall (openbsd-386), const BPF_MISC ideal-int
+pkg syscall (openbsd-386), const BPF_MSH ideal-int
+pkg syscall (openbsd-386), const BPF_MUL ideal-int
+pkg syscall (openbsd-386), const BPF_NEG ideal-int
+pkg syscall (openbsd-386), const BPF_OR ideal-int
+pkg syscall (openbsd-386), const BPF_RELEASE ideal-int
+pkg syscall (openbsd-386), const BPF_RET ideal-int
+pkg syscall (openbsd-386), const BPF_RSH ideal-int
+pkg syscall (openbsd-386), const BPF_ST ideal-int
+pkg syscall (openbsd-386), const BPF_STX ideal-int
+pkg syscall (openbsd-386), const BPF_SUB ideal-int
+pkg syscall (openbsd-386), const BPF_TAX ideal-int
+pkg syscall (openbsd-386), const BPF_TXA ideal-int
+pkg syscall (openbsd-386), const BPF_W ideal-int
+pkg syscall (openbsd-386), const BPF_X ideal-int
+pkg syscall (openbsd-386), const BRKINT ideal-int
+pkg syscall (openbsd-386), const CFLUSH ideal-int
+pkg syscall (openbsd-386), const CLOCAL ideal-int
+pkg syscall (openbsd-386), const CREAD ideal-int
+pkg syscall (openbsd-386), const CS5 ideal-int
+pkg syscall (openbsd-386), const CS6 ideal-int
+pkg syscall (openbsd-386), const CS7 ideal-int
+pkg syscall (openbsd-386), const CS8 ideal-int
+pkg syscall (openbsd-386), const CSIZE ideal-int
+pkg syscall (openbsd-386), const CSTART ideal-int
+pkg syscall (openbsd-386), const CSTATUS ideal-int
+pkg syscall (openbsd-386), const CSTOP ideal-int
+pkg syscall (openbsd-386), const CSTOPB ideal-int
+pkg syscall (openbsd-386), const CSUSP ideal-int
+pkg syscall (openbsd-386), const CTL_MAXNAME ideal-int
+pkg syscall (openbsd-386), const CTL_NET ideal-int
+pkg syscall (openbsd-386), const DIOCOSFPFLUSH ideal-int
+pkg syscall (openbsd-386), const DLT_ARCNET ideal-int
+pkg syscall (openbsd-386), const DLT_ATM_RFC1483 ideal-int
+pkg syscall (openbsd-386), const DLT_AX25 ideal-int
+pkg syscall (openbsd-386), const DLT_CHAOS ideal-int
+pkg syscall (openbsd-386), const DLT_C_HDLC ideal-int
+pkg syscall (openbsd-386), const DLT_EN10MB ideal-int
+pkg syscall (openbsd-386), const DLT_EN3MB ideal-int
+pkg syscall (openbsd-386), const DLT_ENC ideal-int
+pkg syscall (openbsd-386), const DLT_FDDI ideal-int
+pkg syscall (openbsd-386), const DLT_IEEE802 ideal-int
+pkg syscall (openbsd-386), const DLT_IEEE802_11 ideal-int
+pkg syscall (openbsd-386), const DLT_IEEE802_11_RADIO ideal-int
+pkg syscall (openbsd-386), const DLT_LOOP ideal-int
+pkg syscall (openbsd-386), const DLT_MPLS ideal-int
+pkg syscall (openbsd-386), const DLT_NULL ideal-int
+pkg syscall (openbsd-386), const DLT_PFLOG ideal-int
+pkg syscall (openbsd-386), const DLT_PFSYNC ideal-int
+pkg syscall (openbsd-386), const DLT_PPP ideal-int
+pkg syscall (openbsd-386), const DLT_PPP_BSDOS ideal-int
+pkg syscall (openbsd-386), const DLT_PPP_ETHER ideal-int
+pkg syscall (openbsd-386), const DLT_PPP_SERIAL ideal-int
+pkg syscall (openbsd-386), const DLT_PRONET ideal-int
+pkg syscall (openbsd-386), const DLT_RAW ideal-int
+pkg syscall (openbsd-386), const DLT_SLIP ideal-int
+pkg syscall (openbsd-386), const DLT_SLIP_BSDOS ideal-int
+pkg syscall (openbsd-386), const DT_BLK ideal-int
+pkg syscall (openbsd-386), const DT_CHR ideal-int
+pkg syscall (openbsd-386), const DT_DIR ideal-int
+pkg syscall (openbsd-386), const DT_FIFO ideal-int
+pkg syscall (openbsd-386), const DT_LNK ideal-int
+pkg syscall (openbsd-386), const DT_REG ideal-int
+pkg syscall (openbsd-386), const DT_SOCK ideal-int
+pkg syscall (openbsd-386), const DT_UNKNOWN ideal-int
+pkg syscall (openbsd-386), const EAUTH Errno
+pkg syscall (openbsd-386), const EBADRPC Errno
+pkg syscall (openbsd-386), const ECHO ideal-int
+pkg syscall (openbsd-386), const ECHOCTL ideal-int
+pkg syscall (openbsd-386), const ECHOE ideal-int
+pkg syscall (openbsd-386), const ECHOK ideal-int
+pkg syscall (openbsd-386), const ECHOKE ideal-int
+pkg syscall (openbsd-386), const ECHONL ideal-int
+pkg syscall (openbsd-386), const ECHOPRT ideal-int
+pkg syscall (openbsd-386), const EFTYPE Errno
+pkg syscall (openbsd-386), const EIPSEC Errno
+pkg syscall (openbsd-386), const ELAST Errno
+pkg syscall (openbsd-386), const EMEDIUMTYPE Errno
+pkg syscall (openbsd-386), const EMT_TAGOVF ideal-int
+pkg syscall (openbsd-386), const EMUL_ENABLED ideal-int
+pkg syscall (openbsd-386), const EMUL_NATIVE ideal-int
+pkg syscall (openbsd-386), const ENDRUNDISC ideal-int
+pkg syscall (openbsd-386), const ENEEDAUTH Errno
+pkg syscall (openbsd-386), const ENOATTR Errno
+pkg syscall (openbsd-386), const ENOMEDIUM Errno
+pkg syscall (openbsd-386), const EPROCLIM Errno
+pkg syscall (openbsd-386), const EPROCUNAVAIL Errno
+pkg syscall (openbsd-386), const EPROGMISMATCH Errno
+pkg syscall (openbsd-386), const EPROGUNAVAIL Errno
+pkg syscall (openbsd-386), const ERPCMISMATCH Errno
+pkg syscall (openbsd-386), const ETHERMIN ideal-int
+pkg syscall (openbsd-386), const ETHERMTU ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_8023 ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_AARP ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_ACCTON ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_AEONIC ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_ALPHA ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_AMBER ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_AMOEBA ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_AOE ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_APOLLO ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_APOLLODOMAIN ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_APPLETALK ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_APPLITEK ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_ARGONAUT ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_ARP ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_AT ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_ATALK ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_ATOMIC ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_ATT ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_ATTSTANFORD ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_AUTOPHON ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_AXIS ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_BCLOOP ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_BOFL ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_CABLETRON ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_CHAOS ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_COMDESIGN ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_COMPUGRAPHIC ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_COUNTERPOINT ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_CRONUS ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_CRONUSVLN ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_DCA ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_DDE ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_DEBNI ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_DECAM ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_DECCUST ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_DECDIAG ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_DECDNS ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_DECDTS ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_DECEXPER ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_DECLAST ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_DECLTM ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_DECMUMPS ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_DECNETBIOS ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_DELTACON ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_DIDDLE ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_DLOG1 ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_DLOG2 ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_DN ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_DOGFIGHT ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_DSMD ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_ECMA ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_ENCRYPT ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_ES ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_EXCELAN ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_EXPERDATA ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_FLIP ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_FLOWCONTROL ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_FRARP ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_GENDYN ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_HAYES ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_HIPPI_FP ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_HITACHI ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_HP ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_IEEEPUP ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_IEEEPUPAT ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_IMLBL ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_IMLBLDIAG ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_IP ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_IPAS ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_IPV6 ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_IPX ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_IPXNEW ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_KALPANA ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_LANBRIDGE ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_LANPROBE ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_LAT ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_LBACK ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_LITTLE ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_LLDP ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_LOGICRAFT ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_LOOPBACK ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_MATRA ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_MAX ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_MERIT ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_MICP ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_MOPDL ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_MOPRC ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_MOTOROLA ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_MPLS ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_MPLS_MCAST ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_MUMPS ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_NBPCC ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_NBPCLAIM ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_NBPCLREQ ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_NBPCLRSP ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_NBPCREQ ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_NBPCRSP ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_NBPDG ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_NBPDGB ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_NBPDLTE ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_NBPRAR ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_NBPRAS ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_NBPRST ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_NBPSCD ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_NBPVCD ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_NBS ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_NCD ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_NESTAR ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_NETBEUI ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_NOVELL ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_NS ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_NSAT ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_NSCOMPAT ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_NTRAILER ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_OS9 ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_OS9NET ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_PACER ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_PAE ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_PCS ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_PLANNING ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_PPP ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_PPPOE ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_PPPOEDISC ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_PRIMENTS ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_PUP ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_PUPAT ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_QINQ ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_RACAL ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_RATIONAL ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_RAWFR ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_RCL ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_RDP ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_RETIX ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_REVARP ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_SCA ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_SECTRA ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_SECUREDATA ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_SGITW ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_SG_BOUNCE ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_SG_DIAG ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_SG_NETGAMES ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_SG_RESV ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_SIMNET ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_SLOW ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_SNA ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_SNMP ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_SONIX ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_SPIDER ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_SPRITE ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_STP ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_TALARIS ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_TALARISMC ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_TCPCOMP ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_TCPSM ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_TEC ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_TIGAN ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_TRAIL ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_TRANSETHER ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_TYMSHARE ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_UBBST ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_UBDEBUG ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_UBDIAGLOOP ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_UBDL ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_UBNIU ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_UBNMC ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_VALID ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_VARIAN ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_VAXELN ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_VEECO ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_VEXP ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_VGLAB ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_VINES ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_VINESECHO ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_VINESLOOP ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_VITAL ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_VLAN ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_VLTLMAN ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_VPROD ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_VURESERVED ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_WATERLOO ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_WELLFLEET ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_X25 ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_X75 ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_XNSSM ideal-int
+pkg syscall (openbsd-386), const ETHERTYPE_XTP ideal-int
+pkg syscall (openbsd-386), const ETHER_ADDR_LEN ideal-int
+pkg syscall (openbsd-386), const ETHER_ALIGN ideal-int
+pkg syscall (openbsd-386), const ETHER_CRC_LEN ideal-int
+pkg syscall (openbsd-386), const ETHER_CRC_POLY_BE ideal-int
+pkg syscall (openbsd-386), const ETHER_CRC_POLY_LE ideal-int
+pkg syscall (openbsd-386), const ETHER_HDR_LEN ideal-int
+pkg syscall (openbsd-386), const ETHER_MAX_DIX_LEN ideal-int
+pkg syscall (openbsd-386), const ETHER_MAX_LEN ideal-int
+pkg syscall (openbsd-386), const ETHER_MIN_LEN ideal-int
+pkg syscall (openbsd-386), const ETHER_TYPE_LEN ideal-int
+pkg syscall (openbsd-386), const ETHER_VLAN_ENCAP_LEN ideal-int
+pkg syscall (openbsd-386), const EVFILT_AIO ideal-int
+pkg syscall (openbsd-386), const EVFILT_PROC ideal-int
+pkg syscall (openbsd-386), const EVFILT_READ ideal-int
+pkg syscall (openbsd-386), const EVFILT_SIGNAL ideal-int
+pkg syscall (openbsd-386), const EVFILT_SYSCOUNT ideal-int
+pkg syscall (openbsd-386), const EVFILT_TIMER ideal-int
+pkg syscall (openbsd-386), const EVFILT_VNODE ideal-int
+pkg syscall (openbsd-386), const EVFILT_WRITE ideal-int
+pkg syscall (openbsd-386), const EV_ADD ideal-int
+pkg syscall (openbsd-386), const EV_CLEAR ideal-int
+pkg syscall (openbsd-386), const EV_DELETE ideal-int
+pkg syscall (openbsd-386), const EV_DISABLE ideal-int
+pkg syscall (openbsd-386), const EV_ENABLE ideal-int
+pkg syscall (openbsd-386), const EV_EOF ideal-int
+pkg syscall (openbsd-386), const EV_ERROR ideal-int
+pkg syscall (openbsd-386), const EV_FLAG1 ideal-int
+pkg syscall (openbsd-386), const EV_ONESHOT ideal-int
+pkg syscall (openbsd-386), const EV_SYSFLAGS ideal-int
+pkg syscall (openbsd-386), const EXTA ideal-int
+pkg syscall (openbsd-386), const EXTB ideal-int
+pkg syscall (openbsd-386), const EXTPROC ideal-int
+pkg syscall (openbsd-386), const FD_CLOEXEC ideal-int
+pkg syscall (openbsd-386), const FD_SETSIZE ideal-int
+pkg syscall (openbsd-386), const FLUSHO ideal-int
+pkg syscall (openbsd-386), const F_DUPFD ideal-int
+pkg syscall (openbsd-386), const F_DUPFD_CLOEXEC ideal-int
+pkg syscall (openbsd-386), const F_GETFD ideal-int
+pkg syscall (openbsd-386), const F_GETFL ideal-int
+pkg syscall (openbsd-386), const F_GETLK ideal-int
+pkg syscall (openbsd-386), const F_GETOWN ideal-int
+pkg syscall (openbsd-386), const F_OK ideal-int
+pkg syscall (openbsd-386), const F_RDLCK ideal-int
+pkg syscall (openbsd-386), const F_SETFD ideal-int
+pkg syscall (openbsd-386), const F_SETFL ideal-int
+pkg syscall (openbsd-386), const F_SETLK ideal-int
+pkg syscall (openbsd-386), const F_SETLKW ideal-int
+pkg syscall (openbsd-386), const F_SETOWN ideal-int
+pkg syscall (openbsd-386), const F_UNLCK ideal-int
+pkg syscall (openbsd-386), const F_WRLCK ideal-int
+pkg syscall (openbsd-386), const HUPCL ideal-int
+pkg syscall (openbsd-386), const ICANON ideal-int
+pkg syscall (openbsd-386), const ICMP6_FILTER = 18
+pkg syscall (openbsd-386), const ICMP6_FILTER ideal-int
+pkg syscall (openbsd-386), const ICRNL ideal-int
+pkg syscall (openbsd-386), const IEXTEN ideal-int
+pkg syscall (openbsd-386), const IFAN_ARRIVAL ideal-int
+pkg syscall (openbsd-386), const IFAN_DEPARTURE ideal-int
+pkg syscall (openbsd-386), const IFA_ROUTE ideal-int
+pkg syscall (openbsd-386), const IFF_ALLMULTI ideal-int
+pkg syscall (openbsd-386), const IFF_CANTCHANGE ideal-int
+pkg syscall (openbsd-386), const IFF_DEBUG ideal-int
+pkg syscall (openbsd-386), const IFF_LINK0 ideal-int
+pkg syscall (openbsd-386), const IFF_LINK1 ideal-int
+pkg syscall (openbsd-386), const IFF_LINK2 ideal-int
+pkg syscall (openbsd-386), const IFF_NOARP ideal-int
+pkg syscall (openbsd-386), const IFF_NOTRAILERS ideal-int
+pkg syscall (openbsd-386), const IFF_OACTIVE ideal-int
+pkg syscall (openbsd-386), const IFF_POINTOPOINT ideal-int
+pkg syscall (openbsd-386), const IFF_PROMISC ideal-int
+pkg syscall (openbsd-386), const IFF_RUNNING ideal-int
+pkg syscall (openbsd-386), const IFF_SIMPLEX ideal-int
+pkg syscall (openbsd-386), const IFNAMSIZ ideal-int
+pkg syscall (openbsd-386), const IFT_1822 ideal-int
+pkg syscall (openbsd-386), const IFT_A12MPPSWITCH ideal-int
+pkg syscall (openbsd-386), const IFT_AAL2 ideal-int
+pkg syscall (openbsd-386), const IFT_AAL5 ideal-int
+pkg syscall (openbsd-386), const IFT_ADSL ideal-int
+pkg syscall (openbsd-386), const IFT_AFLANE8023 ideal-int
+pkg syscall (openbsd-386), const IFT_AFLANE8025 ideal-int
+pkg syscall (openbsd-386), const IFT_ARAP ideal-int
+pkg syscall (openbsd-386), const IFT_ARCNET ideal-int
+pkg syscall (openbsd-386), const IFT_ARCNETPLUS ideal-int
+pkg syscall (openbsd-386), const IFT_ASYNC ideal-int
+pkg syscall (openbsd-386), const IFT_ATM ideal-int
+pkg syscall (openbsd-386), const IFT_ATMDXI ideal-int
+pkg syscall (openbsd-386), const IFT_ATMFUNI ideal-int
+pkg syscall (openbsd-386), const IFT_ATMIMA ideal-int
+pkg syscall (openbsd-386), const IFT_ATMLOGICAL ideal-int
+pkg syscall (openbsd-386), const IFT_ATMRADIO ideal-int
+pkg syscall (openbsd-386), const IFT_ATMSUBINTERFACE ideal-int
+pkg syscall (openbsd-386), const IFT_ATMVCIENDPT ideal-int
+pkg syscall (openbsd-386), const IFT_ATMVIRTUAL ideal-int
+pkg syscall (openbsd-386), const IFT_BGPPOLICYACCOUNTING ideal-int
+pkg syscall (openbsd-386), const IFT_BLUETOOTH ideal-int
+pkg syscall (openbsd-386), const IFT_BRIDGE ideal-int
+pkg syscall (openbsd-386), const IFT_BSC ideal-int
+pkg syscall (openbsd-386), const IFT_CARP ideal-int
+pkg syscall (openbsd-386), const IFT_CCTEMUL ideal-int
+pkg syscall (openbsd-386), const IFT_CEPT ideal-int
+pkg syscall (openbsd-386), const IFT_CES ideal-int
+pkg syscall (openbsd-386), const IFT_CHANNEL ideal-int
+pkg syscall (openbsd-386), const IFT_CNR ideal-int
+pkg syscall (openbsd-386), const IFT_COFFEE ideal-int
+pkg syscall (openbsd-386), const IFT_COMPOSITELINK ideal-int
+pkg syscall (openbsd-386), const IFT_DCN ideal-int
+pkg syscall (openbsd-386), const IFT_DIGITALPOWERLINE ideal-int
+pkg syscall (openbsd-386), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int
+pkg syscall (openbsd-386), const IFT_DLSW ideal-int
+pkg syscall (openbsd-386), const IFT_DOCSCABLEDOWNSTREAM ideal-int
+pkg syscall (openbsd-386), const IFT_DOCSCABLEMACLAYER ideal-int
+pkg syscall (openbsd-386), const IFT_DOCSCABLEUPSTREAM ideal-int
+pkg syscall (openbsd-386), const IFT_DOCSCABLEUPSTREAMCHANNEL ideal-int
+pkg syscall (openbsd-386), const IFT_DS0 ideal-int
+pkg syscall (openbsd-386), const IFT_DS0BUNDLE ideal-int
+pkg syscall (openbsd-386), const IFT_DS1FDL ideal-int
+pkg syscall (openbsd-386), const IFT_DS3 ideal-int
+pkg syscall (openbsd-386), const IFT_DTM ideal-int
+pkg syscall (openbsd-386), const IFT_DUMMY ideal-int
+pkg syscall (openbsd-386), const IFT_DVBASILN ideal-int
+pkg syscall (openbsd-386), const IFT_DVBASIOUT ideal-int
+pkg syscall (openbsd-386), const IFT_DVBRCCDOWNSTREAM ideal-int
+pkg syscall (openbsd-386), const IFT_DVBRCCMACLAYER ideal-int
+pkg syscall (openbsd-386), const IFT_DVBRCCUPSTREAM ideal-int
+pkg syscall (openbsd-386), const IFT_ECONET ideal-int
+pkg syscall (openbsd-386), const IFT_ENC ideal-int
+pkg syscall (openbsd-386), const IFT_EON ideal-int
+pkg syscall (openbsd-386), const IFT_EPLRS ideal-int
+pkg syscall (openbsd-386), const IFT_ESCON ideal-int
+pkg syscall (openbsd-386), const IFT_ETHER ideal-int
+pkg syscall (openbsd-386), const IFT_FAITH ideal-int
+pkg syscall (openbsd-386), const IFT_FAST ideal-int
+pkg syscall (openbsd-386), const IFT_FASTETHER ideal-int
+pkg syscall (openbsd-386), const IFT_FASTETHERFX ideal-int
+pkg syscall (openbsd-386), const IFT_FDDI ideal-int
+pkg syscall (openbsd-386), const IFT_FIBRECHANNEL ideal-int
+pkg syscall (openbsd-386), const IFT_FRAMERELAYINTERCONNECT ideal-int
+pkg syscall (openbsd-386), const IFT_FRAMERELAYMPI ideal-int
+pkg syscall (openbsd-386), const IFT_FRDLCIENDPT ideal-int
+pkg syscall (openbsd-386), const IFT_FRELAY ideal-int
+pkg syscall (openbsd-386), const IFT_FRELAYDCE ideal-int
+pkg syscall (openbsd-386), const IFT_FRF16MFRBUNDLE ideal-int
+pkg syscall (openbsd-386), const IFT_FRFORWARD ideal-int
+pkg syscall (openbsd-386), const IFT_G703AT2MB ideal-int
+pkg syscall (openbsd-386), const IFT_G703AT64K ideal-int
+pkg syscall (openbsd-386), const IFT_GIF ideal-int
+pkg syscall (openbsd-386), const IFT_GIGABITETHERNET ideal-int
+pkg syscall (openbsd-386), const IFT_GR303IDT ideal-int
+pkg syscall (openbsd-386), const IFT_GR303RDT ideal-int
+pkg syscall (openbsd-386), const IFT_H323GATEKEEPER ideal-int
+pkg syscall (openbsd-386), const IFT_H323PROXY ideal-int
+pkg syscall (openbsd-386), const IFT_HDH1822 ideal-int
+pkg syscall (openbsd-386), const IFT_HDLC ideal-int
+pkg syscall (openbsd-386), const IFT_HDSL2 ideal-int
+pkg syscall (openbsd-386), const IFT_HIPERLAN2 ideal-int
+pkg syscall (openbsd-386), const IFT_HIPPI ideal-int
+pkg syscall (openbsd-386), const IFT_HIPPIINTERFACE ideal-int
+pkg syscall (openbsd-386), const IFT_HOSTPAD ideal-int
+pkg syscall (openbsd-386), const IFT_HSSI ideal-int
+pkg syscall (openbsd-386), const IFT_HY ideal-int
+pkg syscall (openbsd-386), const IFT_IBM370PARCHAN ideal-int
+pkg syscall (openbsd-386), const IFT_IDSL ideal-int
+pkg syscall (openbsd-386), const IFT_IEEE1394 ideal-int
+pkg syscall (openbsd-386), const IFT_IEEE80211 ideal-int
+pkg syscall (openbsd-386), const IFT_IEEE80212 ideal-int
+pkg syscall (openbsd-386), const IFT_IEEE8023ADLAG ideal-int
+pkg syscall (openbsd-386), const IFT_IFGSN ideal-int
+pkg syscall (openbsd-386), const IFT_IMT ideal-int
+pkg syscall (openbsd-386), const IFT_INFINIBAND ideal-int
+pkg syscall (openbsd-386), const IFT_INTERLEAVE ideal-int
+pkg syscall (openbsd-386), const IFT_IP ideal-int
+pkg syscall (openbsd-386), const IFT_IPFORWARD ideal-int
+pkg syscall (openbsd-386), const IFT_IPOVERATM ideal-int
+pkg syscall (openbsd-386), const IFT_IPOVERCDLC ideal-int
+pkg syscall (openbsd-386), const IFT_IPOVERCLAW ideal-int
+pkg syscall (openbsd-386), const IFT_IPSWITCH ideal-int
+pkg syscall (openbsd-386), const IFT_ISDN ideal-int
+pkg syscall (openbsd-386), const IFT_ISDNBASIC ideal-int
+pkg syscall (openbsd-386), const IFT_ISDNPRIMARY ideal-int
+pkg syscall (openbsd-386), const IFT_ISDNS ideal-int
+pkg syscall (openbsd-386), const IFT_ISDNU ideal-int
+pkg syscall (openbsd-386), const IFT_ISO88022LLC ideal-int
+pkg syscall (openbsd-386), const IFT_ISO88023 ideal-int
+pkg syscall (openbsd-386), const IFT_ISO88024 ideal-int
+pkg syscall (openbsd-386), const IFT_ISO88025 ideal-int
+pkg syscall (openbsd-386), const IFT_ISO88025CRFPINT ideal-int
+pkg syscall (openbsd-386), const IFT_ISO88025DTR ideal-int
+pkg syscall (openbsd-386), const IFT_ISO88025FIBER ideal-int
+pkg syscall (openbsd-386), const IFT_ISO88026 ideal-int
+pkg syscall (openbsd-386), const IFT_ISUP ideal-int
+pkg syscall (openbsd-386), const IFT_L2VLAN ideal-int
+pkg syscall (openbsd-386), const IFT_L3IPVLAN ideal-int
+pkg syscall (openbsd-386), const IFT_L3IPXVLAN ideal-int
+pkg syscall (openbsd-386), const IFT_LAPB ideal-int
+pkg syscall (openbsd-386), const IFT_LAPD ideal-int
+pkg syscall (openbsd-386), const IFT_LAPF ideal-int
+pkg syscall (openbsd-386), const IFT_LINEGROUP ideal-int
+pkg syscall (openbsd-386), const IFT_LOCALTALK ideal-int
+pkg syscall (openbsd-386), const IFT_LOOP ideal-int
+pkg syscall (openbsd-386), const IFT_MEDIAMAILOVERIP ideal-int
+pkg syscall (openbsd-386), const IFT_MFSIGLINK ideal-int
+pkg syscall (openbsd-386), const IFT_MIOX25 ideal-int
+pkg syscall (openbsd-386), const IFT_MODEM ideal-int
+pkg syscall (openbsd-386), const IFT_MPC ideal-int
+pkg syscall (openbsd-386), const IFT_MPLS ideal-int
+pkg syscall (openbsd-386), const IFT_MPLSTUNNEL ideal-int
+pkg syscall (openbsd-386), const IFT_MSDSL ideal-int
+pkg syscall (openbsd-386), const IFT_MVL ideal-int
+pkg syscall (openbsd-386), const IFT_MYRINET ideal-int
+pkg syscall (openbsd-386), const IFT_NFAS ideal-int
+pkg syscall (openbsd-386), const IFT_NSIP ideal-int
+pkg syscall (openbsd-386), const IFT_OPTICALCHANNEL ideal-int
+pkg syscall (openbsd-386), const IFT_OPTICALTRANSPORT ideal-int
+pkg syscall (openbsd-386), const IFT_OTHER ideal-int
+pkg syscall (openbsd-386), const IFT_P10 ideal-int
+pkg syscall (openbsd-386), const IFT_P80 ideal-int
+pkg syscall (openbsd-386), const IFT_PARA ideal-int
+pkg syscall (openbsd-386), const IFT_PFLOG ideal-int
+pkg syscall (openbsd-386), const IFT_PFLOW ideal-int
+pkg syscall (openbsd-386), const IFT_PFSYNC ideal-int
+pkg syscall (openbsd-386), const IFT_PLC ideal-int
+pkg syscall (openbsd-386), const IFT_PON155 ideal-int
+pkg syscall (openbsd-386), const IFT_PON622 ideal-int
+pkg syscall (openbsd-386), const IFT_POS ideal-int
+pkg syscall (openbsd-386), const IFT_PPP ideal-int
+pkg syscall (openbsd-386), const IFT_PPPMULTILINKBUNDLE ideal-int
+pkg syscall (openbsd-386), const IFT_PROPATM ideal-int
+pkg syscall (openbsd-386), const IFT_PROPBWAP2MP ideal-int
+pkg syscall (openbsd-386), const IFT_PROPCNLS ideal-int
+pkg syscall (openbsd-386), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int
+pkg syscall (openbsd-386), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int
+pkg syscall (openbsd-386), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int
+pkg syscall (openbsd-386), const IFT_PROPMUX ideal-int
+pkg syscall (openbsd-386), const IFT_PROPVIRTUAL ideal-int
+pkg syscall (openbsd-386), const IFT_PROPWIRELESSP2P ideal-int
+pkg syscall (openbsd-386), const IFT_PTPSERIAL ideal-int
+pkg syscall (openbsd-386), const IFT_PVC ideal-int
+pkg syscall (openbsd-386), const IFT_Q2931 ideal-int
+pkg syscall (openbsd-386), const IFT_QLLC ideal-int
+pkg syscall (openbsd-386), const IFT_RADIOMAC ideal-int
+pkg syscall (openbsd-386), const IFT_RADSL ideal-int
+pkg syscall (openbsd-386), const IFT_REACHDSL ideal-int
+pkg syscall (openbsd-386), const IFT_RFC1483 ideal-int
+pkg syscall (openbsd-386), const IFT_RS232 ideal-int
+pkg syscall (openbsd-386), const IFT_RSRB ideal-int
+pkg syscall (openbsd-386), const IFT_SDLC ideal-int
+pkg syscall (openbsd-386), const IFT_SDSL ideal-int
+pkg syscall (openbsd-386), const IFT_SHDSL ideal-int
+pkg syscall (openbsd-386), const IFT_SIP ideal-int
+pkg syscall (openbsd-386), const IFT_SIPSIG ideal-int
+pkg syscall (openbsd-386), const IFT_SIPTG ideal-int
+pkg syscall (openbsd-386), const IFT_SLIP ideal-int
+pkg syscall (openbsd-386), const IFT_SMDSDXI ideal-int
+pkg syscall (openbsd-386), const IFT_SMDSICIP ideal-int
+pkg syscall (openbsd-386), const IFT_SONET ideal-int
+pkg syscall (openbsd-386), const IFT_SONETOVERHEADCHANNEL ideal-int
+pkg syscall (openbsd-386), const IFT_SONETPATH ideal-int
+pkg syscall (openbsd-386), const IFT_SONETVT ideal-int
+pkg syscall (openbsd-386), const IFT_SRP ideal-int
+pkg syscall (openbsd-386), const IFT_SS7SIGLINK ideal-int
+pkg syscall (openbsd-386), const IFT_STACKTOSTACK ideal-int
+pkg syscall (openbsd-386), const IFT_STARLAN ideal-int
+pkg syscall (openbsd-386), const IFT_T1 ideal-int
+pkg syscall (openbsd-386), const IFT_TDLC ideal-int
+pkg syscall (openbsd-386), const IFT_TELINK ideal-int
+pkg syscall (openbsd-386), const IFT_TERMPAD ideal-int
+pkg syscall (openbsd-386), const IFT_TR008 ideal-int
+pkg syscall (openbsd-386), const IFT_TRANSPHDLC ideal-int
+pkg syscall (openbsd-386), const IFT_TUNNEL ideal-int
+pkg syscall (openbsd-386), const IFT_ULTRA ideal-int
+pkg syscall (openbsd-386), const IFT_USB ideal-int
+pkg syscall (openbsd-386), const IFT_V11 ideal-int
+pkg syscall (openbsd-386), const IFT_V35 ideal-int
+pkg syscall (openbsd-386), const IFT_V36 ideal-int
+pkg syscall (openbsd-386), const IFT_V37 ideal-int
+pkg syscall (openbsd-386), const IFT_VDSL ideal-int
+pkg syscall (openbsd-386), const IFT_VIRTUALIPADDRESS ideal-int
+pkg syscall (openbsd-386), const IFT_VIRTUALTG ideal-int
+pkg syscall (openbsd-386), const IFT_VOICEDID ideal-int
+pkg syscall (openbsd-386), const IFT_VOICEEM ideal-int
+pkg syscall (openbsd-386), const IFT_VOICEEMFGD ideal-int
+pkg syscall (openbsd-386), const IFT_VOICEENCAP ideal-int
+pkg syscall (openbsd-386), const IFT_VOICEFGDEANA ideal-int
+pkg syscall (openbsd-386), const IFT_VOICEFXO ideal-int
+pkg syscall (openbsd-386), const IFT_VOICEFXS ideal-int
+pkg syscall (openbsd-386), const IFT_VOICEOVERATM ideal-int
+pkg syscall (openbsd-386), const IFT_VOICEOVERCABLE ideal-int
+pkg syscall (openbsd-386), const IFT_VOICEOVERFRAMERELAY ideal-int
+pkg syscall (openbsd-386), const IFT_VOICEOVERIP ideal-int
+pkg syscall (openbsd-386), const IFT_X213 ideal-int
+pkg syscall (openbsd-386), const IFT_X25 ideal-int
+pkg syscall (openbsd-386), const IFT_X25DDN ideal-int
+pkg syscall (openbsd-386), const IFT_X25HUNTGROUP ideal-int
+pkg syscall (openbsd-386), const IFT_X25MLP ideal-int
+pkg syscall (openbsd-386), const IFT_X25PLE ideal-int
+pkg syscall (openbsd-386), const IFT_XETHER ideal-int
+pkg syscall (openbsd-386), const IGNBRK ideal-int
+pkg syscall (openbsd-386), const IGNCR ideal-int
+pkg syscall (openbsd-386), const IGNPAR ideal-int
+pkg syscall (openbsd-386), const IMAXBEL ideal-int
+pkg syscall (openbsd-386), const INLCR ideal-int
+pkg syscall (openbsd-386), const INPCK ideal-int
+pkg syscall (openbsd-386), const IN_CLASSA_HOST ideal-int
+pkg syscall (openbsd-386), const IN_CLASSA_MAX ideal-int
+pkg syscall (openbsd-386), const IN_CLASSA_NET ideal-int
+pkg syscall (openbsd-386), const IN_CLASSA_NSHIFT ideal-int
+pkg syscall (openbsd-386), const IN_CLASSB_HOST ideal-int
+pkg syscall (openbsd-386), const IN_CLASSB_MAX ideal-int
+pkg syscall (openbsd-386), const IN_CLASSB_NET ideal-int
+pkg syscall (openbsd-386), const IN_CLASSB_NSHIFT ideal-int
+pkg syscall (openbsd-386), const IN_CLASSC_HOST ideal-int
+pkg syscall (openbsd-386), const IN_CLASSC_NET ideal-int
+pkg syscall (openbsd-386), const IN_CLASSC_NSHIFT ideal-int
+pkg syscall (openbsd-386), const IN_CLASSD_HOST ideal-int
+pkg syscall (openbsd-386), const IN_CLASSD_NET ideal-int
+pkg syscall (openbsd-386), const IN_CLASSD_NSHIFT ideal-int
+pkg syscall (openbsd-386), const IN_LOOPBACKNET ideal-int
+pkg syscall (openbsd-386), const IN_RFC3021_HOST ideal-int
+pkg syscall (openbsd-386), const IN_RFC3021_NET ideal-int
+pkg syscall (openbsd-386), const IN_RFC3021_NSHIFT ideal-int
+pkg syscall (openbsd-386), const IPPROTO_AH ideal-int
+pkg syscall (openbsd-386), const IPPROTO_CARP ideal-int
+pkg syscall (openbsd-386), const IPPROTO_DIVERT ideal-int
+pkg syscall (openbsd-386), const IPPROTO_DONE ideal-int
+pkg syscall (openbsd-386), const IPPROTO_DSTOPTS ideal-int
+pkg syscall (openbsd-386), const IPPROTO_EGP ideal-int
+pkg syscall (openbsd-386), const IPPROTO_ENCAP ideal-int
+pkg syscall (openbsd-386), const IPPROTO_EON ideal-int
+pkg syscall (openbsd-386), const IPPROTO_ESP ideal-int
+pkg syscall (openbsd-386), const IPPROTO_ETHERIP ideal-int
+pkg syscall (openbsd-386), const IPPROTO_FRAGMENT ideal-int
+pkg syscall (openbsd-386), const IPPROTO_GGP ideal-int
+pkg syscall (openbsd-386), const IPPROTO_GRE ideal-int
+pkg syscall (openbsd-386), const IPPROTO_HOPOPTS ideal-int
+pkg syscall (openbsd-386), const IPPROTO_ICMP ideal-int
+pkg syscall (openbsd-386), const IPPROTO_ICMPV6 ideal-int
+pkg syscall (openbsd-386), const IPPROTO_IDP ideal-int
+pkg syscall (openbsd-386), const IPPROTO_IGMP ideal-int
+pkg syscall (openbsd-386), const IPPROTO_IPCOMP ideal-int
+pkg syscall (openbsd-386), const IPPROTO_IPIP ideal-int
+pkg syscall (openbsd-386), const IPPROTO_IPV4 ideal-int
+pkg syscall (openbsd-386), const IPPROTO_MAX ideal-int
+pkg syscall (openbsd-386), const IPPROTO_MAXID ideal-int
+pkg syscall (openbsd-386), const IPPROTO_MOBILE ideal-int
+pkg syscall (openbsd-386), const IPPROTO_MPLS ideal-int
+pkg syscall (openbsd-386), const IPPROTO_NONE ideal-int
+pkg syscall (openbsd-386), const IPPROTO_PFSYNC ideal-int
+pkg syscall (openbsd-386), const IPPROTO_PIM ideal-int
+pkg syscall (openbsd-386), const IPPROTO_PUP ideal-int
+pkg syscall (openbsd-386), const IPPROTO_RAW ideal-int
+pkg syscall (openbsd-386), const IPPROTO_ROUTING ideal-int
+pkg syscall (openbsd-386), const IPPROTO_RSVP ideal-int
+pkg syscall (openbsd-386), const IPPROTO_TP ideal-int
+pkg syscall (openbsd-386), const IPV6_AUTH_LEVEL ideal-int
+pkg syscall (openbsd-386), const IPV6_AUTOFLOWLABEL ideal-int
+pkg syscall (openbsd-386), const IPV6_CHECKSUM ideal-int
+pkg syscall (openbsd-386), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int
+pkg syscall (openbsd-386), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int
+pkg syscall (openbsd-386), const IPV6_DEFHLIM ideal-int
+pkg syscall (openbsd-386), const IPV6_DONTFRAG ideal-int
+pkg syscall (openbsd-386), const IPV6_DSTOPTS ideal-int
+pkg syscall (openbsd-386), const IPV6_ESP_NETWORK_LEVEL ideal-int
+pkg syscall (openbsd-386), const IPV6_ESP_TRANS_LEVEL ideal-int
+pkg syscall (openbsd-386), const IPV6_FAITH ideal-int
+pkg syscall (openbsd-386), const IPV6_FLOWINFO_MASK ideal-int
+pkg syscall (openbsd-386), const IPV6_FLOWLABEL_MASK ideal-int
+pkg syscall (openbsd-386), const IPV6_FRAGTTL ideal-int
+pkg syscall (openbsd-386), const IPV6_HLIMDEC ideal-int
+pkg syscall (openbsd-386), const IPV6_HOPLIMIT ideal-int
+pkg syscall (openbsd-386), const IPV6_HOPOPTS ideal-int
+pkg syscall (openbsd-386), const IPV6_IPCOMP_LEVEL ideal-int
+pkg syscall (openbsd-386), const IPV6_MAXHLIM ideal-int
+pkg syscall (openbsd-386), const IPV6_MAXPACKET ideal-int
+pkg syscall (openbsd-386), const IPV6_MMTU ideal-int
+pkg syscall (openbsd-386), const IPV6_NEXTHOP ideal-int
+pkg syscall (openbsd-386), const IPV6_OPTIONS ideal-int
+pkg syscall (openbsd-386), const IPV6_PATHMTU ideal-int
+pkg syscall (openbsd-386), const IPV6_PIPEX ideal-int
+pkg syscall (openbsd-386), const IPV6_PKTINFO ideal-int
+pkg syscall (openbsd-386), const IPV6_PORTRANGE ideal-int
+pkg syscall (openbsd-386), const IPV6_PORTRANGE_DEFAULT ideal-int
+pkg syscall (openbsd-386), const IPV6_PORTRANGE_HIGH ideal-int
+pkg syscall (openbsd-386), const IPV6_PORTRANGE_LOW ideal-int
+pkg syscall (openbsd-386), const IPV6_RECVDSTOPTS ideal-int
+pkg syscall (openbsd-386), const IPV6_RECVHOPLIMIT ideal-int
+pkg syscall (openbsd-386), const IPV6_RECVHOPOPTS ideal-int
+pkg syscall (openbsd-386), const IPV6_RECVPATHMTU ideal-int
+pkg syscall (openbsd-386), const IPV6_RECVPKTINFO ideal-int
+pkg syscall (openbsd-386), const IPV6_RECVRTHDR ideal-int
+pkg syscall (openbsd-386), const IPV6_RECVTCLASS ideal-int
+pkg syscall (openbsd-386), const IPV6_RTABLE ideal-int
+pkg syscall (openbsd-386), const IPV6_RTHDR ideal-int
+pkg syscall (openbsd-386), const IPV6_RTHDRDSTOPTS ideal-int
+pkg syscall (openbsd-386), const IPV6_RTHDR_LOOSE ideal-int
+pkg syscall (openbsd-386), const IPV6_RTHDR_STRICT ideal-int
+pkg syscall (openbsd-386), const IPV6_RTHDR_TYPE_0 ideal-int
+pkg syscall (openbsd-386), const IPV6_SOCKOPT_RESERVED1 ideal-int
+pkg syscall (openbsd-386), const IPV6_TCLASS ideal-int
+pkg syscall (openbsd-386), const IPV6_USE_MIN_MTU ideal-int
+pkg syscall (openbsd-386), const IPV6_VERSION ideal-int
+pkg syscall (openbsd-386), const IPV6_VERSION_MASK ideal-int
+pkg syscall (openbsd-386), const IP_AUTH_LEVEL ideal-int
+pkg syscall (openbsd-386), const IP_DEFAULT_MULTICAST_LOOP ideal-int
+pkg syscall (openbsd-386), const IP_DEFAULT_MULTICAST_TTL ideal-int
+pkg syscall (openbsd-386), const IP_DF ideal-int
+pkg syscall (openbsd-386), const IP_ESP_NETWORK_LEVEL ideal-int
+pkg syscall (openbsd-386), const IP_ESP_TRANS_LEVEL ideal-int
+pkg syscall (openbsd-386), const IP_HDRINCL ideal-int
+pkg syscall (openbsd-386), const IP_IPCOMP_LEVEL ideal-int
+pkg syscall (openbsd-386), const IP_IPSECFLOWINFO ideal-int
+pkg syscall (openbsd-386), const IP_IPSEC_LOCAL_AUTH ideal-int
+pkg syscall (openbsd-386), const IP_IPSEC_LOCAL_CRED ideal-int
+pkg syscall (openbsd-386), const IP_IPSEC_LOCAL_ID ideal-int
+pkg syscall (openbsd-386), const IP_IPSEC_REMOTE_AUTH ideal-int
+pkg syscall (openbsd-386), const IP_IPSEC_REMOTE_CRED ideal-int
+pkg syscall (openbsd-386), const IP_IPSEC_REMOTE_ID ideal-int
+pkg syscall (openbsd-386), const IP_MAXPACKET ideal-int
+pkg syscall (openbsd-386), const IP_MAX_MEMBERSHIPS ideal-int
+pkg syscall (openbsd-386), const IP_MF ideal-int
+pkg syscall (openbsd-386), const IP_MINTTL ideal-int
+pkg syscall (openbsd-386), const IP_MIN_MEMBERSHIPS ideal-int
+pkg syscall (openbsd-386), const IP_MSS ideal-int
+pkg syscall (openbsd-386), const IP_OFFMASK ideal-int
+pkg syscall (openbsd-386), const IP_OPTIONS ideal-int
+pkg syscall (openbsd-386), const IP_PIPEX ideal-int
+pkg syscall (openbsd-386), const IP_PORTRANGE ideal-int
+pkg syscall (openbsd-386), const IP_PORTRANGE_DEFAULT ideal-int
+pkg syscall (openbsd-386), const IP_PORTRANGE_HIGH ideal-int
+pkg syscall (openbsd-386), const IP_PORTRANGE_LOW ideal-int
+pkg syscall (openbsd-386), const IP_RECVDSTADDR ideal-int
+pkg syscall (openbsd-386), const IP_RECVDSTPORT ideal-int
+pkg syscall (openbsd-386), const IP_RECVIF ideal-int
+pkg syscall (openbsd-386), const IP_RECVOPTS ideal-int
+pkg syscall (openbsd-386), const IP_RECVRETOPTS ideal-int
+pkg syscall (openbsd-386), const IP_RECVRTABLE ideal-int
+pkg syscall (openbsd-386), const IP_RECVTTL ideal-int
+pkg syscall (openbsd-386), const IP_RETOPTS ideal-int
+pkg syscall (openbsd-386), const IP_RF ideal-int
+pkg syscall (openbsd-386), const IP_RTABLE ideal-int
+pkg syscall (openbsd-386), const ISIG ideal-int
+pkg syscall (openbsd-386), const ISTRIP ideal-int
+pkg syscall (openbsd-386), const IXANY ideal-int
+pkg syscall (openbsd-386), const IXOFF ideal-int
+pkg syscall (openbsd-386), const IXON ideal-int
+pkg syscall (openbsd-386), const LCNT_OVERLOAD_FLUSH ideal-int
+pkg syscall (openbsd-386), const LOCK_EX ideal-int
+pkg syscall (openbsd-386), const LOCK_NB ideal-int
+pkg syscall (openbsd-386), const LOCK_SH ideal-int
+pkg syscall (openbsd-386), const LOCK_UN ideal-int
+pkg syscall (openbsd-386), const MSG_BCAST ideal-int
+pkg syscall (openbsd-386), const MSG_CTRUNC ideal-int
+pkg syscall (openbsd-386), const MSG_DONTROUTE ideal-int
+pkg syscall (openbsd-386), const MSG_DONTWAIT ideal-int
+pkg syscall (openbsd-386), const MSG_EOR ideal-int
+pkg syscall (openbsd-386), const MSG_MCAST ideal-int
+pkg syscall (openbsd-386), const MSG_NOSIGNAL ideal-int
+pkg syscall (openbsd-386), const MSG_OOB ideal-int
+pkg syscall (openbsd-386), const MSG_PEEK ideal-int
+pkg syscall (openbsd-386), const MSG_TRUNC ideal-int
+pkg syscall (openbsd-386), const MSG_WAITALL ideal-int
+pkg syscall (openbsd-386), const NAME_MAX ideal-int
+pkg syscall (openbsd-386), const NET_RT_DUMP ideal-int
+pkg syscall (openbsd-386), const NET_RT_FLAGS ideal-int
+pkg syscall (openbsd-386), const NET_RT_IFLIST ideal-int
+pkg syscall (openbsd-386), const NET_RT_MAXID ideal-int
+pkg syscall (openbsd-386), const NET_RT_STATS ideal-int
+pkg syscall (openbsd-386), const NET_RT_TABLE ideal-int
+pkg syscall (openbsd-386), const NOFLSH ideal-int
+pkg syscall (openbsd-386), const NOTE_ATTRIB ideal-int
+pkg syscall (openbsd-386), const NOTE_CHILD ideal-int
+pkg syscall (openbsd-386), const NOTE_DELETE ideal-int
+pkg syscall (openbsd-386), const NOTE_EOF ideal-int
+pkg syscall (openbsd-386), const NOTE_EXEC ideal-int
+pkg syscall (openbsd-386), const NOTE_EXIT ideal-int
+pkg syscall (openbsd-386), const NOTE_EXTEND ideal-int
+pkg syscall (openbsd-386), const NOTE_FORK ideal-int
+pkg syscall (openbsd-386), const NOTE_LINK ideal-int
+pkg syscall (openbsd-386), const NOTE_LOWAT ideal-int
+pkg syscall (openbsd-386), const NOTE_PCTRLMASK ideal-int
+pkg syscall (openbsd-386), const NOTE_PDATAMASK ideal-int
+pkg syscall (openbsd-386), const NOTE_RENAME ideal-int
+pkg syscall (openbsd-386), const NOTE_REVOKE ideal-int
+pkg syscall (openbsd-386), const NOTE_TRACK ideal-int
+pkg syscall (openbsd-386), const NOTE_TRACKERR ideal-int
+pkg syscall (openbsd-386), const NOTE_TRUNCATE ideal-int
+pkg syscall (openbsd-386), const NOTE_WRITE ideal-int
+pkg syscall (openbsd-386), const OCRNL ideal-int
+pkg syscall (openbsd-386), const ONLCR ideal-int
+pkg syscall (openbsd-386), const ONLRET ideal-int
+pkg syscall (openbsd-386), const ONOCR ideal-int
+pkg syscall (openbsd-386), const ONOEOT ideal-int
+pkg syscall (openbsd-386), const OPOST ideal-int
+pkg syscall (openbsd-386), const O_ACCMODE ideal-int
+pkg syscall (openbsd-386), const O_DIRECTORY ideal-int
+pkg syscall (openbsd-386), const O_DSYNC ideal-int
+pkg syscall (openbsd-386), const O_EXLOCK ideal-int
+pkg syscall (openbsd-386), const O_FSYNC ideal-int
+pkg syscall (openbsd-386), const O_NDELAY ideal-int
+pkg syscall (openbsd-386), const O_NOFOLLOW ideal-int
+pkg syscall (openbsd-386), const O_RSYNC ideal-int
+pkg syscall (openbsd-386), const O_SHLOCK ideal-int
+pkg syscall (openbsd-386), const PARENB ideal-int
+pkg syscall (openbsd-386), const PARMRK ideal-int
+pkg syscall (openbsd-386), const PARODD ideal-int
+pkg syscall (openbsd-386), const PENDIN ideal-int
+pkg syscall (openbsd-386), const PF_FLUSH ideal-int
+pkg syscall (openbsd-386), const PRIO_PGRP = 1
+pkg syscall (openbsd-386), const PRIO_PGRP ideal-int
+pkg syscall (openbsd-386), const PRIO_PROCESS = 0
+pkg syscall (openbsd-386), const PRIO_PROCESS ideal-int
+pkg syscall (openbsd-386), const PRIO_USER = 2
+pkg syscall (openbsd-386), const PRIO_USER ideal-int
+pkg syscall (openbsd-386), const PTRACE_CONT ideal-int
+pkg syscall (openbsd-386), const PTRACE_KILL ideal-int
+pkg syscall (openbsd-386), const PTRACE_TRACEME ideal-int
+pkg syscall (openbsd-386), const PT_MASK ideal-int
+pkg syscall (openbsd-386), const RLIMIT_CORE ideal-int
+pkg syscall (openbsd-386), const RLIMIT_CPU ideal-int
+pkg syscall (openbsd-386), const RLIMIT_DATA ideal-int
+pkg syscall (openbsd-386), const RLIMIT_FSIZE ideal-int
+pkg syscall (openbsd-386), const RLIMIT_NOFILE ideal-int
+pkg syscall (openbsd-386), const RLIMIT_STACK ideal-int
+pkg syscall (openbsd-386), const RLIM_INFINITY ideal-int
+pkg syscall (openbsd-386), const RTAX_AUTHOR ideal-int
+pkg syscall (openbsd-386), const RTAX_BRD ideal-int
+pkg syscall (openbsd-386), const RTAX_DST ideal-int
+pkg syscall (openbsd-386), const RTAX_GATEWAY ideal-int
+pkg syscall (openbsd-386), const RTAX_GENMASK ideal-int
+pkg syscall (openbsd-386), const RTAX_IFA ideal-int
+pkg syscall (openbsd-386), const RTAX_IFP ideal-int
+pkg syscall (openbsd-386), const RTAX_LABEL ideal-int
+pkg syscall (openbsd-386), const RTAX_MAX ideal-int
+pkg syscall (openbsd-386), const RTAX_NETMASK ideal-int
+pkg syscall (openbsd-386), const RTAX_SRC ideal-int
+pkg syscall (openbsd-386), const RTAX_SRCMASK ideal-int
+pkg syscall (openbsd-386), const RTA_AUTHOR ideal-int
+pkg syscall (openbsd-386), const RTA_BRD ideal-int
+pkg syscall (openbsd-386), const RTA_DST ideal-int
+pkg syscall (openbsd-386), const RTA_GATEWAY ideal-int
+pkg syscall (openbsd-386), const RTA_GENMASK ideal-int
+pkg syscall (openbsd-386), const RTA_IFA ideal-int
+pkg syscall (openbsd-386), const RTA_IFP ideal-int
+pkg syscall (openbsd-386), const RTA_LABEL ideal-int
+pkg syscall (openbsd-386), const RTA_NETMASK ideal-int
+pkg syscall (openbsd-386), const RTA_SRC ideal-int
+pkg syscall (openbsd-386), const RTA_SRCMASK ideal-int
+pkg syscall (openbsd-386), const RTF_ANNOUNCE ideal-int
+pkg syscall (openbsd-386), const RTF_BLACKHOLE ideal-int
+pkg syscall (openbsd-386), const RTF_CLONED ideal-int
+pkg syscall (openbsd-386), const RTF_CLONING ideal-int
+pkg syscall (openbsd-386), const RTF_DONE ideal-int
+pkg syscall (openbsd-386), const RTF_DYNAMIC ideal-int
+pkg syscall (openbsd-386), const RTF_FMASK ideal-int
+pkg syscall (openbsd-386), const RTF_GATEWAY ideal-int
+pkg syscall (openbsd-386), const RTF_HOST ideal-int
+pkg syscall (openbsd-386), const RTF_LLINFO ideal-int
+pkg syscall (openbsd-386), const RTF_MASK ideal-int
+pkg syscall (openbsd-386), const RTF_MODIFIED ideal-int
+pkg syscall (openbsd-386), const RTF_MPATH ideal-int
+pkg syscall (openbsd-386), const RTF_MPLS ideal-int
+pkg syscall (openbsd-386), const RTF_PERMANENT_ARP ideal-int
+pkg syscall (openbsd-386), const RTF_PROTO1 ideal-int
+pkg syscall (openbsd-386), const RTF_PROTO2 ideal-int
+pkg syscall (openbsd-386), const RTF_PROTO3 ideal-int
+pkg syscall (openbsd-386), const RTF_REJECT ideal-int
+pkg syscall (openbsd-386), const RTF_SOURCE ideal-int
+pkg syscall (openbsd-386), const RTF_STATIC ideal-int
+pkg syscall (openbsd-386), const RTF_TUNNEL ideal-int
+pkg syscall (openbsd-386), const RTF_UP ideal-int
+pkg syscall (openbsd-386), const RTF_USETRAILERS ideal-int
+pkg syscall (openbsd-386), const RTF_XRESOLVE ideal-int
+pkg syscall (openbsd-386), const RTM_ADD ideal-int
+pkg syscall (openbsd-386), const RTM_CHANGE ideal-int
+pkg syscall (openbsd-386), const RTM_DELADDR ideal-int
+pkg syscall (openbsd-386), const RTM_DELETE ideal-int
+pkg syscall (openbsd-386), const RTM_DESYNC ideal-int
+pkg syscall (openbsd-386), const RTM_GET ideal-int
+pkg syscall (openbsd-386), const RTM_IFANNOUNCE ideal-int
+pkg syscall (openbsd-386), const RTM_IFINFO ideal-int
+pkg syscall (openbsd-386), const RTM_LOCK ideal-int
+pkg syscall (openbsd-386), const RTM_LOSING ideal-int
+pkg syscall (openbsd-386), const RTM_MAXSIZE ideal-int
+pkg syscall (openbsd-386), const RTM_MISS ideal-int
+pkg syscall (openbsd-386), const RTM_NEWADDR ideal-int
+pkg syscall (openbsd-386), const RTM_REDIRECT ideal-int
+pkg syscall (openbsd-386), const RTM_RESOLVE ideal-int
+pkg syscall (openbsd-386), const RTM_RTTUNIT ideal-int
+pkg syscall (openbsd-386), const RTM_VERSION ideal-int
+pkg syscall (openbsd-386), const RTV_EXPIRE ideal-int
+pkg syscall (openbsd-386), const RTV_HOPCOUNT ideal-int
+pkg syscall (openbsd-386), const RTV_MTU ideal-int
+pkg syscall (openbsd-386), const RTV_RPIPE ideal-int
+pkg syscall (openbsd-386), const RTV_RTT ideal-int
+pkg syscall (openbsd-386), const RTV_RTTVAR ideal-int
+pkg syscall (openbsd-386), const RTV_SPIPE ideal-int
+pkg syscall (openbsd-386), const RTV_SSTHRESH ideal-int
+pkg syscall (openbsd-386), const RT_TABLEID_MAX ideal-int
+pkg syscall (openbsd-386), const RUSAGE_CHILDREN ideal-int
+pkg syscall (openbsd-386), const RUSAGE_SELF ideal-int
+pkg syscall (openbsd-386), const RUSAGE_THREAD ideal-int
+pkg syscall (openbsd-386), const SCM_RIGHTS ideal-int
+pkg syscall (openbsd-386), const SCM_TIMESTAMP ideal-int
+pkg syscall (openbsd-386), const SIGCHLD Signal
+pkg syscall (openbsd-386), const SIGCONT Signal
+pkg syscall (openbsd-386), const SIGEMT Signal
+pkg syscall (openbsd-386), const SIGINFO Signal
+pkg syscall (openbsd-386), const SIGIO Signal
+pkg syscall (openbsd-386), const SIGIOT Signal
+pkg syscall (openbsd-386), const SIGPROF Signal
+pkg syscall (openbsd-386), const SIGSTOP Signal
+pkg syscall (openbsd-386), const SIGSYS Signal
+pkg syscall (openbsd-386), const SIGTHR Signal
+pkg syscall (openbsd-386), const SIGTSTP Signal
+pkg syscall (openbsd-386), const SIGTTIN Signal
+pkg syscall (openbsd-386), const SIGTTOU Signal
+pkg syscall (openbsd-386), const SIGURG Signal
+pkg syscall (openbsd-386), const SIGUSR1 Signal
+pkg syscall (openbsd-386), const SIGUSR2 Signal
+pkg syscall (openbsd-386), const SIGVTALRM Signal
+pkg syscall (openbsd-386), const SIGWINCH Signal
+pkg syscall (openbsd-386), const SIGXCPU Signal
+pkg syscall (openbsd-386), const SIGXFSZ Signal
+pkg syscall (openbsd-386), const SIOCADDMULTI ideal-int
+pkg syscall (openbsd-386), const SIOCAIFADDR ideal-int
+pkg syscall (openbsd-386), const SIOCAIFGROUP ideal-int
+pkg syscall (openbsd-386), const SIOCALIFADDR ideal-int
+pkg syscall (openbsd-386), const SIOCATMARK ideal-int
+pkg syscall (openbsd-386), const SIOCBRDGADD ideal-int
+pkg syscall (openbsd-386), const SIOCBRDGADDS ideal-int
+pkg syscall (openbsd-386), const SIOCBRDGARL ideal-int
+pkg syscall (openbsd-386), const SIOCBRDGDADDR ideal-int
+pkg syscall (openbsd-386), const SIOCBRDGDEL ideal-int
+pkg syscall (openbsd-386), const SIOCBRDGDELS ideal-int
+pkg syscall (openbsd-386), const SIOCBRDGFLUSH ideal-int
+pkg syscall (openbsd-386), const SIOCBRDGFRL ideal-int
+pkg syscall (openbsd-386), const SIOCBRDGGCACHE ideal-int
+pkg syscall (openbsd-386), const SIOCBRDGGFD ideal-int
+pkg syscall (openbsd-386), const SIOCBRDGGHT ideal-int
+pkg syscall (openbsd-386), const SIOCBRDGGIFFLGS ideal-int
+pkg syscall (openbsd-386), const SIOCBRDGGMA ideal-int
+pkg syscall (openbsd-386), const SIOCBRDGGPARAM ideal-int
+pkg syscall (openbsd-386), const SIOCBRDGGPRI ideal-int
+pkg syscall (openbsd-386), const SIOCBRDGGRL ideal-int
+pkg syscall (openbsd-386), const SIOCBRDGGSIFS ideal-int
+pkg syscall (openbsd-386), const SIOCBRDGGTO ideal-int
+pkg syscall (openbsd-386), const SIOCBRDGIFS ideal-int
+pkg syscall (openbsd-386), const SIOCBRDGRTS ideal-int
+pkg syscall (openbsd-386), const SIOCBRDGSADDR ideal-int
+pkg syscall (openbsd-386), const SIOCBRDGSCACHE ideal-int
+pkg syscall (openbsd-386), const SIOCBRDGSFD ideal-int
+pkg syscall (openbsd-386), const SIOCBRDGSHT ideal-int
+pkg syscall (openbsd-386), const SIOCBRDGSIFCOST ideal-int
+pkg syscall (openbsd-386), const SIOCBRDGSIFFLGS ideal-int
+pkg syscall (openbsd-386), const SIOCBRDGSIFPRIO ideal-int
+pkg syscall (openbsd-386), const SIOCBRDGSMA ideal-int
+pkg syscall (openbsd-386), const SIOCBRDGSPRI ideal-int
+pkg syscall (openbsd-386), const SIOCBRDGSPROTO ideal-int
+pkg syscall (openbsd-386), const SIOCBRDGSTO ideal-int
+pkg syscall (openbsd-386), const SIOCBRDGSTXHC ideal-int
+pkg syscall (openbsd-386), const SIOCDELMULTI ideal-int
+pkg syscall (openbsd-386), const SIOCDIFADDR ideal-int
+pkg syscall (openbsd-386), const SIOCDIFGROUP ideal-int
+pkg syscall (openbsd-386), const SIOCDIFPHYADDR ideal-int
+pkg syscall (openbsd-386), const SIOCDLIFADDR ideal-int
+pkg syscall (openbsd-386), const SIOCGETKALIVE ideal-int
+pkg syscall (openbsd-386), const SIOCGETLABEL ideal-int
+pkg syscall (openbsd-386), const SIOCGETPFLOW ideal-int
+pkg syscall (openbsd-386), const SIOCGETPFSYNC ideal-int
+pkg syscall (openbsd-386), const SIOCGETSGCNT ideal-int
+pkg syscall (openbsd-386), const SIOCGETVIFCNT ideal-int
+pkg syscall (openbsd-386), const SIOCGHIWAT ideal-int
+pkg syscall (openbsd-386), const SIOCGIFADDR ideal-int
+pkg syscall (openbsd-386), const SIOCGIFASYNCMAP ideal-int
+pkg syscall (openbsd-386), const SIOCGIFBRDADDR ideal-int
+pkg syscall (openbsd-386), const SIOCGIFCONF ideal-int
+pkg syscall (openbsd-386), const SIOCGIFDATA ideal-int
+pkg syscall (openbsd-386), const SIOCGIFDESCR ideal-int
+pkg syscall (openbsd-386), const SIOCGIFDSTADDR ideal-int
+pkg syscall (openbsd-386), const SIOCGIFFLAGS ideal-int
+pkg syscall (openbsd-386), const SIOCGIFGATTR ideal-int
+pkg syscall (openbsd-386), const SIOCGIFGENERIC ideal-int
+pkg syscall (openbsd-386), const SIOCGIFGMEMB ideal-int
+pkg syscall (openbsd-386), const SIOCGIFGROUP ideal-int
+pkg syscall (openbsd-386), const SIOCGIFMEDIA ideal-int
+pkg syscall (openbsd-386), const SIOCGIFMETRIC ideal-int
+pkg syscall (openbsd-386), const SIOCGIFMTU ideal-int
+pkg syscall (openbsd-386), const SIOCGIFNETMASK ideal-int
+pkg syscall (openbsd-386), const SIOCGIFPDSTADDR ideal-int
+pkg syscall (openbsd-386), const SIOCGIFPRIORITY ideal-int
+pkg syscall (openbsd-386), const SIOCGIFPSRCADDR ideal-int
+pkg syscall (openbsd-386), const SIOCGIFRDOMAIN ideal-int
+pkg syscall (openbsd-386), const SIOCGIFRTLABEL ideal-int
+pkg syscall (openbsd-386), const SIOCGIFTIMESLOT ideal-int
+pkg syscall (openbsd-386), const SIOCGIFXFLAGS ideal-int
+pkg syscall (openbsd-386), const SIOCGLIFADDR ideal-int
+pkg syscall (openbsd-386), const SIOCGLIFPHYADDR ideal-int
+pkg syscall (openbsd-386), const SIOCGLIFPHYRTABLE ideal-int
+pkg syscall (openbsd-386), const SIOCGLOWAT ideal-int
+pkg syscall (openbsd-386), const SIOCGPGRP ideal-int
+pkg syscall (openbsd-386), const SIOCGVH ideal-int
+pkg syscall (openbsd-386), const SIOCIFCREATE ideal-int
+pkg syscall (openbsd-386), const SIOCIFDESTROY ideal-int
+pkg syscall (openbsd-386), const SIOCIFGCLONERS ideal-int
+pkg syscall (openbsd-386), const SIOCSETKALIVE ideal-int
+pkg syscall (openbsd-386), const SIOCSETLABEL ideal-int
+pkg syscall (openbsd-386), const SIOCSETPFLOW ideal-int
+pkg syscall (openbsd-386), const SIOCSETPFSYNC ideal-int
+pkg syscall (openbsd-386), const SIOCSHIWAT ideal-int
+pkg syscall (openbsd-386), const SIOCSIFADDR ideal-int
+pkg syscall (openbsd-386), const SIOCSIFASYNCMAP ideal-int
+pkg syscall (openbsd-386), const SIOCSIFBRDADDR ideal-int
+pkg syscall (openbsd-386), const SIOCSIFDESCR ideal-int
+pkg syscall (openbsd-386), const SIOCSIFDSTADDR ideal-int
+pkg syscall (openbsd-386), const SIOCSIFFLAGS ideal-int
+pkg syscall (openbsd-386), const SIOCSIFGATTR ideal-int
+pkg syscall (openbsd-386), const SIOCSIFGENERIC ideal-int
+pkg syscall (openbsd-386), const SIOCSIFLLADDR ideal-int
+pkg syscall (openbsd-386), const SIOCSIFMEDIA ideal-int
+pkg syscall (openbsd-386), const SIOCSIFMETRIC ideal-int
+pkg syscall (openbsd-386), const SIOCSIFMTU ideal-int
+pkg syscall (openbsd-386), const SIOCSIFNETMASK ideal-int
+pkg syscall (openbsd-386), const SIOCSIFPHYADDR ideal-int
+pkg syscall (openbsd-386), const SIOCSIFPRIORITY ideal-int
+pkg syscall (openbsd-386), const SIOCSIFRDOMAIN ideal-int
+pkg syscall (openbsd-386), const SIOCSIFRTLABEL ideal-int
+pkg syscall (openbsd-386), const SIOCSIFTIMESLOT ideal-int
+pkg syscall (openbsd-386), const SIOCSIFXFLAGS ideal-int
+pkg syscall (openbsd-386), const SIOCSLIFPHYADDR ideal-int
+pkg syscall (openbsd-386), const SIOCSLIFPHYRTABLE ideal-int
+pkg syscall (openbsd-386), const SIOCSLOWAT ideal-int
+pkg syscall (openbsd-386), const SIOCSPGRP ideal-int
+pkg syscall (openbsd-386), const SIOCSVH ideal-int
+pkg syscall (openbsd-386), const SOCK_RDM ideal-int
+pkg syscall (openbsd-386), const SO_ACCEPTCONN ideal-int
+pkg syscall (openbsd-386), const SO_BINDANY ideal-int
+pkg syscall (openbsd-386), const SO_DEBUG ideal-int
+pkg syscall (openbsd-386), const SO_ERROR ideal-int
+pkg syscall (openbsd-386), const SO_NETPROC ideal-int
+pkg syscall (openbsd-386), const SO_OOBINLINE ideal-int
+pkg syscall (openbsd-386), const SO_PEERCRED ideal-int
+pkg syscall (openbsd-386), const SO_RCVLOWAT ideal-int
+pkg syscall (openbsd-386), const SO_RCVTIMEO ideal-int
+pkg syscall (openbsd-386), const SO_REUSEPORT ideal-int
+pkg syscall (openbsd-386), const SO_RTABLE ideal-int
+pkg syscall (openbsd-386), const SO_SNDLOWAT ideal-int
+pkg syscall (openbsd-386), const SO_SNDTIMEO ideal-int
+pkg syscall (openbsd-386), const SO_SPLICE ideal-int
+pkg syscall (openbsd-386), const SO_TIMESTAMP ideal-int
+pkg syscall (openbsd-386), const SO_TYPE ideal-int
+pkg syscall (openbsd-386), const SO_USELOOPBACK ideal-int
+pkg syscall (openbsd-386), const SYS_ACCEPT ideal-int
+pkg syscall (openbsd-386), const SYS_ACCESS ideal-int
+pkg syscall (openbsd-386), const SYS_ACCT ideal-int
+pkg syscall (openbsd-386), const SYS_ADJFREQ ideal-int
+pkg syscall (openbsd-386), const SYS_ADJTIME ideal-int
+pkg syscall (openbsd-386), const SYS_BIND ideal-int
+pkg syscall (openbsd-386), const SYS_CHDIR ideal-int
+pkg syscall (openbsd-386), const SYS_CHFLAGS ideal-int
+pkg syscall (openbsd-386), const SYS_CHMOD ideal-int
+pkg syscall (openbsd-386), const SYS_CHOWN ideal-int
+pkg syscall (openbsd-386), const SYS_CHROOT ideal-int
+pkg syscall (openbsd-386), const SYS_CLOCK_GETRES ideal-int
+pkg syscall (openbsd-386), const SYS_CLOCK_GETTIME ideal-int
+pkg syscall (openbsd-386), const SYS_CLOCK_SETTIME ideal-int
+pkg syscall (openbsd-386), const SYS_CLOSE ideal-int
+pkg syscall (openbsd-386), const SYS_CLOSEFROM ideal-int
+pkg syscall (openbsd-386), const SYS_CONNECT ideal-int
+pkg syscall (openbsd-386), const SYS_DUP ideal-int
+pkg syscall (openbsd-386), const SYS_DUP2 ideal-int
+pkg syscall (openbsd-386), const SYS_EXECVE ideal-int
+pkg syscall (openbsd-386), const SYS_EXIT ideal-int
+pkg syscall (openbsd-386), const SYS_FACCESSAT ideal-int
+pkg syscall (openbsd-386), const SYS_FCHDIR ideal-int
+pkg syscall (openbsd-386), const SYS_FCHFLAGS ideal-int
+pkg syscall (openbsd-386), const SYS_FCHMOD ideal-int
+pkg syscall (openbsd-386), const SYS_FCHMODAT ideal-int
+pkg syscall (openbsd-386), const SYS_FCHOWN ideal-int
+pkg syscall (openbsd-386), const SYS_FCHOWNAT ideal-int
+pkg syscall (openbsd-386), const SYS_FCNTL ideal-int
+pkg syscall (openbsd-386), const SYS_FHOPEN ideal-int
+pkg syscall (openbsd-386), const SYS_FHSTAT ideal-int
+pkg syscall (openbsd-386), const SYS_FHSTATFS ideal-int
+pkg syscall (openbsd-386), const SYS_FLOCK ideal-int
+pkg syscall (openbsd-386), const SYS_FORK ideal-int
+pkg syscall (openbsd-386), const SYS_FPATHCONF ideal-int
+pkg syscall (openbsd-386), const SYS_FSTAT ideal-int
+pkg syscall (openbsd-386), const SYS_FSTATAT ideal-int
+pkg syscall (openbsd-386), const SYS_FSTATFS ideal-int
+pkg syscall (openbsd-386), const SYS_FSYNC ideal-int
+pkg syscall (openbsd-386), const SYS_FTRUNCATE ideal-int
+pkg syscall (openbsd-386), const SYS_FUTIMENS ideal-int
+pkg syscall (openbsd-386), const SYS_FUTIMES ideal-int
+pkg syscall (openbsd-386), const SYS_GETDIRENTRIES ideal-int
+pkg syscall (openbsd-386), const SYS_GETDTABLECOUNT ideal-int
+pkg syscall (openbsd-386), const SYS_GETEGID ideal-int
+pkg syscall (openbsd-386), const SYS_GETEUID ideal-int
+pkg syscall (openbsd-386), const SYS_GETFH ideal-int
+pkg syscall (openbsd-386), const SYS_GETFSSTAT ideal-int
+pkg syscall (openbsd-386), const SYS_GETGID ideal-int
+pkg syscall (openbsd-386), const SYS_GETGROUPS ideal-int
+pkg syscall (openbsd-386), const SYS_GETITIMER ideal-int
+pkg syscall (openbsd-386), const SYS_GETLOGIN ideal-int
+pkg syscall (openbsd-386), const SYS_GETPEERNAME ideal-int
+pkg syscall (openbsd-386), const SYS_GETPGID ideal-int
+pkg syscall (openbsd-386), const SYS_GETPGRP ideal-int
+pkg syscall (openbsd-386), const SYS_GETPID ideal-int
+pkg syscall (openbsd-386), const SYS_GETPPID ideal-int
+pkg syscall (openbsd-386), const SYS_GETPRIORITY ideal-int
+pkg syscall (openbsd-386), const SYS_GETRESGID ideal-int
+pkg syscall (openbsd-386), const SYS_GETRESUID ideal-int
+pkg syscall (openbsd-386), const SYS_GETRLIMIT ideal-int
+pkg syscall (openbsd-386), const SYS_GETRTABLE ideal-int
+pkg syscall (openbsd-386), const SYS_GETRUSAGE ideal-int
+pkg syscall (openbsd-386), const SYS_GETSID ideal-int
+pkg syscall (openbsd-386), const SYS_GETSOCKNAME ideal-int
+pkg syscall (openbsd-386), const SYS_GETSOCKOPT ideal-int
+pkg syscall (openbsd-386), const SYS_GETTHRID ideal-int
+pkg syscall (openbsd-386), const SYS_GETTIMEOFDAY ideal-int
+pkg syscall (openbsd-386), const SYS_GETUID ideal-int
+pkg syscall (openbsd-386), const SYS_IOCTL ideal-int
+pkg syscall (openbsd-386), const SYS_ISSETUGID ideal-int
+pkg syscall (openbsd-386), const SYS_KEVENT ideal-int
+pkg syscall (openbsd-386), const SYS_KILL ideal-int
+pkg syscall (openbsd-386), const SYS_KQUEUE ideal-int
+pkg syscall (openbsd-386), const SYS_KTRACE ideal-int
+pkg syscall (openbsd-386), const SYS_LCHOWN ideal-int
+pkg syscall (openbsd-386), const SYS_LINK ideal-int
+pkg syscall (openbsd-386), const SYS_LINKAT ideal-int
+pkg syscall (openbsd-386), const SYS_LISTEN ideal-int
+pkg syscall (openbsd-386), const SYS_LSEEK ideal-int
+pkg syscall (openbsd-386), const SYS_LSTAT ideal-int
+pkg syscall (openbsd-386), const SYS_MADVISE ideal-int
+pkg syscall (openbsd-386), const SYS_MINCORE ideal-int
+pkg syscall (openbsd-386), const SYS_MINHERIT ideal-int
+pkg syscall (openbsd-386), const SYS_MKDIR ideal-int
+pkg syscall (openbsd-386), const SYS_MKDIRAT ideal-int
+pkg syscall (openbsd-386), const SYS_MKFIFO ideal-int
+pkg syscall (openbsd-386), const SYS_MKFIFOAT ideal-int
+pkg syscall (openbsd-386), const SYS_MKNOD ideal-int
+pkg syscall (openbsd-386), const SYS_MKNODAT ideal-int
+pkg syscall (openbsd-386), const SYS_MLOCK ideal-int
+pkg syscall (openbsd-386), const SYS_MLOCKALL ideal-int
+pkg syscall (openbsd-386), const SYS_MMAP ideal-int
+pkg syscall (openbsd-386), const SYS_MOUNT ideal-int
+pkg syscall (openbsd-386), const SYS_MPROTECT ideal-int
+pkg syscall (openbsd-386), const SYS_MQUERY ideal-int
+pkg syscall (openbsd-386), const SYS_MSGCTL ideal-int
+pkg syscall (openbsd-386), const SYS_MSGGET ideal-int
+pkg syscall (openbsd-386), const SYS_MSGRCV ideal-int
+pkg syscall (openbsd-386), const SYS_MSGSND ideal-int
+pkg syscall (openbsd-386), const SYS_MSYNC ideal-int
+pkg syscall (openbsd-386), const SYS_MUNLOCK ideal-int
+pkg syscall (openbsd-386), const SYS_MUNLOCKALL ideal-int
+pkg syscall (openbsd-386), const SYS_MUNMAP ideal-int
+pkg syscall (openbsd-386), const SYS_NANOSLEEP ideal-int
+pkg syscall (openbsd-386), const SYS_NFSSVC ideal-int
+pkg syscall (openbsd-386), const SYS_OBREAK ideal-int
+pkg syscall (openbsd-386), const SYS_OPEN ideal-int
+pkg syscall (openbsd-386), const SYS_OPENAT ideal-int
+pkg syscall (openbsd-386), const SYS_PATHCONF ideal-int
+pkg syscall (openbsd-386), const SYS_PIPE ideal-int
+pkg syscall (openbsd-386), const SYS_POLL ideal-int
+pkg syscall (openbsd-386), const SYS_PREAD ideal-int
+pkg syscall (openbsd-386), const SYS_PREADV ideal-int
+pkg syscall (openbsd-386), const SYS_PROFIL ideal-int
+pkg syscall (openbsd-386), const SYS_PTRACE ideal-int
+pkg syscall (openbsd-386), const SYS_PWRITE ideal-int
+pkg syscall (openbsd-386), const SYS_PWRITEV ideal-int
+pkg syscall (openbsd-386), const SYS_QUOTACTL ideal-int
+pkg syscall (openbsd-386), const SYS_READ ideal-int
+pkg syscall (openbsd-386), const SYS_READLINK ideal-int
+pkg syscall (openbsd-386), const SYS_READLINKAT ideal-int
+pkg syscall (openbsd-386), const SYS_READV ideal-int
+pkg syscall (openbsd-386), const SYS_REBOOT ideal-int
+pkg syscall (openbsd-386), const SYS_RECVFROM ideal-int
+pkg syscall (openbsd-386), const SYS_RECVMSG ideal-int
+pkg syscall (openbsd-386), const SYS_RENAME ideal-int
+pkg syscall (openbsd-386), const SYS_RENAMEAT ideal-int
+pkg syscall (openbsd-386), const SYS_REVOKE ideal-int
+pkg syscall (openbsd-386), const SYS_RMDIR ideal-int
+pkg syscall (openbsd-386), const SYS_SCHED_YIELD ideal-int
+pkg syscall (openbsd-386), const SYS_SELECT ideal-int
+pkg syscall (openbsd-386), const SYS_SEMGET ideal-int
+pkg syscall (openbsd-386), const SYS_SEMOP ideal-int
+pkg syscall (openbsd-386), const SYS_SENDMSG ideal-int
+pkg syscall (openbsd-386), const SYS_SENDTO ideal-int
+pkg syscall (openbsd-386), const SYS_SETEGID ideal-int
+pkg syscall (openbsd-386), const SYS_SETEUID ideal-int
+pkg syscall (openbsd-386), const SYS_SETGID ideal-int
+pkg syscall (openbsd-386), const SYS_SETGROUPS ideal-int
+pkg syscall (openbsd-386), const SYS_SETITIMER ideal-int
+pkg syscall (openbsd-386), const SYS_SETLOGIN ideal-int
+pkg syscall (openbsd-386), const SYS_SETPGID ideal-int
+pkg syscall (openbsd-386), const SYS_SETPRIORITY ideal-int
+pkg syscall (openbsd-386), const SYS_SETREGID ideal-int
+pkg syscall (openbsd-386), const SYS_SETRESGID ideal-int
+pkg syscall (openbsd-386), const SYS_SETRESUID ideal-int
+pkg syscall (openbsd-386), const SYS_SETREUID ideal-int
+pkg syscall (openbsd-386), const SYS_SETRLIMIT ideal-int
+pkg syscall (openbsd-386), const SYS_SETRTABLE ideal-int
+pkg syscall (openbsd-386), const SYS_SETSID ideal-int
+pkg syscall (openbsd-386), const SYS_SETSOCKOPT ideal-int
+pkg syscall (openbsd-386), const SYS_SETTIMEOFDAY ideal-int
+pkg syscall (openbsd-386), const SYS_SETUID ideal-int
+pkg syscall (openbsd-386), const SYS_SHMAT ideal-int
+pkg syscall (openbsd-386), const SYS_SHMCTL ideal-int
+pkg syscall (openbsd-386), const SYS_SHMDT ideal-int
+pkg syscall (openbsd-386), const SYS_SHMGET ideal-int
+pkg syscall (openbsd-386), const SYS_SHUTDOWN ideal-int
+pkg syscall (openbsd-386), const SYS_SIGACTION ideal-int
+pkg syscall (openbsd-386), const SYS_SIGALTSTACK ideal-int
+pkg syscall (openbsd-386), const SYS_SIGPENDING ideal-int
+pkg syscall (openbsd-386), const SYS_SIGPROCMASK ideal-int
+pkg syscall (openbsd-386), const SYS_SIGRETURN ideal-int
+pkg syscall (openbsd-386), const SYS_SIGSUSPEND ideal-int
+pkg syscall (openbsd-386), const SYS_SOCKET ideal-int
+pkg syscall (openbsd-386), const SYS_SOCKETPAIR ideal-int
+pkg syscall (openbsd-386), const SYS_STAT ideal-int
+pkg syscall (openbsd-386), const SYS_STATFS ideal-int
+pkg syscall (openbsd-386), const SYS_SWAPCTL ideal-int
+pkg syscall (openbsd-386), const SYS_SYMLINK ideal-int
+pkg syscall (openbsd-386), const SYS_SYMLINKAT ideal-int
+pkg syscall (openbsd-386), const SYS_SYNC ideal-int
+pkg syscall (openbsd-386), const SYS_SYSARCH ideal-int
+pkg syscall (openbsd-386), const SYS_TRUNCATE ideal-int
+pkg syscall (openbsd-386), const SYS_UMASK ideal-int
+pkg syscall (openbsd-386), const SYS_UNLINK ideal-int
+pkg syscall (openbsd-386), const SYS_UNLINKAT ideal-int
+pkg syscall (openbsd-386), const SYS_UNMOUNT ideal-int
+pkg syscall (openbsd-386), const SYS_UTIMENSAT ideal-int
+pkg syscall (openbsd-386), const SYS_UTIMES ideal-int
+pkg syscall (openbsd-386), const SYS_VFORK ideal-int
+pkg syscall (openbsd-386), const SYS_WAIT4 ideal-int
+pkg syscall (openbsd-386), const SYS_WRITE ideal-int
+pkg syscall (openbsd-386), const SYS_WRITEV ideal-int
+pkg syscall (openbsd-386), const SYS___GETCWD ideal-int
+pkg syscall (openbsd-386), const SYS___GET_TCB ideal-int
+pkg syscall (openbsd-386), const SYS___SEMCTL ideal-int
+pkg syscall (openbsd-386), const SYS___SET_TCB ideal-int
+pkg syscall (openbsd-386), const SYS___SYSCTL ideal-int
+pkg syscall (openbsd-386), const SYS___TFORK ideal-int
+pkg syscall (openbsd-386), const SYS___THREXIT ideal-int
+pkg syscall (openbsd-386), const SYS___THRSIGDIVERT ideal-int
+pkg syscall (openbsd-386), const SYS___THRSLEEP ideal-int
+pkg syscall (openbsd-386), const SYS___THRWAKEUP ideal-int
+pkg syscall (openbsd-386), const SizeofBpfHdr ideal-int
+pkg syscall (openbsd-386), const SizeofBpfInsn ideal-int
+pkg syscall (openbsd-386), const SizeofBpfProgram ideal-int
+pkg syscall (openbsd-386), const SizeofBpfStat ideal-int
+pkg syscall (openbsd-386), const SizeofBpfVersion ideal-int
+pkg syscall (openbsd-386), const SizeofCmsghdr ideal-int
+pkg syscall (openbsd-386), const SizeofICMPv6Filter = 32
+pkg syscall (openbsd-386), const SizeofICMPv6Filter ideal-int
+pkg syscall (openbsd-386), const SizeofIPMreq ideal-int
+pkg syscall (openbsd-386), const SizeofIPv6MTUInfo = 32
+pkg syscall (openbsd-386), const SizeofIPv6MTUInfo ideal-int
+pkg syscall (openbsd-386), const SizeofIPv6Mreq ideal-int
+pkg syscall (openbsd-386), const SizeofIfAnnounceMsghdr ideal-int
+pkg syscall (openbsd-386), const SizeofIfData ideal-int
+pkg syscall (openbsd-386), const SizeofIfMsghdr ideal-int
+pkg syscall (openbsd-386), const SizeofIfaMsghdr ideal-int
+pkg syscall (openbsd-386), const SizeofInet6Pktinfo ideal-int
+pkg syscall (openbsd-386), const SizeofLinger ideal-int
+pkg syscall (openbsd-386), const SizeofMsghdr ideal-int
+pkg syscall (openbsd-386), const SizeofRtMetrics ideal-int
+pkg syscall (openbsd-386), const SizeofRtMsghdr ideal-int
+pkg syscall (openbsd-386), const SizeofSockaddrAny ideal-int
+pkg syscall (openbsd-386), const SizeofSockaddrDatalink ideal-int
+pkg syscall (openbsd-386), const SizeofSockaddrInet4 ideal-int
+pkg syscall (openbsd-386), const SizeofSockaddrInet6 ideal-int
+pkg syscall (openbsd-386), const SizeofSockaddrUnix ideal-int
+pkg syscall (openbsd-386), const TCIFLUSH ideal-int
+pkg syscall (openbsd-386), const TCIOFLUSH ideal-int
+pkg syscall (openbsd-386), const TCOFLUSH ideal-int
+pkg syscall (openbsd-386), const TCP_MAXBURST ideal-int
+pkg syscall (openbsd-386), const TCP_MAXSEG ideal-int
+pkg syscall (openbsd-386), const TCP_MAXWIN ideal-int
+pkg syscall (openbsd-386), const TCP_MAX_SACK ideal-int
+pkg syscall (openbsd-386), const TCP_MAX_WINSHIFT ideal-int
+pkg syscall (openbsd-386), const TCP_MD5SIG ideal-int
+pkg syscall (openbsd-386), const TCP_MSS ideal-int
+pkg syscall (openbsd-386), const TCP_NSTATES ideal-int
+pkg syscall (openbsd-386), const TCP_SACK_ENABLE ideal-int
+pkg syscall (openbsd-386), const TCSAFLUSH ideal-int
+pkg syscall (openbsd-386), const TIOCCBRK ideal-int
+pkg syscall (openbsd-386), const TIOCCDTR ideal-int
+pkg syscall (openbsd-386), const TIOCCONS ideal-int
+pkg syscall (openbsd-386), const TIOCDRAIN ideal-int
+pkg syscall (openbsd-386), const TIOCEXCL ideal-int
+pkg syscall (openbsd-386), const TIOCEXT ideal-int
+pkg syscall (openbsd-386), const TIOCFLAG_CLOCAL ideal-int
+pkg syscall (openbsd-386), const TIOCFLAG_CRTSCTS ideal-int
+pkg syscall (openbsd-386), const TIOCFLAG_MDMBUF ideal-int
+pkg syscall (openbsd-386), const TIOCFLAG_PPS ideal-int
+pkg syscall (openbsd-386), const TIOCFLAG_SOFTCAR ideal-int
+pkg syscall (openbsd-386), const TIOCFLUSH ideal-int
+pkg syscall (openbsd-386), const TIOCGETA ideal-int
+pkg syscall (openbsd-386), const TIOCGETD ideal-int
+pkg syscall (openbsd-386), const TIOCGFLAGS ideal-int
+pkg syscall (openbsd-386), const TIOCGPGRP ideal-int
+pkg syscall (openbsd-386), const TIOCGTSTAMP ideal-int
+pkg syscall (openbsd-386), const TIOCGWINSZ ideal-int
+pkg syscall (openbsd-386), const TIOCMBIC ideal-int
+pkg syscall (openbsd-386), const TIOCMBIS ideal-int
+pkg syscall (openbsd-386), const TIOCMGET ideal-int
+pkg syscall (openbsd-386), const TIOCMODG ideal-int
+pkg syscall (openbsd-386), const TIOCMODS ideal-int
+pkg syscall (openbsd-386), const TIOCMSET ideal-int
+pkg syscall (openbsd-386), const TIOCM_CAR ideal-int
+pkg syscall (openbsd-386), const TIOCM_CD ideal-int
+pkg syscall (openbsd-386), const TIOCM_CTS ideal-int
+pkg syscall (openbsd-386), const TIOCM_DSR ideal-int
+pkg syscall (openbsd-386), const TIOCM_DTR ideal-int
+pkg syscall (openbsd-386), const TIOCM_LE ideal-int
+pkg syscall (openbsd-386), const TIOCM_RI ideal-int
+pkg syscall (openbsd-386), const TIOCM_RNG ideal-int
+pkg syscall (openbsd-386), const TIOCM_RTS ideal-int
+pkg syscall (openbsd-386), const TIOCM_SR ideal-int
+pkg syscall (openbsd-386), const TIOCM_ST ideal-int
+pkg syscall (openbsd-386), const TIOCNOTTY ideal-int
+pkg syscall (openbsd-386), const TIOCNXCL ideal-int
+pkg syscall (openbsd-386), const TIOCOUTQ ideal-int
+pkg syscall (openbsd-386), const TIOCPKT ideal-int
+pkg syscall (openbsd-386), const TIOCPKT_DATA ideal-int
+pkg syscall (openbsd-386), const TIOCPKT_DOSTOP ideal-int
+pkg syscall (openbsd-386), const TIOCPKT_FLUSHREAD ideal-int
+pkg syscall (openbsd-386), const TIOCPKT_FLUSHWRITE ideal-int
+pkg syscall (openbsd-386), const TIOCPKT_IOCTL ideal-int
+pkg syscall (openbsd-386), const TIOCPKT_NOSTOP ideal-int
+pkg syscall (openbsd-386), const TIOCPKT_START ideal-int
+pkg syscall (openbsd-386), const TIOCPKT_STOP ideal-int
+pkg syscall (openbsd-386), const TIOCREMOTE ideal-int
+pkg syscall (openbsd-386), const TIOCSBRK ideal-int
+pkg syscall (openbsd-386), const TIOCSCTTY ideal-int
+pkg syscall (openbsd-386), const TIOCSDTR ideal-int
+pkg syscall (openbsd-386), const TIOCSETA ideal-int
+pkg syscall (openbsd-386), const TIOCSETAF ideal-int
+pkg syscall (openbsd-386), const TIOCSETAW ideal-int
+pkg syscall (openbsd-386), const TIOCSETD ideal-int
+pkg syscall (openbsd-386), const TIOCSFLAGS ideal-int
+pkg syscall (openbsd-386), const TIOCSIG ideal-int
+pkg syscall (openbsd-386), const TIOCSPGRP ideal-int
+pkg syscall (openbsd-386), const TIOCSTART ideal-int
+pkg syscall (openbsd-386), const TIOCSTAT ideal-int
+pkg syscall (openbsd-386), const TIOCSTI ideal-int
+pkg syscall (openbsd-386), const TIOCSTOP ideal-int
+pkg syscall (openbsd-386), const TIOCSTSTAMP ideal-int
+pkg syscall (openbsd-386), const TIOCSWINSZ ideal-int
+pkg syscall (openbsd-386), const TIOCUCNTL ideal-int
+pkg syscall (openbsd-386), const TOSTOP ideal-int
+pkg syscall (openbsd-386), const VDISCARD ideal-int
+pkg syscall (openbsd-386), const VDSUSP ideal-int
+pkg syscall (openbsd-386), const VEOF ideal-int
+pkg syscall (openbsd-386), const VEOL ideal-int
+pkg syscall (openbsd-386), const VEOL2 ideal-int
+pkg syscall (openbsd-386), const VERASE ideal-int
+pkg syscall (openbsd-386), const VINTR ideal-int
+pkg syscall (openbsd-386), const VKILL ideal-int
+pkg syscall (openbsd-386), const VLNEXT ideal-int
+pkg syscall (openbsd-386), const VMIN ideal-int
+pkg syscall (openbsd-386), const VQUIT ideal-int
+pkg syscall (openbsd-386), const VREPRINT ideal-int
+pkg syscall (openbsd-386), const VSTART ideal-int
+pkg syscall (openbsd-386), const VSTATUS ideal-int
+pkg syscall (openbsd-386), const VSTOP ideal-int
+pkg syscall (openbsd-386), const VSUSP ideal-int
+pkg syscall (openbsd-386), const VTIME ideal-int
+pkg syscall (openbsd-386), const VWERASE ideal-int
+pkg syscall (openbsd-386), const WALTSIG ideal-int
+pkg syscall (openbsd-386), const WCONTINUED ideal-int
+pkg syscall (openbsd-386), const WCOREFLAG ideal-int
+pkg syscall (openbsd-386), const WNOHANG ideal-int
+pkg syscall (openbsd-386), const WSTOPPED ideal-int
+pkg syscall (openbsd-386), const WUNTRACED ideal-int
+pkg syscall (openbsd-386), func Accept(int) (int, Sockaddr, error)
+pkg syscall (openbsd-386), func Access(string, uint32) error
+pkg syscall (openbsd-386), func Adjtime(*Timeval, *Timeval) error
+pkg syscall (openbsd-386), func Bind(int, Sockaddr) error
+pkg syscall (openbsd-386), func BpfBuflen(int) (int, error)
+pkg syscall (openbsd-386), func BpfDatalink(int) (int, error)
+pkg syscall (openbsd-386), func BpfHeadercmpl(int) (int, error)
+pkg syscall (openbsd-386), func BpfInterface(int, string) (string, error)
+pkg syscall (openbsd-386), func BpfJump(int, int, int, int) *BpfInsn
+pkg syscall (openbsd-386), func BpfStats(int) (*BpfStat, error)
+pkg syscall (openbsd-386), func BpfStmt(int, int) *BpfInsn
+pkg syscall (openbsd-386), func BpfTimeout(int) (*Timeval, error)
+pkg syscall (openbsd-386), func CheckBpfVersion(int) error
+pkg syscall (openbsd-386), func Chflags(string, int) error
+pkg syscall (openbsd-386), func Chroot(string) error
+pkg syscall (openbsd-386), func Close(int) error
+pkg syscall (openbsd-386), func CloseOnExec(int)
+pkg syscall (openbsd-386), func CmsgLen(int) int
+pkg syscall (openbsd-386), func CmsgSpace(int) int
+pkg syscall (openbsd-386), func Connect(int, Sockaddr) error
+pkg syscall (openbsd-386), func Dup(int) (int, error)
+pkg syscall (openbsd-386), func Dup2(int, int) error
+pkg syscall (openbsd-386), func Fchdir(int) error
+pkg syscall (openbsd-386), func Fchflags(int, int) error
+pkg syscall (openbsd-386), func Fchmod(int, uint32) error
+pkg syscall (openbsd-386), func Fchown(int, int, int) error
+pkg syscall (openbsd-386), func Flock(int, int) error
+pkg syscall (openbsd-386), func FlushBpf(int) error
+pkg syscall (openbsd-386), func ForkExec(string, []string, *ProcAttr) (int, error)
+pkg syscall (openbsd-386), func Fpathconf(int, int) (int, error)
+pkg syscall (openbsd-386), func Fstat(int, *Stat_t) error
+pkg syscall (openbsd-386), func Fstatfs(int, *Statfs_t) error
+pkg syscall (openbsd-386), func Fsync(int) error
+pkg syscall (openbsd-386), func Ftruncate(int, int64) error
+pkg syscall (openbsd-386), func Futimes(int, []Timeval) error
+pkg syscall (openbsd-386), func Getdirentries(int, []uint8, *uintptr) (int, error)
+pkg syscall (openbsd-386), func Getfsstat([]Statfs_t, int) (int, error)
+pkg syscall (openbsd-386), func Getpeername(int) (Sockaddr, error)
+pkg syscall (openbsd-386), func Getpgid(int) (int, error)
+pkg syscall (openbsd-386), func Getpgrp() int
+pkg syscall (openbsd-386), func Getpriority(int, int) (int, error)
+pkg syscall (openbsd-386), func Getrlimit(int, *Rlimit) error
+pkg syscall (openbsd-386), func Getrusage(int, *Rusage) error
+pkg syscall (openbsd-386), func Getsid(int) (int, error)
+pkg syscall (openbsd-386), func Getsockname(int) (Sockaddr, error)
+pkg syscall (openbsd-386), func GetsockoptByte(int, int, int) (uint8, error)
+pkg syscall (openbsd-386), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
+pkg syscall (openbsd-386), func GetsockoptIPMreq(int, int, int) (*IPMreq, error)
+pkg syscall (openbsd-386), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
+pkg syscall (openbsd-386), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error)
+pkg syscall (openbsd-386), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error)
+pkg syscall (openbsd-386), func GetsockoptInt(int, int, int) (int, error)
+pkg syscall (openbsd-386), func Issetugid() bool
+pkg syscall (openbsd-386), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error)
+pkg syscall (openbsd-386), func Kill(int, Signal) error
+pkg syscall (openbsd-386), func Kqueue() (int, error)
+pkg syscall (openbsd-386), func Listen(int, int) error
+pkg syscall (openbsd-386), func Lstat(string, *Stat_t) error
+pkg syscall (openbsd-386), func Mkfifo(string, uint32) error
+pkg syscall (openbsd-386), func Mknod(string, uint32, int) error
+pkg syscall (openbsd-386), func Mmap(int, int64, int, int, int) ([]uint8, error)
+pkg syscall (openbsd-386), func Munmap([]uint8) error
+pkg syscall (openbsd-386), func Nanosleep(*Timespec, *Timespec) error
+pkg syscall (openbsd-386), func Open(string, int, uint32) (int, error)
+pkg syscall (openbsd-386), func ParseDirent([]uint8, int, []string) (int, int, []string)
+pkg syscall (openbsd-386), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error)
+pkg syscall (openbsd-386), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error)
+pkg syscall (openbsd-386), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error)
+pkg syscall (openbsd-386), func ParseUnixRights(*SocketControlMessage) ([]int, error)
+pkg syscall (openbsd-386), func Pathconf(string, int) (int, error)
+pkg syscall (openbsd-386), func Pipe([]int) error
+pkg syscall (openbsd-386), func Pread(int, []uint8, int64) (int, error)
+pkg syscall (openbsd-386), func Pwrite(int, []uint8, int64) (int, error)
+pkg syscall (openbsd-386), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (openbsd-386), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (openbsd-386), func Read(int, []uint8) (int, error)
+pkg syscall (openbsd-386), func ReadDirent(int, []uint8) (int, error)
+pkg syscall (openbsd-386), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
+pkg syscall (openbsd-386), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
+pkg syscall (openbsd-386), func Revoke(string) error
+pkg syscall (openbsd-386), func RouteRIB(int, int) ([]uint8, error)
+pkg syscall (openbsd-386), func Seek(int, int64, int) (int64, error)
+pkg syscall (openbsd-386), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error
+pkg syscall (openbsd-386), func Sendfile(int, int, *int64, int) (int, error)
+pkg syscall (openbsd-386), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
+pkg syscall (openbsd-386), func Sendto(int, []uint8, int, Sockaddr) error
+pkg syscall (openbsd-386), func SetBpf(int, []BpfInsn) error
+pkg syscall (openbsd-386), func SetBpfBuflen(int, int) (int, error)
+pkg syscall (openbsd-386), func SetBpfDatalink(int, int) (int, error)
+pkg syscall (openbsd-386), func SetBpfHeadercmpl(int, int) error
+pkg syscall (openbsd-386), func SetBpfImmediate(int, int) error
+pkg syscall (openbsd-386), func SetBpfInterface(int, string) error
+pkg syscall (openbsd-386), func SetBpfPromisc(int, int) error
+pkg syscall (openbsd-386), func SetBpfTimeout(int, *Timeval) error
+pkg syscall (openbsd-386), func SetKevent(*Kevent_t, int, int, int)
+pkg syscall (openbsd-386), func SetNonblock(int, bool) error
+pkg syscall (openbsd-386), func Setegid(int) error
+pkg syscall (openbsd-386), func Seteuid(int) error
+pkg syscall (openbsd-386), func Setgid(int) error
+pkg syscall (openbsd-386), func Setgroups([]int) error
+pkg syscall (openbsd-386), func Setlogin(string) error
+pkg syscall (openbsd-386), func Setpgid(int, int) error
+pkg syscall (openbsd-386), func Setpriority(int, int, int) error
+pkg syscall (openbsd-386), func Setregid(int, int) error
+pkg syscall (openbsd-386), func Setreuid(int, int) error
+pkg syscall (openbsd-386), func Setrlimit(int, *Rlimit) error
+pkg syscall (openbsd-386), func Setsid() (int, error)
+pkg syscall (openbsd-386), func SetsockoptByte(int, int, int, uint8) error
+pkg syscall (openbsd-386), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
+pkg syscall (openbsd-386), func SetsockoptIPMreq(int, int, int, *IPMreq) error
+pkg syscall (openbsd-386), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error
+pkg syscall (openbsd-386), func SetsockoptInet4Addr(int, int, int, [4]uint8) error
+pkg syscall (openbsd-386), func SetsockoptInt(int, int, int, int) error
+pkg syscall (openbsd-386), func SetsockoptLinger(int, int, int, *Linger) error
+pkg syscall (openbsd-386), func SetsockoptString(int, int, int, string) error
+pkg syscall (openbsd-386), func SetsockoptTimeval(int, int, int, *Timeval) error
+pkg syscall (openbsd-386), func Settimeofday(*Timeval) error
+pkg syscall (openbsd-386), func Setuid(int) error
+pkg syscall (openbsd-386), func Shutdown(int, int) error
+pkg syscall (openbsd-386), func SlicePtrFromStrings([]string) ([]*uint8, error)
+pkg syscall (openbsd-386), func Socket(int, int, int) (int, error)
+pkg syscall (openbsd-386), func Socketpair(int, int, int) ([2]int, error)
+pkg syscall (openbsd-386), func Stat(string, *Stat_t) error
+pkg syscall (openbsd-386), func Statfs(string, *Statfs_t) error
+pkg syscall (openbsd-386), func StringSlicePtr([]string) []*uint8
+pkg syscall (openbsd-386), func Sync() error
+pkg syscall (openbsd-386), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (openbsd-386), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (openbsd-386), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (openbsd-386), func Sysctl(string) (string, error)
+pkg syscall (openbsd-386), func SysctlUint32(string) (uint32, error)
+pkg syscall (openbsd-386), func TimevalToNsec(Timeval) int64
+pkg syscall (openbsd-386), func Truncate(string, int64) error
+pkg syscall (openbsd-386), func Umask(int) int
+pkg syscall (openbsd-386), func UnixRights(...int) []uint8
+pkg syscall (openbsd-386), func Unmount(string, int) error
+pkg syscall (openbsd-386), func Wait4(int, *WaitStatus, int, *Rusage) (int, error)
+pkg syscall (openbsd-386), func Write(int, []uint8) (int, error)
+pkg syscall (openbsd-386), method (*Cmsghdr) SetLen(int)
+pkg syscall (openbsd-386), method (*Iovec) SetLen(int)
+pkg syscall (openbsd-386), method (*Msghdr) SetControllen(int)
+pkg syscall (openbsd-386), type BpfHdr struct
+pkg syscall (openbsd-386), type BpfHdr struct, Caplen uint32
+pkg syscall (openbsd-386), type BpfHdr struct, Datalen uint32
+pkg syscall (openbsd-386), type BpfHdr struct, Hdrlen uint16
+pkg syscall (openbsd-386), type BpfHdr struct, Pad_cgo_0 [2]uint8
+pkg syscall (openbsd-386), type BpfHdr struct, Tstamp BpfTimeval
+pkg syscall (openbsd-386), type BpfInsn struct
+pkg syscall (openbsd-386), type BpfInsn struct, Code uint16
+pkg syscall (openbsd-386), type BpfInsn struct, Jf uint8
+pkg syscall (openbsd-386), type BpfInsn struct, Jt uint8
+pkg syscall (openbsd-386), type BpfInsn struct, K uint32
+pkg syscall (openbsd-386), type BpfProgram struct
+pkg syscall (openbsd-386), type BpfProgram struct, Insns *BpfInsn
+pkg syscall (openbsd-386), type BpfProgram struct, Len uint32
+pkg syscall (openbsd-386), type BpfStat struct
+pkg syscall (openbsd-386), type BpfStat struct, Drop uint32
+pkg syscall (openbsd-386), type BpfStat struct, Recv uint32
+pkg syscall (openbsd-386), type BpfTimeval struct
+pkg syscall (openbsd-386), type BpfTimeval struct, Sec uint32
+pkg syscall (openbsd-386), type BpfTimeval struct, Usec uint32
+pkg syscall (openbsd-386), type BpfVersion struct
+pkg syscall (openbsd-386), type BpfVersion struct, Major uint16
+pkg syscall (openbsd-386), type BpfVersion struct, Minor uint16
+pkg syscall (openbsd-386), type Cmsghdr struct
+pkg syscall (openbsd-386), type Cmsghdr struct, Len uint32
+pkg syscall (openbsd-386), type Cmsghdr struct, Level int32
+pkg syscall (openbsd-386), type Cmsghdr struct, Type int32
+pkg syscall (openbsd-386), type Credential struct
+pkg syscall (openbsd-386), type Credential struct, Gid uint32
+pkg syscall (openbsd-386), type Credential struct, Groups []uint32
+pkg syscall (openbsd-386), type Credential struct, Uid uint32
+pkg syscall (openbsd-386), type Dirent struct
+pkg syscall (openbsd-386), type Dirent struct, Fileno uint32
+pkg syscall (openbsd-386), type Dirent struct, Name [256]int8
+pkg syscall (openbsd-386), type Dirent struct, Namlen uint8
+pkg syscall (openbsd-386), type Dirent struct, Reclen uint16
+pkg syscall (openbsd-386), type Dirent struct, Type uint8
+pkg syscall (openbsd-386), type FdSet struct
+pkg syscall (openbsd-386), type FdSet struct, Bits [32]int32
+pkg syscall (openbsd-386), type Flock_t struct
+pkg syscall (openbsd-386), type Flock_t struct, Len int64
+pkg syscall (openbsd-386), type Flock_t struct, Pid int32
+pkg syscall (openbsd-386), type Flock_t struct, Start int64
+pkg syscall (openbsd-386), type Flock_t struct, Type int16
+pkg syscall (openbsd-386), type Flock_t struct, Whence int16
+pkg syscall (openbsd-386), type Fsid struct
+pkg syscall (openbsd-386), type Fsid struct, Val [2]int32
+pkg syscall (openbsd-386), type ICMPv6Filter struct
+pkg syscall (openbsd-386), type ICMPv6Filter struct, Filt [8]uint32
+pkg syscall (openbsd-386), type IPv6MTUInfo struct
+pkg syscall (openbsd-386), type IPv6MTUInfo struct, Addr RawSockaddrInet6
+pkg syscall (openbsd-386), type IPv6MTUInfo struct, Mtu uint32
+pkg syscall (openbsd-386), type IfAnnounceMsghdr struct
+pkg syscall (openbsd-386), type IfAnnounceMsghdr struct, Hdrlen uint16
+pkg syscall (openbsd-386), type IfAnnounceMsghdr struct, Index uint16
+pkg syscall (openbsd-386), type IfAnnounceMsghdr struct, Msglen uint16
+pkg syscall (openbsd-386), type IfAnnounceMsghdr struct, Name [16]int8
+pkg syscall (openbsd-386), type IfAnnounceMsghdr struct, Type uint8
+pkg syscall (openbsd-386), type IfAnnounceMsghdr struct, Version uint8
+pkg syscall (openbsd-386), type IfAnnounceMsghdr struct, What uint16
+pkg syscall (openbsd-386), type IfData struct
+pkg syscall (openbsd-386), type IfData struct, Addrlen uint8
+pkg syscall (openbsd-386), type IfData struct, Baudrate uint64
+pkg syscall (openbsd-386), type IfData struct, Capabilities uint32
+pkg syscall (openbsd-386), type IfData struct, Collisions uint64
+pkg syscall (openbsd-386), type IfData struct, Hdrlen uint8
+pkg syscall (openbsd-386), type IfData struct, Ibytes uint64
+pkg syscall (openbsd-386), type IfData struct, Ierrors uint64
+pkg syscall (openbsd-386), type IfData struct, Imcasts uint64
+pkg syscall (openbsd-386), type IfData struct, Ipackets uint64
+pkg syscall (openbsd-386), type IfData struct, Iqdrops uint64
+pkg syscall (openbsd-386), type IfData struct, Lastchange Timeval
+pkg syscall (openbsd-386), type IfData struct, Link_state uint8
+pkg syscall (openbsd-386), type IfData struct, Mclpool [7]Mclpool
+pkg syscall (openbsd-386), type IfData struct, Metric uint32
+pkg syscall (openbsd-386), type IfData struct, Mtu uint32
+pkg syscall (openbsd-386), type IfData struct, Noproto uint64
+pkg syscall (openbsd-386), type IfData struct, Obytes uint64
+pkg syscall (openbsd-386), type IfData struct, Oerrors uint64
+pkg syscall (openbsd-386), type IfData struct, Omcasts uint64
+pkg syscall (openbsd-386), type IfData struct, Opackets uint64
+pkg syscall (openbsd-386), type IfData struct, Pad uint32
+pkg syscall (openbsd-386), type IfData struct, Type uint8
+pkg syscall (openbsd-386), type IfMsghdr struct
+pkg syscall (openbsd-386), type IfMsghdr struct, Addrs int32
+pkg syscall (openbsd-386), type IfMsghdr struct, Data IfData
+pkg syscall (openbsd-386), type IfMsghdr struct, Flags int32
+pkg syscall (openbsd-386), type IfMsghdr struct, Hdrlen uint16
+pkg syscall (openbsd-386), type IfMsghdr struct, Index uint16
+pkg syscall (openbsd-386), type IfMsghdr struct, Msglen uint16
+pkg syscall (openbsd-386), type IfMsghdr struct, Pad1 uint8
+pkg syscall (openbsd-386), type IfMsghdr struct, Pad2 uint8
+pkg syscall (openbsd-386), type IfMsghdr struct, Tableid uint16
+pkg syscall (openbsd-386), type IfMsghdr struct, Type uint8
+pkg syscall (openbsd-386), type IfMsghdr struct, Version uint8
+pkg syscall (openbsd-386), type IfMsghdr struct, Xflags int32
+pkg syscall (openbsd-386), type IfaMsghdr struct
+pkg syscall (openbsd-386), type IfaMsghdr struct, Addrs int32
+pkg syscall (openbsd-386), type IfaMsghdr struct, Flags int32
+pkg syscall (openbsd-386), type IfaMsghdr struct, Hdrlen uint16
+pkg syscall (openbsd-386), type IfaMsghdr struct, Index uint16
+pkg syscall (openbsd-386), type IfaMsghdr struct, Metric int32
+pkg syscall (openbsd-386), type IfaMsghdr struct, Msglen uint16
+pkg syscall (openbsd-386), type IfaMsghdr struct, Pad1 uint8
+pkg syscall (openbsd-386), type IfaMsghdr struct, Pad2 uint8
+pkg syscall (openbsd-386), type IfaMsghdr struct, Tableid uint16
+pkg syscall (openbsd-386), type IfaMsghdr struct, Type uint8
+pkg syscall (openbsd-386), type IfaMsghdr struct, Version uint8
+pkg syscall (openbsd-386), type Inet6Pktinfo struct
+pkg syscall (openbsd-386), type Inet6Pktinfo struct, Addr [16]uint8
+pkg syscall (openbsd-386), type Inet6Pktinfo struct, Ifindex uint32
+pkg syscall (openbsd-386), type InterfaceAddrMessage struct
+pkg syscall (openbsd-386), type InterfaceAddrMessage struct, Data []uint8
+pkg syscall (openbsd-386), type InterfaceAddrMessage struct, Header IfaMsghdr
+pkg syscall (openbsd-386), type InterfaceAnnounceMessage struct
+pkg syscall (openbsd-386), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr
+pkg syscall (openbsd-386), type InterfaceMessage struct
+pkg syscall (openbsd-386), type InterfaceMessage struct, Data []uint8
+pkg syscall (openbsd-386), type InterfaceMessage struct, Header IfMsghdr
+pkg syscall (openbsd-386), type Iovec struct
+pkg syscall (openbsd-386), type Iovec struct, Base *uint8
+pkg syscall (openbsd-386), type Iovec struct, Len uint32
+pkg syscall (openbsd-386), type Kevent_t struct
+pkg syscall (openbsd-386), type Kevent_t struct, Data int32
+pkg syscall (openbsd-386), type Kevent_t struct, Fflags uint32
+pkg syscall (openbsd-386), type Kevent_t struct, Filter int16
+pkg syscall (openbsd-386), type Kevent_t struct, Flags uint16
+pkg syscall (openbsd-386), type Kevent_t struct, Ident uint32
+pkg syscall (openbsd-386), type Kevent_t struct, Udata *uint8
+pkg syscall (openbsd-386), type Mclpool struct
+pkg syscall (openbsd-386), type Mclpool struct, Alive uint16
+pkg syscall (openbsd-386), type Mclpool struct, Cwm uint16
+pkg syscall (openbsd-386), type Mclpool struct, Grown uint32
+pkg syscall (openbsd-386), type Mclpool struct, Hwm uint16
+pkg syscall (openbsd-386), type Mclpool struct, Lwm uint16
+pkg syscall (openbsd-386), type Msghdr struct
+pkg syscall (openbsd-386), type Msghdr struct, Control *uint8
+pkg syscall (openbsd-386), type Msghdr struct, Controllen uint32
+pkg syscall (openbsd-386), type Msghdr struct, Flags int32
+pkg syscall (openbsd-386), type Msghdr struct, Iov *Iovec
+pkg syscall (openbsd-386), type Msghdr struct, Iovlen uint32
+pkg syscall (openbsd-386), type Msghdr struct, Name *uint8
+pkg syscall (openbsd-386), type Msghdr struct, Namelen uint32
+pkg syscall (openbsd-386), type RawSockaddr struct, Data [14]int8
+pkg syscall (openbsd-386), type RawSockaddr struct, Family uint8
+pkg syscall (openbsd-386), type RawSockaddr struct, Len uint8
+pkg syscall (openbsd-386), type RawSockaddrAny struct, Pad [92]int8
+pkg syscall (openbsd-386), type RawSockaddrDatalink struct
+pkg syscall (openbsd-386), type RawSockaddrDatalink struct, Alen uint8
+pkg syscall (openbsd-386), type RawSockaddrDatalink struct, Data [24]int8
+pkg syscall (openbsd-386), type RawSockaddrDatalink struct, Family uint8
+pkg syscall (openbsd-386), type RawSockaddrDatalink struct, Index uint16
+pkg syscall (openbsd-386), type RawSockaddrDatalink struct, Len uint8
+pkg syscall (openbsd-386), type RawSockaddrDatalink struct, Nlen uint8
+pkg syscall (openbsd-386), type RawSockaddrDatalink struct, Slen uint8
+pkg syscall (openbsd-386), type RawSockaddrDatalink struct, Type uint8
+pkg syscall (openbsd-386), type RawSockaddrInet4 struct, Family uint8
+pkg syscall (openbsd-386), type RawSockaddrInet4 struct, Len uint8
+pkg syscall (openbsd-386), type RawSockaddrInet4 struct, Zero [8]int8
+pkg syscall (openbsd-386), type RawSockaddrInet6 struct, Family uint8
+pkg syscall (openbsd-386), type RawSockaddrInet6 struct, Len uint8
+pkg syscall (openbsd-386), type RawSockaddrUnix struct
+pkg syscall (openbsd-386), type RawSockaddrUnix struct, Family uint8
+pkg syscall (openbsd-386), type RawSockaddrUnix struct, Len uint8
+pkg syscall (openbsd-386), type RawSockaddrUnix struct, Path [104]int8
+pkg syscall (openbsd-386), type Rlimit struct
+pkg syscall (openbsd-386), type Rlimit struct, Cur uint64
+pkg syscall (openbsd-386), type Rlimit struct, Max uint64
+pkg syscall (openbsd-386), type RouteMessage struct
+pkg syscall (openbsd-386), type RouteMessage struct, Data []uint8
+pkg syscall (openbsd-386), type RouteMessage struct, Header RtMsghdr
+pkg syscall (openbsd-386), type RoutingMessage interface, unexported methods
+pkg syscall (openbsd-386), type RtMetrics struct
+pkg syscall (openbsd-386), type RtMetrics struct, Expire uint32
+pkg syscall (openbsd-386), type RtMetrics struct, Hopcount uint32
+pkg syscall (openbsd-386), type RtMetrics struct, Locks uint32
+pkg syscall (openbsd-386), type RtMetrics struct, Mtu uint32
+pkg syscall (openbsd-386), type RtMetrics struct, Pksent uint64
+pkg syscall (openbsd-386), type RtMetrics struct, Recvpipe uint32
+pkg syscall (openbsd-386), type RtMetrics struct, Refcnt uint32
+pkg syscall (openbsd-386), type RtMetrics struct, Rtt uint32
+pkg syscall (openbsd-386), type RtMetrics struct, Rttvar uint32
+pkg syscall (openbsd-386), type RtMetrics struct, Sendpipe uint32
+pkg syscall (openbsd-386), type RtMetrics struct, Ssthresh uint32
+pkg syscall (openbsd-386), type RtMsghdr struct
+pkg syscall (openbsd-386), type RtMsghdr struct, Addrs int32
+pkg syscall (openbsd-386), type RtMsghdr struct, Errno int32
+pkg syscall (openbsd-386), type RtMsghdr struct, Flags int32
+pkg syscall (openbsd-386), type RtMsghdr struct, Fmask int32
+pkg syscall (openbsd-386), type RtMsghdr struct, Hdrlen uint16
+pkg syscall (openbsd-386), type RtMsghdr struct, Index uint16
+pkg syscall (openbsd-386), type RtMsghdr struct, Inits uint32
+pkg syscall (openbsd-386), type RtMsghdr struct, Mpls uint8
+pkg syscall (openbsd-386), type RtMsghdr struct, Msglen uint16
+pkg syscall (openbsd-386), type RtMsghdr struct, Pid int32
+pkg syscall (openbsd-386), type RtMsghdr struct, Priority uint8
+pkg syscall (openbsd-386), type RtMsghdr struct, Rmx RtMetrics
+pkg syscall (openbsd-386), type RtMsghdr struct, Seq int32
+pkg syscall (openbsd-386), type RtMsghdr struct, Tableid uint16
+pkg syscall (openbsd-386), type RtMsghdr struct, Type uint8
+pkg syscall (openbsd-386), type RtMsghdr struct, Version uint8
+pkg syscall (openbsd-386), type Rusage struct, Idrss int32
+pkg syscall (openbsd-386), type Rusage struct, Inblock int32
+pkg syscall (openbsd-386), type Rusage struct, Isrss int32
+pkg syscall (openbsd-386), type Rusage struct, Ixrss int32
+pkg syscall (openbsd-386), type Rusage struct, Majflt int32
+pkg syscall (openbsd-386), type Rusage struct, Maxrss int32
+pkg syscall (openbsd-386), type Rusage struct, Minflt int32
+pkg syscall (openbsd-386), type Rusage struct, Msgrcv int32
+pkg syscall (openbsd-386), type Rusage struct, Msgsnd int32
+pkg syscall (openbsd-386), type Rusage struct, Nivcsw int32
+pkg syscall (openbsd-386), type Rusage struct, Nsignals int32
+pkg syscall (openbsd-386), type Rusage struct, Nswap int32
+pkg syscall (openbsd-386), type Rusage struct, Nvcsw int32
+pkg syscall (openbsd-386), type Rusage struct, Oublock int32
+pkg syscall (openbsd-386), type Rusage struct, Stime Timeval
+pkg syscall (openbsd-386), type Rusage struct, Utime Timeval
+pkg syscall (openbsd-386), type SockaddrDatalink struct
+pkg syscall (openbsd-386), type SockaddrDatalink struct, Alen uint8
+pkg syscall (openbsd-386), type SockaddrDatalink struct, Data [24]int8
+pkg syscall (openbsd-386), type SockaddrDatalink struct, Family uint8
+pkg syscall (openbsd-386), type SockaddrDatalink struct, Index uint16
+pkg syscall (openbsd-386), type SockaddrDatalink struct, Len uint8
+pkg syscall (openbsd-386), type SockaddrDatalink struct, Nlen uint8
+pkg syscall (openbsd-386), type SockaddrDatalink struct, Slen uint8
+pkg syscall (openbsd-386), type SockaddrDatalink struct, Type uint8
+pkg syscall (openbsd-386), type SocketControlMessage struct
+pkg syscall (openbsd-386), type SocketControlMessage struct, Data []uint8
+pkg syscall (openbsd-386), type SocketControlMessage struct, Header Cmsghdr
+pkg syscall (openbsd-386), type Stat_t struct
+pkg syscall (openbsd-386), type Stat_t struct, Atim Timespec
+pkg syscall (openbsd-386), type Stat_t struct, Blksize uint32
+pkg syscall (openbsd-386), type Stat_t struct, Blocks int64
+pkg syscall (openbsd-386), type Stat_t struct, Ctim Timespec
+pkg syscall (openbsd-386), type Stat_t struct, Dev int32
+pkg syscall (openbsd-386), type Stat_t struct, Flags uint32
+pkg syscall (openbsd-386), type Stat_t struct, Gen uint32
+pkg syscall (openbsd-386), type Stat_t struct, Gid uint32
+pkg syscall (openbsd-386), type Stat_t struct, Ino uint32
+pkg syscall (openbsd-386), type Stat_t struct, Lspare0 int32
+pkg syscall (openbsd-386), type Stat_t struct, Lspare1 int32
+pkg syscall (openbsd-386), type Stat_t struct, Mode uint32
+pkg syscall (openbsd-386), type Stat_t struct, Mtim Timespec
+pkg syscall (openbsd-386), type Stat_t struct, Nlink uint32
+pkg syscall (openbsd-386), type Stat_t struct, Qspare [2]int64
+pkg syscall (openbsd-386), type Stat_t struct, Rdev int32
+pkg syscall (openbsd-386), type Stat_t struct, Size int64
+pkg syscall (openbsd-386), type Stat_t struct, Uid uint32
+pkg syscall (openbsd-386), type Stat_t struct, X__st_birthtim Timespec
+pkg syscall (openbsd-386), type Statfs_t struct
+pkg syscall (openbsd-386), type Statfs_t struct, F_asyncreads uint64
+pkg syscall (openbsd-386), type Statfs_t struct, F_asyncwrites uint64
+pkg syscall (openbsd-386), type Statfs_t struct, F_bavail int64
+pkg syscall (openbsd-386), type Statfs_t struct, F_bfree uint64
+pkg syscall (openbsd-386), type Statfs_t struct, F_blocks uint64
+pkg syscall (openbsd-386), type Statfs_t struct, F_bsize uint32
+pkg syscall (openbsd-386), type Statfs_t struct, F_ctime uint32
+pkg syscall (openbsd-386), type Statfs_t struct, F_favail int64
+pkg syscall (openbsd-386), type Statfs_t struct, F_ffree uint64
+pkg syscall (openbsd-386), type Statfs_t struct, F_files uint64
+pkg syscall (openbsd-386), type Statfs_t struct, F_flags uint32
+pkg syscall (openbsd-386), type Statfs_t struct, F_fsid Fsid
+pkg syscall (openbsd-386), type Statfs_t struct, F_fstypename [16]int8
+pkg syscall (openbsd-386), type Statfs_t struct, F_iosize uint32
+pkg syscall (openbsd-386), type Statfs_t struct, F_mntfromname [90]int8
+pkg syscall (openbsd-386), type Statfs_t struct, F_mntonname [90]int8
+pkg syscall (openbsd-386), type Statfs_t struct, F_namemax uint32
+pkg syscall (openbsd-386), type Statfs_t struct, F_owner uint32
+pkg syscall (openbsd-386), type Statfs_t struct, F_spare [3]uint32
+pkg syscall (openbsd-386), type Statfs_t struct, F_syncreads uint64
+pkg syscall (openbsd-386), type Statfs_t struct, F_syncwrites uint64
+pkg syscall (openbsd-386), type Statfs_t struct, Mount_info [160]uint8
+pkg syscall (openbsd-386), type SysProcAttr struct, Chroot string
+pkg syscall (openbsd-386), type SysProcAttr struct, Credential *Credential
+pkg syscall (openbsd-386), type SysProcAttr struct, Noctty bool
+pkg syscall (openbsd-386), type SysProcAttr struct, Ptrace bool
+pkg syscall (openbsd-386), type SysProcAttr struct, Setctty bool
+pkg syscall (openbsd-386), type SysProcAttr struct, Setpgid bool
+pkg syscall (openbsd-386), type SysProcAttr struct, Setsid bool
+pkg syscall (openbsd-386), type Timespec struct, Nsec int32
+pkg syscall (openbsd-386), type Timespec struct, Sec int32
+pkg syscall (openbsd-386), type Timeval struct, Sec int32
+pkg syscall (openbsd-386), type Timeval struct, Usec int32
+pkg syscall (openbsd-386), type WaitStatus uint32
+pkg syscall (openbsd-386), var Stderr int
+pkg syscall (openbsd-386), var Stdin int
+pkg syscall (openbsd-386), var Stdout int
+pkg syscall (openbsd-386-cgo), const AF_APPLETALK ideal-int
+pkg syscall (openbsd-386-cgo), const AF_BLUETOOTH ideal-int
+pkg syscall (openbsd-386-cgo), const AF_CCITT ideal-int
+pkg syscall (openbsd-386-cgo), const AF_CHAOS ideal-int
+pkg syscall (openbsd-386-cgo), const AF_CNT ideal-int
+pkg syscall (openbsd-386-cgo), const AF_COIP ideal-int
+pkg syscall (openbsd-386-cgo), const AF_DATAKIT ideal-int
+pkg syscall (openbsd-386-cgo), const AF_DECnet ideal-int
+pkg syscall (openbsd-386-cgo), const AF_DLI ideal-int
+pkg syscall (openbsd-386-cgo), const AF_E164 ideal-int
+pkg syscall (openbsd-386-cgo), const AF_ECMA ideal-int
+pkg syscall (openbsd-386-cgo), const AF_ENCAP ideal-int
+pkg syscall (openbsd-386-cgo), const AF_HYLINK ideal-int
+pkg syscall (openbsd-386-cgo), const AF_IMPLINK ideal-int
+pkg syscall (openbsd-386-cgo), const AF_IPX ideal-int
+pkg syscall (openbsd-386-cgo), const AF_ISDN ideal-int
+pkg syscall (openbsd-386-cgo), const AF_ISO ideal-int
+pkg syscall (openbsd-386-cgo), const AF_KEY ideal-int
+pkg syscall (openbsd-386-cgo), const AF_LAT ideal-int
+pkg syscall (openbsd-386-cgo), const AF_LINK ideal-int
+pkg syscall (openbsd-386-cgo), const AF_LOCAL ideal-int
+pkg syscall (openbsd-386-cgo), const AF_MAX ideal-int
+pkg syscall (openbsd-386-cgo), const AF_MPLS ideal-int
+pkg syscall (openbsd-386-cgo), const AF_NATM ideal-int
+pkg syscall (openbsd-386-cgo), const AF_NS ideal-int
+pkg syscall (openbsd-386-cgo), const AF_OSI ideal-int
+pkg syscall (openbsd-386-cgo), const AF_PUP ideal-int
+pkg syscall (openbsd-386-cgo), const AF_ROUTE ideal-int
+pkg syscall (openbsd-386-cgo), const AF_SIP ideal-int
+pkg syscall (openbsd-386-cgo), const AF_SNA ideal-int
+pkg syscall (openbsd-386-cgo), const ARPHRD_ETHER ideal-int
+pkg syscall (openbsd-386-cgo), const ARPHRD_FRELAY ideal-int
+pkg syscall (openbsd-386-cgo), const ARPHRD_IEEE1394 ideal-int
+pkg syscall (openbsd-386-cgo), const ARPHRD_IEEE802 ideal-int
+pkg syscall (openbsd-386-cgo), const B0 ideal-int
+pkg syscall (openbsd-386-cgo), const B110 ideal-int
+pkg syscall (openbsd-386-cgo), const B115200 ideal-int
+pkg syscall (openbsd-386-cgo), const B1200 ideal-int
+pkg syscall (openbsd-386-cgo), const B134 ideal-int
+pkg syscall (openbsd-386-cgo), const B14400 ideal-int
+pkg syscall (openbsd-386-cgo), const B150 ideal-int
+pkg syscall (openbsd-386-cgo), const B1800 ideal-int
+pkg syscall (openbsd-386-cgo), const B19200 ideal-int
+pkg syscall (openbsd-386-cgo), const B200 ideal-int
+pkg syscall (openbsd-386-cgo), const B230400 ideal-int
+pkg syscall (openbsd-386-cgo), const B2400 ideal-int
+pkg syscall (openbsd-386-cgo), const B28800 ideal-int
+pkg syscall (openbsd-386-cgo), const B300 ideal-int
+pkg syscall (openbsd-386-cgo), const B38400 ideal-int
+pkg syscall (openbsd-386-cgo), const B4800 ideal-int
+pkg syscall (openbsd-386-cgo), const B50 ideal-int
+pkg syscall (openbsd-386-cgo), const B57600 ideal-int
+pkg syscall (openbsd-386-cgo), const B600 ideal-int
+pkg syscall (openbsd-386-cgo), const B7200 ideal-int
+pkg syscall (openbsd-386-cgo), const B75 ideal-int
+pkg syscall (openbsd-386-cgo), const B76800 ideal-int
+pkg syscall (openbsd-386-cgo), const B9600 ideal-int
+pkg syscall (openbsd-386-cgo), const BIOCFLUSH ideal-int
+pkg syscall (openbsd-386-cgo), const BIOCGBLEN ideal-int
+pkg syscall (openbsd-386-cgo), const BIOCGDIRFILT ideal-int
+pkg syscall (openbsd-386-cgo), const BIOCGDLT ideal-int
+pkg syscall (openbsd-386-cgo), const BIOCGDLTLIST ideal-int
+pkg syscall (openbsd-386-cgo), const BIOCGETIF ideal-int
+pkg syscall (openbsd-386-cgo), const BIOCGFILDROP ideal-int
+pkg syscall (openbsd-386-cgo), const BIOCGHDRCMPLT ideal-int
+pkg syscall (openbsd-386-cgo), const BIOCGRSIG ideal-int
+pkg syscall (openbsd-386-cgo), const BIOCGRTIMEOUT ideal-int
+pkg syscall (openbsd-386-cgo), const BIOCGSTATS ideal-int
+pkg syscall (openbsd-386-cgo), const BIOCIMMEDIATE ideal-int
+pkg syscall (openbsd-386-cgo), const BIOCLOCK ideal-int
+pkg syscall (openbsd-386-cgo), const BIOCPROMISC ideal-int
+pkg syscall (openbsd-386-cgo), const BIOCSBLEN ideal-int
+pkg syscall (openbsd-386-cgo), const BIOCSDIRFILT ideal-int
+pkg syscall (openbsd-386-cgo), const BIOCSDLT ideal-int
+pkg syscall (openbsd-386-cgo), const BIOCSETF ideal-int
+pkg syscall (openbsd-386-cgo), const BIOCSETIF ideal-int
+pkg syscall (openbsd-386-cgo), const BIOCSETWF ideal-int
+pkg syscall (openbsd-386-cgo), const BIOCSFILDROP ideal-int
+pkg syscall (openbsd-386-cgo), const BIOCSHDRCMPLT ideal-int
+pkg syscall (openbsd-386-cgo), const BIOCSRSIG ideal-int
+pkg syscall (openbsd-386-cgo), const BIOCSRTIMEOUT ideal-int
+pkg syscall (openbsd-386-cgo), const BIOCVERSION ideal-int
+pkg syscall (openbsd-386-cgo), const BPF_A ideal-int
+pkg syscall (openbsd-386-cgo), const BPF_ABS ideal-int
+pkg syscall (openbsd-386-cgo), const BPF_ADD ideal-int
+pkg syscall (openbsd-386-cgo), const BPF_ALIGNMENT ideal-int
+pkg syscall (openbsd-386-cgo), const BPF_ALU ideal-int
+pkg syscall (openbsd-386-cgo), const BPF_AND ideal-int
+pkg syscall (openbsd-386-cgo), const BPF_B ideal-int
+pkg syscall (openbsd-386-cgo), const BPF_DIRECTION_IN ideal-int
+pkg syscall (openbsd-386-cgo), const BPF_DIRECTION_OUT ideal-int
+pkg syscall (openbsd-386-cgo), const BPF_DIV ideal-int
+pkg syscall (openbsd-386-cgo), const BPF_H ideal-int
+pkg syscall (openbsd-386-cgo), const BPF_IMM ideal-int
+pkg syscall (openbsd-386-cgo), const BPF_IND ideal-int
+pkg syscall (openbsd-386-cgo), const BPF_JA ideal-int
+pkg syscall (openbsd-386-cgo), const BPF_JEQ ideal-int
+pkg syscall (openbsd-386-cgo), const BPF_JGE ideal-int
+pkg syscall (openbsd-386-cgo), const BPF_JGT ideal-int
+pkg syscall (openbsd-386-cgo), const BPF_JMP ideal-int
+pkg syscall (openbsd-386-cgo), const BPF_JSET ideal-int
+pkg syscall (openbsd-386-cgo), const BPF_K ideal-int
+pkg syscall (openbsd-386-cgo), const BPF_LD ideal-int
+pkg syscall (openbsd-386-cgo), const BPF_LDX ideal-int
+pkg syscall (openbsd-386-cgo), const BPF_LEN ideal-int
+pkg syscall (openbsd-386-cgo), const BPF_LSH ideal-int
+pkg syscall (openbsd-386-cgo), const BPF_MAJOR_VERSION ideal-int
+pkg syscall (openbsd-386-cgo), const BPF_MAXBUFSIZE ideal-int
+pkg syscall (openbsd-386-cgo), const BPF_MAXINSNS ideal-int
+pkg syscall (openbsd-386-cgo), const BPF_MEM ideal-int
+pkg syscall (openbsd-386-cgo), const BPF_MEMWORDS ideal-int
+pkg syscall (openbsd-386-cgo), const BPF_MINBUFSIZE ideal-int
+pkg syscall (openbsd-386-cgo), const BPF_MINOR_VERSION ideal-int
+pkg syscall (openbsd-386-cgo), const BPF_MISC ideal-int
+pkg syscall (openbsd-386-cgo), const BPF_MSH ideal-int
+pkg syscall (openbsd-386-cgo), const BPF_MUL ideal-int
+pkg syscall (openbsd-386-cgo), const BPF_NEG ideal-int
+pkg syscall (openbsd-386-cgo), const BPF_OR ideal-int
+pkg syscall (openbsd-386-cgo), const BPF_RELEASE ideal-int
+pkg syscall (openbsd-386-cgo), const BPF_RET ideal-int
+pkg syscall (openbsd-386-cgo), const BPF_RSH ideal-int
+pkg syscall (openbsd-386-cgo), const BPF_ST ideal-int
+pkg syscall (openbsd-386-cgo), const BPF_STX ideal-int
+pkg syscall (openbsd-386-cgo), const BPF_SUB ideal-int
+pkg syscall (openbsd-386-cgo), const BPF_TAX ideal-int
+pkg syscall (openbsd-386-cgo), const BPF_TXA ideal-int
+pkg syscall (openbsd-386-cgo), const BPF_W ideal-int
+pkg syscall (openbsd-386-cgo), const BPF_X ideal-int
+pkg syscall (openbsd-386-cgo), const BRKINT ideal-int
+pkg syscall (openbsd-386-cgo), const CFLUSH ideal-int
+pkg syscall (openbsd-386-cgo), const CLOCAL ideal-int
+pkg syscall (openbsd-386-cgo), const CREAD ideal-int
+pkg syscall (openbsd-386-cgo), const CS5 ideal-int
+pkg syscall (openbsd-386-cgo), const CS6 ideal-int
+pkg syscall (openbsd-386-cgo), const CS7 ideal-int
+pkg syscall (openbsd-386-cgo), const CS8 ideal-int
+pkg syscall (openbsd-386-cgo), const CSIZE ideal-int
+pkg syscall (openbsd-386-cgo), const CSTART ideal-int
+pkg syscall (openbsd-386-cgo), const CSTATUS ideal-int
+pkg syscall (openbsd-386-cgo), const CSTOP ideal-int
+pkg syscall (openbsd-386-cgo), const CSTOPB ideal-int
+pkg syscall (openbsd-386-cgo), const CSUSP ideal-int
+pkg syscall (openbsd-386-cgo), const CTL_MAXNAME ideal-int
+pkg syscall (openbsd-386-cgo), const CTL_NET ideal-int
+pkg syscall (openbsd-386-cgo), const DIOCOSFPFLUSH ideal-int
+pkg syscall (openbsd-386-cgo), const DLT_ARCNET ideal-int
+pkg syscall (openbsd-386-cgo), const DLT_ATM_RFC1483 ideal-int
+pkg syscall (openbsd-386-cgo), const DLT_AX25 ideal-int
+pkg syscall (openbsd-386-cgo), const DLT_CHAOS ideal-int
+pkg syscall (openbsd-386-cgo), const DLT_C_HDLC ideal-int
+pkg syscall (openbsd-386-cgo), const DLT_EN10MB ideal-int
+pkg syscall (openbsd-386-cgo), const DLT_EN3MB ideal-int
+pkg syscall (openbsd-386-cgo), const DLT_ENC ideal-int
+pkg syscall (openbsd-386-cgo), const DLT_FDDI ideal-int
+pkg syscall (openbsd-386-cgo), const DLT_IEEE802 ideal-int
+pkg syscall (openbsd-386-cgo), const DLT_IEEE802_11 ideal-int
+pkg syscall (openbsd-386-cgo), const DLT_IEEE802_11_RADIO ideal-int
+pkg syscall (openbsd-386-cgo), const DLT_LOOP ideal-int
+pkg syscall (openbsd-386-cgo), const DLT_MPLS ideal-int
+pkg syscall (openbsd-386-cgo), const DLT_NULL ideal-int
+pkg syscall (openbsd-386-cgo), const DLT_PFLOG ideal-int
+pkg syscall (openbsd-386-cgo), const DLT_PFSYNC ideal-int
+pkg syscall (openbsd-386-cgo), const DLT_PPP ideal-int
+pkg syscall (openbsd-386-cgo), const DLT_PPP_BSDOS ideal-int
+pkg syscall (openbsd-386-cgo), const DLT_PPP_ETHER ideal-int
+pkg syscall (openbsd-386-cgo), const DLT_PPP_SERIAL ideal-int
+pkg syscall (openbsd-386-cgo), const DLT_PRONET ideal-int
+pkg syscall (openbsd-386-cgo), const DLT_RAW ideal-int
+pkg syscall (openbsd-386-cgo), const DLT_SLIP ideal-int
+pkg syscall (openbsd-386-cgo), const DLT_SLIP_BSDOS ideal-int
+pkg syscall (openbsd-386-cgo), const DT_BLK ideal-int
+pkg syscall (openbsd-386-cgo), const DT_CHR ideal-int
+pkg syscall (openbsd-386-cgo), const DT_DIR ideal-int
+pkg syscall (openbsd-386-cgo), const DT_FIFO ideal-int
+pkg syscall (openbsd-386-cgo), const DT_LNK ideal-int
+pkg syscall (openbsd-386-cgo), const DT_REG ideal-int
+pkg syscall (openbsd-386-cgo), const DT_SOCK ideal-int
+pkg syscall (openbsd-386-cgo), const DT_UNKNOWN ideal-int
+pkg syscall (openbsd-386-cgo), const EAUTH Errno
+pkg syscall (openbsd-386-cgo), const EBADRPC Errno
+pkg syscall (openbsd-386-cgo), const ECHO ideal-int
+pkg syscall (openbsd-386-cgo), const ECHOCTL ideal-int
+pkg syscall (openbsd-386-cgo), const ECHOE ideal-int
+pkg syscall (openbsd-386-cgo), const ECHOK ideal-int
+pkg syscall (openbsd-386-cgo), const ECHOKE ideal-int
+pkg syscall (openbsd-386-cgo), const ECHONL ideal-int
+pkg syscall (openbsd-386-cgo), const ECHOPRT ideal-int
+pkg syscall (openbsd-386-cgo), const EFTYPE Errno
+pkg syscall (openbsd-386-cgo), const EIPSEC Errno
+pkg syscall (openbsd-386-cgo), const ELAST Errno
+pkg syscall (openbsd-386-cgo), const EMEDIUMTYPE Errno
+pkg syscall (openbsd-386-cgo), const EMT_TAGOVF ideal-int
+pkg syscall (openbsd-386-cgo), const EMUL_ENABLED ideal-int
+pkg syscall (openbsd-386-cgo), const EMUL_NATIVE ideal-int
+pkg syscall (openbsd-386-cgo), const ENDRUNDISC ideal-int
+pkg syscall (openbsd-386-cgo), const ENEEDAUTH Errno
+pkg syscall (openbsd-386-cgo), const ENOATTR Errno
+pkg syscall (openbsd-386-cgo), const ENOMEDIUM Errno
+pkg syscall (openbsd-386-cgo), const EPROCLIM Errno
+pkg syscall (openbsd-386-cgo), const EPROCUNAVAIL Errno
+pkg syscall (openbsd-386-cgo), const EPROGMISMATCH Errno
+pkg syscall (openbsd-386-cgo), const EPROGUNAVAIL Errno
+pkg syscall (openbsd-386-cgo), const ERPCMISMATCH Errno
+pkg syscall (openbsd-386-cgo), const ETHERMIN ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERMTU ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_8023 ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_AARP ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_ACCTON ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_AEONIC ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_ALPHA ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_AMBER ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_AMOEBA ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_AOE ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_APOLLO ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_APOLLODOMAIN ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_APPLETALK ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_APPLITEK ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_ARGONAUT ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_ARP ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_AT ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_ATALK ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_ATOMIC ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_ATT ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_ATTSTANFORD ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_AUTOPHON ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_AXIS ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_BCLOOP ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_BOFL ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_CABLETRON ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_CHAOS ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_COMDESIGN ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_COMPUGRAPHIC ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_COUNTERPOINT ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_CRONUS ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_CRONUSVLN ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_DCA ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_DDE ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_DEBNI ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_DECAM ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_DECCUST ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_DECDIAG ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_DECDNS ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_DECDTS ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_DECEXPER ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_DECLAST ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_DECLTM ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_DECMUMPS ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_DECNETBIOS ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_DELTACON ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_DIDDLE ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_DLOG1 ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_DLOG2 ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_DN ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_DOGFIGHT ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_DSMD ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_ECMA ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_ENCRYPT ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_ES ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_EXCELAN ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_EXPERDATA ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_FLIP ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_FLOWCONTROL ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_FRARP ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_GENDYN ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_HAYES ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_HIPPI_FP ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_HITACHI ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_HP ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_IEEEPUP ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_IEEEPUPAT ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_IMLBL ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_IMLBLDIAG ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_IP ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_IPAS ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_IPV6 ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_IPX ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_IPXNEW ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_KALPANA ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_LANBRIDGE ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_LANPROBE ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_LAT ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_LBACK ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_LITTLE ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_LLDP ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_LOGICRAFT ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_LOOPBACK ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_MATRA ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_MAX ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_MERIT ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_MICP ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_MOPDL ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_MOPRC ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_MOTOROLA ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_MPLS ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_MPLS_MCAST ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_MUMPS ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPCC ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPCLAIM ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPCLREQ ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPCLRSP ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPCREQ ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPCRSP ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPDG ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPDGB ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPDLTE ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPRAR ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPRAS ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPRST ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPSCD ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPVCD ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBS ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_NCD ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_NESTAR ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_NETBEUI ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_NOVELL ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_NS ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_NSAT ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_NSCOMPAT ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_NTRAILER ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_OS9 ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_OS9NET ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_PACER ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_PAE ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_PCS ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_PLANNING ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_PPP ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_PPPOE ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_PPPOEDISC ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_PRIMENTS ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_PUP ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_PUPAT ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_QINQ ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_RACAL ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_RATIONAL ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_RAWFR ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_RCL ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_RDP ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_RETIX ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_REVARP ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_SCA ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_SECTRA ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_SECUREDATA ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_SGITW ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_SG_BOUNCE ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_SG_DIAG ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_SG_NETGAMES ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_SG_RESV ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_SIMNET ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_SLOW ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_SNA ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_SNMP ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_SONIX ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_SPIDER ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_SPRITE ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_STP ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_TALARIS ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_TALARISMC ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_TCPCOMP ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_TCPSM ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_TEC ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_TIGAN ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_TRAIL ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_TRANSETHER ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_TYMSHARE ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_UBBST ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_UBDEBUG ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_UBDIAGLOOP ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_UBDL ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_UBNIU ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_UBNMC ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_VALID ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_VARIAN ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_VAXELN ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_VEECO ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_VEXP ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_VGLAB ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_VINES ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_VINESECHO ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_VINESLOOP ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_VITAL ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_VLAN ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_VLTLMAN ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_VPROD ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_VURESERVED ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_WATERLOO ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_WELLFLEET ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_X25 ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_X75 ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_XNSSM ideal-int
+pkg syscall (openbsd-386-cgo), const ETHERTYPE_XTP ideal-int
+pkg syscall (openbsd-386-cgo), const ETHER_ADDR_LEN ideal-int
+pkg syscall (openbsd-386-cgo), const ETHER_ALIGN ideal-int
+pkg syscall (openbsd-386-cgo), const ETHER_CRC_LEN ideal-int
+pkg syscall (openbsd-386-cgo), const ETHER_CRC_POLY_BE ideal-int
+pkg syscall (openbsd-386-cgo), const ETHER_CRC_POLY_LE ideal-int
+pkg syscall (openbsd-386-cgo), const ETHER_HDR_LEN ideal-int
+pkg syscall (openbsd-386-cgo), const ETHER_MAX_DIX_LEN ideal-int
+pkg syscall (openbsd-386-cgo), const ETHER_MAX_LEN ideal-int
+pkg syscall (openbsd-386-cgo), const ETHER_MIN_LEN ideal-int
+pkg syscall (openbsd-386-cgo), const ETHER_TYPE_LEN ideal-int
+pkg syscall (openbsd-386-cgo), const ETHER_VLAN_ENCAP_LEN ideal-int
+pkg syscall (openbsd-386-cgo), const EVFILT_AIO ideal-int
+pkg syscall (openbsd-386-cgo), const EVFILT_PROC ideal-int
+pkg syscall (openbsd-386-cgo), const EVFILT_READ ideal-int
+pkg syscall (openbsd-386-cgo), const EVFILT_SIGNAL ideal-int
+pkg syscall (openbsd-386-cgo), const EVFILT_SYSCOUNT ideal-int
+pkg syscall (openbsd-386-cgo), const EVFILT_TIMER ideal-int
+pkg syscall (openbsd-386-cgo), const EVFILT_VNODE ideal-int
+pkg syscall (openbsd-386-cgo), const EVFILT_WRITE ideal-int
+pkg syscall (openbsd-386-cgo), const EV_ADD ideal-int
+pkg syscall (openbsd-386-cgo), const EV_CLEAR ideal-int
+pkg syscall (openbsd-386-cgo), const EV_DELETE ideal-int
+pkg syscall (openbsd-386-cgo), const EV_DISABLE ideal-int
+pkg syscall (openbsd-386-cgo), const EV_ENABLE ideal-int
+pkg syscall (openbsd-386-cgo), const EV_EOF ideal-int
+pkg syscall (openbsd-386-cgo), const EV_ERROR ideal-int
+pkg syscall (openbsd-386-cgo), const EV_FLAG1 ideal-int
+pkg syscall (openbsd-386-cgo), const EV_ONESHOT ideal-int
+pkg syscall (openbsd-386-cgo), const EV_SYSFLAGS ideal-int
+pkg syscall (openbsd-386-cgo), const EXTA ideal-int
+pkg syscall (openbsd-386-cgo), const EXTB ideal-int
+pkg syscall (openbsd-386-cgo), const EXTPROC ideal-int
+pkg syscall (openbsd-386-cgo), const FD_CLOEXEC ideal-int
+pkg syscall (openbsd-386-cgo), const FD_SETSIZE ideal-int
+pkg syscall (openbsd-386-cgo), const FLUSHO ideal-int
+pkg syscall (openbsd-386-cgo), const F_DUPFD ideal-int
+pkg syscall (openbsd-386-cgo), const F_DUPFD_CLOEXEC ideal-int
+pkg syscall (openbsd-386-cgo), const F_GETFD ideal-int
+pkg syscall (openbsd-386-cgo), const F_GETFL ideal-int
+pkg syscall (openbsd-386-cgo), const F_GETLK ideal-int
+pkg syscall (openbsd-386-cgo), const F_GETOWN ideal-int
+pkg syscall (openbsd-386-cgo), const F_OK ideal-int
+pkg syscall (openbsd-386-cgo), const F_RDLCK ideal-int
+pkg syscall (openbsd-386-cgo), const F_SETFD ideal-int
+pkg syscall (openbsd-386-cgo), const F_SETFL ideal-int
+pkg syscall (openbsd-386-cgo), const F_SETLK ideal-int
+pkg syscall (openbsd-386-cgo), const F_SETLKW ideal-int
+pkg syscall (openbsd-386-cgo), const F_SETOWN ideal-int
+pkg syscall (openbsd-386-cgo), const F_UNLCK ideal-int
+pkg syscall (openbsd-386-cgo), const F_WRLCK ideal-int
+pkg syscall (openbsd-386-cgo), const HUPCL ideal-int
+pkg syscall (openbsd-386-cgo), const ICANON ideal-int
+pkg syscall (openbsd-386-cgo), const ICMP6_FILTER = 18
+pkg syscall (openbsd-386-cgo), const ICMP6_FILTER ideal-int
+pkg syscall (openbsd-386-cgo), const ICRNL ideal-int
+pkg syscall (openbsd-386-cgo), const IEXTEN ideal-int
+pkg syscall (openbsd-386-cgo), const IFAN_ARRIVAL ideal-int
+pkg syscall (openbsd-386-cgo), const IFAN_DEPARTURE ideal-int
+pkg syscall (openbsd-386-cgo), const IFA_ROUTE ideal-int
+pkg syscall (openbsd-386-cgo), const IFF_ALLMULTI ideal-int
+pkg syscall (openbsd-386-cgo), const IFF_CANTCHANGE ideal-int
+pkg syscall (openbsd-386-cgo), const IFF_DEBUG ideal-int
+pkg syscall (openbsd-386-cgo), const IFF_LINK0 ideal-int
+pkg syscall (openbsd-386-cgo), const IFF_LINK1 ideal-int
+pkg syscall (openbsd-386-cgo), const IFF_LINK2 ideal-int
+pkg syscall (openbsd-386-cgo), const IFF_NOARP ideal-int
+pkg syscall (openbsd-386-cgo), const IFF_NOTRAILERS ideal-int
+pkg syscall (openbsd-386-cgo), const IFF_OACTIVE ideal-int
+pkg syscall (openbsd-386-cgo), const IFF_POINTOPOINT ideal-int
+pkg syscall (openbsd-386-cgo), const IFF_PROMISC ideal-int
+pkg syscall (openbsd-386-cgo), const IFF_RUNNING ideal-int
+pkg syscall (openbsd-386-cgo), const IFF_SIMPLEX ideal-int
+pkg syscall (openbsd-386-cgo), const IFNAMSIZ ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_1822 ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_A12MPPSWITCH ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_AAL2 ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_AAL5 ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_ADSL ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_AFLANE8023 ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_AFLANE8025 ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_ARAP ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_ARCNET ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_ARCNETPLUS ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_ASYNC ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_ATM ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_ATMDXI ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_ATMFUNI ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_ATMIMA ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_ATMLOGICAL ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_ATMRADIO ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_ATMSUBINTERFACE ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_ATMVCIENDPT ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_ATMVIRTUAL ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_BGPPOLICYACCOUNTING ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_BLUETOOTH ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_BRIDGE ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_BSC ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_CARP ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_CCTEMUL ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_CEPT ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_CES ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_CHANNEL ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_CNR ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_COFFEE ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_COMPOSITELINK ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_DCN ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_DIGITALPOWERLINE ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_DLSW ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_DOCSCABLEDOWNSTREAM ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_DOCSCABLEMACLAYER ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_DOCSCABLEUPSTREAM ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_DOCSCABLEUPSTREAMCHANNEL ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_DS0 ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_DS0BUNDLE ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_DS1FDL ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_DS3 ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_DTM ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_DUMMY ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_DVBASILN ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_DVBASIOUT ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_DVBRCCDOWNSTREAM ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_DVBRCCMACLAYER ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_DVBRCCUPSTREAM ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_ECONET ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_ENC ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_EON ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_EPLRS ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_ESCON ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_ETHER ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_FAITH ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_FAST ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_FASTETHER ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_FASTETHERFX ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_FDDI ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_FIBRECHANNEL ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_FRAMERELAYINTERCONNECT ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_FRAMERELAYMPI ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_FRDLCIENDPT ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_FRELAY ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_FRELAYDCE ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_FRF16MFRBUNDLE ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_FRFORWARD ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_G703AT2MB ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_G703AT64K ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_GIF ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_GIGABITETHERNET ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_GR303IDT ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_GR303RDT ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_H323GATEKEEPER ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_H323PROXY ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_HDH1822 ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_HDLC ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_HDSL2 ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_HIPERLAN2 ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_HIPPI ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_HIPPIINTERFACE ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_HOSTPAD ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_HSSI ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_HY ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_IBM370PARCHAN ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_IDSL ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_IEEE1394 ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_IEEE80211 ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_IEEE80212 ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_IEEE8023ADLAG ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_IFGSN ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_IMT ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_INFINIBAND ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_INTERLEAVE ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_IP ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_IPFORWARD ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_IPOVERATM ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_IPOVERCDLC ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_IPOVERCLAW ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_IPSWITCH ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_ISDN ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_ISDNBASIC ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_ISDNPRIMARY ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_ISDNS ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_ISDNU ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_ISO88022LLC ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_ISO88023 ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_ISO88024 ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_ISO88025 ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_ISO88025CRFPINT ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_ISO88025DTR ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_ISO88025FIBER ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_ISO88026 ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_ISUP ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_L2VLAN ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_L3IPVLAN ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_L3IPXVLAN ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_LAPB ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_LAPD ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_LAPF ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_LINEGROUP ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_LOCALTALK ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_LOOP ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_MEDIAMAILOVERIP ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_MFSIGLINK ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_MIOX25 ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_MODEM ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_MPC ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_MPLS ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_MPLSTUNNEL ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_MSDSL ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_MVL ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_MYRINET ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_NFAS ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_NSIP ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_OPTICALCHANNEL ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_OPTICALTRANSPORT ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_OTHER ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_P10 ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_P80 ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_PARA ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_PFLOG ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_PFLOW ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_PFSYNC ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_PLC ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_PON155 ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_PON622 ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_POS ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_PPP ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_PPPMULTILINKBUNDLE ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_PROPATM ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_PROPBWAP2MP ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_PROPCNLS ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_PROPMUX ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_PROPVIRTUAL ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_PROPWIRELESSP2P ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_PTPSERIAL ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_PVC ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_Q2931 ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_QLLC ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_RADIOMAC ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_RADSL ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_REACHDSL ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_RFC1483 ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_RS232 ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_RSRB ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_SDLC ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_SDSL ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_SHDSL ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_SIP ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_SIPSIG ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_SIPTG ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_SLIP ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_SMDSDXI ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_SMDSICIP ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_SONET ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_SONETOVERHEADCHANNEL ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_SONETPATH ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_SONETVT ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_SRP ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_SS7SIGLINK ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_STACKTOSTACK ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_STARLAN ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_T1 ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_TDLC ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_TELINK ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_TERMPAD ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_TR008 ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_TRANSPHDLC ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_TUNNEL ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_ULTRA ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_USB ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_V11 ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_V35 ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_V36 ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_V37 ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_VDSL ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_VIRTUALIPADDRESS ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_VIRTUALTG ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_VOICEDID ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_VOICEEM ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_VOICEEMFGD ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_VOICEENCAP ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_VOICEFGDEANA ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_VOICEFXO ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_VOICEFXS ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_VOICEOVERATM ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_VOICEOVERCABLE ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_VOICEOVERFRAMERELAY ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_VOICEOVERIP ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_X213 ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_X25 ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_X25DDN ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_X25HUNTGROUP ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_X25MLP ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_X25PLE ideal-int
+pkg syscall (openbsd-386-cgo), const IFT_XETHER ideal-int
+pkg syscall (openbsd-386-cgo), const IGNBRK ideal-int
+pkg syscall (openbsd-386-cgo), const IGNCR ideal-int
+pkg syscall (openbsd-386-cgo), const IGNPAR ideal-int
+pkg syscall (openbsd-386-cgo), const IMAXBEL ideal-int
+pkg syscall (openbsd-386-cgo), const INLCR ideal-int
+pkg syscall (openbsd-386-cgo), const INPCK ideal-int
+pkg syscall (openbsd-386-cgo), const IN_CLASSA_HOST ideal-int
+pkg syscall (openbsd-386-cgo), const IN_CLASSA_MAX ideal-int
+pkg syscall (openbsd-386-cgo), const IN_CLASSA_NET ideal-int
+pkg syscall (openbsd-386-cgo), const IN_CLASSA_NSHIFT ideal-int
+pkg syscall (openbsd-386-cgo), const IN_CLASSB_HOST ideal-int
+pkg syscall (openbsd-386-cgo), const IN_CLASSB_MAX ideal-int
+pkg syscall (openbsd-386-cgo), const IN_CLASSB_NET ideal-int
+pkg syscall (openbsd-386-cgo), const IN_CLASSB_NSHIFT ideal-int
+pkg syscall (openbsd-386-cgo), const IN_CLASSC_HOST ideal-int
+pkg syscall (openbsd-386-cgo), const IN_CLASSC_NET ideal-int
+pkg syscall (openbsd-386-cgo), const IN_CLASSC_NSHIFT ideal-int
+pkg syscall (openbsd-386-cgo), const IN_CLASSD_HOST ideal-int
+pkg syscall (openbsd-386-cgo), const IN_CLASSD_NET ideal-int
+pkg syscall (openbsd-386-cgo), const IN_CLASSD_NSHIFT ideal-int
+pkg syscall (openbsd-386-cgo), const IN_LOOPBACKNET ideal-int
+pkg syscall (openbsd-386-cgo), const IN_RFC3021_HOST ideal-int
+pkg syscall (openbsd-386-cgo), const IN_RFC3021_NET ideal-int
+pkg syscall (openbsd-386-cgo), const IN_RFC3021_NSHIFT ideal-int
+pkg syscall (openbsd-386-cgo), const IPPROTO_AH ideal-int
+pkg syscall (openbsd-386-cgo), const IPPROTO_CARP ideal-int
+pkg syscall (openbsd-386-cgo), const IPPROTO_DIVERT ideal-int
+pkg syscall (openbsd-386-cgo), const IPPROTO_DONE ideal-int
+pkg syscall (openbsd-386-cgo), const IPPROTO_DSTOPTS ideal-int
+pkg syscall (openbsd-386-cgo), const IPPROTO_EGP ideal-int
+pkg syscall (openbsd-386-cgo), const IPPROTO_ENCAP ideal-int
+pkg syscall (openbsd-386-cgo), const IPPROTO_EON ideal-int
+pkg syscall (openbsd-386-cgo), const IPPROTO_ESP ideal-int
+pkg syscall (openbsd-386-cgo), const IPPROTO_ETHERIP ideal-int
+pkg syscall (openbsd-386-cgo), const IPPROTO_FRAGMENT ideal-int
+pkg syscall (openbsd-386-cgo), const IPPROTO_GGP ideal-int
+pkg syscall (openbsd-386-cgo), const IPPROTO_GRE ideal-int
+pkg syscall (openbsd-386-cgo), const IPPROTO_HOPOPTS ideal-int
+pkg syscall (openbsd-386-cgo), const IPPROTO_ICMP ideal-int
+pkg syscall (openbsd-386-cgo), const IPPROTO_ICMPV6 ideal-int
+pkg syscall (openbsd-386-cgo), const IPPROTO_IDP ideal-int
+pkg syscall (openbsd-386-cgo), const IPPROTO_IGMP ideal-int
+pkg syscall (openbsd-386-cgo), const IPPROTO_IPCOMP ideal-int
+pkg syscall (openbsd-386-cgo), const IPPROTO_IPIP ideal-int
+pkg syscall (openbsd-386-cgo), const IPPROTO_IPV4 ideal-int
+pkg syscall (openbsd-386-cgo), const IPPROTO_MAX ideal-int
+pkg syscall (openbsd-386-cgo), const IPPROTO_MAXID ideal-int
+pkg syscall (openbsd-386-cgo), const IPPROTO_MOBILE ideal-int
+pkg syscall (openbsd-386-cgo), const IPPROTO_MPLS ideal-int
+pkg syscall (openbsd-386-cgo), const IPPROTO_NONE ideal-int
+pkg syscall (openbsd-386-cgo), const IPPROTO_PFSYNC ideal-int
+pkg syscall (openbsd-386-cgo), const IPPROTO_PIM ideal-int
+pkg syscall (openbsd-386-cgo), const IPPROTO_PUP ideal-int
+pkg syscall (openbsd-386-cgo), const IPPROTO_RAW ideal-int
+pkg syscall (openbsd-386-cgo), const IPPROTO_ROUTING ideal-int
+pkg syscall (openbsd-386-cgo), const IPPROTO_RSVP ideal-int
+pkg syscall (openbsd-386-cgo), const IPPROTO_TP ideal-int
+pkg syscall (openbsd-386-cgo), const IPV6_AUTH_LEVEL ideal-int
+pkg syscall (openbsd-386-cgo), const IPV6_AUTOFLOWLABEL ideal-int
+pkg syscall (openbsd-386-cgo), const IPV6_CHECKSUM ideal-int
+pkg syscall (openbsd-386-cgo), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int
+pkg syscall (openbsd-386-cgo), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int
+pkg syscall (openbsd-386-cgo), const IPV6_DEFHLIM ideal-int
+pkg syscall (openbsd-386-cgo), const IPV6_DONTFRAG ideal-int
+pkg syscall (openbsd-386-cgo), const IPV6_DSTOPTS ideal-int
+pkg syscall (openbsd-386-cgo), const IPV6_ESP_NETWORK_LEVEL ideal-int
+pkg syscall (openbsd-386-cgo), const IPV6_ESP_TRANS_LEVEL ideal-int
+pkg syscall (openbsd-386-cgo), const IPV6_FAITH ideal-int
+pkg syscall (openbsd-386-cgo), const IPV6_FLOWINFO_MASK ideal-int
+pkg syscall (openbsd-386-cgo), const IPV6_FLOWLABEL_MASK ideal-int
+pkg syscall (openbsd-386-cgo), const IPV6_FRAGTTL ideal-int
+pkg syscall (openbsd-386-cgo), const IPV6_HLIMDEC ideal-int
+pkg syscall (openbsd-386-cgo), const IPV6_HOPLIMIT ideal-int
+pkg syscall (openbsd-386-cgo), const IPV6_HOPOPTS ideal-int
+pkg syscall (openbsd-386-cgo), const IPV6_IPCOMP_LEVEL ideal-int
+pkg syscall (openbsd-386-cgo), const IPV6_MAXHLIM ideal-int
+pkg syscall (openbsd-386-cgo), const IPV6_MAXPACKET ideal-int
+pkg syscall (openbsd-386-cgo), const IPV6_MMTU ideal-int
+pkg syscall (openbsd-386-cgo), const IPV6_NEXTHOP ideal-int
+pkg syscall (openbsd-386-cgo), const IPV6_OPTIONS ideal-int
+pkg syscall (openbsd-386-cgo), const IPV6_PATHMTU ideal-int
+pkg syscall (openbsd-386-cgo), const IPV6_PIPEX ideal-int
+pkg syscall (openbsd-386-cgo), const IPV6_PKTINFO ideal-int
+pkg syscall (openbsd-386-cgo), const IPV6_PORTRANGE ideal-int
+pkg syscall (openbsd-386-cgo), const IPV6_PORTRANGE_DEFAULT ideal-int
+pkg syscall (openbsd-386-cgo), const IPV6_PORTRANGE_HIGH ideal-int
+pkg syscall (openbsd-386-cgo), const IPV6_PORTRANGE_LOW ideal-int
+pkg syscall (openbsd-386-cgo), const IPV6_RECVDSTOPTS ideal-int
+pkg syscall (openbsd-386-cgo), const IPV6_RECVHOPLIMIT ideal-int
+pkg syscall (openbsd-386-cgo), const IPV6_RECVHOPOPTS ideal-int
+pkg syscall (openbsd-386-cgo), const IPV6_RECVPATHMTU ideal-int
+pkg syscall (openbsd-386-cgo), const IPV6_RECVPKTINFO ideal-int
+pkg syscall (openbsd-386-cgo), const IPV6_RECVRTHDR ideal-int
+pkg syscall (openbsd-386-cgo), const IPV6_RECVTCLASS ideal-int
+pkg syscall (openbsd-386-cgo), const IPV6_RTABLE ideal-int
+pkg syscall (openbsd-386-cgo), const IPV6_RTHDR ideal-int
+pkg syscall (openbsd-386-cgo), const IPV6_RTHDRDSTOPTS ideal-int
+pkg syscall (openbsd-386-cgo), const IPV6_RTHDR_LOOSE ideal-int
+pkg syscall (openbsd-386-cgo), const IPV6_RTHDR_STRICT ideal-int
+pkg syscall (openbsd-386-cgo), const IPV6_RTHDR_TYPE_0 ideal-int
+pkg syscall (openbsd-386-cgo), const IPV6_SOCKOPT_RESERVED1 ideal-int
+pkg syscall (openbsd-386-cgo), const IPV6_TCLASS ideal-int
+pkg syscall (openbsd-386-cgo), const IPV6_USE_MIN_MTU ideal-int
+pkg syscall (openbsd-386-cgo), const IPV6_VERSION ideal-int
+pkg syscall (openbsd-386-cgo), const IPV6_VERSION_MASK ideal-int
+pkg syscall (openbsd-386-cgo), const IP_AUTH_LEVEL ideal-int
+pkg syscall (openbsd-386-cgo), const IP_DEFAULT_MULTICAST_LOOP ideal-int
+pkg syscall (openbsd-386-cgo), const IP_DEFAULT_MULTICAST_TTL ideal-int
+pkg syscall (openbsd-386-cgo), const IP_DF ideal-int
+pkg syscall (openbsd-386-cgo), const IP_ESP_NETWORK_LEVEL ideal-int
+pkg syscall (openbsd-386-cgo), const IP_ESP_TRANS_LEVEL ideal-int
+pkg syscall (openbsd-386-cgo), const IP_HDRINCL ideal-int
+pkg syscall (openbsd-386-cgo), const IP_IPCOMP_LEVEL ideal-int
+pkg syscall (openbsd-386-cgo), const IP_IPSECFLOWINFO ideal-int
+pkg syscall (openbsd-386-cgo), const IP_IPSEC_LOCAL_AUTH ideal-int
+pkg syscall (openbsd-386-cgo), const IP_IPSEC_LOCAL_CRED ideal-int
+pkg syscall (openbsd-386-cgo), const IP_IPSEC_LOCAL_ID ideal-int
+pkg syscall (openbsd-386-cgo), const IP_IPSEC_REMOTE_AUTH ideal-int
+pkg syscall (openbsd-386-cgo), const IP_IPSEC_REMOTE_CRED ideal-int
+pkg syscall (openbsd-386-cgo), const IP_IPSEC_REMOTE_ID ideal-int
+pkg syscall (openbsd-386-cgo), const IP_MAXPACKET ideal-int
+pkg syscall (openbsd-386-cgo), const IP_MAX_MEMBERSHIPS ideal-int
+pkg syscall (openbsd-386-cgo), const IP_MF ideal-int
+pkg syscall (openbsd-386-cgo), const IP_MINTTL ideal-int
+pkg syscall (openbsd-386-cgo), const IP_MIN_MEMBERSHIPS ideal-int
+pkg syscall (openbsd-386-cgo), const IP_MSS ideal-int
+pkg syscall (openbsd-386-cgo), const IP_OFFMASK ideal-int
+pkg syscall (openbsd-386-cgo), const IP_OPTIONS ideal-int
+pkg syscall (openbsd-386-cgo), const IP_PIPEX ideal-int
+pkg syscall (openbsd-386-cgo), const IP_PORTRANGE ideal-int
+pkg syscall (openbsd-386-cgo), const IP_PORTRANGE_DEFAULT ideal-int
+pkg syscall (openbsd-386-cgo), const IP_PORTRANGE_HIGH ideal-int
+pkg syscall (openbsd-386-cgo), const IP_PORTRANGE_LOW ideal-int
+pkg syscall (openbsd-386-cgo), const IP_RECVDSTADDR ideal-int
+pkg syscall (openbsd-386-cgo), const IP_RECVDSTPORT ideal-int
+pkg syscall (openbsd-386-cgo), const IP_RECVIF ideal-int
+pkg syscall (openbsd-386-cgo), const IP_RECVOPTS ideal-int
+pkg syscall (openbsd-386-cgo), const IP_RECVRETOPTS ideal-int
+pkg syscall (openbsd-386-cgo), const IP_RECVRTABLE ideal-int
+pkg syscall (openbsd-386-cgo), const IP_RECVTTL ideal-int
+pkg syscall (openbsd-386-cgo), const IP_RETOPTS ideal-int
+pkg syscall (openbsd-386-cgo), const IP_RF ideal-int
+pkg syscall (openbsd-386-cgo), const IP_RTABLE ideal-int
+pkg syscall (openbsd-386-cgo), const ISIG ideal-int
+pkg syscall (openbsd-386-cgo), const ISTRIP ideal-int
+pkg syscall (openbsd-386-cgo), const IXANY ideal-int
+pkg syscall (openbsd-386-cgo), const IXOFF ideal-int
+pkg syscall (openbsd-386-cgo), const IXON ideal-int
+pkg syscall (openbsd-386-cgo), const LCNT_OVERLOAD_FLUSH ideal-int
+pkg syscall (openbsd-386-cgo), const LOCK_EX ideal-int
+pkg syscall (openbsd-386-cgo), const LOCK_NB ideal-int
+pkg syscall (openbsd-386-cgo), const LOCK_SH ideal-int
+pkg syscall (openbsd-386-cgo), const LOCK_UN ideal-int
+pkg syscall (openbsd-386-cgo), const MSG_BCAST ideal-int
+pkg syscall (openbsd-386-cgo), const MSG_CTRUNC ideal-int
+pkg syscall (openbsd-386-cgo), const MSG_DONTROUTE ideal-int
+pkg syscall (openbsd-386-cgo), const MSG_DONTWAIT ideal-int
+pkg syscall (openbsd-386-cgo), const MSG_EOR ideal-int
+pkg syscall (openbsd-386-cgo), const MSG_MCAST ideal-int
+pkg syscall (openbsd-386-cgo), const MSG_NOSIGNAL ideal-int
+pkg syscall (openbsd-386-cgo), const MSG_OOB ideal-int
+pkg syscall (openbsd-386-cgo), const MSG_PEEK ideal-int
+pkg syscall (openbsd-386-cgo), const MSG_TRUNC ideal-int
+pkg syscall (openbsd-386-cgo), const MSG_WAITALL ideal-int
+pkg syscall (openbsd-386-cgo), const NAME_MAX ideal-int
+pkg syscall (openbsd-386-cgo), const NET_RT_DUMP ideal-int
+pkg syscall (openbsd-386-cgo), const NET_RT_FLAGS ideal-int
+pkg syscall (openbsd-386-cgo), const NET_RT_IFLIST ideal-int
+pkg syscall (openbsd-386-cgo), const NET_RT_MAXID ideal-int
+pkg syscall (openbsd-386-cgo), const NET_RT_STATS ideal-int
+pkg syscall (openbsd-386-cgo), const NET_RT_TABLE ideal-int
+pkg syscall (openbsd-386-cgo), const NOFLSH ideal-int
+pkg syscall (openbsd-386-cgo), const NOTE_ATTRIB ideal-int
+pkg syscall (openbsd-386-cgo), const NOTE_CHILD ideal-int
+pkg syscall (openbsd-386-cgo), const NOTE_DELETE ideal-int
+pkg syscall (openbsd-386-cgo), const NOTE_EOF ideal-int
+pkg syscall (openbsd-386-cgo), const NOTE_EXEC ideal-int
+pkg syscall (openbsd-386-cgo), const NOTE_EXIT ideal-int
+pkg syscall (openbsd-386-cgo), const NOTE_EXTEND ideal-int
+pkg syscall (openbsd-386-cgo), const NOTE_FORK ideal-int
+pkg syscall (openbsd-386-cgo), const NOTE_LINK ideal-int
+pkg syscall (openbsd-386-cgo), const NOTE_LOWAT ideal-int
+pkg syscall (openbsd-386-cgo), const NOTE_PCTRLMASK ideal-int
+pkg syscall (openbsd-386-cgo), const NOTE_PDATAMASK ideal-int
+pkg syscall (openbsd-386-cgo), const NOTE_RENAME ideal-int
+pkg syscall (openbsd-386-cgo), const NOTE_REVOKE ideal-int
+pkg syscall (openbsd-386-cgo), const NOTE_TRACK ideal-int
+pkg syscall (openbsd-386-cgo), const NOTE_TRACKERR ideal-int
+pkg syscall (openbsd-386-cgo), const NOTE_TRUNCATE ideal-int
+pkg syscall (openbsd-386-cgo), const NOTE_WRITE ideal-int
+pkg syscall (openbsd-386-cgo), const OCRNL ideal-int
+pkg syscall (openbsd-386-cgo), const ONLCR ideal-int
+pkg syscall (openbsd-386-cgo), const ONLRET ideal-int
+pkg syscall (openbsd-386-cgo), const ONOCR ideal-int
+pkg syscall (openbsd-386-cgo), const ONOEOT ideal-int
+pkg syscall (openbsd-386-cgo), const OPOST ideal-int
+pkg syscall (openbsd-386-cgo), const O_ACCMODE ideal-int
+pkg syscall (openbsd-386-cgo), const O_DIRECTORY ideal-int
+pkg syscall (openbsd-386-cgo), const O_DSYNC ideal-int
+pkg syscall (openbsd-386-cgo), const O_EXLOCK ideal-int
+pkg syscall (openbsd-386-cgo), const O_FSYNC ideal-int
+pkg syscall (openbsd-386-cgo), const O_NDELAY ideal-int
+pkg syscall (openbsd-386-cgo), const O_NOFOLLOW ideal-int
+pkg syscall (openbsd-386-cgo), const O_RSYNC ideal-int
+pkg syscall (openbsd-386-cgo), const O_SHLOCK ideal-int
+pkg syscall (openbsd-386-cgo), const PARENB ideal-int
+pkg syscall (openbsd-386-cgo), const PARMRK ideal-int
+pkg syscall (openbsd-386-cgo), const PARODD ideal-int
+pkg syscall (openbsd-386-cgo), const PENDIN ideal-int
+pkg syscall (openbsd-386-cgo), const PF_FLUSH ideal-int
+pkg syscall (openbsd-386-cgo), const PRIO_PGRP = 1
+pkg syscall (openbsd-386-cgo), const PRIO_PGRP ideal-int
+pkg syscall (openbsd-386-cgo), const PRIO_PROCESS = 0
+pkg syscall (openbsd-386-cgo), const PRIO_PROCESS ideal-int
+pkg syscall (openbsd-386-cgo), const PRIO_USER = 2
+pkg syscall (openbsd-386-cgo), const PRIO_USER ideal-int
+pkg syscall (openbsd-386-cgo), const PTRACE_CONT ideal-int
+pkg syscall (openbsd-386-cgo), const PTRACE_KILL ideal-int
+pkg syscall (openbsd-386-cgo), const PTRACE_TRACEME ideal-int
+pkg syscall (openbsd-386-cgo), const PT_MASK ideal-int
+pkg syscall (openbsd-386-cgo), const RLIMIT_CORE ideal-int
+pkg syscall (openbsd-386-cgo), const RLIMIT_CPU ideal-int
+pkg syscall (openbsd-386-cgo), const RLIMIT_DATA ideal-int
+pkg syscall (openbsd-386-cgo), const RLIMIT_FSIZE ideal-int
+pkg syscall (openbsd-386-cgo), const RLIMIT_NOFILE ideal-int
+pkg syscall (openbsd-386-cgo), const RLIMIT_STACK ideal-int
+pkg syscall (openbsd-386-cgo), const RLIM_INFINITY ideal-int
+pkg syscall (openbsd-386-cgo), const RTAX_AUTHOR ideal-int
+pkg syscall (openbsd-386-cgo), const RTAX_BRD ideal-int
+pkg syscall (openbsd-386-cgo), const RTAX_DST ideal-int
+pkg syscall (openbsd-386-cgo), const RTAX_GATEWAY ideal-int
+pkg syscall (openbsd-386-cgo), const RTAX_GENMASK ideal-int
+pkg syscall (openbsd-386-cgo), const RTAX_IFA ideal-int
+pkg syscall (openbsd-386-cgo), const RTAX_IFP ideal-int
+pkg syscall (openbsd-386-cgo), const RTAX_LABEL ideal-int
+pkg syscall (openbsd-386-cgo), const RTAX_MAX ideal-int
+pkg syscall (openbsd-386-cgo), const RTAX_NETMASK ideal-int
+pkg syscall (openbsd-386-cgo), const RTAX_SRC ideal-int
+pkg syscall (openbsd-386-cgo), const RTAX_SRCMASK ideal-int
+pkg syscall (openbsd-386-cgo), const RTA_AUTHOR ideal-int
+pkg syscall (openbsd-386-cgo), const RTA_BRD ideal-int
+pkg syscall (openbsd-386-cgo), const RTA_DST ideal-int
+pkg syscall (openbsd-386-cgo), const RTA_GATEWAY ideal-int
+pkg syscall (openbsd-386-cgo), const RTA_GENMASK ideal-int
+pkg syscall (openbsd-386-cgo), const RTA_IFA ideal-int
+pkg syscall (openbsd-386-cgo), const RTA_IFP ideal-int
+pkg syscall (openbsd-386-cgo), const RTA_LABEL ideal-int
+pkg syscall (openbsd-386-cgo), const RTA_NETMASK ideal-int
+pkg syscall (openbsd-386-cgo), const RTA_SRC ideal-int
+pkg syscall (openbsd-386-cgo), const RTA_SRCMASK ideal-int
+pkg syscall (openbsd-386-cgo), const RTF_ANNOUNCE ideal-int
+pkg syscall (openbsd-386-cgo), const RTF_BLACKHOLE ideal-int
+pkg syscall (openbsd-386-cgo), const RTF_CLONED ideal-int
+pkg syscall (openbsd-386-cgo), const RTF_CLONING ideal-int
+pkg syscall (openbsd-386-cgo), const RTF_DONE ideal-int
+pkg syscall (openbsd-386-cgo), const RTF_DYNAMIC ideal-int
+pkg syscall (openbsd-386-cgo), const RTF_FMASK ideal-int
+pkg syscall (openbsd-386-cgo), const RTF_GATEWAY ideal-int
+pkg syscall (openbsd-386-cgo), const RTF_HOST ideal-int
+pkg syscall (openbsd-386-cgo), const RTF_LLINFO ideal-int
+pkg syscall (openbsd-386-cgo), const RTF_MASK ideal-int
+pkg syscall (openbsd-386-cgo), const RTF_MODIFIED ideal-int
+pkg syscall (openbsd-386-cgo), const RTF_MPATH ideal-int
+pkg syscall (openbsd-386-cgo), const RTF_MPLS ideal-int
+pkg syscall (openbsd-386-cgo), const RTF_PERMANENT_ARP ideal-int
+pkg syscall (openbsd-386-cgo), const RTF_PROTO1 ideal-int
+pkg syscall (openbsd-386-cgo), const RTF_PROTO2 ideal-int
+pkg syscall (openbsd-386-cgo), const RTF_PROTO3 ideal-int
+pkg syscall (openbsd-386-cgo), const RTF_REJECT ideal-int
+pkg syscall (openbsd-386-cgo), const RTF_SOURCE ideal-int
+pkg syscall (openbsd-386-cgo), const RTF_STATIC ideal-int
+pkg syscall (openbsd-386-cgo), const RTF_TUNNEL ideal-int
+pkg syscall (openbsd-386-cgo), const RTF_UP ideal-int
+pkg syscall (openbsd-386-cgo), const RTF_USETRAILERS ideal-int
+pkg syscall (openbsd-386-cgo), const RTF_XRESOLVE ideal-int
+pkg syscall (openbsd-386-cgo), const RTM_ADD ideal-int
+pkg syscall (openbsd-386-cgo), const RTM_CHANGE ideal-int
+pkg syscall (openbsd-386-cgo), const RTM_DELADDR ideal-int
+pkg syscall (openbsd-386-cgo), const RTM_DELETE ideal-int
+pkg syscall (openbsd-386-cgo), const RTM_DESYNC ideal-int
+pkg syscall (openbsd-386-cgo), const RTM_GET ideal-int
+pkg syscall (openbsd-386-cgo), const RTM_IFANNOUNCE ideal-int
+pkg syscall (openbsd-386-cgo), const RTM_IFINFO ideal-int
+pkg syscall (openbsd-386-cgo), const RTM_LOCK ideal-int
+pkg syscall (openbsd-386-cgo), const RTM_LOSING ideal-int
+pkg syscall (openbsd-386-cgo), const RTM_MAXSIZE ideal-int
+pkg syscall (openbsd-386-cgo), const RTM_MISS ideal-int
+pkg syscall (openbsd-386-cgo), const RTM_NEWADDR ideal-int
+pkg syscall (openbsd-386-cgo), const RTM_REDIRECT ideal-int
+pkg syscall (openbsd-386-cgo), const RTM_RESOLVE ideal-int
+pkg syscall (openbsd-386-cgo), const RTM_RTTUNIT ideal-int
+pkg syscall (openbsd-386-cgo), const RTM_VERSION ideal-int
+pkg syscall (openbsd-386-cgo), const RTV_EXPIRE ideal-int
+pkg syscall (openbsd-386-cgo), const RTV_HOPCOUNT ideal-int
+pkg syscall (openbsd-386-cgo), const RTV_MTU ideal-int
+pkg syscall (openbsd-386-cgo), const RTV_RPIPE ideal-int
+pkg syscall (openbsd-386-cgo), const RTV_RTT ideal-int
+pkg syscall (openbsd-386-cgo), const RTV_RTTVAR ideal-int
+pkg syscall (openbsd-386-cgo), const RTV_SPIPE ideal-int
+pkg syscall (openbsd-386-cgo), const RTV_SSTHRESH ideal-int
+pkg syscall (openbsd-386-cgo), const RT_TABLEID_MAX ideal-int
+pkg syscall (openbsd-386-cgo), const RUSAGE_CHILDREN ideal-int
+pkg syscall (openbsd-386-cgo), const RUSAGE_SELF ideal-int
+pkg syscall (openbsd-386-cgo), const RUSAGE_THREAD ideal-int
+pkg syscall (openbsd-386-cgo), const SCM_RIGHTS ideal-int
+pkg syscall (openbsd-386-cgo), const SCM_TIMESTAMP ideal-int
+pkg syscall (openbsd-386-cgo), const SIGCHLD Signal
+pkg syscall (openbsd-386-cgo), const SIGCONT Signal
+pkg syscall (openbsd-386-cgo), const SIGEMT Signal
+pkg syscall (openbsd-386-cgo), const SIGINFO Signal
+pkg syscall (openbsd-386-cgo), const SIGIO Signal
+pkg syscall (openbsd-386-cgo), const SIGIOT Signal
+pkg syscall (openbsd-386-cgo), const SIGPROF Signal
+pkg syscall (openbsd-386-cgo), const SIGSTOP Signal
+pkg syscall (openbsd-386-cgo), const SIGSYS Signal
+pkg syscall (openbsd-386-cgo), const SIGTHR Signal
+pkg syscall (openbsd-386-cgo), const SIGTSTP Signal
+pkg syscall (openbsd-386-cgo), const SIGTTIN Signal
+pkg syscall (openbsd-386-cgo), const SIGTTOU Signal
+pkg syscall (openbsd-386-cgo), const SIGURG Signal
+pkg syscall (openbsd-386-cgo), const SIGUSR1 Signal
+pkg syscall (openbsd-386-cgo), const SIGUSR2 Signal
+pkg syscall (openbsd-386-cgo), const SIGVTALRM Signal
+pkg syscall (openbsd-386-cgo), const SIGWINCH Signal
+pkg syscall (openbsd-386-cgo), const SIGXCPU Signal
+pkg syscall (openbsd-386-cgo), const SIGXFSZ Signal
+pkg syscall (openbsd-386-cgo), const SIOCADDMULTI ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCAIFADDR ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCAIFGROUP ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCALIFADDR ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCATMARK ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCBRDGADD ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCBRDGADDS ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCBRDGARL ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCBRDGDADDR ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCBRDGDEL ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCBRDGDELS ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCBRDGFLUSH ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCBRDGFRL ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCBRDGGCACHE ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCBRDGGFD ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCBRDGGHT ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCBRDGGIFFLGS ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCBRDGGMA ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCBRDGGPARAM ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCBRDGGPRI ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCBRDGGRL ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCBRDGGSIFS ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCBRDGGTO ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCBRDGIFS ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCBRDGRTS ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCBRDGSADDR ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCBRDGSCACHE ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCBRDGSFD ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCBRDGSHT ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCBRDGSIFCOST ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCBRDGSIFFLGS ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCBRDGSIFPRIO ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCBRDGSMA ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCBRDGSPRI ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCBRDGSPROTO ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCBRDGSTO ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCBRDGSTXHC ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCDELMULTI ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCDIFADDR ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCDIFGROUP ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCDIFPHYADDR ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCDLIFADDR ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCGETKALIVE ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCGETLABEL ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCGETPFLOW ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCGETPFSYNC ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCGETSGCNT ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCGETVIFCNT ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCGHIWAT ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCGIFADDR ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCGIFASYNCMAP ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCGIFBRDADDR ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCGIFCONF ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCGIFDATA ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCGIFDESCR ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCGIFDSTADDR ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCGIFFLAGS ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCGIFGATTR ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCGIFGENERIC ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCGIFGMEMB ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCGIFGROUP ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCGIFMEDIA ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCGIFMETRIC ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCGIFMTU ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCGIFNETMASK ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCGIFPDSTADDR ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCGIFPRIORITY ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCGIFPSRCADDR ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCGIFRDOMAIN ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCGIFRTLABEL ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCGIFTIMESLOT ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCGIFXFLAGS ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCGLIFADDR ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCGLIFPHYADDR ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCGLIFPHYRTABLE ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCGLOWAT ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCGPGRP ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCGVH ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCIFCREATE ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCIFDESTROY ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCIFGCLONERS ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCSETKALIVE ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCSETLABEL ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCSETPFLOW ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCSETPFSYNC ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCSHIWAT ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCSIFADDR ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCSIFASYNCMAP ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCSIFBRDADDR ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCSIFDESCR ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCSIFDSTADDR ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCSIFFLAGS ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCSIFGATTR ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCSIFGENERIC ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCSIFLLADDR ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCSIFMEDIA ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCSIFMETRIC ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCSIFMTU ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCSIFNETMASK ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCSIFPHYADDR ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCSIFPRIORITY ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCSIFRDOMAIN ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCSIFRTLABEL ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCSIFTIMESLOT ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCSIFXFLAGS ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCSLIFPHYADDR ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCSLIFPHYRTABLE ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCSLOWAT ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCSPGRP ideal-int
+pkg syscall (openbsd-386-cgo), const SIOCSVH ideal-int
+pkg syscall (openbsd-386-cgo), const SOCK_RDM ideal-int
+pkg syscall (openbsd-386-cgo), const SO_ACCEPTCONN ideal-int
+pkg syscall (openbsd-386-cgo), const SO_BINDANY ideal-int
+pkg syscall (openbsd-386-cgo), const SO_DEBUG ideal-int
+pkg syscall (openbsd-386-cgo), const SO_ERROR ideal-int
+pkg syscall (openbsd-386-cgo), const SO_NETPROC ideal-int
+pkg syscall (openbsd-386-cgo), const SO_OOBINLINE ideal-int
+pkg syscall (openbsd-386-cgo), const SO_PEERCRED ideal-int
+pkg syscall (openbsd-386-cgo), const SO_RCVLOWAT ideal-int
+pkg syscall (openbsd-386-cgo), const SO_RCVTIMEO ideal-int
+pkg syscall (openbsd-386-cgo), const SO_REUSEPORT ideal-int
+pkg syscall (openbsd-386-cgo), const SO_RTABLE ideal-int
+pkg syscall (openbsd-386-cgo), const SO_SNDLOWAT ideal-int
+pkg syscall (openbsd-386-cgo), const SO_SNDTIMEO ideal-int
+pkg syscall (openbsd-386-cgo), const SO_SPLICE ideal-int
+pkg syscall (openbsd-386-cgo), const SO_TIMESTAMP ideal-int
+pkg syscall (openbsd-386-cgo), const SO_TYPE ideal-int
+pkg syscall (openbsd-386-cgo), const SO_USELOOPBACK ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_ACCEPT ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_ACCESS ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_ACCT ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_ADJFREQ ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_ADJTIME ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_BIND ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_CHDIR ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_CHFLAGS ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_CHMOD ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_CHOWN ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_CHROOT ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_CLOCK_GETRES ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_CLOCK_GETTIME ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_CLOCK_SETTIME ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_CLOSE ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_CLOSEFROM ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_CONNECT ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_DUP ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_DUP2 ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_EXECVE ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_EXIT ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_FACCESSAT ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_FCHDIR ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_FCHFLAGS ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_FCHMOD ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_FCHMODAT ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_FCHOWN ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_FCHOWNAT ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_FCNTL ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_FHOPEN ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_FHSTAT ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_FHSTATFS ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_FLOCK ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_FORK ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_FPATHCONF ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_FSTAT ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_FSTATAT ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_FSTATFS ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_FSYNC ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_FTRUNCATE ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_FUTIMENS ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_FUTIMES ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_GETDIRENTRIES ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_GETDTABLECOUNT ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_GETEGID ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_GETEUID ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_GETFH ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_GETFSSTAT ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_GETGID ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_GETGROUPS ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_GETITIMER ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_GETLOGIN ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_GETPEERNAME ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_GETPGID ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_GETPGRP ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_GETPID ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_GETPPID ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_GETPRIORITY ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_GETRESGID ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_GETRESUID ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_GETRLIMIT ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_GETRTABLE ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_GETRUSAGE ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_GETSID ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_GETSOCKNAME ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_GETSOCKOPT ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_GETTHRID ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_GETTIMEOFDAY ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_GETUID ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_IOCTL ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_ISSETUGID ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_KEVENT ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_KILL ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_KQUEUE ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_KTRACE ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_LCHOWN ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_LINK ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_LINKAT ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_LISTEN ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_LSEEK ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_LSTAT ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_MADVISE ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_MINCORE ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_MINHERIT ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_MKDIR ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_MKDIRAT ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_MKFIFO ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_MKFIFOAT ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_MKNOD ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_MKNODAT ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_MLOCK ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_MLOCKALL ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_MMAP ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_MOUNT ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_MPROTECT ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_MQUERY ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_MSGCTL ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_MSGGET ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_MSGRCV ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_MSGSND ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_MSYNC ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_MUNLOCK ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_MUNLOCKALL ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_MUNMAP ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_NANOSLEEP ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_NFSSVC ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_OBREAK ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_OPEN ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_OPENAT ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_PATHCONF ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_PIPE ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_POLL ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_PREAD ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_PREADV ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_PROFIL ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_PTRACE ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_PWRITE ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_PWRITEV ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_QUOTACTL ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_READ ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_READLINK ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_READLINKAT ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_READV ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_REBOOT ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_RECVFROM ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_RECVMSG ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_RENAME ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_RENAMEAT ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_REVOKE ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_RMDIR ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_SCHED_YIELD ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_SELECT ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_SEMGET ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_SEMOP ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_SENDMSG ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_SENDTO ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_SETEGID ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_SETEUID ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_SETGID ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_SETGROUPS ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_SETITIMER ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_SETLOGIN ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_SETPGID ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_SETPRIORITY ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_SETREGID ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_SETRESGID ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_SETRESUID ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_SETREUID ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_SETRLIMIT ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_SETRTABLE ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_SETSID ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_SETSOCKOPT ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_SETTIMEOFDAY ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_SETUID ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_SHMAT ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_SHMCTL ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_SHMDT ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_SHMGET ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_SHUTDOWN ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_SIGACTION ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_SIGALTSTACK ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_SIGPENDING ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_SIGPROCMASK ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_SIGRETURN ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_SIGSUSPEND ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_SOCKET ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_SOCKETPAIR ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_STAT ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_STATFS ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_SWAPCTL ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_SYMLINK ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_SYMLINKAT ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_SYNC ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_SYSARCH ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_TRUNCATE ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_UMASK ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_UNLINK ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_UNLINKAT ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_UNMOUNT ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_UTIMENSAT ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_UTIMES ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_VFORK ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_WAIT4 ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_WRITE ideal-int
+pkg syscall (openbsd-386-cgo), const SYS_WRITEV ideal-int
+pkg syscall (openbsd-386-cgo), const SYS___GETCWD ideal-int
+pkg syscall (openbsd-386-cgo), const SYS___GET_TCB ideal-int
+pkg syscall (openbsd-386-cgo), const SYS___SEMCTL ideal-int
+pkg syscall (openbsd-386-cgo), const SYS___SET_TCB ideal-int
+pkg syscall (openbsd-386-cgo), const SYS___SYSCTL ideal-int
+pkg syscall (openbsd-386-cgo), const SYS___TFORK ideal-int
+pkg syscall (openbsd-386-cgo), const SYS___THREXIT ideal-int
+pkg syscall (openbsd-386-cgo), const SYS___THRSIGDIVERT ideal-int
+pkg syscall (openbsd-386-cgo), const SYS___THRSLEEP ideal-int
+pkg syscall (openbsd-386-cgo), const SYS___THRWAKEUP ideal-int
+pkg syscall (openbsd-386-cgo), const SizeofBpfHdr ideal-int
+pkg syscall (openbsd-386-cgo), const SizeofBpfInsn ideal-int
+pkg syscall (openbsd-386-cgo), const SizeofBpfProgram ideal-int
+pkg syscall (openbsd-386-cgo), const SizeofBpfStat ideal-int
+pkg syscall (openbsd-386-cgo), const SizeofBpfVersion ideal-int
+pkg syscall (openbsd-386-cgo), const SizeofCmsghdr ideal-int
+pkg syscall (openbsd-386-cgo), const SizeofICMPv6Filter = 32
+pkg syscall (openbsd-386-cgo), const SizeofICMPv6Filter ideal-int
+pkg syscall (openbsd-386-cgo), const SizeofIPMreq ideal-int
+pkg syscall (openbsd-386-cgo), const SizeofIPv6MTUInfo = 32
+pkg syscall (openbsd-386-cgo), const SizeofIPv6MTUInfo ideal-int
+pkg syscall (openbsd-386-cgo), const SizeofIPv6Mreq ideal-int
+pkg syscall (openbsd-386-cgo), const SizeofIfAnnounceMsghdr ideal-int
+pkg syscall (openbsd-386-cgo), const SizeofIfData ideal-int
+pkg syscall (openbsd-386-cgo), const SizeofIfMsghdr ideal-int
+pkg syscall (openbsd-386-cgo), const SizeofIfaMsghdr ideal-int
+pkg syscall (openbsd-386-cgo), const SizeofInet6Pktinfo ideal-int
+pkg syscall (openbsd-386-cgo), const SizeofLinger ideal-int
+pkg syscall (openbsd-386-cgo), const SizeofMsghdr ideal-int
+pkg syscall (openbsd-386-cgo), const SizeofRtMetrics ideal-int
+pkg syscall (openbsd-386-cgo), const SizeofRtMsghdr ideal-int
+pkg syscall (openbsd-386-cgo), const SizeofSockaddrAny ideal-int
+pkg syscall (openbsd-386-cgo), const SizeofSockaddrDatalink ideal-int
+pkg syscall (openbsd-386-cgo), const SizeofSockaddrInet4 ideal-int
+pkg syscall (openbsd-386-cgo), const SizeofSockaddrInet6 ideal-int
+pkg syscall (openbsd-386-cgo), const SizeofSockaddrUnix ideal-int
+pkg syscall (openbsd-386-cgo), const TCIFLUSH ideal-int
+pkg syscall (openbsd-386-cgo), const TCIOFLUSH ideal-int
+pkg syscall (openbsd-386-cgo), const TCOFLUSH ideal-int
+pkg syscall (openbsd-386-cgo), const TCP_MAXBURST ideal-int
+pkg syscall (openbsd-386-cgo), const TCP_MAXSEG ideal-int
+pkg syscall (openbsd-386-cgo), const TCP_MAXWIN ideal-int
+pkg syscall (openbsd-386-cgo), const TCP_MAX_SACK ideal-int
+pkg syscall (openbsd-386-cgo), const TCP_MAX_WINSHIFT ideal-int
+pkg syscall (openbsd-386-cgo), const TCP_MD5SIG ideal-int
+pkg syscall (openbsd-386-cgo), const TCP_MSS ideal-int
+pkg syscall (openbsd-386-cgo), const TCP_NSTATES ideal-int
+pkg syscall (openbsd-386-cgo), const TCP_SACK_ENABLE ideal-int
+pkg syscall (openbsd-386-cgo), const TCSAFLUSH ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCCBRK ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCCDTR ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCCONS ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCDRAIN ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCEXCL ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCEXT ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCFLAG_CLOCAL ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCFLAG_CRTSCTS ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCFLAG_MDMBUF ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCFLAG_PPS ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCFLAG_SOFTCAR ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCFLUSH ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCGETA ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCGETD ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCGFLAGS ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCGPGRP ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCGTSTAMP ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCGWINSZ ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCMBIC ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCMBIS ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCMGET ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCMODG ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCMODS ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCMSET ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCM_CAR ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCM_CD ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCM_CTS ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCM_DSR ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCM_DTR ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCM_LE ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCM_RI ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCM_RNG ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCM_RTS ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCM_SR ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCM_ST ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCNOTTY ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCNXCL ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCOUTQ ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCPKT ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCPKT_DATA ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCPKT_DOSTOP ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCPKT_FLUSHREAD ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCPKT_FLUSHWRITE ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCPKT_IOCTL ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCPKT_NOSTOP ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCPKT_START ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCPKT_STOP ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCREMOTE ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCSBRK ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCSCTTY ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCSDTR ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCSETA ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCSETAF ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCSETAW ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCSETD ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCSFLAGS ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCSIG ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCSPGRP ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCSTART ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCSTAT ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCSTI ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCSTOP ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCSTSTAMP ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCSWINSZ ideal-int
+pkg syscall (openbsd-386-cgo), const TIOCUCNTL ideal-int
+pkg syscall (openbsd-386-cgo), const TOSTOP ideal-int
+pkg syscall (openbsd-386-cgo), const VDISCARD ideal-int
+pkg syscall (openbsd-386-cgo), const VDSUSP ideal-int
+pkg syscall (openbsd-386-cgo), const VEOF ideal-int
+pkg syscall (openbsd-386-cgo), const VEOL ideal-int
+pkg syscall (openbsd-386-cgo), const VEOL2 ideal-int
+pkg syscall (openbsd-386-cgo), const VERASE ideal-int
+pkg syscall (openbsd-386-cgo), const VINTR ideal-int
+pkg syscall (openbsd-386-cgo), const VKILL ideal-int
+pkg syscall (openbsd-386-cgo), const VLNEXT ideal-int
+pkg syscall (openbsd-386-cgo), const VMIN ideal-int
+pkg syscall (openbsd-386-cgo), const VQUIT ideal-int
+pkg syscall (openbsd-386-cgo), const VREPRINT ideal-int
+pkg syscall (openbsd-386-cgo), const VSTART ideal-int
+pkg syscall (openbsd-386-cgo), const VSTATUS ideal-int
+pkg syscall (openbsd-386-cgo), const VSTOP ideal-int
+pkg syscall (openbsd-386-cgo), const VSUSP ideal-int
+pkg syscall (openbsd-386-cgo), const VTIME ideal-int
+pkg syscall (openbsd-386-cgo), const VWERASE ideal-int
+pkg syscall (openbsd-386-cgo), const WALTSIG ideal-int
+pkg syscall (openbsd-386-cgo), const WCONTINUED ideal-int
+pkg syscall (openbsd-386-cgo), const WCOREFLAG ideal-int
+pkg syscall (openbsd-386-cgo), const WNOHANG ideal-int
+pkg syscall (openbsd-386-cgo), const WSTOPPED ideal-int
+pkg syscall (openbsd-386-cgo), const WUNTRACED ideal-int
+pkg syscall (openbsd-386-cgo), func Accept(int) (int, Sockaddr, error)
+pkg syscall (openbsd-386-cgo), func Access(string, uint32) error
+pkg syscall (openbsd-386-cgo), func Adjtime(*Timeval, *Timeval) error
+pkg syscall (openbsd-386-cgo), func Bind(int, Sockaddr) error
+pkg syscall (openbsd-386-cgo), func BpfBuflen(int) (int, error)
+pkg syscall (openbsd-386-cgo), func BpfDatalink(int) (int, error)
+pkg syscall (openbsd-386-cgo), func BpfHeadercmpl(int) (int, error)
+pkg syscall (openbsd-386-cgo), func BpfInterface(int, string) (string, error)
+pkg syscall (openbsd-386-cgo), func BpfJump(int, int, int, int) *BpfInsn
+pkg syscall (openbsd-386-cgo), func BpfStats(int) (*BpfStat, error)
+pkg syscall (openbsd-386-cgo), func BpfStmt(int, int) *BpfInsn
+pkg syscall (openbsd-386-cgo), func BpfTimeout(int) (*Timeval, error)
+pkg syscall (openbsd-386-cgo), func CheckBpfVersion(int) error
+pkg syscall (openbsd-386-cgo), func Chflags(string, int) error
+pkg syscall (openbsd-386-cgo), func Chroot(string) error
+pkg syscall (openbsd-386-cgo), func Close(int) error
+pkg syscall (openbsd-386-cgo), func CloseOnExec(int)
+pkg syscall (openbsd-386-cgo), func CmsgLen(int) int
+pkg syscall (openbsd-386-cgo), func CmsgSpace(int) int
+pkg syscall (openbsd-386-cgo), func Connect(int, Sockaddr) error
+pkg syscall (openbsd-386-cgo), func Dup(int) (int, error)
+pkg syscall (openbsd-386-cgo), func Dup2(int, int) error
+pkg syscall (openbsd-386-cgo), func Fchdir(int) error
+pkg syscall (openbsd-386-cgo), func Fchflags(int, int) error
+pkg syscall (openbsd-386-cgo), func Fchmod(int, uint32) error
+pkg syscall (openbsd-386-cgo), func Fchown(int, int, int) error
+pkg syscall (openbsd-386-cgo), func Flock(int, int) error
+pkg syscall (openbsd-386-cgo), func FlushBpf(int) error
+pkg syscall (openbsd-386-cgo), func ForkExec(string, []string, *ProcAttr) (int, error)
+pkg syscall (openbsd-386-cgo), func Fpathconf(int, int) (int, error)
+pkg syscall (openbsd-386-cgo), func Fstat(int, *Stat_t) error
+pkg syscall (openbsd-386-cgo), func Fstatfs(int, *Statfs_t) error
+pkg syscall (openbsd-386-cgo), func Fsync(int) error
+pkg syscall (openbsd-386-cgo), func Ftruncate(int, int64) error
+pkg syscall (openbsd-386-cgo), func Futimes(int, []Timeval) error
+pkg syscall (openbsd-386-cgo), func Getdirentries(int, []uint8, *uintptr) (int, error)
+pkg syscall (openbsd-386-cgo), func Getfsstat([]Statfs_t, int) (int, error)
+pkg syscall (openbsd-386-cgo), func Getpeername(int) (Sockaddr, error)
+pkg syscall (openbsd-386-cgo), func Getpgid(int) (int, error)
+pkg syscall (openbsd-386-cgo), func Getpgrp() int
+pkg syscall (openbsd-386-cgo), func Getpriority(int, int) (int, error)
+pkg syscall (openbsd-386-cgo), func Getrlimit(int, *Rlimit) error
+pkg syscall (openbsd-386-cgo), func Getrusage(int, *Rusage) error
+pkg syscall (openbsd-386-cgo), func Getsid(int) (int, error)
+pkg syscall (openbsd-386-cgo), func Getsockname(int) (Sockaddr, error)
+pkg syscall (openbsd-386-cgo), func GetsockoptByte(int, int, int) (uint8, error)
+pkg syscall (openbsd-386-cgo), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
+pkg syscall (openbsd-386-cgo), func GetsockoptIPMreq(int, int, int) (*IPMreq, error)
+pkg syscall (openbsd-386-cgo), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
+pkg syscall (openbsd-386-cgo), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error)
+pkg syscall (openbsd-386-cgo), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error)
+pkg syscall (openbsd-386-cgo), func GetsockoptInt(int, int, int) (int, error)
+pkg syscall (openbsd-386-cgo), func Issetugid() bool
+pkg syscall (openbsd-386-cgo), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error)
+pkg syscall (openbsd-386-cgo), func Kill(int, Signal) error
+pkg syscall (openbsd-386-cgo), func Kqueue() (int, error)
+pkg syscall (openbsd-386-cgo), func Listen(int, int) error
+pkg syscall (openbsd-386-cgo), func Lstat(string, *Stat_t) error
+pkg syscall (openbsd-386-cgo), func Mkfifo(string, uint32) error
+pkg syscall (openbsd-386-cgo), func Mknod(string, uint32, int) error
+pkg syscall (openbsd-386-cgo), func Mmap(int, int64, int, int, int) ([]uint8, error)
+pkg syscall (openbsd-386-cgo), func Munmap([]uint8) error
+pkg syscall (openbsd-386-cgo), func Nanosleep(*Timespec, *Timespec) error
+pkg syscall (openbsd-386-cgo), func Open(string, int, uint32) (int, error)
+pkg syscall (openbsd-386-cgo), func ParseDirent([]uint8, int, []string) (int, int, []string)
+pkg syscall (openbsd-386-cgo), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error)
+pkg syscall (openbsd-386-cgo), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error)
+pkg syscall (openbsd-386-cgo), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error)
+pkg syscall (openbsd-386-cgo), func ParseUnixRights(*SocketControlMessage) ([]int, error)
+pkg syscall (openbsd-386-cgo), func Pathconf(string, int) (int, error)
+pkg syscall (openbsd-386-cgo), func Pipe([]int) error
+pkg syscall (openbsd-386-cgo), func Pread(int, []uint8, int64) (int, error)
+pkg syscall (openbsd-386-cgo), func Pwrite(int, []uint8, int64) (int, error)
+pkg syscall (openbsd-386-cgo), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (openbsd-386-cgo), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (openbsd-386-cgo), func Read(int, []uint8) (int, error)
+pkg syscall (openbsd-386-cgo), func ReadDirent(int, []uint8) (int, error)
+pkg syscall (openbsd-386-cgo), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
+pkg syscall (openbsd-386-cgo), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
+pkg syscall (openbsd-386-cgo), func Revoke(string) error
+pkg syscall (openbsd-386-cgo), func RouteRIB(int, int) ([]uint8, error)
+pkg syscall (openbsd-386-cgo), func Seek(int, int64, int) (int64, error)
+pkg syscall (openbsd-386-cgo), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error
+pkg syscall (openbsd-386-cgo), func Sendfile(int, int, *int64, int) (int, error)
+pkg syscall (openbsd-386-cgo), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
+pkg syscall (openbsd-386-cgo), func Sendto(int, []uint8, int, Sockaddr) error
+pkg syscall (openbsd-386-cgo), func SetBpf(int, []BpfInsn) error
+pkg syscall (openbsd-386-cgo), func SetBpfBuflen(int, int) (int, error)
+pkg syscall (openbsd-386-cgo), func SetBpfDatalink(int, int) (int, error)
+pkg syscall (openbsd-386-cgo), func SetBpfHeadercmpl(int, int) error
+pkg syscall (openbsd-386-cgo), func SetBpfImmediate(int, int) error
+pkg syscall (openbsd-386-cgo), func SetBpfInterface(int, string) error
+pkg syscall (openbsd-386-cgo), func SetBpfPromisc(int, int) error
+pkg syscall (openbsd-386-cgo), func SetBpfTimeout(int, *Timeval) error
+pkg syscall (openbsd-386-cgo), func SetKevent(*Kevent_t, int, int, int)
+pkg syscall (openbsd-386-cgo), func SetNonblock(int, bool) error
+pkg syscall (openbsd-386-cgo), func Setegid(int) error
+pkg syscall (openbsd-386-cgo), func Seteuid(int) error
+pkg syscall (openbsd-386-cgo), func Setgid(int) error
+pkg syscall (openbsd-386-cgo), func Setgroups([]int) error
+pkg syscall (openbsd-386-cgo), func Setlogin(string) error
+pkg syscall (openbsd-386-cgo), func Setpgid(int, int) error
+pkg syscall (openbsd-386-cgo), func Setpriority(int, int, int) error
+pkg syscall (openbsd-386-cgo), func Setregid(int, int) error
+pkg syscall (openbsd-386-cgo), func Setreuid(int, int) error
+pkg syscall (openbsd-386-cgo), func Setrlimit(int, *Rlimit) error
+pkg syscall (openbsd-386-cgo), func Setsid() (int, error)
+pkg syscall (openbsd-386-cgo), func SetsockoptByte(int, int, int, uint8) error
+pkg syscall (openbsd-386-cgo), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
+pkg syscall (openbsd-386-cgo), func SetsockoptIPMreq(int, int, int, *IPMreq) error
+pkg syscall (openbsd-386-cgo), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error
+pkg syscall (openbsd-386-cgo), func SetsockoptInet4Addr(int, int, int, [4]uint8) error
+pkg syscall (openbsd-386-cgo), func SetsockoptInt(int, int, int, int) error
+pkg syscall (openbsd-386-cgo), func SetsockoptLinger(int, int, int, *Linger) error
+pkg syscall (openbsd-386-cgo), func SetsockoptString(int, int, int, string) error
+pkg syscall (openbsd-386-cgo), func SetsockoptTimeval(int, int, int, *Timeval) error
+pkg syscall (openbsd-386-cgo), func Settimeofday(*Timeval) error
+pkg syscall (openbsd-386-cgo), func Setuid(int) error
+pkg syscall (openbsd-386-cgo), func Shutdown(int, int) error
+pkg syscall (openbsd-386-cgo), func SlicePtrFromStrings([]string) ([]*uint8, error)
+pkg syscall (openbsd-386-cgo), func Socket(int, int, int) (int, error)
+pkg syscall (openbsd-386-cgo), func Socketpair(int, int, int) ([2]int, error)
+pkg syscall (openbsd-386-cgo), func Stat(string, *Stat_t) error
+pkg syscall (openbsd-386-cgo), func Statfs(string, *Statfs_t) error
+pkg syscall (openbsd-386-cgo), func StringSlicePtr([]string) []*uint8
+pkg syscall (openbsd-386-cgo), func Sync() error
+pkg syscall (openbsd-386-cgo), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (openbsd-386-cgo), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (openbsd-386-cgo), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (openbsd-386-cgo), func Sysctl(string) (string, error)
+pkg syscall (openbsd-386-cgo), func SysctlUint32(string) (uint32, error)
+pkg syscall (openbsd-386-cgo), func TimevalToNsec(Timeval) int64
+pkg syscall (openbsd-386-cgo), func Truncate(string, int64) error
+pkg syscall (openbsd-386-cgo), func Umask(int) int
+pkg syscall (openbsd-386-cgo), func UnixRights(...int) []uint8
+pkg syscall (openbsd-386-cgo), func Unmount(string, int) error
+pkg syscall (openbsd-386-cgo), func Wait4(int, *WaitStatus, int, *Rusage) (int, error)
+pkg syscall (openbsd-386-cgo), func Write(int, []uint8) (int, error)
+pkg syscall (openbsd-386-cgo), method (*Cmsghdr) SetLen(int)
+pkg syscall (openbsd-386-cgo), method (*Iovec) SetLen(int)
+pkg syscall (openbsd-386-cgo), method (*Msghdr) SetControllen(int)
+pkg syscall (openbsd-386-cgo), type BpfHdr struct
+pkg syscall (openbsd-386-cgo), type BpfHdr struct, Caplen uint32
+pkg syscall (openbsd-386-cgo), type BpfHdr struct, Datalen uint32
+pkg syscall (openbsd-386-cgo), type BpfHdr struct, Hdrlen uint16
+pkg syscall (openbsd-386-cgo), type BpfHdr struct, Pad_cgo_0 [2]uint8
+pkg syscall (openbsd-386-cgo), type BpfHdr struct, Tstamp BpfTimeval
+pkg syscall (openbsd-386-cgo), type BpfInsn struct
+pkg syscall (openbsd-386-cgo), type BpfInsn struct, Code uint16
+pkg syscall (openbsd-386-cgo), type BpfInsn struct, Jf uint8
+pkg syscall (openbsd-386-cgo), type BpfInsn struct, Jt uint8
+pkg syscall (openbsd-386-cgo), type BpfInsn struct, K uint32
+pkg syscall (openbsd-386-cgo), type BpfProgram struct
+pkg syscall (openbsd-386-cgo), type BpfProgram struct, Insns *BpfInsn
+pkg syscall (openbsd-386-cgo), type BpfProgram struct, Len uint32
+pkg syscall (openbsd-386-cgo), type BpfStat struct
+pkg syscall (openbsd-386-cgo), type BpfStat struct, Drop uint32
+pkg syscall (openbsd-386-cgo), type BpfStat struct, Recv uint32
+pkg syscall (openbsd-386-cgo), type BpfTimeval struct
+pkg syscall (openbsd-386-cgo), type BpfTimeval struct, Sec uint32
+pkg syscall (openbsd-386-cgo), type BpfTimeval struct, Usec uint32
+pkg syscall (openbsd-386-cgo), type BpfVersion struct
+pkg syscall (openbsd-386-cgo), type BpfVersion struct, Major uint16
+pkg syscall (openbsd-386-cgo), type BpfVersion struct, Minor uint16
+pkg syscall (openbsd-386-cgo), type Cmsghdr struct
+pkg syscall (openbsd-386-cgo), type Cmsghdr struct, Len uint32
+pkg syscall (openbsd-386-cgo), type Cmsghdr struct, Level int32
+pkg syscall (openbsd-386-cgo), type Cmsghdr struct, Type int32
+pkg syscall (openbsd-386-cgo), type Credential struct
+pkg syscall (openbsd-386-cgo), type Credential struct, Gid uint32
+pkg syscall (openbsd-386-cgo), type Credential struct, Groups []uint32
+pkg syscall (openbsd-386-cgo), type Credential struct, Uid uint32
+pkg syscall (openbsd-386-cgo), type Dirent struct
+pkg syscall (openbsd-386-cgo), type Dirent struct, Fileno uint32
+pkg syscall (openbsd-386-cgo), type Dirent struct, Name [256]int8
+pkg syscall (openbsd-386-cgo), type Dirent struct, Namlen uint8
+pkg syscall (openbsd-386-cgo), type Dirent struct, Reclen uint16
+pkg syscall (openbsd-386-cgo), type Dirent struct, Type uint8
+pkg syscall (openbsd-386-cgo), type FdSet struct
+pkg syscall (openbsd-386-cgo), type FdSet struct, Bits [32]int32
+pkg syscall (openbsd-386-cgo), type Flock_t struct
+pkg syscall (openbsd-386-cgo), type Flock_t struct, Len int64
+pkg syscall (openbsd-386-cgo), type Flock_t struct, Pid int32
+pkg syscall (openbsd-386-cgo), type Flock_t struct, Start int64
+pkg syscall (openbsd-386-cgo), type Flock_t struct, Type int16
+pkg syscall (openbsd-386-cgo), type Flock_t struct, Whence int16
+pkg syscall (openbsd-386-cgo), type Fsid struct
+pkg syscall (openbsd-386-cgo), type Fsid struct, Val [2]int32
+pkg syscall (openbsd-386-cgo), type ICMPv6Filter struct
+pkg syscall (openbsd-386-cgo), type ICMPv6Filter struct, Filt [8]uint32
+pkg syscall (openbsd-386-cgo), type IPv6MTUInfo struct
+pkg syscall (openbsd-386-cgo), type IPv6MTUInfo struct, Addr RawSockaddrInet6
+pkg syscall (openbsd-386-cgo), type IPv6MTUInfo struct, Mtu uint32
+pkg syscall (openbsd-386-cgo), type IfAnnounceMsghdr struct
+pkg syscall (openbsd-386-cgo), type IfAnnounceMsghdr struct, Hdrlen uint16
+pkg syscall (openbsd-386-cgo), type IfAnnounceMsghdr struct, Index uint16
+pkg syscall (openbsd-386-cgo), type IfAnnounceMsghdr struct, Msglen uint16
+pkg syscall (openbsd-386-cgo), type IfAnnounceMsghdr struct, Name [16]int8
+pkg syscall (openbsd-386-cgo), type IfAnnounceMsghdr struct, Type uint8
+pkg syscall (openbsd-386-cgo), type IfAnnounceMsghdr struct, Version uint8
+pkg syscall (openbsd-386-cgo), type IfAnnounceMsghdr struct, What uint16
+pkg syscall (openbsd-386-cgo), type IfData struct
+pkg syscall (openbsd-386-cgo), type IfData struct, Addrlen uint8
+pkg syscall (openbsd-386-cgo), type IfData struct, Baudrate uint64
+pkg syscall (openbsd-386-cgo), type IfData struct, Capabilities uint32
+pkg syscall (openbsd-386-cgo), type IfData struct, Collisions uint64
+pkg syscall (openbsd-386-cgo), type IfData struct, Hdrlen uint8
+pkg syscall (openbsd-386-cgo), type IfData struct, Ibytes uint64
+pkg syscall (openbsd-386-cgo), type IfData struct, Ierrors uint64
+pkg syscall (openbsd-386-cgo), type IfData struct, Imcasts uint64
+pkg syscall (openbsd-386-cgo), type IfData struct, Ipackets uint64
+pkg syscall (openbsd-386-cgo), type IfData struct, Iqdrops uint64
+pkg syscall (openbsd-386-cgo), type IfData struct, Lastchange Timeval
+pkg syscall (openbsd-386-cgo), type IfData struct, Link_state uint8
+pkg syscall (openbsd-386-cgo), type IfData struct, Mclpool [7]Mclpool
+pkg syscall (openbsd-386-cgo), type IfData struct, Metric uint32
+pkg syscall (openbsd-386-cgo), type IfData struct, Mtu uint32
+pkg syscall (openbsd-386-cgo), type IfData struct, Noproto uint64
+pkg syscall (openbsd-386-cgo), type IfData struct, Obytes uint64
+pkg syscall (openbsd-386-cgo), type IfData struct, Oerrors uint64
+pkg syscall (openbsd-386-cgo), type IfData struct, Omcasts uint64
+pkg syscall (openbsd-386-cgo), type IfData struct, Opackets uint64
+pkg syscall (openbsd-386-cgo), type IfData struct, Pad uint32
+pkg syscall (openbsd-386-cgo), type IfData struct, Type uint8
+pkg syscall (openbsd-386-cgo), type IfMsghdr struct
+pkg syscall (openbsd-386-cgo), type IfMsghdr struct, Addrs int32
+pkg syscall (openbsd-386-cgo), type IfMsghdr struct, Data IfData
+pkg syscall (openbsd-386-cgo), type IfMsghdr struct, Flags int32
+pkg syscall (openbsd-386-cgo), type IfMsghdr struct, Hdrlen uint16
+pkg syscall (openbsd-386-cgo), type IfMsghdr struct, Index uint16
+pkg syscall (openbsd-386-cgo), type IfMsghdr struct, Msglen uint16
+pkg syscall (openbsd-386-cgo), type IfMsghdr struct, Pad1 uint8
+pkg syscall (openbsd-386-cgo), type IfMsghdr struct, Pad2 uint8
+pkg syscall (openbsd-386-cgo), type IfMsghdr struct, Tableid uint16
+pkg syscall (openbsd-386-cgo), type IfMsghdr struct, Type uint8
+pkg syscall (openbsd-386-cgo), type IfMsghdr struct, Version uint8
+pkg syscall (openbsd-386-cgo), type IfMsghdr struct, Xflags int32
+pkg syscall (openbsd-386-cgo), type IfaMsghdr struct
+pkg syscall (openbsd-386-cgo), type IfaMsghdr struct, Addrs int32
+pkg syscall (openbsd-386-cgo), type IfaMsghdr struct, Flags int32
+pkg syscall (openbsd-386-cgo), type IfaMsghdr struct, Hdrlen uint16
+pkg syscall (openbsd-386-cgo), type IfaMsghdr struct, Index uint16
+pkg syscall (openbsd-386-cgo), type IfaMsghdr struct, Metric int32
+pkg syscall (openbsd-386-cgo), type IfaMsghdr struct, Msglen uint16
+pkg syscall (openbsd-386-cgo), type IfaMsghdr struct, Pad1 uint8
+pkg syscall (openbsd-386-cgo), type IfaMsghdr struct, Pad2 uint8
+pkg syscall (openbsd-386-cgo), type IfaMsghdr struct, Tableid uint16
+pkg syscall (openbsd-386-cgo), type IfaMsghdr struct, Type uint8
+pkg syscall (openbsd-386-cgo), type IfaMsghdr struct, Version uint8
+pkg syscall (openbsd-386-cgo), type Inet6Pktinfo struct
+pkg syscall (openbsd-386-cgo), type Inet6Pktinfo struct, Addr [16]uint8
+pkg syscall (openbsd-386-cgo), type Inet6Pktinfo struct, Ifindex uint32
+pkg syscall (openbsd-386-cgo), type InterfaceAddrMessage struct
+pkg syscall (openbsd-386-cgo), type InterfaceAddrMessage struct, Data []uint8
+pkg syscall (openbsd-386-cgo), type InterfaceAddrMessage struct, Header IfaMsghdr
+pkg syscall (openbsd-386-cgo), type InterfaceAnnounceMessage struct
+pkg syscall (openbsd-386-cgo), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr
+pkg syscall (openbsd-386-cgo), type InterfaceMessage struct
+pkg syscall (openbsd-386-cgo), type InterfaceMessage struct, Data []uint8
+pkg syscall (openbsd-386-cgo), type InterfaceMessage struct, Header IfMsghdr
+pkg syscall (openbsd-386-cgo), type Iovec struct
+pkg syscall (openbsd-386-cgo), type Iovec struct, Base *uint8
+pkg syscall (openbsd-386-cgo), type Iovec struct, Len uint32
+pkg syscall (openbsd-386-cgo), type Kevent_t struct
+pkg syscall (openbsd-386-cgo), type Kevent_t struct, Data int32
+pkg syscall (openbsd-386-cgo), type Kevent_t struct, Fflags uint32
+pkg syscall (openbsd-386-cgo), type Kevent_t struct, Filter int16
+pkg syscall (openbsd-386-cgo), type Kevent_t struct, Flags uint16
+pkg syscall (openbsd-386-cgo), type Kevent_t struct, Ident uint32
+pkg syscall (openbsd-386-cgo), type Kevent_t struct, Udata *uint8
+pkg syscall (openbsd-386-cgo), type Mclpool struct
+pkg syscall (openbsd-386-cgo), type Mclpool struct, Alive uint16
+pkg syscall (openbsd-386-cgo), type Mclpool struct, Cwm uint16
+pkg syscall (openbsd-386-cgo), type Mclpool struct, Grown uint32
+pkg syscall (openbsd-386-cgo), type Mclpool struct, Hwm uint16
+pkg syscall (openbsd-386-cgo), type Mclpool struct, Lwm uint16
+pkg syscall (openbsd-386-cgo), type Msghdr struct
+pkg syscall (openbsd-386-cgo), type Msghdr struct, Control *uint8
+pkg syscall (openbsd-386-cgo), type Msghdr struct, Controllen uint32
+pkg syscall (openbsd-386-cgo), type Msghdr struct, Flags int32
+pkg syscall (openbsd-386-cgo), type Msghdr struct, Iov *Iovec
+pkg syscall (openbsd-386-cgo), type Msghdr struct, Iovlen uint32
+pkg syscall (openbsd-386-cgo), type Msghdr struct, Name *uint8
+pkg syscall (openbsd-386-cgo), type Msghdr struct, Namelen uint32
+pkg syscall (openbsd-386-cgo), type RawSockaddr struct, Data [14]int8
+pkg syscall (openbsd-386-cgo), type RawSockaddr struct, Family uint8
+pkg syscall (openbsd-386-cgo), type RawSockaddr struct, Len uint8
+pkg syscall (openbsd-386-cgo), type RawSockaddrAny struct, Pad [92]int8
+pkg syscall (openbsd-386-cgo), type RawSockaddrDatalink struct
+pkg syscall (openbsd-386-cgo), type RawSockaddrDatalink struct, Alen uint8
+pkg syscall (openbsd-386-cgo), type RawSockaddrDatalink struct, Data [24]int8
+pkg syscall (openbsd-386-cgo), type RawSockaddrDatalink struct, Family uint8
+pkg syscall (openbsd-386-cgo), type RawSockaddrDatalink struct, Index uint16
+pkg syscall (openbsd-386-cgo), type RawSockaddrDatalink struct, Len uint8
+pkg syscall (openbsd-386-cgo), type RawSockaddrDatalink struct, Nlen uint8
+pkg syscall (openbsd-386-cgo), type RawSockaddrDatalink struct, Slen uint8
+pkg syscall (openbsd-386-cgo), type RawSockaddrDatalink struct, Type uint8
+pkg syscall (openbsd-386-cgo), type RawSockaddrInet4 struct, Family uint8
+pkg syscall (openbsd-386-cgo), type RawSockaddrInet4 struct, Len uint8
+pkg syscall (openbsd-386-cgo), type RawSockaddrInet4 struct, Zero [8]int8
+pkg syscall (openbsd-386-cgo), type RawSockaddrInet6 struct, Family uint8
+pkg syscall (openbsd-386-cgo), type RawSockaddrInet6 struct, Len uint8
+pkg syscall (openbsd-386-cgo), type RawSockaddrUnix struct
+pkg syscall (openbsd-386-cgo), type RawSockaddrUnix struct, Family uint8
+pkg syscall (openbsd-386-cgo), type RawSockaddrUnix struct, Len uint8
+pkg syscall (openbsd-386-cgo), type RawSockaddrUnix struct, Path [104]int8
+pkg syscall (openbsd-386-cgo), type Rlimit struct
+pkg syscall (openbsd-386-cgo), type Rlimit struct, Cur uint64
+pkg syscall (openbsd-386-cgo), type Rlimit struct, Max uint64
+pkg syscall (openbsd-386-cgo), type RouteMessage struct
+pkg syscall (openbsd-386-cgo), type RouteMessage struct, Data []uint8
+pkg syscall (openbsd-386-cgo), type RouteMessage struct, Header RtMsghdr
+pkg syscall (openbsd-386-cgo), type RoutingMessage interface, unexported methods
+pkg syscall (openbsd-386-cgo), type RtMetrics struct
+pkg syscall (openbsd-386-cgo), type RtMetrics struct, Expire uint32
+pkg syscall (openbsd-386-cgo), type RtMetrics struct, Hopcount uint32
+pkg syscall (openbsd-386-cgo), type RtMetrics struct, Locks uint32
+pkg syscall (openbsd-386-cgo), type RtMetrics struct, Mtu uint32
+pkg syscall (openbsd-386-cgo), type RtMetrics struct, Pksent uint64
+pkg syscall (openbsd-386-cgo), type RtMetrics struct, Recvpipe uint32
+pkg syscall (openbsd-386-cgo), type RtMetrics struct, Refcnt uint32
+pkg syscall (openbsd-386-cgo), type RtMetrics struct, Rtt uint32
+pkg syscall (openbsd-386-cgo), type RtMetrics struct, Rttvar uint32
+pkg syscall (openbsd-386-cgo), type RtMetrics struct, Sendpipe uint32
+pkg syscall (openbsd-386-cgo), type RtMetrics struct, Ssthresh uint32
+pkg syscall (openbsd-386-cgo), type RtMsghdr struct
+pkg syscall (openbsd-386-cgo), type RtMsghdr struct, Addrs int32
+pkg syscall (openbsd-386-cgo), type RtMsghdr struct, Errno int32
+pkg syscall (openbsd-386-cgo), type RtMsghdr struct, Flags int32
+pkg syscall (openbsd-386-cgo), type RtMsghdr struct, Fmask int32
+pkg syscall (openbsd-386-cgo), type RtMsghdr struct, Hdrlen uint16
+pkg syscall (openbsd-386-cgo), type RtMsghdr struct, Index uint16
+pkg syscall (openbsd-386-cgo), type RtMsghdr struct, Inits uint32
+pkg syscall (openbsd-386-cgo), type RtMsghdr struct, Mpls uint8
+pkg syscall (openbsd-386-cgo), type RtMsghdr struct, Msglen uint16
+pkg syscall (openbsd-386-cgo), type RtMsghdr struct, Pid int32
+pkg syscall (openbsd-386-cgo), type RtMsghdr struct, Priority uint8
+pkg syscall (openbsd-386-cgo), type RtMsghdr struct, Rmx RtMetrics
+pkg syscall (openbsd-386-cgo), type RtMsghdr struct, Seq int32
+pkg syscall (openbsd-386-cgo), type RtMsghdr struct, Tableid uint16
+pkg syscall (openbsd-386-cgo), type RtMsghdr struct, Type uint8
+pkg syscall (openbsd-386-cgo), type RtMsghdr struct, Version uint8
+pkg syscall (openbsd-386-cgo), type Rusage struct, Idrss int32
+pkg syscall (openbsd-386-cgo), type Rusage struct, Inblock int32
+pkg syscall (openbsd-386-cgo), type Rusage struct, Isrss int32
+pkg syscall (openbsd-386-cgo), type Rusage struct, Ixrss int32
+pkg syscall (openbsd-386-cgo), type Rusage struct, Majflt int32
+pkg syscall (openbsd-386-cgo), type Rusage struct, Maxrss int32
+pkg syscall (openbsd-386-cgo), type Rusage struct, Minflt int32
+pkg syscall (openbsd-386-cgo), type Rusage struct, Msgrcv int32
+pkg syscall (openbsd-386-cgo), type Rusage struct, Msgsnd int32
+pkg syscall (openbsd-386-cgo), type Rusage struct, Nivcsw int32
+pkg syscall (openbsd-386-cgo), type Rusage struct, Nsignals int32
+pkg syscall (openbsd-386-cgo), type Rusage struct, Nswap int32
+pkg syscall (openbsd-386-cgo), type Rusage struct, Nvcsw int32
+pkg syscall (openbsd-386-cgo), type Rusage struct, Oublock int32
+pkg syscall (openbsd-386-cgo), type Rusage struct, Stime Timeval
+pkg syscall (openbsd-386-cgo), type Rusage struct, Utime Timeval
+pkg syscall (openbsd-386-cgo), type SockaddrDatalink struct
+pkg syscall (openbsd-386-cgo), type SockaddrDatalink struct, Alen uint8
+pkg syscall (openbsd-386-cgo), type SockaddrDatalink struct, Data [24]int8
+pkg syscall (openbsd-386-cgo), type SockaddrDatalink struct, Family uint8
+pkg syscall (openbsd-386-cgo), type SockaddrDatalink struct, Index uint16
+pkg syscall (openbsd-386-cgo), type SockaddrDatalink struct, Len uint8
+pkg syscall (openbsd-386-cgo), type SockaddrDatalink struct, Nlen uint8
+pkg syscall (openbsd-386-cgo), type SockaddrDatalink struct, Slen uint8
+pkg syscall (openbsd-386-cgo), type SockaddrDatalink struct, Type uint8
+pkg syscall (openbsd-386-cgo), type SocketControlMessage struct
+pkg syscall (openbsd-386-cgo), type SocketControlMessage struct, Data []uint8
+pkg syscall (openbsd-386-cgo), type SocketControlMessage struct, Header Cmsghdr
+pkg syscall (openbsd-386-cgo), type Stat_t struct
+pkg syscall (openbsd-386-cgo), type Stat_t struct, Atim Timespec
+pkg syscall (openbsd-386-cgo), type Stat_t struct, Blksize uint32
+pkg syscall (openbsd-386-cgo), type Stat_t struct, Blocks int64
+pkg syscall (openbsd-386-cgo), type Stat_t struct, Ctim Timespec
+pkg syscall (openbsd-386-cgo), type Stat_t struct, Dev int32
+pkg syscall (openbsd-386-cgo), type Stat_t struct, Flags uint32
+pkg syscall (openbsd-386-cgo), type Stat_t struct, Gen uint32
+pkg syscall (openbsd-386-cgo), type Stat_t struct, Gid uint32
+pkg syscall (openbsd-386-cgo), type Stat_t struct, Ino uint32
+pkg syscall (openbsd-386-cgo), type Stat_t struct, Lspare0 int32
+pkg syscall (openbsd-386-cgo), type Stat_t struct, Lspare1 int32
+pkg syscall (openbsd-386-cgo), type Stat_t struct, Mode uint32
+pkg syscall (openbsd-386-cgo), type Stat_t struct, Mtim Timespec
+pkg syscall (openbsd-386-cgo), type Stat_t struct, Nlink uint32
+pkg syscall (openbsd-386-cgo), type Stat_t struct, Qspare [2]int64
+pkg syscall (openbsd-386-cgo), type Stat_t struct, Rdev int32
+pkg syscall (openbsd-386-cgo), type Stat_t struct, Size int64
+pkg syscall (openbsd-386-cgo), type Stat_t struct, Uid uint32
+pkg syscall (openbsd-386-cgo), type Stat_t struct, X__st_birthtim Timespec
+pkg syscall (openbsd-386-cgo), type Statfs_t struct
+pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_asyncreads uint64
+pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_asyncwrites uint64
+pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_bavail int64
+pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_bfree uint64
+pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_blocks uint64
+pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_bsize uint32
+pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_ctime uint32
+pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_favail int64
+pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_ffree uint64
+pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_files uint64
+pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_flags uint32
+pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_fsid Fsid
+pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_fstypename [16]int8
+pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_iosize uint32
+pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_mntfromname [90]int8
+pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_mntonname [90]int8
+pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_namemax uint32
+pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_owner uint32
+pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_spare [3]uint32
+pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_syncreads uint64
+pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_syncwrites uint64
+pkg syscall (openbsd-386-cgo), type Statfs_t struct, Mount_info [160]uint8
+pkg syscall (openbsd-386-cgo), type SysProcAttr struct, Chroot string
+pkg syscall (openbsd-386-cgo), type SysProcAttr struct, Credential *Credential
+pkg syscall (openbsd-386-cgo), type SysProcAttr struct, Noctty bool
+pkg syscall (openbsd-386-cgo), type SysProcAttr struct, Ptrace bool
+pkg syscall (openbsd-386-cgo), type SysProcAttr struct, Setctty bool
+pkg syscall (openbsd-386-cgo), type SysProcAttr struct, Setpgid bool
+pkg syscall (openbsd-386-cgo), type SysProcAttr struct, Setsid bool
+pkg syscall (openbsd-386-cgo), type Timespec struct, Nsec int32
+pkg syscall (openbsd-386-cgo), type Timespec struct, Sec int32
+pkg syscall (openbsd-386-cgo), type Timeval struct, Sec int32
+pkg syscall (openbsd-386-cgo), type Timeval struct, Usec int32
+pkg syscall (openbsd-386-cgo), type WaitStatus uint32
+pkg syscall (openbsd-386-cgo), var Stderr int
+pkg syscall (openbsd-386-cgo), var Stdin int
+pkg syscall (openbsd-386-cgo), var Stdout int
+pkg syscall (openbsd-amd64), const AF_APPLETALK ideal-int
+pkg syscall (openbsd-amd64), const AF_BLUETOOTH ideal-int
+pkg syscall (openbsd-amd64), const AF_CCITT ideal-int
+pkg syscall (openbsd-amd64), const AF_CHAOS ideal-int
+pkg syscall (openbsd-amd64), const AF_CNT ideal-int
+pkg syscall (openbsd-amd64), const AF_COIP ideal-int
+pkg syscall (openbsd-amd64), const AF_DATAKIT ideal-int
+pkg syscall (openbsd-amd64), const AF_DECnet ideal-int
+pkg syscall (openbsd-amd64), const AF_DLI ideal-int
+pkg syscall (openbsd-amd64), const AF_E164 ideal-int
+pkg syscall (openbsd-amd64), const AF_ECMA ideal-int
+pkg syscall (openbsd-amd64), const AF_ENCAP ideal-int
+pkg syscall (openbsd-amd64), const AF_HYLINK ideal-int
+pkg syscall (openbsd-amd64), const AF_IMPLINK ideal-int
+pkg syscall (openbsd-amd64), const AF_IPX ideal-int
+pkg syscall (openbsd-amd64), const AF_ISDN ideal-int
+pkg syscall (openbsd-amd64), const AF_ISO ideal-int
+pkg syscall (openbsd-amd64), const AF_KEY ideal-int
+pkg syscall (openbsd-amd64), const AF_LAT ideal-int
+pkg syscall (openbsd-amd64), const AF_LINK ideal-int
+pkg syscall (openbsd-amd64), const AF_LOCAL ideal-int
+pkg syscall (openbsd-amd64), const AF_MAX ideal-int
+pkg syscall (openbsd-amd64), const AF_MPLS ideal-int
+pkg syscall (openbsd-amd64), const AF_NATM ideal-int
+pkg syscall (openbsd-amd64), const AF_NS ideal-int
+pkg syscall (openbsd-amd64), const AF_OSI ideal-int
+pkg syscall (openbsd-amd64), const AF_PUP ideal-int
+pkg syscall (openbsd-amd64), const AF_ROUTE ideal-int
+pkg syscall (openbsd-amd64), const AF_SIP ideal-int
+pkg syscall (openbsd-amd64), const AF_SNA ideal-int
+pkg syscall (openbsd-amd64), const ARPHRD_ETHER ideal-int
+pkg syscall (openbsd-amd64), const ARPHRD_FRELAY ideal-int
+pkg syscall (openbsd-amd64), const ARPHRD_IEEE1394 ideal-int
+pkg syscall (openbsd-amd64), const ARPHRD_IEEE802 ideal-int
+pkg syscall (openbsd-amd64), const B0 ideal-int
+pkg syscall (openbsd-amd64), const B110 ideal-int
+pkg syscall (openbsd-amd64), const B115200 ideal-int
+pkg syscall (openbsd-amd64), const B1200 ideal-int
+pkg syscall (openbsd-amd64), const B134 ideal-int
+pkg syscall (openbsd-amd64), const B14400 ideal-int
+pkg syscall (openbsd-amd64), const B150 ideal-int
+pkg syscall (openbsd-amd64), const B1800 ideal-int
+pkg syscall (openbsd-amd64), const B19200 ideal-int
+pkg syscall (openbsd-amd64), const B200 ideal-int
+pkg syscall (openbsd-amd64), const B230400 ideal-int
+pkg syscall (openbsd-amd64), const B2400 ideal-int
+pkg syscall (openbsd-amd64), const B28800 ideal-int
+pkg syscall (openbsd-amd64), const B300 ideal-int
+pkg syscall (openbsd-amd64), const B38400 ideal-int
+pkg syscall (openbsd-amd64), const B4800 ideal-int
+pkg syscall (openbsd-amd64), const B50 ideal-int
+pkg syscall (openbsd-amd64), const B57600 ideal-int
+pkg syscall (openbsd-amd64), const B600 ideal-int
+pkg syscall (openbsd-amd64), const B7200 ideal-int
+pkg syscall (openbsd-amd64), const B75 ideal-int
+pkg syscall (openbsd-amd64), const B76800 ideal-int
+pkg syscall (openbsd-amd64), const B9600 ideal-int
+pkg syscall (openbsd-amd64), const BIOCFLUSH ideal-int
+pkg syscall (openbsd-amd64), const BIOCGBLEN ideal-int
+pkg syscall (openbsd-amd64), const BIOCGDIRFILT ideal-int
+pkg syscall (openbsd-amd64), const BIOCGDLT ideal-int
+pkg syscall (openbsd-amd64), const BIOCGDLTLIST ideal-int
+pkg syscall (openbsd-amd64), const BIOCGETIF ideal-int
+pkg syscall (openbsd-amd64), const BIOCGFILDROP ideal-int
+pkg syscall (openbsd-amd64), const BIOCGHDRCMPLT ideal-int
+pkg syscall (openbsd-amd64), const BIOCGRSIG ideal-int
+pkg syscall (openbsd-amd64), const BIOCGRTIMEOUT ideal-int
+pkg syscall (openbsd-amd64), const BIOCGSTATS ideal-int
+pkg syscall (openbsd-amd64), const BIOCIMMEDIATE ideal-int
+pkg syscall (openbsd-amd64), const BIOCLOCK ideal-int
+pkg syscall (openbsd-amd64), const BIOCPROMISC ideal-int
+pkg syscall (openbsd-amd64), const BIOCSBLEN ideal-int
+pkg syscall (openbsd-amd64), const BIOCSDIRFILT ideal-int
+pkg syscall (openbsd-amd64), const BIOCSDLT ideal-int
+pkg syscall (openbsd-amd64), const BIOCSETF ideal-int
+pkg syscall (openbsd-amd64), const BIOCSETIF ideal-int
+pkg syscall (openbsd-amd64), const BIOCSETWF ideal-int
+pkg syscall (openbsd-amd64), const BIOCSFILDROP ideal-int
+pkg syscall (openbsd-amd64), const BIOCSHDRCMPLT ideal-int
+pkg syscall (openbsd-amd64), const BIOCSRSIG ideal-int
+pkg syscall (openbsd-amd64), const BIOCSRTIMEOUT ideal-int
+pkg syscall (openbsd-amd64), const BIOCVERSION ideal-int
+pkg syscall (openbsd-amd64), const BPF_A ideal-int
+pkg syscall (openbsd-amd64), const BPF_ABS ideal-int
+pkg syscall (openbsd-amd64), const BPF_ADD ideal-int
+pkg syscall (openbsd-amd64), const BPF_ALIGNMENT ideal-int
+pkg syscall (openbsd-amd64), const BPF_ALU ideal-int
+pkg syscall (openbsd-amd64), const BPF_AND ideal-int
+pkg syscall (openbsd-amd64), const BPF_B ideal-int
+pkg syscall (openbsd-amd64), const BPF_DIRECTION_IN ideal-int
+pkg syscall (openbsd-amd64), const BPF_DIRECTION_OUT ideal-int
+pkg syscall (openbsd-amd64), const BPF_DIV ideal-int
+pkg syscall (openbsd-amd64), const BPF_H ideal-int
+pkg syscall (openbsd-amd64), const BPF_IMM ideal-int
+pkg syscall (openbsd-amd64), const BPF_IND ideal-int
+pkg syscall (openbsd-amd64), const BPF_JA ideal-int
+pkg syscall (openbsd-amd64), const BPF_JEQ ideal-int
+pkg syscall (openbsd-amd64), const BPF_JGE ideal-int
+pkg syscall (openbsd-amd64), const BPF_JGT ideal-int
+pkg syscall (openbsd-amd64), const BPF_JMP ideal-int
+pkg syscall (openbsd-amd64), const BPF_JSET ideal-int
+pkg syscall (openbsd-amd64), const BPF_K ideal-int
+pkg syscall (openbsd-amd64), const BPF_LD ideal-int
+pkg syscall (openbsd-amd64), const BPF_LDX ideal-int
+pkg syscall (openbsd-amd64), const BPF_LEN ideal-int
+pkg syscall (openbsd-amd64), const BPF_LSH ideal-int
+pkg syscall (openbsd-amd64), const BPF_MAJOR_VERSION ideal-int
+pkg syscall (openbsd-amd64), const BPF_MAXBUFSIZE ideal-int
+pkg syscall (openbsd-amd64), const BPF_MAXINSNS ideal-int
+pkg syscall (openbsd-amd64), const BPF_MEM ideal-int
+pkg syscall (openbsd-amd64), const BPF_MEMWORDS ideal-int
+pkg syscall (openbsd-amd64), const BPF_MINBUFSIZE ideal-int
+pkg syscall (openbsd-amd64), const BPF_MINOR_VERSION ideal-int
+pkg syscall (openbsd-amd64), const BPF_MISC ideal-int
+pkg syscall (openbsd-amd64), const BPF_MSH ideal-int
+pkg syscall (openbsd-amd64), const BPF_MUL ideal-int
+pkg syscall (openbsd-amd64), const BPF_NEG ideal-int
+pkg syscall (openbsd-amd64), const BPF_OR ideal-int
+pkg syscall (openbsd-amd64), const BPF_RELEASE ideal-int
+pkg syscall (openbsd-amd64), const BPF_RET ideal-int
+pkg syscall (openbsd-amd64), const BPF_RSH ideal-int
+pkg syscall (openbsd-amd64), const BPF_ST ideal-int
+pkg syscall (openbsd-amd64), const BPF_STX ideal-int
+pkg syscall (openbsd-amd64), const BPF_SUB ideal-int
+pkg syscall (openbsd-amd64), const BPF_TAX ideal-int
+pkg syscall (openbsd-amd64), const BPF_TXA ideal-int
+pkg syscall (openbsd-amd64), const BPF_W ideal-int
+pkg syscall (openbsd-amd64), const BPF_X ideal-int
+pkg syscall (openbsd-amd64), const BRKINT ideal-int
+pkg syscall (openbsd-amd64), const CCR0_FLUSH ideal-int
+pkg syscall (openbsd-amd64), const CFLUSH ideal-int
+pkg syscall (openbsd-amd64), const CLOCAL ideal-int
+pkg syscall (openbsd-amd64), const CPUID_CFLUSH ideal-int
+pkg syscall (openbsd-amd64), const CREAD ideal-int
+pkg syscall (openbsd-amd64), const CS5 ideal-int
+pkg syscall (openbsd-amd64), const CS6 ideal-int
+pkg syscall (openbsd-amd64), const CS7 ideal-int
+pkg syscall (openbsd-amd64), const CS8 ideal-int
+pkg syscall (openbsd-amd64), const CSIZE ideal-int
+pkg syscall (openbsd-amd64), const CSTART ideal-int
+pkg syscall (openbsd-amd64), const CSTATUS ideal-int
+pkg syscall (openbsd-amd64), const CSTOP ideal-int
+pkg syscall (openbsd-amd64), const CSTOPB ideal-int
+pkg syscall (openbsd-amd64), const CSUSP ideal-int
+pkg syscall (openbsd-amd64), const CTL_MAXNAME ideal-int
+pkg syscall (openbsd-amd64), const CTL_NET ideal-int
+pkg syscall (openbsd-amd64), const DIOCOSFPFLUSH ideal-int
+pkg syscall (openbsd-amd64), const DLT_ARCNET ideal-int
+pkg syscall (openbsd-amd64), const DLT_ATM_RFC1483 ideal-int
+pkg syscall (openbsd-amd64), const DLT_AX25 ideal-int
+pkg syscall (openbsd-amd64), const DLT_CHAOS ideal-int
+pkg syscall (openbsd-amd64), const DLT_C_HDLC ideal-int
+pkg syscall (openbsd-amd64), const DLT_EN10MB ideal-int
+pkg syscall (openbsd-amd64), const DLT_EN3MB ideal-int
+pkg syscall (openbsd-amd64), const DLT_ENC ideal-int
+pkg syscall (openbsd-amd64), const DLT_FDDI ideal-int
+pkg syscall (openbsd-amd64), const DLT_IEEE802 ideal-int
+pkg syscall (openbsd-amd64), const DLT_IEEE802_11 ideal-int
+pkg syscall (openbsd-amd64), const DLT_IEEE802_11_RADIO ideal-int
+pkg syscall (openbsd-amd64), const DLT_LOOP ideal-int
+pkg syscall (openbsd-amd64), const DLT_MPLS ideal-int
+pkg syscall (openbsd-amd64), const DLT_NULL ideal-int
+pkg syscall (openbsd-amd64), const DLT_PFLOG ideal-int
+pkg syscall (openbsd-amd64), const DLT_PFSYNC ideal-int
+pkg syscall (openbsd-amd64), const DLT_PPP ideal-int
+pkg syscall (openbsd-amd64), const DLT_PPP_BSDOS ideal-int
+pkg syscall (openbsd-amd64), const DLT_PPP_ETHER ideal-int
+pkg syscall (openbsd-amd64), const DLT_PPP_SERIAL ideal-int
+pkg syscall (openbsd-amd64), const DLT_PRONET ideal-int
+pkg syscall (openbsd-amd64), const DLT_RAW ideal-int
+pkg syscall (openbsd-amd64), const DLT_SLIP ideal-int
+pkg syscall (openbsd-amd64), const DLT_SLIP_BSDOS ideal-int
+pkg syscall (openbsd-amd64), const DT_BLK ideal-int
+pkg syscall (openbsd-amd64), const DT_CHR ideal-int
+pkg syscall (openbsd-amd64), const DT_DIR ideal-int
+pkg syscall (openbsd-amd64), const DT_FIFO ideal-int
+pkg syscall (openbsd-amd64), const DT_LNK ideal-int
+pkg syscall (openbsd-amd64), const DT_REG ideal-int
+pkg syscall (openbsd-amd64), const DT_SOCK ideal-int
+pkg syscall (openbsd-amd64), const DT_UNKNOWN ideal-int
+pkg syscall (openbsd-amd64), const EAUTH Errno
+pkg syscall (openbsd-amd64), const EBADRPC Errno
+pkg syscall (openbsd-amd64), const ECHO ideal-int
+pkg syscall (openbsd-amd64), const ECHOCTL ideal-int
+pkg syscall (openbsd-amd64), const ECHOE ideal-int
+pkg syscall (openbsd-amd64), const ECHOK ideal-int
+pkg syscall (openbsd-amd64), const ECHOKE ideal-int
+pkg syscall (openbsd-amd64), const ECHONL ideal-int
+pkg syscall (openbsd-amd64), const ECHOPRT ideal-int
+pkg syscall (openbsd-amd64), const EFER_LMA ideal-int
+pkg syscall (openbsd-amd64), const EFER_LME ideal-int
+pkg syscall (openbsd-amd64), const EFER_NXE ideal-int
+pkg syscall (openbsd-amd64), const EFER_SCE ideal-int
+pkg syscall (openbsd-amd64), const EFTYPE Errno
+pkg syscall (openbsd-amd64), const EIPSEC Errno
+pkg syscall (openbsd-amd64), const ELAST Errno
+pkg syscall (openbsd-amd64), const EMEDIUMTYPE Errno
+pkg syscall (openbsd-amd64), const EMT_TAGOVF ideal-int
+pkg syscall (openbsd-amd64), const EMUL_ENABLED ideal-int
+pkg syscall (openbsd-amd64), const EMUL_NATIVE ideal-int
+pkg syscall (openbsd-amd64), const ENDRUNDISC ideal-int
+pkg syscall (openbsd-amd64), const ENEEDAUTH Errno
+pkg syscall (openbsd-amd64), const ENOATTR Errno
+pkg syscall (openbsd-amd64), const ENOMEDIUM Errno
+pkg syscall (openbsd-amd64), const EPROCLIM Errno
+pkg syscall (openbsd-amd64), const EPROCUNAVAIL Errno
+pkg syscall (openbsd-amd64), const EPROGMISMATCH Errno
+pkg syscall (openbsd-amd64), const EPROGUNAVAIL Errno
+pkg syscall (openbsd-amd64), const ERPCMISMATCH Errno
+pkg syscall (openbsd-amd64), const ETHERMIN ideal-int
+pkg syscall (openbsd-amd64), const ETHERMTU ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_8023 ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_AARP ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_ACCTON ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_AEONIC ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_ALPHA ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_AMBER ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_AMOEBA ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_AOE ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_APOLLO ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_APOLLODOMAIN ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_APPLETALK ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_APPLITEK ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_ARGONAUT ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_ARP ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_AT ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_ATALK ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_ATOMIC ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_ATT ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_ATTSTANFORD ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_AUTOPHON ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_AXIS ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_BCLOOP ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_BOFL ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_CABLETRON ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_CHAOS ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_COMDESIGN ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_COMPUGRAPHIC ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_COUNTERPOINT ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_CRONUS ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_CRONUSVLN ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_DCA ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_DDE ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_DEBNI ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_DECAM ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_DECCUST ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_DECDIAG ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_DECDNS ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_DECDTS ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_DECEXPER ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_DECLAST ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_DECLTM ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_DECMUMPS ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_DECNETBIOS ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_DELTACON ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_DIDDLE ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_DLOG1 ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_DLOG2 ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_DN ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_DOGFIGHT ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_DSMD ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_ECMA ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_ENCRYPT ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_ES ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_EXCELAN ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_EXPERDATA ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_FLIP ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_FLOWCONTROL ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_FRARP ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_GENDYN ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_HAYES ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_HIPPI_FP ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_HITACHI ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_HP ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_IEEEPUP ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_IEEEPUPAT ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_IMLBL ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_IMLBLDIAG ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_IP ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_IPAS ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_IPV6 ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_IPX ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_IPXNEW ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_KALPANA ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_LANBRIDGE ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_LANPROBE ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_LAT ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_LBACK ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_LITTLE ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_LLDP ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_LOGICRAFT ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_LOOPBACK ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_MATRA ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_MAX ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_MERIT ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_MICP ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_MOPDL ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_MOPRC ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_MOTOROLA ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_MPLS ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_MPLS_MCAST ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_MUMPS ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_NBPCC ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_NBPCLAIM ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_NBPCLREQ ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_NBPCLRSP ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_NBPCREQ ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_NBPCRSP ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_NBPDG ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_NBPDGB ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_NBPDLTE ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_NBPRAR ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_NBPRAS ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_NBPRST ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_NBPSCD ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_NBPVCD ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_NBS ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_NCD ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_NESTAR ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_NETBEUI ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_NOVELL ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_NS ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_NSAT ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_NSCOMPAT ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_NTRAILER ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_OS9 ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_OS9NET ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_PACER ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_PAE ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_PCS ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_PLANNING ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_PPP ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_PPPOE ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_PPPOEDISC ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_PRIMENTS ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_PUP ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_PUPAT ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_QINQ ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_RACAL ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_RATIONAL ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_RAWFR ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_RCL ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_RDP ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_RETIX ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_REVARP ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_SCA ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_SECTRA ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_SECUREDATA ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_SGITW ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_SG_BOUNCE ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_SG_DIAG ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_SG_NETGAMES ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_SG_RESV ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_SIMNET ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_SLOW ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_SNA ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_SNMP ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_SONIX ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_SPIDER ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_SPRITE ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_STP ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_TALARIS ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_TALARISMC ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_TCPCOMP ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_TCPSM ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_TEC ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_TIGAN ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_TRAIL ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_TRANSETHER ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_TYMSHARE ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_UBBST ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_UBDEBUG ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_UBDIAGLOOP ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_UBDL ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_UBNIU ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_UBNMC ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_VALID ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_VARIAN ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_VAXELN ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_VEECO ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_VEXP ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_VGLAB ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_VINES ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_VINESECHO ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_VINESLOOP ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_VITAL ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_VLAN ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_VLTLMAN ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_VPROD ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_VURESERVED ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_WATERLOO ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_WELLFLEET ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_X25 ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_X75 ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_XNSSM ideal-int
+pkg syscall (openbsd-amd64), const ETHERTYPE_XTP ideal-int
+pkg syscall (openbsd-amd64), const ETHER_ADDR_LEN ideal-int
+pkg syscall (openbsd-amd64), const ETHER_ALIGN ideal-int
+pkg syscall (openbsd-amd64), const ETHER_CRC_LEN ideal-int
+pkg syscall (openbsd-amd64), const ETHER_CRC_POLY_BE ideal-int
+pkg syscall (openbsd-amd64), const ETHER_CRC_POLY_LE ideal-int
+pkg syscall (openbsd-amd64), const ETHER_HDR_LEN ideal-int
+pkg syscall (openbsd-amd64), const ETHER_MAX_DIX_LEN ideal-int
+pkg syscall (openbsd-amd64), const ETHER_MAX_LEN ideal-int
+pkg syscall (openbsd-amd64), const ETHER_MIN_LEN ideal-int
+pkg syscall (openbsd-amd64), const ETHER_TYPE_LEN ideal-int
+pkg syscall (openbsd-amd64), const ETHER_VLAN_ENCAP_LEN ideal-int
+pkg syscall (openbsd-amd64), const EVFILT_AIO ideal-int
+pkg syscall (openbsd-amd64), const EVFILT_PROC ideal-int
+pkg syscall (openbsd-amd64), const EVFILT_READ ideal-int
+pkg syscall (openbsd-amd64), const EVFILT_SIGNAL ideal-int
+pkg syscall (openbsd-amd64), const EVFILT_SYSCOUNT ideal-int
+pkg syscall (openbsd-amd64), const EVFILT_TIMER ideal-int
+pkg syscall (openbsd-amd64), const EVFILT_VNODE ideal-int
+pkg syscall (openbsd-amd64), const EVFILT_WRITE ideal-int
+pkg syscall (openbsd-amd64), const EV_ADD ideal-int
+pkg syscall (openbsd-amd64), const EV_CLEAR ideal-int
+pkg syscall (openbsd-amd64), const EV_DELETE ideal-int
+pkg syscall (openbsd-amd64), const EV_DISABLE ideal-int
+pkg syscall (openbsd-amd64), const EV_ENABLE ideal-int
+pkg syscall (openbsd-amd64), const EV_EOF ideal-int
+pkg syscall (openbsd-amd64), const EV_ERROR ideal-int
+pkg syscall (openbsd-amd64), const EV_FLAG1 ideal-int
+pkg syscall (openbsd-amd64), const EV_ONESHOT ideal-int
+pkg syscall (openbsd-amd64), const EV_SYSFLAGS ideal-int
+pkg syscall (openbsd-amd64), const EXTA ideal-int
+pkg syscall (openbsd-amd64), const EXTB ideal-int
+pkg syscall (openbsd-amd64), const EXTPROC ideal-int
+pkg syscall (openbsd-amd64), const FD_CLOEXEC ideal-int
+pkg syscall (openbsd-amd64), const FD_SETSIZE ideal-int
+pkg syscall (openbsd-amd64), const FLUSHO ideal-int
+pkg syscall (openbsd-amd64), const F_DUPFD ideal-int
+pkg syscall (openbsd-amd64), const F_DUPFD_CLOEXEC ideal-int
+pkg syscall (openbsd-amd64), const F_GETFD ideal-int
+pkg syscall (openbsd-amd64), const F_GETFL ideal-int
+pkg syscall (openbsd-amd64), const F_GETLK ideal-int
+pkg syscall (openbsd-amd64), const F_GETOWN ideal-int
+pkg syscall (openbsd-amd64), const F_OK ideal-int
+pkg syscall (openbsd-amd64), const F_RDLCK ideal-int
+pkg syscall (openbsd-amd64), const F_SETFD ideal-int
+pkg syscall (openbsd-amd64), const F_SETFL ideal-int
+pkg syscall (openbsd-amd64), const F_SETLK ideal-int
+pkg syscall (openbsd-amd64), const F_SETLKW ideal-int
+pkg syscall (openbsd-amd64), const F_SETOWN ideal-int
+pkg syscall (openbsd-amd64), const F_UNLCK ideal-int
+pkg syscall (openbsd-amd64), const F_WRLCK ideal-int
+pkg syscall (openbsd-amd64), const HUPCL ideal-int
+pkg syscall (openbsd-amd64), const ICANON ideal-int
+pkg syscall (openbsd-amd64), const ICMP6_FILTER = 18
+pkg syscall (openbsd-amd64), const ICMP6_FILTER ideal-int
+pkg syscall (openbsd-amd64), const ICRNL ideal-int
+pkg syscall (openbsd-amd64), const IEXTEN ideal-int
+pkg syscall (openbsd-amd64), const IFAN_ARRIVAL ideal-int
+pkg syscall (openbsd-amd64), const IFAN_DEPARTURE ideal-int
+pkg syscall (openbsd-amd64), const IFA_ROUTE ideal-int
+pkg syscall (openbsd-amd64), const IFF_ALLMULTI ideal-int
+pkg syscall (openbsd-amd64), const IFF_CANTCHANGE ideal-int
+pkg syscall (openbsd-amd64), const IFF_DEBUG ideal-int
+pkg syscall (openbsd-amd64), const IFF_LINK0 ideal-int
+pkg syscall (openbsd-amd64), const IFF_LINK1 ideal-int
+pkg syscall (openbsd-amd64), const IFF_LINK2 ideal-int
+pkg syscall (openbsd-amd64), const IFF_NOARP ideal-int
+pkg syscall (openbsd-amd64), const IFF_NOTRAILERS ideal-int
+pkg syscall (openbsd-amd64), const IFF_OACTIVE ideal-int
+pkg syscall (openbsd-amd64), const IFF_POINTOPOINT ideal-int
+pkg syscall (openbsd-amd64), const IFF_PROMISC ideal-int
+pkg syscall (openbsd-amd64), const IFF_RUNNING ideal-int
+pkg syscall (openbsd-amd64), const IFF_SIMPLEX ideal-int
+pkg syscall (openbsd-amd64), const IFNAMSIZ ideal-int
+pkg syscall (openbsd-amd64), const IFT_1822 ideal-int
+pkg syscall (openbsd-amd64), const IFT_A12MPPSWITCH ideal-int
+pkg syscall (openbsd-amd64), const IFT_AAL2 ideal-int
+pkg syscall (openbsd-amd64), const IFT_AAL5 ideal-int
+pkg syscall (openbsd-amd64), const IFT_ADSL ideal-int
+pkg syscall (openbsd-amd64), const IFT_AFLANE8023 ideal-int
+pkg syscall (openbsd-amd64), const IFT_AFLANE8025 ideal-int
+pkg syscall (openbsd-amd64), const IFT_ARAP ideal-int
+pkg syscall (openbsd-amd64), const IFT_ARCNET ideal-int
+pkg syscall (openbsd-amd64), const IFT_ARCNETPLUS ideal-int
+pkg syscall (openbsd-amd64), const IFT_ASYNC ideal-int
+pkg syscall (openbsd-amd64), const IFT_ATM ideal-int
+pkg syscall (openbsd-amd64), const IFT_ATMDXI ideal-int
+pkg syscall (openbsd-amd64), const IFT_ATMFUNI ideal-int
+pkg syscall (openbsd-amd64), const IFT_ATMIMA ideal-int
+pkg syscall (openbsd-amd64), const IFT_ATMLOGICAL ideal-int
+pkg syscall (openbsd-amd64), const IFT_ATMRADIO ideal-int
+pkg syscall (openbsd-amd64), const IFT_ATMSUBINTERFACE ideal-int
+pkg syscall (openbsd-amd64), const IFT_ATMVCIENDPT ideal-int
+pkg syscall (openbsd-amd64), const IFT_ATMVIRTUAL ideal-int
+pkg syscall (openbsd-amd64), const IFT_BGPPOLICYACCOUNTING ideal-int
+pkg syscall (openbsd-amd64), const IFT_BLUETOOTH ideal-int
+pkg syscall (openbsd-amd64), const IFT_BRIDGE ideal-int
+pkg syscall (openbsd-amd64), const IFT_BSC ideal-int
+pkg syscall (openbsd-amd64), const IFT_CARP ideal-int
+pkg syscall (openbsd-amd64), const IFT_CCTEMUL ideal-int
+pkg syscall (openbsd-amd64), const IFT_CEPT ideal-int
+pkg syscall (openbsd-amd64), const IFT_CES ideal-int
+pkg syscall (openbsd-amd64), const IFT_CHANNEL ideal-int
+pkg syscall (openbsd-amd64), const IFT_CNR ideal-int
+pkg syscall (openbsd-amd64), const IFT_COFFEE ideal-int
+pkg syscall (openbsd-amd64), const IFT_COMPOSITELINK ideal-int
+pkg syscall (openbsd-amd64), const IFT_DCN ideal-int
+pkg syscall (openbsd-amd64), const IFT_DIGITALPOWERLINE ideal-int
+pkg syscall (openbsd-amd64), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int
+pkg syscall (openbsd-amd64), const IFT_DLSW ideal-int
+pkg syscall (openbsd-amd64), const IFT_DOCSCABLEDOWNSTREAM ideal-int
+pkg syscall (openbsd-amd64), const IFT_DOCSCABLEMACLAYER ideal-int
+pkg syscall (openbsd-amd64), const IFT_DOCSCABLEUPSTREAM ideal-int
+pkg syscall (openbsd-amd64), const IFT_DOCSCABLEUPSTREAMCHANNEL ideal-int
+pkg syscall (openbsd-amd64), const IFT_DS0 ideal-int
+pkg syscall (openbsd-amd64), const IFT_DS0BUNDLE ideal-int
+pkg syscall (openbsd-amd64), const IFT_DS1FDL ideal-int
+pkg syscall (openbsd-amd64), const IFT_DS3 ideal-int
+pkg syscall (openbsd-amd64), const IFT_DTM ideal-int
+pkg syscall (openbsd-amd64), const IFT_DUMMY ideal-int
+pkg syscall (openbsd-amd64), const IFT_DVBASILN ideal-int
+pkg syscall (openbsd-amd64), const IFT_DVBASIOUT ideal-int
+pkg syscall (openbsd-amd64), const IFT_DVBRCCDOWNSTREAM ideal-int
+pkg syscall (openbsd-amd64), const IFT_DVBRCCMACLAYER ideal-int
+pkg syscall (openbsd-amd64), const IFT_DVBRCCUPSTREAM ideal-int
+pkg syscall (openbsd-amd64), const IFT_ECONET ideal-int
+pkg syscall (openbsd-amd64), const IFT_ENC ideal-int
+pkg syscall (openbsd-amd64), const IFT_EON ideal-int
+pkg syscall (openbsd-amd64), const IFT_EPLRS ideal-int
+pkg syscall (openbsd-amd64), const IFT_ESCON ideal-int
+pkg syscall (openbsd-amd64), const IFT_ETHER ideal-int
+pkg syscall (openbsd-amd64), const IFT_FAITH ideal-int
+pkg syscall (openbsd-amd64), const IFT_FAST ideal-int
+pkg syscall (openbsd-amd64), const IFT_FASTETHER ideal-int
+pkg syscall (openbsd-amd64), const IFT_FASTETHERFX ideal-int
+pkg syscall (openbsd-amd64), const IFT_FDDI ideal-int
+pkg syscall (openbsd-amd64), const IFT_FIBRECHANNEL ideal-int
+pkg syscall (openbsd-amd64), const IFT_FRAMERELAYINTERCONNECT ideal-int
+pkg syscall (openbsd-amd64), const IFT_FRAMERELAYMPI ideal-int
+pkg syscall (openbsd-amd64), const IFT_FRDLCIENDPT ideal-int
+pkg syscall (openbsd-amd64), const IFT_FRELAY ideal-int
+pkg syscall (openbsd-amd64), const IFT_FRELAYDCE ideal-int
+pkg syscall (openbsd-amd64), const IFT_FRF16MFRBUNDLE ideal-int
+pkg syscall (openbsd-amd64), const IFT_FRFORWARD ideal-int
+pkg syscall (openbsd-amd64), const IFT_G703AT2MB ideal-int
+pkg syscall (openbsd-amd64), const IFT_G703AT64K ideal-int
+pkg syscall (openbsd-amd64), const IFT_GIF ideal-int
+pkg syscall (openbsd-amd64), const IFT_GIGABITETHERNET ideal-int
+pkg syscall (openbsd-amd64), const IFT_GR303IDT ideal-int
+pkg syscall (openbsd-amd64), const IFT_GR303RDT ideal-int
+pkg syscall (openbsd-amd64), const IFT_H323GATEKEEPER ideal-int
+pkg syscall (openbsd-amd64), const IFT_H323PROXY ideal-int
+pkg syscall (openbsd-amd64), const IFT_HDH1822 ideal-int
+pkg syscall (openbsd-amd64), const IFT_HDLC ideal-int
+pkg syscall (openbsd-amd64), const IFT_HDSL2 ideal-int
+pkg syscall (openbsd-amd64), const IFT_HIPERLAN2 ideal-int
+pkg syscall (openbsd-amd64), const IFT_HIPPI ideal-int
+pkg syscall (openbsd-amd64), const IFT_HIPPIINTERFACE ideal-int
+pkg syscall (openbsd-amd64), const IFT_HOSTPAD ideal-int
+pkg syscall (openbsd-amd64), const IFT_HSSI ideal-int
+pkg syscall (openbsd-amd64), const IFT_HY ideal-int
+pkg syscall (openbsd-amd64), const IFT_IBM370PARCHAN ideal-int
+pkg syscall (openbsd-amd64), const IFT_IDSL ideal-int
+pkg syscall (openbsd-amd64), const IFT_IEEE1394 ideal-int
+pkg syscall (openbsd-amd64), const IFT_IEEE80211 ideal-int
+pkg syscall (openbsd-amd64), const IFT_IEEE80212 ideal-int
+pkg syscall (openbsd-amd64), const IFT_IEEE8023ADLAG ideal-int
+pkg syscall (openbsd-amd64), const IFT_IFGSN ideal-int
+pkg syscall (openbsd-amd64), const IFT_IMT ideal-int
+pkg syscall (openbsd-amd64), const IFT_INFINIBAND ideal-int
+pkg syscall (openbsd-amd64), const IFT_INTERLEAVE ideal-int
+pkg syscall (openbsd-amd64), const IFT_IP ideal-int
+pkg syscall (openbsd-amd64), const IFT_IPFORWARD ideal-int
+pkg syscall (openbsd-amd64), const IFT_IPOVERATM ideal-int
+pkg syscall (openbsd-amd64), const IFT_IPOVERCDLC ideal-int
+pkg syscall (openbsd-amd64), const IFT_IPOVERCLAW ideal-int
+pkg syscall (openbsd-amd64), const IFT_IPSWITCH ideal-int
+pkg syscall (openbsd-amd64), const IFT_ISDN ideal-int
+pkg syscall (openbsd-amd64), const IFT_ISDNBASIC ideal-int
+pkg syscall (openbsd-amd64), const IFT_ISDNPRIMARY ideal-int
+pkg syscall (openbsd-amd64), const IFT_ISDNS ideal-int
+pkg syscall (openbsd-amd64), const IFT_ISDNU ideal-int
+pkg syscall (openbsd-amd64), const IFT_ISO88022LLC ideal-int
+pkg syscall (openbsd-amd64), const IFT_ISO88023 ideal-int
+pkg syscall (openbsd-amd64), const IFT_ISO88024 ideal-int
+pkg syscall (openbsd-amd64), const IFT_ISO88025 ideal-int
+pkg syscall (openbsd-amd64), const IFT_ISO88025CRFPINT ideal-int
+pkg syscall (openbsd-amd64), const IFT_ISO88025DTR ideal-int
+pkg syscall (openbsd-amd64), const IFT_ISO88025FIBER ideal-int
+pkg syscall (openbsd-amd64), const IFT_ISO88026 ideal-int
+pkg syscall (openbsd-amd64), const IFT_ISUP ideal-int
+pkg syscall (openbsd-amd64), const IFT_L2VLAN ideal-int
+pkg syscall (openbsd-amd64), const IFT_L3IPVLAN ideal-int
+pkg syscall (openbsd-amd64), const IFT_L3IPXVLAN ideal-int
+pkg syscall (openbsd-amd64), const IFT_LAPB ideal-int
+pkg syscall (openbsd-amd64), const IFT_LAPD ideal-int
+pkg syscall (openbsd-amd64), const IFT_LAPF ideal-int
+pkg syscall (openbsd-amd64), const IFT_LINEGROUP ideal-int
+pkg syscall (openbsd-amd64), const IFT_LOCALTALK ideal-int
+pkg syscall (openbsd-amd64), const IFT_LOOP ideal-int
+pkg syscall (openbsd-amd64), const IFT_MEDIAMAILOVERIP ideal-int
+pkg syscall (openbsd-amd64), const IFT_MFSIGLINK ideal-int
+pkg syscall (openbsd-amd64), const IFT_MIOX25 ideal-int
+pkg syscall (openbsd-amd64), const IFT_MODEM ideal-int
+pkg syscall (openbsd-amd64), const IFT_MPC ideal-int
+pkg syscall (openbsd-amd64), const IFT_MPLS ideal-int
+pkg syscall (openbsd-amd64), const IFT_MPLSTUNNEL ideal-int
+pkg syscall (openbsd-amd64), const IFT_MSDSL ideal-int
+pkg syscall (openbsd-amd64), const IFT_MVL ideal-int
+pkg syscall (openbsd-amd64), const IFT_MYRINET ideal-int
+pkg syscall (openbsd-amd64), const IFT_NFAS ideal-int
+pkg syscall (openbsd-amd64), const IFT_NSIP ideal-int
+pkg syscall (openbsd-amd64), const IFT_OPTICALCHANNEL ideal-int
+pkg syscall (openbsd-amd64), const IFT_OPTICALTRANSPORT ideal-int
+pkg syscall (openbsd-amd64), const IFT_OTHER ideal-int
+pkg syscall (openbsd-amd64), const IFT_P10 ideal-int
+pkg syscall (openbsd-amd64), const IFT_P80 ideal-int
+pkg syscall (openbsd-amd64), const IFT_PARA ideal-int
+pkg syscall (openbsd-amd64), const IFT_PFLOG ideal-int
+pkg syscall (openbsd-amd64), const IFT_PFLOW ideal-int
+pkg syscall (openbsd-amd64), const IFT_PFSYNC ideal-int
+pkg syscall (openbsd-amd64), const IFT_PLC ideal-int
+pkg syscall (openbsd-amd64), const IFT_PON155 ideal-int
+pkg syscall (openbsd-amd64), const IFT_PON622 ideal-int
+pkg syscall (openbsd-amd64), const IFT_POS ideal-int
+pkg syscall (openbsd-amd64), const IFT_PPP ideal-int
+pkg syscall (openbsd-amd64), const IFT_PPPMULTILINKBUNDLE ideal-int
+pkg syscall (openbsd-amd64), const IFT_PROPATM ideal-int
+pkg syscall (openbsd-amd64), const IFT_PROPBWAP2MP ideal-int
+pkg syscall (openbsd-amd64), const IFT_PROPCNLS ideal-int
+pkg syscall (openbsd-amd64), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int
+pkg syscall (openbsd-amd64), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int
+pkg syscall (openbsd-amd64), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int
+pkg syscall (openbsd-amd64), const IFT_PROPMUX ideal-int
+pkg syscall (openbsd-amd64), const IFT_PROPVIRTUAL ideal-int
+pkg syscall (openbsd-amd64), const IFT_PROPWIRELESSP2P ideal-int
+pkg syscall (openbsd-amd64), const IFT_PTPSERIAL ideal-int
+pkg syscall (openbsd-amd64), const IFT_PVC ideal-int
+pkg syscall (openbsd-amd64), const IFT_Q2931 ideal-int
+pkg syscall (openbsd-amd64), const IFT_QLLC ideal-int
+pkg syscall (openbsd-amd64), const IFT_RADIOMAC ideal-int
+pkg syscall (openbsd-amd64), const IFT_RADSL ideal-int
+pkg syscall (openbsd-amd64), const IFT_REACHDSL ideal-int
+pkg syscall (openbsd-amd64), const IFT_RFC1483 ideal-int
+pkg syscall (openbsd-amd64), const IFT_RS232 ideal-int
+pkg syscall (openbsd-amd64), const IFT_RSRB ideal-int
+pkg syscall (openbsd-amd64), const IFT_SDLC ideal-int
+pkg syscall (openbsd-amd64), const IFT_SDSL ideal-int
+pkg syscall (openbsd-amd64), const IFT_SHDSL ideal-int
+pkg syscall (openbsd-amd64), const IFT_SIP ideal-int
+pkg syscall (openbsd-amd64), const IFT_SIPSIG ideal-int
+pkg syscall (openbsd-amd64), const IFT_SIPTG ideal-int
+pkg syscall (openbsd-amd64), const IFT_SLIP ideal-int
+pkg syscall (openbsd-amd64), const IFT_SMDSDXI ideal-int
+pkg syscall (openbsd-amd64), const IFT_SMDSICIP ideal-int
+pkg syscall (openbsd-amd64), const IFT_SONET ideal-int
+pkg syscall (openbsd-amd64), const IFT_SONETOVERHEADCHANNEL ideal-int
+pkg syscall (openbsd-amd64), const IFT_SONETPATH ideal-int
+pkg syscall (openbsd-amd64), const IFT_SONETVT ideal-int
+pkg syscall (openbsd-amd64), const IFT_SRP ideal-int
+pkg syscall (openbsd-amd64), const IFT_SS7SIGLINK ideal-int
+pkg syscall (openbsd-amd64), const IFT_STACKTOSTACK ideal-int
+pkg syscall (openbsd-amd64), const IFT_STARLAN ideal-int
+pkg syscall (openbsd-amd64), const IFT_T1 ideal-int
+pkg syscall (openbsd-amd64), const IFT_TDLC ideal-int
+pkg syscall (openbsd-amd64), const IFT_TELINK ideal-int
+pkg syscall (openbsd-amd64), const IFT_TERMPAD ideal-int
+pkg syscall (openbsd-amd64), const IFT_TR008 ideal-int
+pkg syscall (openbsd-amd64), const IFT_TRANSPHDLC ideal-int
+pkg syscall (openbsd-amd64), const IFT_TUNNEL ideal-int
+pkg syscall (openbsd-amd64), const IFT_ULTRA ideal-int
+pkg syscall (openbsd-amd64), const IFT_USB ideal-int
+pkg syscall (openbsd-amd64), const IFT_V11 ideal-int
+pkg syscall (openbsd-amd64), const IFT_V35 ideal-int
+pkg syscall (openbsd-amd64), const IFT_V36 ideal-int
+pkg syscall (openbsd-amd64), const IFT_V37 ideal-int
+pkg syscall (openbsd-amd64), const IFT_VDSL ideal-int
+pkg syscall (openbsd-amd64), const IFT_VIRTUALIPADDRESS ideal-int
+pkg syscall (openbsd-amd64), const IFT_VIRTUALTG ideal-int
+pkg syscall (openbsd-amd64), const IFT_VOICEDID ideal-int
+pkg syscall (openbsd-amd64), const IFT_VOICEEM ideal-int
+pkg syscall (openbsd-amd64), const IFT_VOICEEMFGD ideal-int
+pkg syscall (openbsd-amd64), const IFT_VOICEENCAP ideal-int
+pkg syscall (openbsd-amd64), const IFT_VOICEFGDEANA ideal-int
+pkg syscall (openbsd-amd64), const IFT_VOICEFXO ideal-int
+pkg syscall (openbsd-amd64), const IFT_VOICEFXS ideal-int
+pkg syscall (openbsd-amd64), const IFT_VOICEOVERATM ideal-int
+pkg syscall (openbsd-amd64), const IFT_VOICEOVERCABLE ideal-int
+pkg syscall (openbsd-amd64), const IFT_VOICEOVERFRAMERELAY ideal-int
+pkg syscall (openbsd-amd64), const IFT_VOICEOVERIP ideal-int
+pkg syscall (openbsd-amd64), const IFT_X213 ideal-int
+pkg syscall (openbsd-amd64), const IFT_X25 ideal-int
+pkg syscall (openbsd-amd64), const IFT_X25DDN ideal-int
+pkg syscall (openbsd-amd64), const IFT_X25HUNTGROUP ideal-int
+pkg syscall (openbsd-amd64), const IFT_X25MLP ideal-int
+pkg syscall (openbsd-amd64), const IFT_X25PLE ideal-int
+pkg syscall (openbsd-amd64), const IFT_XETHER ideal-int
+pkg syscall (openbsd-amd64), const IGNBRK ideal-int
+pkg syscall (openbsd-amd64), const IGNCR ideal-int
+pkg syscall (openbsd-amd64), const IGNPAR ideal-int
+pkg syscall (openbsd-amd64), const IMAXBEL ideal-int
+pkg syscall (openbsd-amd64), const INLCR ideal-int
+pkg syscall (openbsd-amd64), const INPCK ideal-int
+pkg syscall (openbsd-amd64), const IN_CLASSA_HOST ideal-int
+pkg syscall (openbsd-amd64), const IN_CLASSA_MAX ideal-int
+pkg syscall (openbsd-amd64), const IN_CLASSA_NET ideal-int
+pkg syscall (openbsd-amd64), const IN_CLASSA_NSHIFT ideal-int
+pkg syscall (openbsd-amd64), const IN_CLASSB_HOST ideal-int
+pkg syscall (openbsd-amd64), const IN_CLASSB_MAX ideal-int
+pkg syscall (openbsd-amd64), const IN_CLASSB_NET ideal-int
+pkg syscall (openbsd-amd64), const IN_CLASSB_NSHIFT ideal-int
+pkg syscall (openbsd-amd64), const IN_CLASSC_HOST ideal-int
+pkg syscall (openbsd-amd64), const IN_CLASSC_NET ideal-int
+pkg syscall (openbsd-amd64), const IN_CLASSC_NSHIFT ideal-int
+pkg syscall (openbsd-amd64), const IN_CLASSD_HOST ideal-int
+pkg syscall (openbsd-amd64), const IN_CLASSD_NET ideal-int
+pkg syscall (openbsd-amd64), const IN_CLASSD_NSHIFT ideal-int
+pkg syscall (openbsd-amd64), const IN_LOOPBACKNET ideal-int
+pkg syscall (openbsd-amd64), const IN_RFC3021_HOST ideal-int
+pkg syscall (openbsd-amd64), const IN_RFC3021_NET ideal-int
+pkg syscall (openbsd-amd64), const IN_RFC3021_NSHIFT ideal-int
+pkg syscall (openbsd-amd64), const IPPROTO_AH ideal-int
+pkg syscall (openbsd-amd64), const IPPROTO_CARP ideal-int
+pkg syscall (openbsd-amd64), const IPPROTO_DIVERT ideal-int
+pkg syscall (openbsd-amd64), const IPPROTO_DONE ideal-int
+pkg syscall (openbsd-amd64), const IPPROTO_DSTOPTS ideal-int
+pkg syscall (openbsd-amd64), const IPPROTO_EGP ideal-int
+pkg syscall (openbsd-amd64), const IPPROTO_ENCAP ideal-int
+pkg syscall (openbsd-amd64), const IPPROTO_EON ideal-int
+pkg syscall (openbsd-amd64), const IPPROTO_ESP ideal-int
+pkg syscall (openbsd-amd64), const IPPROTO_ETHERIP ideal-int
+pkg syscall (openbsd-amd64), const IPPROTO_FRAGMENT ideal-int
+pkg syscall (openbsd-amd64), const IPPROTO_GGP ideal-int
+pkg syscall (openbsd-amd64), const IPPROTO_GRE ideal-int
+pkg syscall (openbsd-amd64), const IPPROTO_HOPOPTS ideal-int
+pkg syscall (openbsd-amd64), const IPPROTO_ICMP ideal-int
+pkg syscall (openbsd-amd64), const IPPROTO_ICMPV6 ideal-int
+pkg syscall (openbsd-amd64), const IPPROTO_IDP ideal-int
+pkg syscall (openbsd-amd64), const IPPROTO_IGMP ideal-int
+pkg syscall (openbsd-amd64), const IPPROTO_IPCOMP ideal-int
+pkg syscall (openbsd-amd64), const IPPROTO_IPIP ideal-int
+pkg syscall (openbsd-amd64), const IPPROTO_IPV4 ideal-int
+pkg syscall (openbsd-amd64), const IPPROTO_MAX ideal-int
+pkg syscall (openbsd-amd64), const IPPROTO_MAXID ideal-int
+pkg syscall (openbsd-amd64), const IPPROTO_MOBILE ideal-int
+pkg syscall (openbsd-amd64), const IPPROTO_MPLS ideal-int
+pkg syscall (openbsd-amd64), const IPPROTO_NONE ideal-int
+pkg syscall (openbsd-amd64), const IPPROTO_PFSYNC ideal-int
+pkg syscall (openbsd-amd64), const IPPROTO_PIM ideal-int
+pkg syscall (openbsd-amd64), const IPPROTO_PUP ideal-int
+pkg syscall (openbsd-amd64), const IPPROTO_RAW ideal-int
+pkg syscall (openbsd-amd64), const IPPROTO_ROUTING ideal-int
+pkg syscall (openbsd-amd64), const IPPROTO_RSVP ideal-int
+pkg syscall (openbsd-amd64), const IPPROTO_TP ideal-int
+pkg syscall (openbsd-amd64), const IPV6_AUTH_LEVEL ideal-int
+pkg syscall (openbsd-amd64), const IPV6_AUTOFLOWLABEL ideal-int
+pkg syscall (openbsd-amd64), const IPV6_CHECKSUM ideal-int
+pkg syscall (openbsd-amd64), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int
+pkg syscall (openbsd-amd64), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int
+pkg syscall (openbsd-amd64), const IPV6_DEFHLIM ideal-int
+pkg syscall (openbsd-amd64), const IPV6_DONTFRAG ideal-int
+pkg syscall (openbsd-amd64), const IPV6_DSTOPTS ideal-int
+pkg syscall (openbsd-amd64), const IPV6_ESP_NETWORK_LEVEL ideal-int
+pkg syscall (openbsd-amd64), const IPV6_ESP_TRANS_LEVEL ideal-int
+pkg syscall (openbsd-amd64), const IPV6_FAITH ideal-int
+pkg syscall (openbsd-amd64), const IPV6_FLOWINFO_MASK ideal-int
+pkg syscall (openbsd-amd64), const IPV6_FLOWLABEL_MASK ideal-int
+pkg syscall (openbsd-amd64), const IPV6_FRAGTTL ideal-int
+pkg syscall (openbsd-amd64), const IPV6_HLIMDEC ideal-int
+pkg syscall (openbsd-amd64), const IPV6_HOPLIMIT ideal-int
+pkg syscall (openbsd-amd64), const IPV6_HOPOPTS ideal-int
+pkg syscall (openbsd-amd64), const IPV6_IPCOMP_LEVEL ideal-int
+pkg syscall (openbsd-amd64), const IPV6_MAXHLIM ideal-int
+pkg syscall (openbsd-amd64), const IPV6_MAXPACKET ideal-int
+pkg syscall (openbsd-amd64), const IPV6_MMTU ideal-int
+pkg syscall (openbsd-amd64), const IPV6_NEXTHOP ideal-int
+pkg syscall (openbsd-amd64), const IPV6_OPTIONS ideal-int
+pkg syscall (openbsd-amd64), const IPV6_PATHMTU ideal-int
+pkg syscall (openbsd-amd64), const IPV6_PIPEX ideal-int
+pkg syscall (openbsd-amd64), const IPV6_PKTINFO ideal-int
+pkg syscall (openbsd-amd64), const IPV6_PORTRANGE ideal-int
+pkg syscall (openbsd-amd64), const IPV6_PORTRANGE_DEFAULT ideal-int
+pkg syscall (openbsd-amd64), const IPV6_PORTRANGE_HIGH ideal-int
+pkg syscall (openbsd-amd64), const IPV6_PORTRANGE_LOW ideal-int
+pkg syscall (openbsd-amd64), const IPV6_RECVDSTOPTS ideal-int
+pkg syscall (openbsd-amd64), const IPV6_RECVHOPLIMIT ideal-int
+pkg syscall (openbsd-amd64), const IPV6_RECVHOPOPTS ideal-int
+pkg syscall (openbsd-amd64), const IPV6_RECVPATHMTU ideal-int
+pkg syscall (openbsd-amd64), const IPV6_RECVPKTINFO ideal-int
+pkg syscall (openbsd-amd64), const IPV6_RECVRTHDR ideal-int
+pkg syscall (openbsd-amd64), const IPV6_RECVTCLASS ideal-int
+pkg syscall (openbsd-amd64), const IPV6_RTABLE ideal-int
+pkg syscall (openbsd-amd64), const IPV6_RTHDR ideal-int
+pkg syscall (openbsd-amd64), const IPV6_RTHDRDSTOPTS ideal-int
+pkg syscall (openbsd-amd64), const IPV6_RTHDR_LOOSE ideal-int
+pkg syscall (openbsd-amd64), const IPV6_RTHDR_STRICT ideal-int
+pkg syscall (openbsd-amd64), const IPV6_RTHDR_TYPE_0 ideal-int
+pkg syscall (openbsd-amd64), const IPV6_SOCKOPT_RESERVED1 ideal-int
+pkg syscall (openbsd-amd64), const IPV6_TCLASS ideal-int
+pkg syscall (openbsd-amd64), const IPV6_USE_MIN_MTU ideal-int
+pkg syscall (openbsd-amd64), const IPV6_VERSION ideal-int
+pkg syscall (openbsd-amd64), const IPV6_VERSION_MASK ideal-int
+pkg syscall (openbsd-amd64), const IP_AUTH_LEVEL ideal-int
+pkg syscall (openbsd-amd64), const IP_DEFAULT_MULTICAST_LOOP ideal-int
+pkg syscall (openbsd-amd64), const IP_DEFAULT_MULTICAST_TTL ideal-int
+pkg syscall (openbsd-amd64), const IP_DF ideal-int
+pkg syscall (openbsd-amd64), const IP_ESP_NETWORK_LEVEL ideal-int
+pkg syscall (openbsd-amd64), const IP_ESP_TRANS_LEVEL ideal-int
+pkg syscall (openbsd-amd64), const IP_HDRINCL ideal-int
+pkg syscall (openbsd-amd64), const IP_IPCOMP_LEVEL ideal-int
+pkg syscall (openbsd-amd64), const IP_IPSECFLOWINFO ideal-int
+pkg syscall (openbsd-amd64), const IP_IPSEC_LOCAL_AUTH ideal-int
+pkg syscall (openbsd-amd64), const IP_IPSEC_LOCAL_CRED ideal-int
+pkg syscall (openbsd-amd64), const IP_IPSEC_LOCAL_ID ideal-int
+pkg syscall (openbsd-amd64), const IP_IPSEC_REMOTE_AUTH ideal-int
+pkg syscall (openbsd-amd64), const IP_IPSEC_REMOTE_CRED ideal-int
+pkg syscall (openbsd-amd64), const IP_IPSEC_REMOTE_ID ideal-int
+pkg syscall (openbsd-amd64), const IP_MAXPACKET ideal-int
+pkg syscall (openbsd-amd64), const IP_MAX_MEMBERSHIPS ideal-int
+pkg syscall (openbsd-amd64), const IP_MF ideal-int
+pkg syscall (openbsd-amd64), const IP_MINTTL ideal-int
+pkg syscall (openbsd-amd64), const IP_MIN_MEMBERSHIPS ideal-int
+pkg syscall (openbsd-amd64), const IP_MSS ideal-int
+pkg syscall (openbsd-amd64), const IP_OFFMASK ideal-int
+pkg syscall (openbsd-amd64), const IP_OPTIONS ideal-int
+pkg syscall (openbsd-amd64), const IP_PIPEX ideal-int
+pkg syscall (openbsd-amd64), const IP_PORTRANGE ideal-int
+pkg syscall (openbsd-amd64), const IP_PORTRANGE_DEFAULT ideal-int
+pkg syscall (openbsd-amd64), const IP_PORTRANGE_HIGH ideal-int
+pkg syscall (openbsd-amd64), const IP_PORTRANGE_LOW ideal-int
+pkg syscall (openbsd-amd64), const IP_RECVDSTADDR ideal-int
+pkg syscall (openbsd-amd64), const IP_RECVDSTPORT ideal-int
+pkg syscall (openbsd-amd64), const IP_RECVIF ideal-int
+pkg syscall (openbsd-amd64), const IP_RECVOPTS ideal-int
+pkg syscall (openbsd-amd64), const IP_RECVRETOPTS ideal-int
+pkg syscall (openbsd-amd64), const IP_RECVRTABLE ideal-int
+pkg syscall (openbsd-amd64), const IP_RECVTTL ideal-int
+pkg syscall (openbsd-amd64), const IP_RETOPTS ideal-int
+pkg syscall (openbsd-amd64), const IP_RF ideal-int
+pkg syscall (openbsd-amd64), const IP_RTABLE ideal-int
+pkg syscall (openbsd-amd64), const ISIG ideal-int
+pkg syscall (openbsd-amd64), const ISTRIP ideal-int
+pkg syscall (openbsd-amd64), const IXANY ideal-int
+pkg syscall (openbsd-amd64), const IXOFF ideal-int
+pkg syscall (openbsd-amd64), const IXON ideal-int
+pkg syscall (openbsd-amd64), const LCNT_OVERLOAD_FLUSH ideal-int
+pkg syscall (openbsd-amd64), const LOCK_EX ideal-int
+pkg syscall (openbsd-amd64), const LOCK_NB ideal-int
+pkg syscall (openbsd-amd64), const LOCK_SH ideal-int
+pkg syscall (openbsd-amd64), const LOCK_UN ideal-int
+pkg syscall (openbsd-amd64), const MSG_BCAST ideal-int
+pkg syscall (openbsd-amd64), const MSG_CTRUNC ideal-int
+pkg syscall (openbsd-amd64), const MSG_DONTROUTE ideal-int
+pkg syscall (openbsd-amd64), const MSG_DONTWAIT ideal-int
+pkg syscall (openbsd-amd64), const MSG_EOR ideal-int
+pkg syscall (openbsd-amd64), const MSG_MCAST ideal-int
+pkg syscall (openbsd-amd64), const MSG_NOSIGNAL ideal-int
+pkg syscall (openbsd-amd64), const MSG_OOB ideal-int
+pkg syscall (openbsd-amd64), const MSG_PEEK ideal-int
+pkg syscall (openbsd-amd64), const MSG_TRUNC ideal-int
+pkg syscall (openbsd-amd64), const MSG_WAITALL ideal-int
+pkg syscall (openbsd-amd64), const NAME_MAX ideal-int
+pkg syscall (openbsd-amd64), const NET_RT_DUMP ideal-int
+pkg syscall (openbsd-amd64), const NET_RT_FLAGS ideal-int
+pkg syscall (openbsd-amd64), const NET_RT_IFLIST ideal-int
+pkg syscall (openbsd-amd64), const NET_RT_MAXID ideal-int
+pkg syscall (openbsd-amd64), const NET_RT_STATS ideal-int
+pkg syscall (openbsd-amd64), const NET_RT_TABLE ideal-int
+pkg syscall (openbsd-amd64), const NOFLSH ideal-int
+pkg syscall (openbsd-amd64), const NOTE_ATTRIB ideal-int
+pkg syscall (openbsd-amd64), const NOTE_CHILD ideal-int
+pkg syscall (openbsd-amd64), const NOTE_DELETE ideal-int
+pkg syscall (openbsd-amd64), const NOTE_EOF ideal-int
+pkg syscall (openbsd-amd64), const NOTE_EXEC ideal-int
+pkg syscall (openbsd-amd64), const NOTE_EXIT ideal-int
+pkg syscall (openbsd-amd64), const NOTE_EXTEND ideal-int
+pkg syscall (openbsd-amd64), const NOTE_FORK ideal-int
+pkg syscall (openbsd-amd64), const NOTE_LINK ideal-int
+pkg syscall (openbsd-amd64), const NOTE_LOWAT ideal-int
+pkg syscall (openbsd-amd64), const NOTE_PCTRLMASK ideal-int
+pkg syscall (openbsd-amd64), const NOTE_PDATAMASK ideal-int
+pkg syscall (openbsd-amd64), const NOTE_RENAME ideal-int
+pkg syscall (openbsd-amd64), const NOTE_REVOKE ideal-int
+pkg syscall (openbsd-amd64), const NOTE_TRACK ideal-int
+pkg syscall (openbsd-amd64), const NOTE_TRACKERR ideal-int
+pkg syscall (openbsd-amd64), const NOTE_TRUNCATE ideal-int
+pkg syscall (openbsd-amd64), const NOTE_WRITE ideal-int
+pkg syscall (openbsd-amd64), const OCRNL ideal-int
+pkg syscall (openbsd-amd64), const ONLCR ideal-int
+pkg syscall (openbsd-amd64), const ONLRET ideal-int
+pkg syscall (openbsd-amd64), const ONOCR ideal-int
+pkg syscall (openbsd-amd64), const ONOEOT ideal-int
+pkg syscall (openbsd-amd64), const OPOST ideal-int
+pkg syscall (openbsd-amd64), const O_ACCMODE ideal-int
+pkg syscall (openbsd-amd64), const O_DIRECTORY ideal-int
+pkg syscall (openbsd-amd64), const O_DSYNC ideal-int
+pkg syscall (openbsd-amd64), const O_EXLOCK ideal-int
+pkg syscall (openbsd-amd64), const O_FSYNC ideal-int
+pkg syscall (openbsd-amd64), const O_NDELAY ideal-int
+pkg syscall (openbsd-amd64), const O_NOFOLLOW ideal-int
+pkg syscall (openbsd-amd64), const O_RSYNC ideal-int
+pkg syscall (openbsd-amd64), const O_SHLOCK ideal-int
+pkg syscall (openbsd-amd64), const PARENB ideal-int
+pkg syscall (openbsd-amd64), const PARMRK ideal-int
+pkg syscall (openbsd-amd64), const PARODD ideal-int
+pkg syscall (openbsd-amd64), const PENDIN ideal-int
+pkg syscall (openbsd-amd64), const PF_FLUSH ideal-int
+pkg syscall (openbsd-amd64), const PMC5_PIPELINE_FLUSH ideal-int
+pkg syscall (openbsd-amd64), const PRIO_PGRP = 1
+pkg syscall (openbsd-amd64), const PRIO_PGRP ideal-int
+pkg syscall (openbsd-amd64), const PRIO_PROCESS = 0
+pkg syscall (openbsd-amd64), const PRIO_PROCESS ideal-int
+pkg syscall (openbsd-amd64), const PRIO_USER = 2
+pkg syscall (openbsd-amd64), const PRIO_USER ideal-int
+pkg syscall (openbsd-amd64), const PTRACE_CONT ideal-int
+pkg syscall (openbsd-amd64), const PTRACE_KILL ideal-int
+pkg syscall (openbsd-amd64), const PTRACE_TRACEME ideal-int
+pkg syscall (openbsd-amd64), const RLIMIT_CORE ideal-int
+pkg syscall (openbsd-amd64), const RLIMIT_CPU ideal-int
+pkg syscall (openbsd-amd64), const RLIMIT_DATA ideal-int
+pkg syscall (openbsd-amd64), const RLIMIT_FSIZE ideal-int
+pkg syscall (openbsd-amd64), const RLIMIT_NOFILE ideal-int
+pkg syscall (openbsd-amd64), const RLIMIT_STACK ideal-int
+pkg syscall (openbsd-amd64), const RLIM_INFINITY ideal-int
+pkg syscall (openbsd-amd64), const RTAX_AUTHOR ideal-int
+pkg syscall (openbsd-amd64), const RTAX_BRD ideal-int
+pkg syscall (openbsd-amd64), const RTAX_DST ideal-int
+pkg syscall (openbsd-amd64), const RTAX_GATEWAY ideal-int
+pkg syscall (openbsd-amd64), const RTAX_GENMASK ideal-int
+pkg syscall (openbsd-amd64), const RTAX_IFA ideal-int
+pkg syscall (openbsd-amd64), const RTAX_IFP ideal-int
+pkg syscall (openbsd-amd64), const RTAX_LABEL ideal-int
+pkg syscall (openbsd-amd64), const RTAX_MAX ideal-int
+pkg syscall (openbsd-amd64), const RTAX_NETMASK ideal-int
+pkg syscall (openbsd-amd64), const RTAX_SRC ideal-int
+pkg syscall (openbsd-amd64), const RTAX_SRCMASK ideal-int
+pkg syscall (openbsd-amd64), const RTA_AUTHOR ideal-int
+pkg syscall (openbsd-amd64), const RTA_BRD ideal-int
+pkg syscall (openbsd-amd64), const RTA_DST ideal-int
+pkg syscall (openbsd-amd64), const RTA_GATEWAY ideal-int
+pkg syscall (openbsd-amd64), const RTA_GENMASK ideal-int
+pkg syscall (openbsd-amd64), const RTA_IFA ideal-int
+pkg syscall (openbsd-amd64), const RTA_IFP ideal-int
+pkg syscall (openbsd-amd64), const RTA_LABEL ideal-int
+pkg syscall (openbsd-amd64), const RTA_NETMASK ideal-int
+pkg syscall (openbsd-amd64), const RTA_SRC ideal-int
+pkg syscall (openbsd-amd64), const RTA_SRCMASK ideal-int
+pkg syscall (openbsd-amd64), const RTF_ANNOUNCE ideal-int
+pkg syscall (openbsd-amd64), const RTF_BLACKHOLE ideal-int
+pkg syscall (openbsd-amd64), const RTF_CLONED ideal-int
+pkg syscall (openbsd-amd64), const RTF_CLONING ideal-int
+pkg syscall (openbsd-amd64), const RTF_DONE ideal-int
+pkg syscall (openbsd-amd64), const RTF_DYNAMIC ideal-int
+pkg syscall (openbsd-amd64), const RTF_FMASK ideal-int
+pkg syscall (openbsd-amd64), const RTF_GATEWAY ideal-int
+pkg syscall (openbsd-amd64), const RTF_HOST ideal-int
+pkg syscall (openbsd-amd64), const RTF_LLINFO ideal-int
+pkg syscall (openbsd-amd64), const RTF_MASK ideal-int
+pkg syscall (openbsd-amd64), const RTF_MODIFIED ideal-int
+pkg syscall (openbsd-amd64), const RTF_MPATH ideal-int
+pkg syscall (openbsd-amd64), const RTF_MPLS ideal-int
+pkg syscall (openbsd-amd64), const RTF_PERMANENT_ARP ideal-int
+pkg syscall (openbsd-amd64), const RTF_PROTO1 ideal-int
+pkg syscall (openbsd-amd64), const RTF_PROTO2 ideal-int
+pkg syscall (openbsd-amd64), const RTF_PROTO3 ideal-int
+pkg syscall (openbsd-amd64), const RTF_REJECT ideal-int
+pkg syscall (openbsd-amd64), const RTF_SOURCE ideal-int
+pkg syscall (openbsd-amd64), const RTF_STATIC ideal-int
+pkg syscall (openbsd-amd64), const RTF_TUNNEL ideal-int
+pkg syscall (openbsd-amd64), const RTF_UP ideal-int
+pkg syscall (openbsd-amd64), const RTF_USETRAILERS ideal-int
+pkg syscall (openbsd-amd64), const RTF_XRESOLVE ideal-int
+pkg syscall (openbsd-amd64), const RTM_ADD ideal-int
+pkg syscall (openbsd-amd64), const RTM_CHANGE ideal-int
+pkg syscall (openbsd-amd64), const RTM_DELADDR ideal-int
+pkg syscall (openbsd-amd64), const RTM_DELETE ideal-int
+pkg syscall (openbsd-amd64), const RTM_DESYNC ideal-int
+pkg syscall (openbsd-amd64), const RTM_GET ideal-int
+pkg syscall (openbsd-amd64), const RTM_IFANNOUNCE ideal-int
+pkg syscall (openbsd-amd64), const RTM_IFINFO ideal-int
+pkg syscall (openbsd-amd64), const RTM_LOCK ideal-int
+pkg syscall (openbsd-amd64), const RTM_LOSING ideal-int
+pkg syscall (openbsd-amd64), const RTM_MAXSIZE ideal-int
+pkg syscall (openbsd-amd64), const RTM_MISS ideal-int
+pkg syscall (openbsd-amd64), const RTM_NEWADDR ideal-int
+pkg syscall (openbsd-amd64), const RTM_REDIRECT ideal-int
+pkg syscall (openbsd-amd64), const RTM_RESOLVE ideal-int
+pkg syscall (openbsd-amd64), const RTM_RTTUNIT ideal-int
+pkg syscall (openbsd-amd64), const RTM_VERSION ideal-int
+pkg syscall (openbsd-amd64), const RTV_EXPIRE ideal-int
+pkg syscall (openbsd-amd64), const RTV_HOPCOUNT ideal-int
+pkg syscall (openbsd-amd64), const RTV_MTU ideal-int
+pkg syscall (openbsd-amd64), const RTV_RPIPE ideal-int
+pkg syscall (openbsd-amd64), const RTV_RTT ideal-int
+pkg syscall (openbsd-amd64), const RTV_RTTVAR ideal-int
+pkg syscall (openbsd-amd64), const RTV_SPIPE ideal-int
+pkg syscall (openbsd-amd64), const RTV_SSTHRESH ideal-int
+pkg syscall (openbsd-amd64), const RT_TABLEID_MAX ideal-int
+pkg syscall (openbsd-amd64), const RUSAGE_CHILDREN ideal-int
+pkg syscall (openbsd-amd64), const RUSAGE_SELF ideal-int
+pkg syscall (openbsd-amd64), const RUSAGE_THREAD ideal-int
+pkg syscall (openbsd-amd64), const SCM_RIGHTS ideal-int
+pkg syscall (openbsd-amd64), const SCM_TIMESTAMP ideal-int
+pkg syscall (openbsd-amd64), const SIGCHLD Signal
+pkg syscall (openbsd-amd64), const SIGCONT Signal
+pkg syscall (openbsd-amd64), const SIGEMT Signal
+pkg syscall (openbsd-amd64), const SIGINFO Signal
+pkg syscall (openbsd-amd64), const SIGIO Signal
+pkg syscall (openbsd-amd64), const SIGIOT Signal
+pkg syscall (openbsd-amd64), const SIGPROF Signal
+pkg syscall (openbsd-amd64), const SIGSTOP Signal
+pkg syscall (openbsd-amd64), const SIGSYS Signal
+pkg syscall (openbsd-amd64), const SIGTHR Signal
+pkg syscall (openbsd-amd64), const SIGTSTP Signal
+pkg syscall (openbsd-amd64), const SIGTTIN Signal
+pkg syscall (openbsd-amd64), const SIGTTOU Signal
+pkg syscall (openbsd-amd64), const SIGURG Signal
+pkg syscall (openbsd-amd64), const SIGUSR1 Signal
+pkg syscall (openbsd-amd64), const SIGUSR2 Signal
+pkg syscall (openbsd-amd64), const SIGVTALRM Signal
+pkg syscall (openbsd-amd64), const SIGWINCH Signal
+pkg syscall (openbsd-amd64), const SIGXCPU Signal
+pkg syscall (openbsd-amd64), const SIGXFSZ Signal
+pkg syscall (openbsd-amd64), const SIOCADDMULTI ideal-int
+pkg syscall (openbsd-amd64), const SIOCAIFADDR ideal-int
+pkg syscall (openbsd-amd64), const SIOCAIFGROUP ideal-int
+pkg syscall (openbsd-amd64), const SIOCALIFADDR ideal-int
+pkg syscall (openbsd-amd64), const SIOCATMARK ideal-int
+pkg syscall (openbsd-amd64), const SIOCBRDGADD ideal-int
+pkg syscall (openbsd-amd64), const SIOCBRDGADDS ideal-int
+pkg syscall (openbsd-amd64), const SIOCBRDGARL ideal-int
+pkg syscall (openbsd-amd64), const SIOCBRDGDADDR ideal-int
+pkg syscall (openbsd-amd64), const SIOCBRDGDEL ideal-int
+pkg syscall (openbsd-amd64), const SIOCBRDGDELS ideal-int
+pkg syscall (openbsd-amd64), const SIOCBRDGFLUSH ideal-int
+pkg syscall (openbsd-amd64), const SIOCBRDGFRL ideal-int
+pkg syscall (openbsd-amd64), const SIOCBRDGGCACHE ideal-int
+pkg syscall (openbsd-amd64), const SIOCBRDGGFD ideal-int
+pkg syscall (openbsd-amd64), const SIOCBRDGGHT ideal-int
+pkg syscall (openbsd-amd64), const SIOCBRDGGIFFLGS ideal-int
+pkg syscall (openbsd-amd64), const SIOCBRDGGMA ideal-int
+pkg syscall (openbsd-amd64), const SIOCBRDGGPARAM ideal-int
+pkg syscall (openbsd-amd64), const SIOCBRDGGPRI ideal-int
+pkg syscall (openbsd-amd64), const SIOCBRDGGRL ideal-int
+pkg syscall (openbsd-amd64), const SIOCBRDGGSIFS ideal-int
+pkg syscall (openbsd-amd64), const SIOCBRDGGTO ideal-int
+pkg syscall (openbsd-amd64), const SIOCBRDGIFS ideal-int
+pkg syscall (openbsd-amd64), const SIOCBRDGRTS ideal-int
+pkg syscall (openbsd-amd64), const SIOCBRDGSADDR ideal-int
+pkg syscall (openbsd-amd64), const SIOCBRDGSCACHE ideal-int
+pkg syscall (openbsd-amd64), const SIOCBRDGSFD ideal-int
+pkg syscall (openbsd-amd64), const SIOCBRDGSHT ideal-int
+pkg syscall (openbsd-amd64), const SIOCBRDGSIFCOST ideal-int
+pkg syscall (openbsd-amd64), const SIOCBRDGSIFFLGS ideal-int
+pkg syscall (openbsd-amd64), const SIOCBRDGSIFPRIO ideal-int
+pkg syscall (openbsd-amd64), const SIOCBRDGSMA ideal-int
+pkg syscall (openbsd-amd64), const SIOCBRDGSPRI ideal-int
+pkg syscall (openbsd-amd64), const SIOCBRDGSPROTO ideal-int
+pkg syscall (openbsd-amd64), const SIOCBRDGSTO ideal-int
+pkg syscall (openbsd-amd64), const SIOCBRDGSTXHC ideal-int
+pkg syscall (openbsd-amd64), const SIOCDELMULTI ideal-int
+pkg syscall (openbsd-amd64), const SIOCDIFADDR ideal-int
+pkg syscall (openbsd-amd64), const SIOCDIFGROUP ideal-int
+pkg syscall (openbsd-amd64), const SIOCDIFPHYADDR ideal-int
+pkg syscall (openbsd-amd64), const SIOCDLIFADDR ideal-int
+pkg syscall (openbsd-amd64), const SIOCGETKALIVE ideal-int
+pkg syscall (openbsd-amd64), const SIOCGETLABEL ideal-int
+pkg syscall (openbsd-amd64), const SIOCGETPFLOW ideal-int
+pkg syscall (openbsd-amd64), const SIOCGETPFSYNC ideal-int
+pkg syscall (openbsd-amd64), const SIOCGETSGCNT ideal-int
+pkg syscall (openbsd-amd64), const SIOCGETVIFCNT ideal-int
+pkg syscall (openbsd-amd64), const SIOCGHIWAT ideal-int
+pkg syscall (openbsd-amd64), const SIOCGIFADDR ideal-int
+pkg syscall (openbsd-amd64), const SIOCGIFASYNCMAP ideal-int
+pkg syscall (openbsd-amd64), const SIOCGIFBRDADDR ideal-int
+pkg syscall (openbsd-amd64), const SIOCGIFCONF ideal-int
+pkg syscall (openbsd-amd64), const SIOCGIFDATA ideal-int
+pkg syscall (openbsd-amd64), const SIOCGIFDESCR ideal-int
+pkg syscall (openbsd-amd64), const SIOCGIFDSTADDR ideal-int
+pkg syscall (openbsd-amd64), const SIOCGIFFLAGS ideal-int
+pkg syscall (openbsd-amd64), const SIOCGIFGATTR ideal-int
+pkg syscall (openbsd-amd64), const SIOCGIFGENERIC ideal-int
+pkg syscall (openbsd-amd64), const SIOCGIFGMEMB ideal-int
+pkg syscall (openbsd-amd64), const SIOCGIFGROUP ideal-int
+pkg syscall (openbsd-amd64), const SIOCGIFMEDIA ideal-int
+pkg syscall (openbsd-amd64), const SIOCGIFMETRIC ideal-int
+pkg syscall (openbsd-amd64), const SIOCGIFMTU ideal-int
+pkg syscall (openbsd-amd64), const SIOCGIFNETMASK ideal-int
+pkg syscall (openbsd-amd64), const SIOCGIFPDSTADDR ideal-int
+pkg syscall (openbsd-amd64), const SIOCGIFPRIORITY ideal-int
+pkg syscall (openbsd-amd64), const SIOCGIFPSRCADDR ideal-int
+pkg syscall (openbsd-amd64), const SIOCGIFRDOMAIN ideal-int
+pkg syscall (openbsd-amd64), const SIOCGIFRTLABEL ideal-int
+pkg syscall (openbsd-amd64), const SIOCGIFTIMESLOT ideal-int
+pkg syscall (openbsd-amd64), const SIOCGIFXFLAGS ideal-int
+pkg syscall (openbsd-amd64), const SIOCGLIFADDR ideal-int
+pkg syscall (openbsd-amd64), const SIOCGLIFPHYADDR ideal-int
+pkg syscall (openbsd-amd64), const SIOCGLIFPHYRTABLE ideal-int
+pkg syscall (openbsd-amd64), const SIOCGLOWAT ideal-int
+pkg syscall (openbsd-amd64), const SIOCGPGRP ideal-int
+pkg syscall (openbsd-amd64), const SIOCGVH ideal-int
+pkg syscall (openbsd-amd64), const SIOCIFCREATE ideal-int
+pkg syscall (openbsd-amd64), const SIOCIFDESTROY ideal-int
+pkg syscall (openbsd-amd64), const SIOCIFGCLONERS ideal-int
+pkg syscall (openbsd-amd64), const SIOCSETKALIVE ideal-int
+pkg syscall (openbsd-amd64), const SIOCSETLABEL ideal-int
+pkg syscall (openbsd-amd64), const SIOCSETPFLOW ideal-int
+pkg syscall (openbsd-amd64), const SIOCSETPFSYNC ideal-int
+pkg syscall (openbsd-amd64), const SIOCSHIWAT ideal-int
+pkg syscall (openbsd-amd64), const SIOCSIFADDR ideal-int
+pkg syscall (openbsd-amd64), const SIOCSIFASYNCMAP ideal-int
+pkg syscall (openbsd-amd64), const SIOCSIFBRDADDR ideal-int
+pkg syscall (openbsd-amd64), const SIOCSIFDESCR ideal-int
+pkg syscall (openbsd-amd64), const SIOCSIFDSTADDR ideal-int
+pkg syscall (openbsd-amd64), const SIOCSIFFLAGS ideal-int
+pkg syscall (openbsd-amd64), const SIOCSIFGATTR ideal-int
+pkg syscall (openbsd-amd64), const SIOCSIFGENERIC ideal-int
+pkg syscall (openbsd-amd64), const SIOCSIFLLADDR ideal-int
+pkg syscall (openbsd-amd64), const SIOCSIFMEDIA ideal-int
+pkg syscall (openbsd-amd64), const SIOCSIFMETRIC ideal-int
+pkg syscall (openbsd-amd64), const SIOCSIFMTU ideal-int
+pkg syscall (openbsd-amd64), const SIOCSIFNETMASK ideal-int
+pkg syscall (openbsd-amd64), const SIOCSIFPHYADDR ideal-int
+pkg syscall (openbsd-amd64), const SIOCSIFPRIORITY ideal-int
+pkg syscall (openbsd-amd64), const SIOCSIFRDOMAIN ideal-int
+pkg syscall (openbsd-amd64), const SIOCSIFRTLABEL ideal-int
+pkg syscall (openbsd-amd64), const SIOCSIFTIMESLOT ideal-int
+pkg syscall (openbsd-amd64), const SIOCSIFXFLAGS ideal-int
+pkg syscall (openbsd-amd64), const SIOCSLIFPHYADDR ideal-int
+pkg syscall (openbsd-amd64), const SIOCSLIFPHYRTABLE ideal-int
+pkg syscall (openbsd-amd64), const SIOCSLOWAT ideal-int
+pkg syscall (openbsd-amd64), const SIOCSPGRP ideal-int
+pkg syscall (openbsd-amd64), const SIOCSVH ideal-int
+pkg syscall (openbsd-amd64), const SOCK_RDM ideal-int
+pkg syscall (openbsd-amd64), const SO_ACCEPTCONN ideal-int
+pkg syscall (openbsd-amd64), const SO_BINDANY ideal-int
+pkg syscall (openbsd-amd64), const SO_DEBUG ideal-int
+pkg syscall (openbsd-amd64), const SO_ERROR ideal-int
+pkg syscall (openbsd-amd64), const SO_NETPROC ideal-int
+pkg syscall (openbsd-amd64), const SO_OOBINLINE ideal-int
+pkg syscall (openbsd-amd64), const SO_PEERCRED ideal-int
+pkg syscall (openbsd-amd64), const SO_RCVLOWAT ideal-int
+pkg syscall (openbsd-amd64), const SO_RCVTIMEO ideal-int
+pkg syscall (openbsd-amd64), const SO_REUSEPORT ideal-int
+pkg syscall (openbsd-amd64), const SO_RTABLE ideal-int
+pkg syscall (openbsd-amd64), const SO_SNDLOWAT ideal-int
+pkg syscall (openbsd-amd64), const SO_SNDTIMEO ideal-int
+pkg syscall (openbsd-amd64), const SO_SPLICE ideal-int
+pkg syscall (openbsd-amd64), const SO_TIMESTAMP ideal-int
+pkg syscall (openbsd-amd64), const SO_TYPE ideal-int
+pkg syscall (openbsd-amd64), const SO_USELOOPBACK ideal-int
+pkg syscall (openbsd-amd64), const SYS_ACCEPT ideal-int
+pkg syscall (openbsd-amd64), const SYS_ACCESS ideal-int
+pkg syscall (openbsd-amd64), const SYS_ACCT ideal-int
+pkg syscall (openbsd-amd64), const SYS_ADJFREQ ideal-int
+pkg syscall (openbsd-amd64), const SYS_ADJTIME ideal-int
+pkg syscall (openbsd-amd64), const SYS_BIND ideal-int
+pkg syscall (openbsd-amd64), const SYS_CHDIR ideal-int
+pkg syscall (openbsd-amd64), const SYS_CHFLAGS ideal-int
+pkg syscall (openbsd-amd64), const SYS_CHMOD ideal-int
+pkg syscall (openbsd-amd64), const SYS_CHOWN ideal-int
+pkg syscall (openbsd-amd64), const SYS_CHROOT ideal-int
+pkg syscall (openbsd-amd64), const SYS_CLOCK_GETRES ideal-int
+pkg syscall (openbsd-amd64), const SYS_CLOCK_GETTIME ideal-int
+pkg syscall (openbsd-amd64), const SYS_CLOCK_SETTIME ideal-int
+pkg syscall (openbsd-amd64), const SYS_CLOSE ideal-int
+pkg syscall (openbsd-amd64), const SYS_CLOSEFROM ideal-int
+pkg syscall (openbsd-amd64), const SYS_CONNECT ideal-int
+pkg syscall (openbsd-amd64), const SYS_DUP ideal-int
+pkg syscall (openbsd-amd64), const SYS_DUP2 ideal-int
+pkg syscall (openbsd-amd64), const SYS_EXECVE ideal-int
+pkg syscall (openbsd-amd64), const SYS_EXIT ideal-int
+pkg syscall (openbsd-amd64), const SYS_FACCESSAT ideal-int
+pkg syscall (openbsd-amd64), const SYS_FCHDIR ideal-int
+pkg syscall (openbsd-amd64), const SYS_FCHFLAGS ideal-int
+pkg syscall (openbsd-amd64), const SYS_FCHMOD ideal-int
+pkg syscall (openbsd-amd64), const SYS_FCHMODAT ideal-int
+pkg syscall (openbsd-amd64), const SYS_FCHOWN ideal-int
+pkg syscall (openbsd-amd64), const SYS_FCHOWNAT ideal-int
+pkg syscall (openbsd-amd64), const SYS_FCNTL ideal-int
+pkg syscall (openbsd-amd64), const SYS_FHOPEN ideal-int
+pkg syscall (openbsd-amd64), const SYS_FHSTAT ideal-int
+pkg syscall (openbsd-amd64), const SYS_FHSTATFS ideal-int
+pkg syscall (openbsd-amd64), const SYS_FLOCK ideal-int
+pkg syscall (openbsd-amd64), const SYS_FORK ideal-int
+pkg syscall (openbsd-amd64), const SYS_FPATHCONF ideal-int
+pkg syscall (openbsd-amd64), const SYS_FSTAT ideal-int
+pkg syscall (openbsd-amd64), const SYS_FSTATAT ideal-int
+pkg syscall (openbsd-amd64), const SYS_FSTATFS ideal-int
+pkg syscall (openbsd-amd64), const SYS_FSYNC ideal-int
+pkg syscall (openbsd-amd64), const SYS_FTRUNCATE ideal-int
+pkg syscall (openbsd-amd64), const SYS_FUTIMENS ideal-int
+pkg syscall (openbsd-amd64), const SYS_FUTIMES ideal-int
+pkg syscall (openbsd-amd64), const SYS_GETDIRENTRIES ideal-int
+pkg syscall (openbsd-amd64), const SYS_GETDTABLECOUNT ideal-int
+pkg syscall (openbsd-amd64), const SYS_GETEGID ideal-int
+pkg syscall (openbsd-amd64), const SYS_GETEUID ideal-int
+pkg syscall (openbsd-amd64), const SYS_GETFH ideal-int
+pkg syscall (openbsd-amd64), const SYS_GETFSSTAT ideal-int
+pkg syscall (openbsd-amd64), const SYS_GETGID ideal-int
+pkg syscall (openbsd-amd64), const SYS_GETGROUPS ideal-int
+pkg syscall (openbsd-amd64), const SYS_GETITIMER ideal-int
+pkg syscall (openbsd-amd64), const SYS_GETLOGIN ideal-int
+pkg syscall (openbsd-amd64), const SYS_GETPEERNAME ideal-int
+pkg syscall (openbsd-amd64), const SYS_GETPGID ideal-int
+pkg syscall (openbsd-amd64), const SYS_GETPGRP ideal-int
+pkg syscall (openbsd-amd64), const SYS_GETPID ideal-int
+pkg syscall (openbsd-amd64), const SYS_GETPPID ideal-int
+pkg syscall (openbsd-amd64), const SYS_GETPRIORITY ideal-int
+pkg syscall (openbsd-amd64), const SYS_GETRESGID ideal-int
+pkg syscall (openbsd-amd64), const SYS_GETRESUID ideal-int
+pkg syscall (openbsd-amd64), const SYS_GETRLIMIT ideal-int
+pkg syscall (openbsd-amd64), const SYS_GETRTABLE ideal-int
+pkg syscall (openbsd-amd64), const SYS_GETRUSAGE ideal-int
+pkg syscall (openbsd-amd64), const SYS_GETSID ideal-int
+pkg syscall (openbsd-amd64), const SYS_GETSOCKNAME ideal-int
+pkg syscall (openbsd-amd64), const SYS_GETSOCKOPT ideal-int
+pkg syscall (openbsd-amd64), const SYS_GETTHRID ideal-int
+pkg syscall (openbsd-amd64), const SYS_GETTIMEOFDAY ideal-int
+pkg syscall (openbsd-amd64), const SYS_GETUID ideal-int
+pkg syscall (openbsd-amd64), const SYS_IOCTL ideal-int
+pkg syscall (openbsd-amd64), const SYS_ISSETUGID ideal-int
+pkg syscall (openbsd-amd64), const SYS_KEVENT ideal-int
+pkg syscall (openbsd-amd64), const SYS_KILL ideal-int
+pkg syscall (openbsd-amd64), const SYS_KQUEUE ideal-int
+pkg syscall (openbsd-amd64), const SYS_KTRACE ideal-int
+pkg syscall (openbsd-amd64), const SYS_LCHOWN ideal-int
+pkg syscall (openbsd-amd64), const SYS_LINK ideal-int
+pkg syscall (openbsd-amd64), const SYS_LINKAT ideal-int
+pkg syscall (openbsd-amd64), const SYS_LISTEN ideal-int
+pkg syscall (openbsd-amd64), const SYS_LSEEK ideal-int
+pkg syscall (openbsd-amd64), const SYS_LSTAT ideal-int
+pkg syscall (openbsd-amd64), const SYS_MADVISE ideal-int
+pkg syscall (openbsd-amd64), const SYS_MINCORE ideal-int
+pkg syscall (openbsd-amd64), const SYS_MINHERIT ideal-int
+pkg syscall (openbsd-amd64), const SYS_MKDIR ideal-int
+pkg syscall (openbsd-amd64), const SYS_MKDIRAT ideal-int
+pkg syscall (openbsd-amd64), const SYS_MKFIFO ideal-int
+pkg syscall (openbsd-amd64), const SYS_MKFIFOAT ideal-int
+pkg syscall (openbsd-amd64), const SYS_MKNOD ideal-int
+pkg syscall (openbsd-amd64), const SYS_MKNODAT ideal-int
+pkg syscall (openbsd-amd64), const SYS_MLOCK ideal-int
+pkg syscall (openbsd-amd64), const SYS_MLOCKALL ideal-int
+pkg syscall (openbsd-amd64), const SYS_MMAP ideal-int
+pkg syscall (openbsd-amd64), const SYS_MOUNT ideal-int
+pkg syscall (openbsd-amd64), const SYS_MPROTECT ideal-int
+pkg syscall (openbsd-amd64), const SYS_MQUERY ideal-int
+pkg syscall (openbsd-amd64), const SYS_MSGCTL ideal-int
+pkg syscall (openbsd-amd64), const SYS_MSGGET ideal-int
+pkg syscall (openbsd-amd64), const SYS_MSGRCV ideal-int
+pkg syscall (openbsd-amd64), const SYS_MSGSND ideal-int
+pkg syscall (openbsd-amd64), const SYS_MSYNC ideal-int
+pkg syscall (openbsd-amd64), const SYS_MUNLOCK ideal-int
+pkg syscall (openbsd-amd64), const SYS_MUNLOCKALL ideal-int
+pkg syscall (openbsd-amd64), const SYS_MUNMAP ideal-int
+pkg syscall (openbsd-amd64), const SYS_NANOSLEEP ideal-int
+pkg syscall (openbsd-amd64), const SYS_NFSSVC ideal-int
+pkg syscall (openbsd-amd64), const SYS_OBREAK ideal-int
+pkg syscall (openbsd-amd64), const SYS_OPEN ideal-int
+pkg syscall (openbsd-amd64), const SYS_OPENAT ideal-int
+pkg syscall (openbsd-amd64), const SYS_PATHCONF ideal-int
+pkg syscall (openbsd-amd64), const SYS_PIPE ideal-int
+pkg syscall (openbsd-amd64), const SYS_POLL ideal-int
+pkg syscall (openbsd-amd64), const SYS_PREAD ideal-int
+pkg syscall (openbsd-amd64), const SYS_PREADV ideal-int
+pkg syscall (openbsd-amd64), const SYS_PROFIL ideal-int
+pkg syscall (openbsd-amd64), const SYS_PTRACE ideal-int
+pkg syscall (openbsd-amd64), const SYS_PWRITE ideal-int
+pkg syscall (openbsd-amd64), const SYS_PWRITEV ideal-int
+pkg syscall (openbsd-amd64), const SYS_QUOTACTL ideal-int
+pkg syscall (openbsd-amd64), const SYS_READ ideal-int
+pkg syscall (openbsd-amd64), const SYS_READLINK ideal-int
+pkg syscall (openbsd-amd64), const SYS_READLINKAT ideal-int
+pkg syscall (openbsd-amd64), const SYS_READV ideal-int
+pkg syscall (openbsd-amd64), const SYS_REBOOT ideal-int
+pkg syscall (openbsd-amd64), const SYS_RECVFROM ideal-int
+pkg syscall (openbsd-amd64), const SYS_RECVMSG ideal-int
+pkg syscall (openbsd-amd64), const SYS_RENAME ideal-int
+pkg syscall (openbsd-amd64), const SYS_RENAMEAT ideal-int
+pkg syscall (openbsd-amd64), const SYS_REVOKE ideal-int
+pkg syscall (openbsd-amd64), const SYS_RMDIR ideal-int
+pkg syscall (openbsd-amd64), const SYS_SCHED_YIELD ideal-int
+pkg syscall (openbsd-amd64), const SYS_SELECT ideal-int
+pkg syscall (openbsd-amd64), const SYS_SEMGET ideal-int
+pkg syscall (openbsd-amd64), const SYS_SEMOP ideal-int
+pkg syscall (openbsd-amd64), const SYS_SENDMSG ideal-int
+pkg syscall (openbsd-amd64), const SYS_SENDTO ideal-int
+pkg syscall (openbsd-amd64), const SYS_SETEGID ideal-int
+pkg syscall (openbsd-amd64), const SYS_SETEUID ideal-int
+pkg syscall (openbsd-amd64), const SYS_SETGID ideal-int
+pkg syscall (openbsd-amd64), const SYS_SETGROUPS ideal-int
+pkg syscall (openbsd-amd64), const SYS_SETITIMER ideal-int
+pkg syscall (openbsd-amd64), const SYS_SETLOGIN ideal-int
+pkg syscall (openbsd-amd64), const SYS_SETPGID ideal-int
+pkg syscall (openbsd-amd64), const SYS_SETPRIORITY ideal-int
+pkg syscall (openbsd-amd64), const SYS_SETREGID ideal-int
+pkg syscall (openbsd-amd64), const SYS_SETRESGID ideal-int
+pkg syscall (openbsd-amd64), const SYS_SETRESUID ideal-int
+pkg syscall (openbsd-amd64), const SYS_SETREUID ideal-int
+pkg syscall (openbsd-amd64), const SYS_SETRLIMIT ideal-int
+pkg syscall (openbsd-amd64), const SYS_SETRTABLE ideal-int
+pkg syscall (openbsd-amd64), const SYS_SETSID ideal-int
+pkg syscall (openbsd-amd64), const SYS_SETSOCKOPT ideal-int
+pkg syscall (openbsd-amd64), const SYS_SETTIMEOFDAY ideal-int
+pkg syscall (openbsd-amd64), const SYS_SETUID ideal-int
+pkg syscall (openbsd-amd64), const SYS_SHMAT ideal-int
+pkg syscall (openbsd-amd64), const SYS_SHMCTL ideal-int
+pkg syscall (openbsd-amd64), const SYS_SHMDT ideal-int
+pkg syscall (openbsd-amd64), const SYS_SHMGET ideal-int
+pkg syscall (openbsd-amd64), const SYS_SHUTDOWN ideal-int
+pkg syscall (openbsd-amd64), const SYS_SIGACTION ideal-int
+pkg syscall (openbsd-amd64), const SYS_SIGALTSTACK ideal-int
+pkg syscall (openbsd-amd64), const SYS_SIGPENDING ideal-int
+pkg syscall (openbsd-amd64), const SYS_SIGPROCMASK ideal-int
+pkg syscall (openbsd-amd64), const SYS_SIGRETURN ideal-int
+pkg syscall (openbsd-amd64), const SYS_SIGSUSPEND ideal-int
+pkg syscall (openbsd-amd64), const SYS_SOCKET ideal-int
+pkg syscall (openbsd-amd64), const SYS_SOCKETPAIR ideal-int
+pkg syscall (openbsd-amd64), const SYS_STAT ideal-int
+pkg syscall (openbsd-amd64), const SYS_STATFS ideal-int
+pkg syscall (openbsd-amd64), const SYS_SWAPCTL ideal-int
+pkg syscall (openbsd-amd64), const SYS_SYMLINK ideal-int
+pkg syscall (openbsd-amd64), const SYS_SYMLINKAT ideal-int
+pkg syscall (openbsd-amd64), const SYS_SYNC ideal-int
+pkg syscall (openbsd-amd64), const SYS_SYSARCH ideal-int
+pkg syscall (openbsd-amd64), const SYS_TRUNCATE ideal-int
+pkg syscall (openbsd-amd64), const SYS_UMASK ideal-int
+pkg syscall (openbsd-amd64), const SYS_UNLINK ideal-int
+pkg syscall (openbsd-amd64), const SYS_UNLINKAT ideal-int
+pkg syscall (openbsd-amd64), const SYS_UNMOUNT ideal-int
+pkg syscall (openbsd-amd64), const SYS_UTIMENSAT ideal-int
+pkg syscall (openbsd-amd64), const SYS_UTIMES ideal-int
+pkg syscall (openbsd-amd64), const SYS_VFORK ideal-int
+pkg syscall (openbsd-amd64), const SYS_WAIT4 ideal-int
+pkg syscall (openbsd-amd64), const SYS_WRITE ideal-int
+pkg syscall (openbsd-amd64), const SYS_WRITEV ideal-int
+pkg syscall (openbsd-amd64), const SYS___GETCWD ideal-int
+pkg syscall (openbsd-amd64), const SYS___GET_TCB ideal-int
+pkg syscall (openbsd-amd64), const SYS___SEMCTL ideal-int
+pkg syscall (openbsd-amd64), const SYS___SET_TCB ideal-int
+pkg syscall (openbsd-amd64), const SYS___SYSCTL ideal-int
+pkg syscall (openbsd-amd64), const SYS___TFORK ideal-int
+pkg syscall (openbsd-amd64), const SYS___THREXIT ideal-int
+pkg syscall (openbsd-amd64), const SYS___THRSIGDIVERT ideal-int
+pkg syscall (openbsd-amd64), const SYS___THRSLEEP ideal-int
+pkg syscall (openbsd-amd64), const SYS___THRWAKEUP ideal-int
+pkg syscall (openbsd-amd64), const SizeofBpfHdr ideal-int
+pkg syscall (openbsd-amd64), const SizeofBpfInsn ideal-int
+pkg syscall (openbsd-amd64), const SizeofBpfProgram ideal-int
+pkg syscall (openbsd-amd64), const SizeofBpfStat ideal-int
+pkg syscall (openbsd-amd64), const SizeofBpfVersion ideal-int
+pkg syscall (openbsd-amd64), const SizeofCmsghdr ideal-int
+pkg syscall (openbsd-amd64), const SizeofICMPv6Filter = 32
+pkg syscall (openbsd-amd64), const SizeofICMPv6Filter ideal-int
+pkg syscall (openbsd-amd64), const SizeofIPMreq ideal-int
+pkg syscall (openbsd-amd64), const SizeofIPv6MTUInfo = 32
+pkg syscall (openbsd-amd64), const SizeofIPv6MTUInfo ideal-int
+pkg syscall (openbsd-amd64), const SizeofIPv6Mreq ideal-int
+pkg syscall (openbsd-amd64), const SizeofIfAnnounceMsghdr ideal-int
+pkg syscall (openbsd-amd64), const SizeofIfData ideal-int
+pkg syscall (openbsd-amd64), const SizeofIfMsghdr ideal-int
+pkg syscall (openbsd-amd64), const SizeofIfaMsghdr ideal-int
+pkg syscall (openbsd-amd64), const SizeofInet6Pktinfo ideal-int
+pkg syscall (openbsd-amd64), const SizeofLinger ideal-int
+pkg syscall (openbsd-amd64), const SizeofMsghdr ideal-int
+pkg syscall (openbsd-amd64), const SizeofRtMetrics ideal-int
+pkg syscall (openbsd-amd64), const SizeofRtMsghdr ideal-int
+pkg syscall (openbsd-amd64), const SizeofSockaddrAny ideal-int
+pkg syscall (openbsd-amd64), const SizeofSockaddrDatalink ideal-int
+pkg syscall (openbsd-amd64), const SizeofSockaddrInet4 ideal-int
+pkg syscall (openbsd-amd64), const SizeofSockaddrInet6 ideal-int
+pkg syscall (openbsd-amd64), const SizeofSockaddrUnix ideal-int
+pkg syscall (openbsd-amd64), const TCIFLUSH ideal-int
+pkg syscall (openbsd-amd64), const TCIOFLUSH ideal-int
+pkg syscall (openbsd-amd64), const TCOFLUSH ideal-int
+pkg syscall (openbsd-amd64), const TCP_MAXBURST ideal-int
+pkg syscall (openbsd-amd64), const TCP_MAXSEG ideal-int
+pkg syscall (openbsd-amd64), const TCP_MAXWIN ideal-int
+pkg syscall (openbsd-amd64), const TCP_MAX_SACK ideal-int
+pkg syscall (openbsd-amd64), const TCP_MAX_WINSHIFT ideal-int
+pkg syscall (openbsd-amd64), const TCP_MD5SIG ideal-int
+pkg syscall (openbsd-amd64), const TCP_MSS ideal-int
+pkg syscall (openbsd-amd64), const TCP_NSTATES ideal-int
+pkg syscall (openbsd-amd64), const TCP_SACK_ENABLE ideal-int
+pkg syscall (openbsd-amd64), const TCSAFLUSH ideal-int
+pkg syscall (openbsd-amd64), const TIOCCBRK ideal-int
+pkg syscall (openbsd-amd64), const TIOCCDTR ideal-int
+pkg syscall (openbsd-amd64), const TIOCCONS ideal-int
+pkg syscall (openbsd-amd64), const TIOCDRAIN ideal-int
+pkg syscall (openbsd-amd64), const TIOCEXCL ideal-int
+pkg syscall (openbsd-amd64), const TIOCEXT ideal-int
+pkg syscall (openbsd-amd64), const TIOCFLAG_CLOCAL ideal-int
+pkg syscall (openbsd-amd64), const TIOCFLAG_CRTSCTS ideal-int
+pkg syscall (openbsd-amd64), const TIOCFLAG_MDMBUF ideal-int
+pkg syscall (openbsd-amd64), const TIOCFLAG_PPS ideal-int
+pkg syscall (openbsd-amd64), const TIOCFLAG_SOFTCAR ideal-int
+pkg syscall (openbsd-amd64), const TIOCFLUSH ideal-int
+pkg syscall (openbsd-amd64), const TIOCGETA ideal-int
+pkg syscall (openbsd-amd64), const TIOCGETD ideal-int
+pkg syscall (openbsd-amd64), const TIOCGFLAGS ideal-int
+pkg syscall (openbsd-amd64), const TIOCGPGRP ideal-int
+pkg syscall (openbsd-amd64), const TIOCGTSTAMP ideal-int
+pkg syscall (openbsd-amd64), const TIOCGWINSZ ideal-int
+pkg syscall (openbsd-amd64), const TIOCMBIC ideal-int
+pkg syscall (openbsd-amd64), const TIOCMBIS ideal-int
+pkg syscall (openbsd-amd64), const TIOCMGET ideal-int
+pkg syscall (openbsd-amd64), const TIOCMODG ideal-int
+pkg syscall (openbsd-amd64), const TIOCMODS ideal-int
+pkg syscall (openbsd-amd64), const TIOCMSET ideal-int
+pkg syscall (openbsd-amd64), const TIOCM_CAR ideal-int
+pkg syscall (openbsd-amd64), const TIOCM_CD ideal-int
+pkg syscall (openbsd-amd64), const TIOCM_CTS ideal-int
+pkg syscall (openbsd-amd64), const TIOCM_DSR ideal-int
+pkg syscall (openbsd-amd64), const TIOCM_DTR ideal-int
+pkg syscall (openbsd-amd64), const TIOCM_LE ideal-int
+pkg syscall (openbsd-amd64), const TIOCM_RI ideal-int
+pkg syscall (openbsd-amd64), const TIOCM_RNG ideal-int
+pkg syscall (openbsd-amd64), const TIOCM_RTS ideal-int
+pkg syscall (openbsd-amd64), const TIOCM_SR ideal-int
+pkg syscall (openbsd-amd64), const TIOCM_ST ideal-int
+pkg syscall (openbsd-amd64), const TIOCNOTTY ideal-int
+pkg syscall (openbsd-amd64), const TIOCNXCL ideal-int
+pkg syscall (openbsd-amd64), const TIOCOUTQ ideal-int
+pkg syscall (openbsd-amd64), const TIOCPKT ideal-int
+pkg syscall (openbsd-amd64), const TIOCPKT_DATA ideal-int
+pkg syscall (openbsd-amd64), const TIOCPKT_DOSTOP ideal-int
+pkg syscall (openbsd-amd64), const TIOCPKT_FLUSHREAD ideal-int
+pkg syscall (openbsd-amd64), const TIOCPKT_FLUSHWRITE ideal-int
+pkg syscall (openbsd-amd64), const TIOCPKT_IOCTL ideal-int
+pkg syscall (openbsd-amd64), const TIOCPKT_NOSTOP ideal-int
+pkg syscall (openbsd-amd64), const TIOCPKT_START ideal-int
+pkg syscall (openbsd-amd64), const TIOCPKT_STOP ideal-int
+pkg syscall (openbsd-amd64), const TIOCREMOTE ideal-int
+pkg syscall (openbsd-amd64), const TIOCSBRK ideal-int
+pkg syscall (openbsd-amd64), const TIOCSCTTY ideal-int
+pkg syscall (openbsd-amd64), const TIOCSDTR ideal-int
+pkg syscall (openbsd-amd64), const TIOCSETA ideal-int
+pkg syscall (openbsd-amd64), const TIOCSETAF ideal-int
+pkg syscall (openbsd-amd64), const TIOCSETAW ideal-int
+pkg syscall (openbsd-amd64), const TIOCSETD ideal-int
+pkg syscall (openbsd-amd64), const TIOCSFLAGS ideal-int
+pkg syscall (openbsd-amd64), const TIOCSIG ideal-int
+pkg syscall (openbsd-amd64), const TIOCSPGRP ideal-int
+pkg syscall (openbsd-amd64), const TIOCSTART ideal-int
+pkg syscall (openbsd-amd64), const TIOCSTAT ideal-int
+pkg syscall (openbsd-amd64), const TIOCSTI ideal-int
+pkg syscall (openbsd-amd64), const TIOCSTOP ideal-int
+pkg syscall (openbsd-amd64), const TIOCSTSTAMP ideal-int
+pkg syscall (openbsd-amd64), const TIOCSWINSZ ideal-int
+pkg syscall (openbsd-amd64), const TIOCUCNTL ideal-int
+pkg syscall (openbsd-amd64), const TOSTOP ideal-int
+pkg syscall (openbsd-amd64), const VDISCARD ideal-int
+pkg syscall (openbsd-amd64), const VDSUSP ideal-int
+pkg syscall (openbsd-amd64), const VEOF ideal-int
+pkg syscall (openbsd-amd64), const VEOL ideal-int
+pkg syscall (openbsd-amd64), const VEOL2 ideal-int
+pkg syscall (openbsd-amd64), const VERASE ideal-int
+pkg syscall (openbsd-amd64), const VINTR ideal-int
+pkg syscall (openbsd-amd64), const VKILL ideal-int
+pkg syscall (openbsd-amd64), const VLNEXT ideal-int
+pkg syscall (openbsd-amd64), const VMIN ideal-int
+pkg syscall (openbsd-amd64), const VQUIT ideal-int
+pkg syscall (openbsd-amd64), const VREPRINT ideal-int
+pkg syscall (openbsd-amd64), const VSTART ideal-int
+pkg syscall (openbsd-amd64), const VSTATUS ideal-int
+pkg syscall (openbsd-amd64), const VSTOP ideal-int
+pkg syscall (openbsd-amd64), const VSUSP ideal-int
+pkg syscall (openbsd-amd64), const VTIME ideal-int
+pkg syscall (openbsd-amd64), const VWERASE ideal-int
+pkg syscall (openbsd-amd64), const WALTSIG ideal-int
+pkg syscall (openbsd-amd64), const WCONTINUED ideal-int
+pkg syscall (openbsd-amd64), const WCOREFLAG ideal-int
+pkg syscall (openbsd-amd64), const WNOHANG ideal-int
+pkg syscall (openbsd-amd64), const WSTOPPED ideal-int
+pkg syscall (openbsd-amd64), const WUNTRACED ideal-int
+pkg syscall (openbsd-amd64), func Accept(int) (int, Sockaddr, error)
+pkg syscall (openbsd-amd64), func Access(string, uint32) error
+pkg syscall (openbsd-amd64), func Adjtime(*Timeval, *Timeval) error
+pkg syscall (openbsd-amd64), func Bind(int, Sockaddr) error
+pkg syscall (openbsd-amd64), func BpfBuflen(int) (int, error)
+pkg syscall (openbsd-amd64), func BpfDatalink(int) (int, error)
+pkg syscall (openbsd-amd64), func BpfHeadercmpl(int) (int, error)
+pkg syscall (openbsd-amd64), func BpfInterface(int, string) (string, error)
+pkg syscall (openbsd-amd64), func BpfJump(int, int, int, int) *BpfInsn
+pkg syscall (openbsd-amd64), func BpfStats(int) (*BpfStat, error)
+pkg syscall (openbsd-amd64), func BpfStmt(int, int) *BpfInsn
+pkg syscall (openbsd-amd64), func BpfTimeout(int) (*Timeval, error)
+pkg syscall (openbsd-amd64), func CheckBpfVersion(int) error
+pkg syscall (openbsd-amd64), func Chflags(string, int) error
+pkg syscall (openbsd-amd64), func Chroot(string) error
+pkg syscall (openbsd-amd64), func Close(int) error
+pkg syscall (openbsd-amd64), func CloseOnExec(int)
+pkg syscall (openbsd-amd64), func CmsgLen(int) int
+pkg syscall (openbsd-amd64), func CmsgSpace(int) int
+pkg syscall (openbsd-amd64), func Connect(int, Sockaddr) error
+pkg syscall (openbsd-amd64), func Dup(int) (int, error)
+pkg syscall (openbsd-amd64), func Dup2(int, int) error
+pkg syscall (openbsd-amd64), func Fchdir(int) error
+pkg syscall (openbsd-amd64), func Fchflags(int, int) error
+pkg syscall (openbsd-amd64), func Fchmod(int, uint32) error
+pkg syscall (openbsd-amd64), func Fchown(int, int, int) error
+pkg syscall (openbsd-amd64), func Flock(int, int) error
+pkg syscall (openbsd-amd64), func FlushBpf(int) error
+pkg syscall (openbsd-amd64), func ForkExec(string, []string, *ProcAttr) (int, error)
+pkg syscall (openbsd-amd64), func Fpathconf(int, int) (int, error)
+pkg syscall (openbsd-amd64), func Fstat(int, *Stat_t) error
+pkg syscall (openbsd-amd64), func Fstatfs(int, *Statfs_t) error
+pkg syscall (openbsd-amd64), func Fsync(int) error
+pkg syscall (openbsd-amd64), func Ftruncate(int, int64) error
+pkg syscall (openbsd-amd64), func Futimes(int, []Timeval) error
+pkg syscall (openbsd-amd64), func Getdirentries(int, []uint8, *uintptr) (int, error)
+pkg syscall (openbsd-amd64), func Getfsstat([]Statfs_t, int) (int, error)
+pkg syscall (openbsd-amd64), func Getpeername(int) (Sockaddr, error)
+pkg syscall (openbsd-amd64), func Getpgid(int) (int, error)
+pkg syscall (openbsd-amd64), func Getpgrp() int
+pkg syscall (openbsd-amd64), func Getpriority(int, int) (int, error)
+pkg syscall (openbsd-amd64), func Getrlimit(int, *Rlimit) error
+pkg syscall (openbsd-amd64), func Getrusage(int, *Rusage) error
+pkg syscall (openbsd-amd64), func Getsid(int) (int, error)
+pkg syscall (openbsd-amd64), func Getsockname(int) (Sockaddr, error)
+pkg syscall (openbsd-amd64), func GetsockoptByte(int, int, int) (uint8, error)
+pkg syscall (openbsd-amd64), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
+pkg syscall (openbsd-amd64), func GetsockoptIPMreq(int, int, int) (*IPMreq, error)
+pkg syscall (openbsd-amd64), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
+pkg syscall (openbsd-amd64), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error)
+pkg syscall (openbsd-amd64), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error)
+pkg syscall (openbsd-amd64), func GetsockoptInt(int, int, int) (int, error)
+pkg syscall (openbsd-amd64), func Issetugid() bool
+pkg syscall (openbsd-amd64), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error)
+pkg syscall (openbsd-amd64), func Kill(int, Signal) error
+pkg syscall (openbsd-amd64), func Kqueue() (int, error)
+pkg syscall (openbsd-amd64), func Listen(int, int) error
+pkg syscall (openbsd-amd64), func Lstat(string, *Stat_t) error
+pkg syscall (openbsd-amd64), func Mkfifo(string, uint32) error
+pkg syscall (openbsd-amd64), func Mknod(string, uint32, int) error
+pkg syscall (openbsd-amd64), func Mmap(int, int64, int, int, int) ([]uint8, error)
+pkg syscall (openbsd-amd64), func Munmap([]uint8) error
+pkg syscall (openbsd-amd64), func Nanosleep(*Timespec, *Timespec) error
+pkg syscall (openbsd-amd64), func Open(string, int, uint32) (int, error)
+pkg syscall (openbsd-amd64), func ParseDirent([]uint8, int, []string) (int, int, []string)
+pkg syscall (openbsd-amd64), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error)
+pkg syscall (openbsd-amd64), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error)
+pkg syscall (openbsd-amd64), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error)
+pkg syscall (openbsd-amd64), func ParseUnixRights(*SocketControlMessage) ([]int, error)
+pkg syscall (openbsd-amd64), func Pathconf(string, int) (int, error)
+pkg syscall (openbsd-amd64), func Pipe([]int) error
+pkg syscall (openbsd-amd64), func Pread(int, []uint8, int64) (int, error)
+pkg syscall (openbsd-amd64), func Pwrite(int, []uint8, int64) (int, error)
+pkg syscall (openbsd-amd64), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (openbsd-amd64), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (openbsd-amd64), func Read(int, []uint8) (int, error)
+pkg syscall (openbsd-amd64), func ReadDirent(int, []uint8) (int, error)
+pkg syscall (openbsd-amd64), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
+pkg syscall (openbsd-amd64), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
+pkg syscall (openbsd-amd64), func Revoke(string) error
+pkg syscall (openbsd-amd64), func RouteRIB(int, int) ([]uint8, error)
+pkg syscall (openbsd-amd64), func Seek(int, int64, int) (int64, error)
+pkg syscall (openbsd-amd64), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error
+pkg syscall (openbsd-amd64), func Sendfile(int, int, *int64, int) (int, error)
+pkg syscall (openbsd-amd64), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
+pkg syscall (openbsd-amd64), func Sendto(int, []uint8, int, Sockaddr) error
+pkg syscall (openbsd-amd64), func SetBpf(int, []BpfInsn) error
+pkg syscall (openbsd-amd64), func SetBpfBuflen(int, int) (int, error)
+pkg syscall (openbsd-amd64), func SetBpfDatalink(int, int) (int, error)
+pkg syscall (openbsd-amd64), func SetBpfHeadercmpl(int, int) error
+pkg syscall (openbsd-amd64), func SetBpfImmediate(int, int) error
+pkg syscall (openbsd-amd64), func SetBpfInterface(int, string) error
+pkg syscall (openbsd-amd64), func SetBpfPromisc(int, int) error
+pkg syscall (openbsd-amd64), func SetBpfTimeout(int, *Timeval) error
+pkg syscall (openbsd-amd64), func SetKevent(*Kevent_t, int, int, int)
+pkg syscall (openbsd-amd64), func SetNonblock(int, bool) error
+pkg syscall (openbsd-amd64), func Setegid(int) error
+pkg syscall (openbsd-amd64), func Seteuid(int) error
+pkg syscall (openbsd-amd64), func Setgid(int) error
+pkg syscall (openbsd-amd64), func Setgroups([]int) error
+pkg syscall (openbsd-amd64), func Setlogin(string) error
+pkg syscall (openbsd-amd64), func Setpgid(int, int) error
+pkg syscall (openbsd-amd64), func Setpriority(int, int, int) error
+pkg syscall (openbsd-amd64), func Setregid(int, int) error
+pkg syscall (openbsd-amd64), func Setreuid(int, int) error
+pkg syscall (openbsd-amd64), func Setrlimit(int, *Rlimit) error
+pkg syscall (openbsd-amd64), func Setsid() (int, error)
+pkg syscall (openbsd-amd64), func SetsockoptByte(int, int, int, uint8) error
+pkg syscall (openbsd-amd64), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
+pkg syscall (openbsd-amd64), func SetsockoptIPMreq(int, int, int, *IPMreq) error
+pkg syscall (openbsd-amd64), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error
+pkg syscall (openbsd-amd64), func SetsockoptInet4Addr(int, int, int, [4]uint8) error
+pkg syscall (openbsd-amd64), func SetsockoptInt(int, int, int, int) error
+pkg syscall (openbsd-amd64), func SetsockoptLinger(int, int, int, *Linger) error
+pkg syscall (openbsd-amd64), func SetsockoptString(int, int, int, string) error
+pkg syscall (openbsd-amd64), func SetsockoptTimeval(int, int, int, *Timeval) error
+pkg syscall (openbsd-amd64), func Settimeofday(*Timeval) error
+pkg syscall (openbsd-amd64), func Setuid(int) error
+pkg syscall (openbsd-amd64), func Shutdown(int, int) error
+pkg syscall (openbsd-amd64), func SlicePtrFromStrings([]string) ([]*uint8, error)
+pkg syscall (openbsd-amd64), func Socket(int, int, int) (int, error)
+pkg syscall (openbsd-amd64), func Socketpair(int, int, int) ([2]int, error)
+pkg syscall (openbsd-amd64), func Stat(string, *Stat_t) error
+pkg syscall (openbsd-amd64), func Statfs(string, *Statfs_t) error
+pkg syscall (openbsd-amd64), func StringSlicePtr([]string) []*uint8
+pkg syscall (openbsd-amd64), func Sync() error
+pkg syscall (openbsd-amd64), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (openbsd-amd64), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (openbsd-amd64), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (openbsd-amd64), func Sysctl(string) (string, error)
+pkg syscall (openbsd-amd64), func SysctlUint32(string) (uint32, error)
+pkg syscall (openbsd-amd64), func TimevalToNsec(Timeval) int64
+pkg syscall (openbsd-amd64), func Truncate(string, int64) error
+pkg syscall (openbsd-amd64), func Umask(int) int
+pkg syscall (openbsd-amd64), func UnixRights(...int) []uint8
+pkg syscall (openbsd-amd64), func Unmount(string, int) error
+pkg syscall (openbsd-amd64), func Wait4(int, *WaitStatus, int, *Rusage) (int, error)
+pkg syscall (openbsd-amd64), func Write(int, []uint8) (int, error)
+pkg syscall (openbsd-amd64), method (*Cmsghdr) SetLen(int)
+pkg syscall (openbsd-amd64), method (*Iovec) SetLen(int)
+pkg syscall (openbsd-amd64), method (*Msghdr) SetControllen(int)
+pkg syscall (openbsd-amd64), type BpfHdr struct
+pkg syscall (openbsd-amd64), type BpfHdr struct, Caplen uint32
+pkg syscall (openbsd-amd64), type BpfHdr struct, Datalen uint32
+pkg syscall (openbsd-amd64), type BpfHdr struct, Hdrlen uint16
+pkg syscall (openbsd-amd64), type BpfHdr struct, Pad_cgo_0 [2]uint8
+pkg syscall (openbsd-amd64), type BpfHdr struct, Tstamp BpfTimeval
+pkg syscall (openbsd-amd64), type BpfInsn struct
+pkg syscall (openbsd-amd64), type BpfInsn struct, Code uint16
+pkg syscall (openbsd-amd64), type BpfInsn struct, Jf uint8
+pkg syscall (openbsd-amd64), type BpfInsn struct, Jt uint8
+pkg syscall (openbsd-amd64), type BpfInsn struct, K uint32
+pkg syscall (openbsd-amd64), type BpfProgram struct
+pkg syscall (openbsd-amd64), type BpfProgram struct, Insns *BpfInsn
+pkg syscall (openbsd-amd64), type BpfProgram struct, Len uint32
+pkg syscall (openbsd-amd64), type BpfProgram struct, Pad_cgo_0 [4]uint8
+pkg syscall (openbsd-amd64), type BpfStat struct
+pkg syscall (openbsd-amd64), type BpfStat struct, Drop uint32
+pkg syscall (openbsd-amd64), type BpfStat struct, Recv uint32
+pkg syscall (openbsd-amd64), type BpfTimeval struct
+pkg syscall (openbsd-amd64), type BpfTimeval struct, Sec uint32
+pkg syscall (openbsd-amd64), type BpfTimeval struct, Usec uint32
+pkg syscall (openbsd-amd64), type BpfVersion struct
+pkg syscall (openbsd-amd64), type BpfVersion struct, Major uint16
+pkg syscall (openbsd-amd64), type BpfVersion struct, Minor uint16
+pkg syscall (openbsd-amd64), type Cmsghdr struct
+pkg syscall (openbsd-amd64), type Cmsghdr struct, Len uint32
+pkg syscall (openbsd-amd64), type Cmsghdr struct, Level int32
+pkg syscall (openbsd-amd64), type Cmsghdr struct, Type int32
+pkg syscall (openbsd-amd64), type Credential struct
+pkg syscall (openbsd-amd64), type Credential struct, Gid uint32
+pkg syscall (openbsd-amd64), type Credential struct, Groups []uint32
+pkg syscall (openbsd-amd64), type Credential struct, Uid uint32
+pkg syscall (openbsd-amd64), type Dirent struct
+pkg syscall (openbsd-amd64), type Dirent struct, Fileno uint32
+pkg syscall (openbsd-amd64), type Dirent struct, Name [256]int8
+pkg syscall (openbsd-amd64), type Dirent struct, Namlen uint8
+pkg syscall (openbsd-amd64), type Dirent struct, Reclen uint16
+pkg syscall (openbsd-amd64), type Dirent struct, Type uint8
+pkg syscall (openbsd-amd64), type FdSet struct
+pkg syscall (openbsd-amd64), type FdSet struct, Bits [32]int32
+pkg syscall (openbsd-amd64), type Flock_t struct
+pkg syscall (openbsd-amd64), type Flock_t struct, Len int64
+pkg syscall (openbsd-amd64), type Flock_t struct, Pid int32
+pkg syscall (openbsd-amd64), type Flock_t struct, Start int64
+pkg syscall (openbsd-amd64), type Flock_t struct, Type int16
+pkg syscall (openbsd-amd64), type Flock_t struct, Whence int16
+pkg syscall (openbsd-amd64), type Fsid struct
+pkg syscall (openbsd-amd64), type Fsid struct, Val [2]int32
+pkg syscall (openbsd-amd64), type ICMPv6Filter struct
+pkg syscall (openbsd-amd64), type ICMPv6Filter struct, Filt [8]uint32
+pkg syscall (openbsd-amd64), type IPv6MTUInfo struct
+pkg syscall (openbsd-amd64), type IPv6MTUInfo struct, Addr RawSockaddrInet6
+pkg syscall (openbsd-amd64), type IPv6MTUInfo struct, Mtu uint32
+pkg syscall (openbsd-amd64), type IfAnnounceMsghdr struct
+pkg syscall (openbsd-amd64), type IfAnnounceMsghdr struct, Hdrlen uint16
+pkg syscall (openbsd-amd64), type IfAnnounceMsghdr struct, Index uint16
+pkg syscall (openbsd-amd64), type IfAnnounceMsghdr struct, Msglen uint16
+pkg syscall (openbsd-amd64), type IfAnnounceMsghdr struct, Name [16]int8
+pkg syscall (openbsd-amd64), type IfAnnounceMsghdr struct, Type uint8
+pkg syscall (openbsd-amd64), type IfAnnounceMsghdr struct, Version uint8
+pkg syscall (openbsd-amd64), type IfAnnounceMsghdr struct, What uint16
+pkg syscall (openbsd-amd64), type IfData struct
+pkg syscall (openbsd-amd64), type IfData struct, Addrlen uint8
+pkg syscall (openbsd-amd64), type IfData struct, Baudrate uint64
+pkg syscall (openbsd-amd64), type IfData struct, Capabilities uint32
+pkg syscall (openbsd-amd64), type IfData struct, Collisions uint64
+pkg syscall (openbsd-amd64), type IfData struct, Hdrlen uint8
+pkg syscall (openbsd-amd64), type IfData struct, Ibytes uint64
+pkg syscall (openbsd-amd64), type IfData struct, Ierrors uint64
+pkg syscall (openbsd-amd64), type IfData struct, Imcasts uint64
+pkg syscall (openbsd-amd64), type IfData struct, Ipackets uint64
+pkg syscall (openbsd-amd64), type IfData struct, Iqdrops uint64
+pkg syscall (openbsd-amd64), type IfData struct, Lastchange Timeval
+pkg syscall (openbsd-amd64), type IfData struct, Link_state uint8
+pkg syscall (openbsd-amd64), type IfData struct, Mclpool [7]Mclpool
+pkg syscall (openbsd-amd64), type IfData struct, Metric uint32
+pkg syscall (openbsd-amd64), type IfData struct, Mtu uint32
+pkg syscall (openbsd-amd64), type IfData struct, Noproto uint64
+pkg syscall (openbsd-amd64), type IfData struct, Obytes uint64
+pkg syscall (openbsd-amd64), type IfData struct, Oerrors uint64
+pkg syscall (openbsd-amd64), type IfData struct, Omcasts uint64
+pkg syscall (openbsd-amd64), type IfData struct, Opackets uint64
+pkg syscall (openbsd-amd64), type IfData struct, Pad uint32
+pkg syscall (openbsd-amd64), type IfData struct, Pad_cgo_0 [4]uint8
+pkg syscall (openbsd-amd64), type IfData struct, Pad_cgo_1 [4]uint8
+pkg syscall (openbsd-amd64), type IfData struct, Type uint8
+pkg syscall (openbsd-amd64), type IfMsghdr struct
+pkg syscall (openbsd-amd64), type IfMsghdr struct, Addrs int32
+pkg syscall (openbsd-amd64), type IfMsghdr struct, Data IfData
+pkg syscall (openbsd-amd64), type IfMsghdr struct, Flags int32
+pkg syscall (openbsd-amd64), type IfMsghdr struct, Hdrlen uint16
+pkg syscall (openbsd-amd64), type IfMsghdr struct, Index uint16
+pkg syscall (openbsd-amd64), type IfMsghdr struct, Msglen uint16
+pkg syscall (openbsd-amd64), type IfMsghdr struct, Pad1 uint8
+pkg syscall (openbsd-amd64), type IfMsghdr struct, Pad2 uint8
+pkg syscall (openbsd-amd64), type IfMsghdr struct, Tableid uint16
+pkg syscall (openbsd-amd64), type IfMsghdr struct, Type uint8
+pkg syscall (openbsd-amd64), type IfMsghdr struct, Version uint8
+pkg syscall (openbsd-amd64), type IfMsghdr struct, Xflags int32
+pkg syscall (openbsd-amd64), type IfaMsghdr struct
+pkg syscall (openbsd-amd64), type IfaMsghdr struct, Addrs int32
+pkg syscall (openbsd-amd64), type IfaMsghdr struct, Flags int32
+pkg syscall (openbsd-amd64), type IfaMsghdr struct, Hdrlen uint16
+pkg syscall (openbsd-amd64), type IfaMsghdr struct, Index uint16
+pkg syscall (openbsd-amd64), type IfaMsghdr struct, Metric int32
+pkg syscall (openbsd-amd64), type IfaMsghdr struct, Msglen uint16
+pkg syscall (openbsd-amd64), type IfaMsghdr struct, Pad1 uint8
+pkg syscall (openbsd-amd64), type IfaMsghdr struct, Pad2 uint8
+pkg syscall (openbsd-amd64), type IfaMsghdr struct, Tableid uint16
+pkg syscall (openbsd-amd64), type IfaMsghdr struct, Type uint8
+pkg syscall (openbsd-amd64), type IfaMsghdr struct, Version uint8
+pkg syscall (openbsd-amd64), type Inet6Pktinfo struct
+pkg syscall (openbsd-amd64), type Inet6Pktinfo struct, Addr [16]uint8
+pkg syscall (openbsd-amd64), type Inet6Pktinfo struct, Ifindex uint32
+pkg syscall (openbsd-amd64), type InterfaceAddrMessage struct
+pkg syscall (openbsd-amd64), type InterfaceAddrMessage struct, Data []uint8
+pkg syscall (openbsd-amd64), type InterfaceAddrMessage struct, Header IfaMsghdr
+pkg syscall (openbsd-amd64), type InterfaceAnnounceMessage struct
+pkg syscall (openbsd-amd64), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr
+pkg syscall (openbsd-amd64), type InterfaceMessage struct
+pkg syscall (openbsd-amd64), type InterfaceMessage struct, Data []uint8
+pkg syscall (openbsd-amd64), type InterfaceMessage struct, Header IfMsghdr
+pkg syscall (openbsd-amd64), type Iovec struct
+pkg syscall (openbsd-amd64), type Iovec struct, Base *uint8
+pkg syscall (openbsd-amd64), type Iovec struct, Len uint64
+pkg syscall (openbsd-amd64), type Kevent_t struct
+pkg syscall (openbsd-amd64), type Kevent_t struct, Data int32
+pkg syscall (openbsd-amd64), type Kevent_t struct, Fflags uint32
+pkg syscall (openbsd-amd64), type Kevent_t struct, Filter int16
+pkg syscall (openbsd-amd64), type Kevent_t struct, Flags uint16
+pkg syscall (openbsd-amd64), type Kevent_t struct, Ident uint32
+pkg syscall (openbsd-amd64), type Kevent_t struct, Udata *uint8
+pkg syscall (openbsd-amd64), type Mclpool struct
+pkg syscall (openbsd-amd64), type Mclpool struct, Alive uint16
+pkg syscall (openbsd-amd64), type Mclpool struct, Cwm uint16
+pkg syscall (openbsd-amd64), type Mclpool struct, Grown uint32
+pkg syscall (openbsd-amd64), type Mclpool struct, Hwm uint16
+pkg syscall (openbsd-amd64), type Mclpool struct, Lwm uint16
+pkg syscall (openbsd-amd64), type Msghdr struct
+pkg syscall (openbsd-amd64), type Msghdr struct, Control *uint8
+pkg syscall (openbsd-amd64), type Msghdr struct, Controllen uint32
+pkg syscall (openbsd-amd64), type Msghdr struct, Flags int32
+pkg syscall (openbsd-amd64), type Msghdr struct, Iov *Iovec
+pkg syscall (openbsd-amd64), type Msghdr struct, Iovlen uint32
+pkg syscall (openbsd-amd64), type Msghdr struct, Name *uint8
+pkg syscall (openbsd-amd64), type Msghdr struct, Namelen uint32
+pkg syscall (openbsd-amd64), type Msghdr struct, Pad_cgo_0 [4]uint8
+pkg syscall (openbsd-amd64), type Msghdr struct, Pad_cgo_1 [4]uint8
+pkg syscall (openbsd-amd64), type RawSockaddr struct, Data [14]int8
+pkg syscall (openbsd-amd64), type RawSockaddr struct, Family uint8
+pkg syscall (openbsd-amd64), type RawSockaddr struct, Len uint8
+pkg syscall (openbsd-amd64), type RawSockaddrAny struct, Pad [92]int8
+pkg syscall (openbsd-amd64), type RawSockaddrDatalink struct
+pkg syscall (openbsd-amd64), type RawSockaddrDatalink struct, Alen uint8
+pkg syscall (openbsd-amd64), type RawSockaddrDatalink struct, Data [24]int8
+pkg syscall (openbsd-amd64), type RawSockaddrDatalink struct, Family uint8
+pkg syscall (openbsd-amd64), type RawSockaddrDatalink struct, Index uint16
+pkg syscall (openbsd-amd64), type RawSockaddrDatalink struct, Len uint8
+pkg syscall (openbsd-amd64), type RawSockaddrDatalink struct, Nlen uint8
+pkg syscall (openbsd-amd64), type RawSockaddrDatalink struct, Slen uint8
+pkg syscall (openbsd-amd64), type RawSockaddrDatalink struct, Type uint8
+pkg syscall (openbsd-amd64), type RawSockaddrInet4 struct, Family uint8
+pkg syscall (openbsd-amd64), type RawSockaddrInet4 struct, Len uint8
+pkg syscall (openbsd-amd64), type RawSockaddrInet4 struct, Zero [8]int8
+pkg syscall (openbsd-amd64), type RawSockaddrInet6 struct, Family uint8
+pkg syscall (openbsd-amd64), type RawSockaddrInet6 struct, Len uint8
+pkg syscall (openbsd-amd64), type RawSockaddrUnix struct
+pkg syscall (openbsd-amd64), type RawSockaddrUnix struct, Family uint8
+pkg syscall (openbsd-amd64), type RawSockaddrUnix struct, Len uint8
+pkg syscall (openbsd-amd64), type RawSockaddrUnix struct, Path [104]int8
+pkg syscall (openbsd-amd64), type Rlimit struct
+pkg syscall (openbsd-amd64), type Rlimit struct, Cur uint64
+pkg syscall (openbsd-amd64), type Rlimit struct, Max uint64
+pkg syscall (openbsd-amd64), type RouteMessage struct
+pkg syscall (openbsd-amd64), type RouteMessage struct, Data []uint8
+pkg syscall (openbsd-amd64), type RouteMessage struct, Header RtMsghdr
+pkg syscall (openbsd-amd64), type RoutingMessage interface, unexported methods
+pkg syscall (openbsd-amd64), type RtMetrics struct
+pkg syscall (openbsd-amd64), type RtMetrics struct, Expire uint32
+pkg syscall (openbsd-amd64), type RtMetrics struct, Hopcount uint32
+pkg syscall (openbsd-amd64), type RtMetrics struct, Locks uint32
+pkg syscall (openbsd-amd64), type RtMetrics struct, Mtu uint32
+pkg syscall (openbsd-amd64), type RtMetrics struct, Pksent uint64
+pkg syscall (openbsd-amd64), type RtMetrics struct, Recvpipe uint32
+pkg syscall (openbsd-amd64), type RtMetrics struct, Refcnt uint32
+pkg syscall (openbsd-amd64), type RtMetrics struct, Rtt uint32
+pkg syscall (openbsd-amd64), type RtMetrics struct, Rttvar uint32
+pkg syscall (openbsd-amd64), type RtMetrics struct, Sendpipe uint32
+pkg syscall (openbsd-amd64), type RtMetrics struct, Ssthresh uint32
+pkg syscall (openbsd-amd64), type RtMsghdr struct
+pkg syscall (openbsd-amd64), type RtMsghdr struct, Addrs int32
+pkg syscall (openbsd-amd64), type RtMsghdr struct, Errno int32
+pkg syscall (openbsd-amd64), type RtMsghdr struct, Flags int32
+pkg syscall (openbsd-amd64), type RtMsghdr struct, Fmask int32
+pkg syscall (openbsd-amd64), type RtMsghdr struct, Hdrlen uint16
+pkg syscall (openbsd-amd64), type RtMsghdr struct, Index uint16
+pkg syscall (openbsd-amd64), type RtMsghdr struct, Inits uint32
+pkg syscall (openbsd-amd64), type RtMsghdr struct, Mpls uint8
+pkg syscall (openbsd-amd64), type RtMsghdr struct, Msglen uint16
+pkg syscall (openbsd-amd64), type RtMsghdr struct, Pid int32
+pkg syscall (openbsd-amd64), type RtMsghdr struct, Priority uint8
+pkg syscall (openbsd-amd64), type RtMsghdr struct, Rmx RtMetrics
+pkg syscall (openbsd-amd64), type RtMsghdr struct, Seq int32
+pkg syscall (openbsd-amd64), type RtMsghdr struct, Tableid uint16
+pkg syscall (openbsd-amd64), type RtMsghdr struct, Type uint8
+pkg syscall (openbsd-amd64), type RtMsghdr struct, Version uint8
+pkg syscall (openbsd-amd64), type Rusage struct, Idrss int64
+pkg syscall (openbsd-amd64), type Rusage struct, Inblock int64
+pkg syscall (openbsd-amd64), type Rusage struct, Isrss int64
+pkg syscall (openbsd-amd64), type Rusage struct, Ixrss int64
+pkg syscall (openbsd-amd64), type Rusage struct, Majflt int64
+pkg syscall (openbsd-amd64), type Rusage struct, Maxrss int64
+pkg syscall (openbsd-amd64), type Rusage struct, Minflt int64
+pkg syscall (openbsd-amd64), type Rusage struct, Msgrcv int64
+pkg syscall (openbsd-amd64), type Rusage struct, Msgsnd int64
+pkg syscall (openbsd-amd64), type Rusage struct, Nivcsw int64
+pkg syscall (openbsd-amd64), type Rusage struct, Nsignals int64
+pkg syscall (openbsd-amd64), type Rusage struct, Nswap int64
+pkg syscall (openbsd-amd64), type Rusage struct, Nvcsw int64
+pkg syscall (openbsd-amd64), type Rusage struct, Oublock int64
+pkg syscall (openbsd-amd64), type Rusage struct, Stime Timeval
+pkg syscall (openbsd-amd64), type Rusage struct, Utime Timeval
+pkg syscall (openbsd-amd64), type SockaddrDatalink struct
+pkg syscall (openbsd-amd64), type SockaddrDatalink struct, Alen uint8
+pkg syscall (openbsd-amd64), type SockaddrDatalink struct, Data [24]int8
+pkg syscall (openbsd-amd64), type SockaddrDatalink struct, Family uint8
+pkg syscall (openbsd-amd64), type SockaddrDatalink struct, Index uint16
+pkg syscall (openbsd-amd64), type SockaddrDatalink struct, Len uint8
+pkg syscall (openbsd-amd64), type SockaddrDatalink struct, Nlen uint8
+pkg syscall (openbsd-amd64), type SockaddrDatalink struct, Slen uint8
+pkg syscall (openbsd-amd64), type SockaddrDatalink struct, Type uint8
+pkg syscall (openbsd-amd64), type SocketControlMessage struct
+pkg syscall (openbsd-amd64), type SocketControlMessage struct, Data []uint8
+pkg syscall (openbsd-amd64), type SocketControlMessage struct, Header Cmsghdr
+pkg syscall (openbsd-amd64), type Stat_t struct
+pkg syscall (openbsd-amd64), type Stat_t struct, Atim Timespec
+pkg syscall (openbsd-amd64), type Stat_t struct, Blksize uint32
+pkg syscall (openbsd-amd64), type Stat_t struct, Blocks int64
+pkg syscall (openbsd-amd64), type Stat_t struct, Ctim Timespec
+pkg syscall (openbsd-amd64), type Stat_t struct, Dev int32
+pkg syscall (openbsd-amd64), type Stat_t struct, Flags uint32
+pkg syscall (openbsd-amd64), type Stat_t struct, Gen uint32
+pkg syscall (openbsd-amd64), type Stat_t struct, Gid uint32
+pkg syscall (openbsd-amd64), type Stat_t struct, Ino uint32
+pkg syscall (openbsd-amd64), type Stat_t struct, Lspare0 int32
+pkg syscall (openbsd-amd64), type Stat_t struct, Lspare1 int32
+pkg syscall (openbsd-amd64), type Stat_t struct, Mode uint32
+pkg syscall (openbsd-amd64), type Stat_t struct, Mtim Timespec
+pkg syscall (openbsd-amd64), type Stat_t struct, Nlink uint32
+pkg syscall (openbsd-amd64), type Stat_t struct, Qspare [2]int64
+pkg syscall (openbsd-amd64), type Stat_t struct, Rdev int32
+pkg syscall (openbsd-amd64), type Stat_t struct, Size int64
+pkg syscall (openbsd-amd64), type Stat_t struct, Uid uint32
+pkg syscall (openbsd-amd64), type Stat_t struct, X__st_birthtim Timespec
+pkg syscall (openbsd-amd64), type Statfs_t struct
+pkg syscall (openbsd-amd64), type Statfs_t struct, F_asyncreads uint64
+pkg syscall (openbsd-amd64), type Statfs_t struct, F_asyncwrites uint64
+pkg syscall (openbsd-amd64), type Statfs_t struct, F_bavail int64
+pkg syscall (openbsd-amd64), type Statfs_t struct, F_bfree uint64
+pkg syscall (openbsd-amd64), type Statfs_t struct, F_blocks uint64
+pkg syscall (openbsd-amd64), type Statfs_t struct, F_bsize uint32
+pkg syscall (openbsd-amd64), type Statfs_t struct, F_ctime uint32
+pkg syscall (openbsd-amd64), type Statfs_t struct, F_favail int64
+pkg syscall (openbsd-amd64), type Statfs_t struct, F_ffree uint64
+pkg syscall (openbsd-amd64), type Statfs_t struct, F_files uint64
+pkg syscall (openbsd-amd64), type Statfs_t struct, F_flags uint32
+pkg syscall (openbsd-amd64), type Statfs_t struct, F_fsid Fsid
+pkg syscall (openbsd-amd64), type Statfs_t struct, F_fstypename [16]int8
+pkg syscall (openbsd-amd64), type Statfs_t struct, F_iosize uint32
+pkg syscall (openbsd-amd64), type Statfs_t struct, F_mntfromname [90]int8
+pkg syscall (openbsd-amd64), type Statfs_t struct, F_mntonname [90]int8
+pkg syscall (openbsd-amd64), type Statfs_t struct, F_namemax uint32
+pkg syscall (openbsd-amd64), type Statfs_t struct, F_owner uint32
+pkg syscall (openbsd-amd64), type Statfs_t struct, F_spare [3]uint32
+pkg syscall (openbsd-amd64), type Statfs_t struct, F_syncreads uint64
+pkg syscall (openbsd-amd64), type Statfs_t struct, F_syncwrites uint64
+pkg syscall (openbsd-amd64), type Statfs_t struct, Mount_info [160]uint8
+pkg syscall (openbsd-amd64), type Statfs_t struct, Pad_cgo_0 [4]uint8
+pkg syscall (openbsd-amd64), type Statfs_t struct, Pad_cgo_1 [4]uint8
+pkg syscall (openbsd-amd64), type SysProcAttr struct, Chroot string
+pkg syscall (openbsd-amd64), type SysProcAttr struct, Credential *Credential
+pkg syscall (openbsd-amd64), type SysProcAttr struct, Noctty bool
+pkg syscall (openbsd-amd64), type SysProcAttr struct, Ptrace bool
+pkg syscall (openbsd-amd64), type SysProcAttr struct, Setctty bool
+pkg syscall (openbsd-amd64), type SysProcAttr struct, Setpgid bool
+pkg syscall (openbsd-amd64), type SysProcAttr struct, Setsid bool
+pkg syscall (openbsd-amd64), type Timespec struct, Nsec int64
+pkg syscall (openbsd-amd64), type Timespec struct, Pad_cgo_0 [4]uint8
+pkg syscall (openbsd-amd64), type Timespec struct, Sec int32
+pkg syscall (openbsd-amd64), type Timeval struct, Sec int64
+pkg syscall (openbsd-amd64), type Timeval struct, Usec int64
+pkg syscall (openbsd-amd64), type WaitStatus uint32
+pkg syscall (openbsd-amd64), var Stderr int
+pkg syscall (openbsd-amd64), var Stdin int
+pkg syscall (openbsd-amd64), var Stdout int
+pkg syscall (openbsd-amd64-cgo), const AF_APPLETALK ideal-int
+pkg syscall (openbsd-amd64-cgo), const AF_BLUETOOTH ideal-int
+pkg syscall (openbsd-amd64-cgo), const AF_CCITT ideal-int
+pkg syscall (openbsd-amd64-cgo), const AF_CHAOS ideal-int
+pkg syscall (openbsd-amd64-cgo), const AF_CNT ideal-int
+pkg syscall (openbsd-amd64-cgo), const AF_COIP ideal-int
+pkg syscall (openbsd-amd64-cgo), const AF_DATAKIT ideal-int
+pkg syscall (openbsd-amd64-cgo), const AF_DECnet ideal-int
+pkg syscall (openbsd-amd64-cgo), const AF_DLI ideal-int
+pkg syscall (openbsd-amd64-cgo), const AF_E164 ideal-int
+pkg syscall (openbsd-amd64-cgo), const AF_ECMA ideal-int
+pkg syscall (openbsd-amd64-cgo), const AF_ENCAP ideal-int
+pkg syscall (openbsd-amd64-cgo), const AF_HYLINK ideal-int
+pkg syscall (openbsd-amd64-cgo), const AF_IMPLINK ideal-int
+pkg syscall (openbsd-amd64-cgo), const AF_IPX ideal-int
+pkg syscall (openbsd-amd64-cgo), const AF_ISDN ideal-int
+pkg syscall (openbsd-amd64-cgo), const AF_ISO ideal-int
+pkg syscall (openbsd-amd64-cgo), const AF_KEY ideal-int
+pkg syscall (openbsd-amd64-cgo), const AF_LAT ideal-int
+pkg syscall (openbsd-amd64-cgo), const AF_LINK ideal-int
+pkg syscall (openbsd-amd64-cgo), const AF_LOCAL ideal-int
+pkg syscall (openbsd-amd64-cgo), const AF_MAX ideal-int
+pkg syscall (openbsd-amd64-cgo), const AF_MPLS ideal-int
+pkg syscall (openbsd-amd64-cgo), const AF_NATM ideal-int
+pkg syscall (openbsd-amd64-cgo), const AF_NS ideal-int
+pkg syscall (openbsd-amd64-cgo), const AF_OSI ideal-int
+pkg syscall (openbsd-amd64-cgo), const AF_PUP ideal-int
+pkg syscall (openbsd-amd64-cgo), const AF_ROUTE ideal-int
+pkg syscall (openbsd-amd64-cgo), const AF_SIP ideal-int
+pkg syscall (openbsd-amd64-cgo), const AF_SNA ideal-int
+pkg syscall (openbsd-amd64-cgo), const ARPHRD_ETHER ideal-int
+pkg syscall (openbsd-amd64-cgo), const ARPHRD_FRELAY ideal-int
+pkg syscall (openbsd-amd64-cgo), const ARPHRD_IEEE1394 ideal-int
+pkg syscall (openbsd-amd64-cgo), const ARPHRD_IEEE802 ideal-int
+pkg syscall (openbsd-amd64-cgo), const B0 ideal-int
+pkg syscall (openbsd-amd64-cgo), const B110 ideal-int
+pkg syscall (openbsd-amd64-cgo), const B115200 ideal-int
+pkg syscall (openbsd-amd64-cgo), const B1200 ideal-int
+pkg syscall (openbsd-amd64-cgo), const B134 ideal-int
+pkg syscall (openbsd-amd64-cgo), const B14400 ideal-int
+pkg syscall (openbsd-amd64-cgo), const B150 ideal-int
+pkg syscall (openbsd-amd64-cgo), const B1800 ideal-int
+pkg syscall (openbsd-amd64-cgo), const B19200 ideal-int
+pkg syscall (openbsd-amd64-cgo), const B200 ideal-int
+pkg syscall (openbsd-amd64-cgo), const B230400 ideal-int
+pkg syscall (openbsd-amd64-cgo), const B2400 ideal-int
+pkg syscall (openbsd-amd64-cgo), const B28800 ideal-int
+pkg syscall (openbsd-amd64-cgo), const B300 ideal-int
+pkg syscall (openbsd-amd64-cgo), const B38400 ideal-int
+pkg syscall (openbsd-amd64-cgo), const B4800 ideal-int
+pkg syscall (openbsd-amd64-cgo), const B50 ideal-int
+pkg syscall (openbsd-amd64-cgo), const B57600 ideal-int
+pkg syscall (openbsd-amd64-cgo), const B600 ideal-int
+pkg syscall (openbsd-amd64-cgo), const B7200 ideal-int
+pkg syscall (openbsd-amd64-cgo), const B75 ideal-int
+pkg syscall (openbsd-amd64-cgo), const B76800 ideal-int
+pkg syscall (openbsd-amd64-cgo), const B9600 ideal-int
+pkg syscall (openbsd-amd64-cgo), const BIOCFLUSH ideal-int
+pkg syscall (openbsd-amd64-cgo), const BIOCGBLEN ideal-int
+pkg syscall (openbsd-amd64-cgo), const BIOCGDIRFILT ideal-int
+pkg syscall (openbsd-amd64-cgo), const BIOCGDLT ideal-int
+pkg syscall (openbsd-amd64-cgo), const BIOCGDLTLIST ideal-int
+pkg syscall (openbsd-amd64-cgo), const BIOCGETIF ideal-int
+pkg syscall (openbsd-amd64-cgo), const BIOCGFILDROP ideal-int
+pkg syscall (openbsd-amd64-cgo), const BIOCGHDRCMPLT ideal-int
+pkg syscall (openbsd-amd64-cgo), const BIOCGRSIG ideal-int
+pkg syscall (openbsd-amd64-cgo), const BIOCGRTIMEOUT ideal-int
+pkg syscall (openbsd-amd64-cgo), const BIOCGSTATS ideal-int
+pkg syscall (openbsd-amd64-cgo), const BIOCIMMEDIATE ideal-int
+pkg syscall (openbsd-amd64-cgo), const BIOCLOCK ideal-int
+pkg syscall (openbsd-amd64-cgo), const BIOCPROMISC ideal-int
+pkg syscall (openbsd-amd64-cgo), const BIOCSBLEN ideal-int
+pkg syscall (openbsd-amd64-cgo), const BIOCSDIRFILT ideal-int
+pkg syscall (openbsd-amd64-cgo), const BIOCSDLT ideal-int
+pkg syscall (openbsd-amd64-cgo), const BIOCSETF ideal-int
+pkg syscall (openbsd-amd64-cgo), const BIOCSETIF ideal-int
+pkg syscall (openbsd-amd64-cgo), const BIOCSETWF ideal-int
+pkg syscall (openbsd-amd64-cgo), const BIOCSFILDROP ideal-int
+pkg syscall (openbsd-amd64-cgo), const BIOCSHDRCMPLT ideal-int
+pkg syscall (openbsd-amd64-cgo), const BIOCSRSIG ideal-int
+pkg syscall (openbsd-amd64-cgo), const BIOCSRTIMEOUT ideal-int
+pkg syscall (openbsd-amd64-cgo), const BIOCVERSION ideal-int
+pkg syscall (openbsd-amd64-cgo), const BPF_A ideal-int
+pkg syscall (openbsd-amd64-cgo), const BPF_ABS ideal-int
+pkg syscall (openbsd-amd64-cgo), const BPF_ADD ideal-int
+pkg syscall (openbsd-amd64-cgo), const BPF_ALIGNMENT ideal-int
+pkg syscall (openbsd-amd64-cgo), const BPF_ALU ideal-int
+pkg syscall (openbsd-amd64-cgo), const BPF_AND ideal-int
+pkg syscall (openbsd-amd64-cgo), const BPF_B ideal-int
+pkg syscall (openbsd-amd64-cgo), const BPF_DIRECTION_IN ideal-int
+pkg syscall (openbsd-amd64-cgo), const BPF_DIRECTION_OUT ideal-int
+pkg syscall (openbsd-amd64-cgo), const BPF_DIV ideal-int
+pkg syscall (openbsd-amd64-cgo), const BPF_H ideal-int
+pkg syscall (openbsd-amd64-cgo), const BPF_IMM ideal-int
+pkg syscall (openbsd-amd64-cgo), const BPF_IND ideal-int
+pkg syscall (openbsd-amd64-cgo), const BPF_JA ideal-int
+pkg syscall (openbsd-amd64-cgo), const BPF_JEQ ideal-int
+pkg syscall (openbsd-amd64-cgo), const BPF_JGE ideal-int
+pkg syscall (openbsd-amd64-cgo), const BPF_JGT ideal-int
+pkg syscall (openbsd-amd64-cgo), const BPF_JMP ideal-int
+pkg syscall (openbsd-amd64-cgo), const BPF_JSET ideal-int
+pkg syscall (openbsd-amd64-cgo), const BPF_K ideal-int
+pkg syscall (openbsd-amd64-cgo), const BPF_LD ideal-int
+pkg syscall (openbsd-amd64-cgo), const BPF_LDX ideal-int
+pkg syscall (openbsd-amd64-cgo), const BPF_LEN ideal-int
+pkg syscall (openbsd-amd64-cgo), const BPF_LSH ideal-int
+pkg syscall (openbsd-amd64-cgo), const BPF_MAJOR_VERSION ideal-int
+pkg syscall (openbsd-amd64-cgo), const BPF_MAXBUFSIZE ideal-int
+pkg syscall (openbsd-amd64-cgo), const BPF_MAXINSNS ideal-int
+pkg syscall (openbsd-amd64-cgo), const BPF_MEM ideal-int
+pkg syscall (openbsd-amd64-cgo), const BPF_MEMWORDS ideal-int
+pkg syscall (openbsd-amd64-cgo), const BPF_MINBUFSIZE ideal-int
+pkg syscall (openbsd-amd64-cgo), const BPF_MINOR_VERSION ideal-int
+pkg syscall (openbsd-amd64-cgo), const BPF_MISC ideal-int
+pkg syscall (openbsd-amd64-cgo), const BPF_MSH ideal-int
+pkg syscall (openbsd-amd64-cgo), const BPF_MUL ideal-int
+pkg syscall (openbsd-amd64-cgo), const BPF_NEG ideal-int
+pkg syscall (openbsd-amd64-cgo), const BPF_OR ideal-int
+pkg syscall (openbsd-amd64-cgo), const BPF_RELEASE ideal-int
+pkg syscall (openbsd-amd64-cgo), const BPF_RET ideal-int
+pkg syscall (openbsd-amd64-cgo), const BPF_RSH ideal-int
+pkg syscall (openbsd-amd64-cgo), const BPF_ST ideal-int
+pkg syscall (openbsd-amd64-cgo), const BPF_STX ideal-int
+pkg syscall (openbsd-amd64-cgo), const BPF_SUB ideal-int
+pkg syscall (openbsd-amd64-cgo), const BPF_TAX ideal-int
+pkg syscall (openbsd-amd64-cgo), const BPF_TXA ideal-int
+pkg syscall (openbsd-amd64-cgo), const BPF_W ideal-int
+pkg syscall (openbsd-amd64-cgo), const BPF_X ideal-int
+pkg syscall (openbsd-amd64-cgo), const BRKINT ideal-int
+pkg syscall (openbsd-amd64-cgo), const CCR0_FLUSH ideal-int
+pkg syscall (openbsd-amd64-cgo), const CFLUSH ideal-int
+pkg syscall (openbsd-amd64-cgo), const CLOCAL ideal-int
+pkg syscall (openbsd-amd64-cgo), const CPUID_CFLUSH ideal-int
+pkg syscall (openbsd-amd64-cgo), const CREAD ideal-int
+pkg syscall (openbsd-amd64-cgo), const CS5 ideal-int
+pkg syscall (openbsd-amd64-cgo), const CS6 ideal-int
+pkg syscall (openbsd-amd64-cgo), const CS7 ideal-int
+pkg syscall (openbsd-amd64-cgo), const CS8 ideal-int
+pkg syscall (openbsd-amd64-cgo), const CSIZE ideal-int
+pkg syscall (openbsd-amd64-cgo), const CSTART ideal-int
+pkg syscall (openbsd-amd64-cgo), const CSTATUS ideal-int
+pkg syscall (openbsd-amd64-cgo), const CSTOP ideal-int
+pkg syscall (openbsd-amd64-cgo), const CSTOPB ideal-int
+pkg syscall (openbsd-amd64-cgo), const CSUSP ideal-int
+pkg syscall (openbsd-amd64-cgo), const CTL_MAXNAME ideal-int
+pkg syscall (openbsd-amd64-cgo), const CTL_NET ideal-int
+pkg syscall (openbsd-amd64-cgo), const DIOCOSFPFLUSH ideal-int
+pkg syscall (openbsd-amd64-cgo), const DLT_ARCNET ideal-int
+pkg syscall (openbsd-amd64-cgo), const DLT_ATM_RFC1483 ideal-int
+pkg syscall (openbsd-amd64-cgo), const DLT_AX25 ideal-int
+pkg syscall (openbsd-amd64-cgo), const DLT_CHAOS ideal-int
+pkg syscall (openbsd-amd64-cgo), const DLT_C_HDLC ideal-int
+pkg syscall (openbsd-amd64-cgo), const DLT_EN10MB ideal-int
+pkg syscall (openbsd-amd64-cgo), const DLT_EN3MB ideal-int
+pkg syscall (openbsd-amd64-cgo), const DLT_ENC ideal-int
+pkg syscall (openbsd-amd64-cgo), const DLT_FDDI ideal-int
+pkg syscall (openbsd-amd64-cgo), const DLT_IEEE802 ideal-int
+pkg syscall (openbsd-amd64-cgo), const DLT_IEEE802_11 ideal-int
+pkg syscall (openbsd-amd64-cgo), const DLT_IEEE802_11_RADIO ideal-int
+pkg syscall (openbsd-amd64-cgo), const DLT_LOOP ideal-int
+pkg syscall (openbsd-amd64-cgo), const DLT_MPLS ideal-int
+pkg syscall (openbsd-amd64-cgo), const DLT_NULL ideal-int
+pkg syscall (openbsd-amd64-cgo), const DLT_PFLOG ideal-int
+pkg syscall (openbsd-amd64-cgo), const DLT_PFSYNC ideal-int
+pkg syscall (openbsd-amd64-cgo), const DLT_PPP ideal-int
+pkg syscall (openbsd-amd64-cgo), const DLT_PPP_BSDOS ideal-int
+pkg syscall (openbsd-amd64-cgo), const DLT_PPP_ETHER ideal-int
+pkg syscall (openbsd-amd64-cgo), const DLT_PPP_SERIAL ideal-int
+pkg syscall (openbsd-amd64-cgo), const DLT_PRONET ideal-int
+pkg syscall (openbsd-amd64-cgo), const DLT_RAW ideal-int
+pkg syscall (openbsd-amd64-cgo), const DLT_SLIP ideal-int
+pkg syscall (openbsd-amd64-cgo), const DLT_SLIP_BSDOS ideal-int
+pkg syscall (openbsd-amd64-cgo), const DT_BLK ideal-int
+pkg syscall (openbsd-amd64-cgo), const DT_CHR ideal-int
+pkg syscall (openbsd-amd64-cgo), const DT_DIR ideal-int
+pkg syscall (openbsd-amd64-cgo), const DT_FIFO ideal-int
+pkg syscall (openbsd-amd64-cgo), const DT_LNK ideal-int
+pkg syscall (openbsd-amd64-cgo), const DT_REG ideal-int
+pkg syscall (openbsd-amd64-cgo), const DT_SOCK ideal-int
+pkg syscall (openbsd-amd64-cgo), const DT_UNKNOWN ideal-int
+pkg syscall (openbsd-amd64-cgo), const EAUTH Errno
+pkg syscall (openbsd-amd64-cgo), const EBADRPC Errno
+pkg syscall (openbsd-amd64-cgo), const ECHO ideal-int
+pkg syscall (openbsd-amd64-cgo), const ECHOCTL ideal-int
+pkg syscall (openbsd-amd64-cgo), const ECHOE ideal-int
+pkg syscall (openbsd-amd64-cgo), const ECHOK ideal-int
+pkg syscall (openbsd-amd64-cgo), const ECHOKE ideal-int
+pkg syscall (openbsd-amd64-cgo), const ECHONL ideal-int
+pkg syscall (openbsd-amd64-cgo), const ECHOPRT ideal-int
+pkg syscall (openbsd-amd64-cgo), const EFER_LMA ideal-int
+pkg syscall (openbsd-amd64-cgo), const EFER_LME ideal-int
+pkg syscall (openbsd-amd64-cgo), const EFER_NXE ideal-int
+pkg syscall (openbsd-amd64-cgo), const EFER_SCE ideal-int
+pkg syscall (openbsd-amd64-cgo), const EFTYPE Errno
+pkg syscall (openbsd-amd64-cgo), const EIPSEC Errno
+pkg syscall (openbsd-amd64-cgo), const ELAST Errno
+pkg syscall (openbsd-amd64-cgo), const EMEDIUMTYPE Errno
+pkg syscall (openbsd-amd64-cgo), const EMT_TAGOVF ideal-int
+pkg syscall (openbsd-amd64-cgo), const EMUL_ENABLED ideal-int
+pkg syscall (openbsd-amd64-cgo), const EMUL_NATIVE ideal-int
+pkg syscall (openbsd-amd64-cgo), const ENDRUNDISC ideal-int
+pkg syscall (openbsd-amd64-cgo), const ENEEDAUTH Errno
+pkg syscall (openbsd-amd64-cgo), const ENOATTR Errno
+pkg syscall (openbsd-amd64-cgo), const ENOMEDIUM Errno
+pkg syscall (openbsd-amd64-cgo), const EPROCLIM Errno
+pkg syscall (openbsd-amd64-cgo), const EPROCUNAVAIL Errno
+pkg syscall (openbsd-amd64-cgo), const EPROGMISMATCH Errno
+pkg syscall (openbsd-amd64-cgo), const EPROGUNAVAIL Errno
+pkg syscall (openbsd-amd64-cgo), const ERPCMISMATCH Errno
+pkg syscall (openbsd-amd64-cgo), const ETHERMIN ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERMTU ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_8023 ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_AARP ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_ACCTON ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_AEONIC ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_ALPHA ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_AMBER ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_AMOEBA ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_AOE ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_APOLLO ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_APOLLODOMAIN ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_APPLETALK ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_APPLITEK ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_ARGONAUT ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_ARP ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_AT ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_ATALK ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_ATOMIC ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_ATT ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_ATTSTANFORD ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_AUTOPHON ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_AXIS ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_BCLOOP ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_BOFL ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_CABLETRON ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_CHAOS ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_COMDESIGN ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_COMPUGRAPHIC ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_COUNTERPOINT ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_CRONUS ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_CRONUSVLN ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DCA ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DDE ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DEBNI ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DECAM ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DECCUST ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DECDIAG ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DECDNS ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DECDTS ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DECEXPER ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DECLAST ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DECLTM ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DECMUMPS ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DECNETBIOS ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DELTACON ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DIDDLE ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DLOG1 ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DLOG2 ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DN ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DOGFIGHT ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DSMD ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_ECMA ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_ENCRYPT ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_ES ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_EXCELAN ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_EXPERDATA ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_FLIP ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_FLOWCONTROL ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_FRARP ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_GENDYN ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_HAYES ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_HIPPI_FP ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_HITACHI ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_HP ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_IEEEPUP ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_IEEEPUPAT ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_IMLBL ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_IMLBLDIAG ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_IP ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_IPAS ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_IPV6 ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_IPX ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_IPXNEW ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_KALPANA ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_LANBRIDGE ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_LANPROBE ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_LAT ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_LBACK ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_LITTLE ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_LLDP ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_LOGICRAFT ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_LOOPBACK ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_MATRA ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_MAX ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_MERIT ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_MICP ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_MOPDL ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_MOPRC ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_MOTOROLA ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_MPLS ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_MPLS_MCAST ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_MUMPS ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPCC ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPCLAIM ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPCLREQ ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPCLRSP ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPCREQ ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPCRSP ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPDG ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPDGB ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPDLTE ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPRAR ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPRAS ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPRST ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPSCD ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPVCD ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBS ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NCD ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NESTAR ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NETBEUI ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NOVELL ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NS ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NSAT ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NSCOMPAT ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NTRAILER ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_OS9 ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_OS9NET ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_PACER ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_PAE ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_PCS ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_PLANNING ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_PPP ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_PPPOE ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_PPPOEDISC ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_PRIMENTS ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_PUP ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_PUPAT ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_QINQ ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_RACAL ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_RATIONAL ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_RAWFR ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_RCL ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_RDP ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_RETIX ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_REVARP ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SCA ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SECTRA ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SECUREDATA ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SGITW ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SG_BOUNCE ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SG_DIAG ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SG_NETGAMES ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SG_RESV ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SIMNET ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SLOW ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SNA ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SNMP ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SONIX ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SPIDER ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SPRITE ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_STP ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_TALARIS ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_TALARISMC ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_TCPCOMP ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_TCPSM ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_TEC ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_TIGAN ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_TRAIL ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_TRANSETHER ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_TYMSHARE ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_UBBST ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_UBDEBUG ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_UBDIAGLOOP ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_UBDL ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_UBNIU ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_UBNMC ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VALID ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VARIAN ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VAXELN ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VEECO ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VEXP ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VGLAB ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VINES ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VINESECHO ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VINESLOOP ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VITAL ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VLAN ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VLTLMAN ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VPROD ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VURESERVED ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_WATERLOO ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_WELLFLEET ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_X25 ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_X75 ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_XNSSM ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_XTP ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHER_ADDR_LEN ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHER_ALIGN ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHER_CRC_LEN ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHER_CRC_POLY_BE ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHER_CRC_POLY_LE ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHER_HDR_LEN ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHER_MAX_DIX_LEN ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHER_MAX_LEN ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHER_MIN_LEN ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHER_TYPE_LEN ideal-int
+pkg syscall (openbsd-amd64-cgo), const ETHER_VLAN_ENCAP_LEN ideal-int
+pkg syscall (openbsd-amd64-cgo), const EVFILT_AIO ideal-int
+pkg syscall (openbsd-amd64-cgo), const EVFILT_PROC ideal-int
+pkg syscall (openbsd-amd64-cgo), const EVFILT_READ ideal-int
+pkg syscall (openbsd-amd64-cgo), const EVFILT_SIGNAL ideal-int
+pkg syscall (openbsd-amd64-cgo), const EVFILT_SYSCOUNT ideal-int
+pkg syscall (openbsd-amd64-cgo), const EVFILT_TIMER ideal-int
+pkg syscall (openbsd-amd64-cgo), const EVFILT_VNODE ideal-int
+pkg syscall (openbsd-amd64-cgo), const EVFILT_WRITE ideal-int
+pkg syscall (openbsd-amd64-cgo), const EV_ADD ideal-int
+pkg syscall (openbsd-amd64-cgo), const EV_CLEAR ideal-int
+pkg syscall (openbsd-amd64-cgo), const EV_DELETE ideal-int
+pkg syscall (openbsd-amd64-cgo), const EV_DISABLE ideal-int
+pkg syscall (openbsd-amd64-cgo), const EV_ENABLE ideal-int
+pkg syscall (openbsd-amd64-cgo), const EV_EOF ideal-int
+pkg syscall (openbsd-amd64-cgo), const EV_ERROR ideal-int
+pkg syscall (openbsd-amd64-cgo), const EV_FLAG1 ideal-int
+pkg syscall (openbsd-amd64-cgo), const EV_ONESHOT ideal-int
+pkg syscall (openbsd-amd64-cgo), const EV_SYSFLAGS ideal-int
+pkg syscall (openbsd-amd64-cgo), const EXTA ideal-int
+pkg syscall (openbsd-amd64-cgo), const EXTB ideal-int
+pkg syscall (openbsd-amd64-cgo), const EXTPROC ideal-int
+pkg syscall (openbsd-amd64-cgo), const FD_CLOEXEC ideal-int
+pkg syscall (openbsd-amd64-cgo), const FD_SETSIZE ideal-int
+pkg syscall (openbsd-amd64-cgo), const FLUSHO ideal-int
+pkg syscall (openbsd-amd64-cgo), const F_DUPFD ideal-int
+pkg syscall (openbsd-amd64-cgo), const F_DUPFD_CLOEXEC ideal-int
+pkg syscall (openbsd-amd64-cgo), const F_GETFD ideal-int
+pkg syscall (openbsd-amd64-cgo), const F_GETFL ideal-int
+pkg syscall (openbsd-amd64-cgo), const F_GETLK ideal-int
+pkg syscall (openbsd-amd64-cgo), const F_GETOWN ideal-int
+pkg syscall (openbsd-amd64-cgo), const F_OK ideal-int
+pkg syscall (openbsd-amd64-cgo), const F_RDLCK ideal-int
+pkg syscall (openbsd-amd64-cgo), const F_SETFD ideal-int
+pkg syscall (openbsd-amd64-cgo), const F_SETFL ideal-int
+pkg syscall (openbsd-amd64-cgo), const F_SETLK ideal-int
+pkg syscall (openbsd-amd64-cgo), const F_SETLKW ideal-int
+pkg syscall (openbsd-amd64-cgo), const F_SETOWN ideal-int
+pkg syscall (openbsd-amd64-cgo), const F_UNLCK ideal-int
+pkg syscall (openbsd-amd64-cgo), const F_WRLCK ideal-int
+pkg syscall (openbsd-amd64-cgo), const HUPCL ideal-int
+pkg syscall (openbsd-amd64-cgo), const ICANON ideal-int
+pkg syscall (openbsd-amd64-cgo), const ICMP6_FILTER = 18
+pkg syscall (openbsd-amd64-cgo), const ICMP6_FILTER ideal-int
+pkg syscall (openbsd-amd64-cgo), const ICRNL ideal-int
+pkg syscall (openbsd-amd64-cgo), const IEXTEN ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFAN_ARRIVAL ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFAN_DEPARTURE ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFA_ROUTE ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFF_ALLMULTI ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFF_CANTCHANGE ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFF_DEBUG ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFF_LINK0 ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFF_LINK1 ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFF_LINK2 ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFF_NOARP ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFF_NOTRAILERS ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFF_OACTIVE ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFF_POINTOPOINT ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFF_PROMISC ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFF_RUNNING ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFF_SIMPLEX ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFNAMSIZ ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_1822 ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_A12MPPSWITCH ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_AAL2 ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_AAL5 ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_ADSL ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_AFLANE8023 ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_AFLANE8025 ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_ARAP ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_ARCNET ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_ARCNETPLUS ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_ASYNC ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_ATM ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_ATMDXI ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_ATMFUNI ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_ATMIMA ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_ATMLOGICAL ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_ATMRADIO ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_ATMSUBINTERFACE ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_ATMVCIENDPT ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_ATMVIRTUAL ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_BGPPOLICYACCOUNTING ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_BLUETOOTH ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_BRIDGE ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_BSC ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_CARP ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_CCTEMUL ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_CEPT ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_CES ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_CHANNEL ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_CNR ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_COFFEE ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_COMPOSITELINK ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_DCN ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_DIGITALPOWERLINE ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_DLSW ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_DOCSCABLEDOWNSTREAM ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_DOCSCABLEMACLAYER ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_DOCSCABLEUPSTREAM ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_DOCSCABLEUPSTREAMCHANNEL ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_DS0 ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_DS0BUNDLE ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_DS1FDL ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_DS3 ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_DTM ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_DUMMY ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_DVBASILN ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_DVBASIOUT ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_DVBRCCDOWNSTREAM ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_DVBRCCMACLAYER ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_DVBRCCUPSTREAM ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_ECONET ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_ENC ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_EON ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_EPLRS ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_ESCON ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_ETHER ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_FAITH ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_FAST ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_FASTETHER ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_FASTETHERFX ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_FDDI ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_FIBRECHANNEL ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_FRAMERELAYINTERCONNECT ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_FRAMERELAYMPI ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_FRDLCIENDPT ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_FRELAY ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_FRELAYDCE ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_FRF16MFRBUNDLE ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_FRFORWARD ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_G703AT2MB ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_G703AT64K ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_GIF ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_GIGABITETHERNET ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_GR303IDT ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_GR303RDT ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_H323GATEKEEPER ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_H323PROXY ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_HDH1822 ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_HDLC ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_HDSL2 ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_HIPERLAN2 ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_HIPPI ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_HIPPIINTERFACE ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_HOSTPAD ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_HSSI ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_HY ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_IBM370PARCHAN ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_IDSL ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_IEEE1394 ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_IEEE80211 ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_IEEE80212 ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_IEEE8023ADLAG ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_IFGSN ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_IMT ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_INFINIBAND ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_INTERLEAVE ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_IP ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_IPFORWARD ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_IPOVERATM ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_IPOVERCDLC ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_IPOVERCLAW ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_IPSWITCH ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_ISDN ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_ISDNBASIC ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_ISDNPRIMARY ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_ISDNS ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_ISDNU ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_ISO88022LLC ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_ISO88023 ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_ISO88024 ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_ISO88025 ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_ISO88025CRFPINT ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_ISO88025DTR ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_ISO88025FIBER ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_ISO88026 ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_ISUP ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_L2VLAN ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_L3IPVLAN ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_L3IPXVLAN ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_LAPB ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_LAPD ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_LAPF ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_LINEGROUP ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_LOCALTALK ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_LOOP ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_MEDIAMAILOVERIP ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_MFSIGLINK ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_MIOX25 ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_MODEM ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_MPC ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_MPLS ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_MPLSTUNNEL ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_MSDSL ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_MVL ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_MYRINET ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_NFAS ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_NSIP ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_OPTICALCHANNEL ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_OPTICALTRANSPORT ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_OTHER ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_P10 ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_P80 ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_PARA ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_PFLOG ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_PFLOW ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_PFSYNC ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_PLC ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_PON155 ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_PON622 ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_POS ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_PPP ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_PPPMULTILINKBUNDLE ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_PROPATM ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_PROPBWAP2MP ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_PROPCNLS ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_PROPMUX ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_PROPVIRTUAL ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_PROPWIRELESSP2P ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_PTPSERIAL ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_PVC ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_Q2931 ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_QLLC ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_RADIOMAC ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_RADSL ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_REACHDSL ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_RFC1483 ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_RS232 ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_RSRB ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_SDLC ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_SDSL ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_SHDSL ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_SIP ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_SIPSIG ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_SIPTG ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_SLIP ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_SMDSDXI ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_SMDSICIP ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_SONET ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_SONETOVERHEADCHANNEL ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_SONETPATH ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_SONETVT ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_SRP ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_SS7SIGLINK ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_STACKTOSTACK ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_STARLAN ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_T1 ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_TDLC ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_TELINK ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_TERMPAD ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_TR008 ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_TRANSPHDLC ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_TUNNEL ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_ULTRA ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_USB ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_V11 ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_V35 ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_V36 ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_V37 ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_VDSL ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_VIRTUALIPADDRESS ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_VIRTUALTG ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_VOICEDID ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_VOICEEM ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_VOICEEMFGD ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_VOICEENCAP ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_VOICEFGDEANA ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_VOICEFXO ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_VOICEFXS ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_VOICEOVERATM ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_VOICEOVERCABLE ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_VOICEOVERFRAMERELAY ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_VOICEOVERIP ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_X213 ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_X25 ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_X25DDN ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_X25HUNTGROUP ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_X25MLP ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_X25PLE ideal-int
+pkg syscall (openbsd-amd64-cgo), const IFT_XETHER ideal-int
+pkg syscall (openbsd-amd64-cgo), const IGNBRK ideal-int
+pkg syscall (openbsd-amd64-cgo), const IGNCR ideal-int
+pkg syscall (openbsd-amd64-cgo), const IGNPAR ideal-int
+pkg syscall (openbsd-amd64-cgo), const IMAXBEL ideal-int
+pkg syscall (openbsd-amd64-cgo), const INLCR ideal-int
+pkg syscall (openbsd-amd64-cgo), const INPCK ideal-int
+pkg syscall (openbsd-amd64-cgo), const IN_CLASSA_HOST ideal-int
+pkg syscall (openbsd-amd64-cgo), const IN_CLASSA_MAX ideal-int
+pkg syscall (openbsd-amd64-cgo), const IN_CLASSA_NET ideal-int
+pkg syscall (openbsd-amd64-cgo), const IN_CLASSA_NSHIFT ideal-int
+pkg syscall (openbsd-amd64-cgo), const IN_CLASSB_HOST ideal-int
+pkg syscall (openbsd-amd64-cgo), const IN_CLASSB_MAX ideal-int
+pkg syscall (openbsd-amd64-cgo), const IN_CLASSB_NET ideal-int
+pkg syscall (openbsd-amd64-cgo), const IN_CLASSB_NSHIFT ideal-int
+pkg syscall (openbsd-amd64-cgo), const IN_CLASSC_HOST ideal-int
+pkg syscall (openbsd-amd64-cgo), const IN_CLASSC_NET ideal-int
+pkg syscall (openbsd-amd64-cgo), const IN_CLASSC_NSHIFT ideal-int
+pkg syscall (openbsd-amd64-cgo), const IN_CLASSD_HOST ideal-int
+pkg syscall (openbsd-amd64-cgo), const IN_CLASSD_NET ideal-int
+pkg syscall (openbsd-amd64-cgo), const IN_CLASSD_NSHIFT ideal-int
+pkg syscall (openbsd-amd64-cgo), const IN_LOOPBACKNET ideal-int
+pkg syscall (openbsd-amd64-cgo), const IN_RFC3021_HOST ideal-int
+pkg syscall (openbsd-amd64-cgo), const IN_RFC3021_NET ideal-int
+pkg syscall (openbsd-amd64-cgo), const IN_RFC3021_NSHIFT ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPPROTO_AH ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPPROTO_CARP ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPPROTO_DIVERT ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPPROTO_DONE ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPPROTO_DSTOPTS ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPPROTO_EGP ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPPROTO_ENCAP ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPPROTO_EON ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPPROTO_ESP ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPPROTO_ETHERIP ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPPROTO_FRAGMENT ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPPROTO_GGP ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPPROTO_GRE ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPPROTO_HOPOPTS ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPPROTO_ICMP ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPPROTO_ICMPV6 ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPPROTO_IDP ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPPROTO_IGMP ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPPROTO_IPCOMP ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPPROTO_IPIP ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPPROTO_IPV4 ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPPROTO_MAX ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPPROTO_MAXID ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPPROTO_MOBILE ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPPROTO_MPLS ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPPROTO_NONE ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPPROTO_PFSYNC ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPPROTO_PIM ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPPROTO_PUP ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPPROTO_RAW ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPPROTO_ROUTING ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPPROTO_RSVP ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPPROTO_TP ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPV6_AUTH_LEVEL ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPV6_AUTOFLOWLABEL ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPV6_CHECKSUM ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPV6_DEFHLIM ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPV6_DONTFRAG ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPV6_DSTOPTS ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPV6_ESP_NETWORK_LEVEL ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPV6_ESP_TRANS_LEVEL ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPV6_FAITH ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPV6_FLOWINFO_MASK ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPV6_FLOWLABEL_MASK ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPV6_FRAGTTL ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPV6_HLIMDEC ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPV6_HOPLIMIT ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPV6_HOPOPTS ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPV6_IPCOMP_LEVEL ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPV6_MAXHLIM ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPV6_MAXPACKET ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPV6_MMTU ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPV6_NEXTHOP ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPV6_OPTIONS ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPV6_PATHMTU ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPV6_PIPEX ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPV6_PKTINFO ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPV6_PORTRANGE ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPV6_PORTRANGE_DEFAULT ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPV6_PORTRANGE_HIGH ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPV6_PORTRANGE_LOW ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPV6_RECVDSTOPTS ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPV6_RECVHOPLIMIT ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPV6_RECVHOPOPTS ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPV6_RECVPATHMTU ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPV6_RECVPKTINFO ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPV6_RECVRTHDR ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPV6_RECVTCLASS ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPV6_RTABLE ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPV6_RTHDR ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPV6_RTHDRDSTOPTS ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPV6_RTHDR_LOOSE ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPV6_RTHDR_STRICT ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPV6_RTHDR_TYPE_0 ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPV6_SOCKOPT_RESERVED1 ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPV6_TCLASS ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPV6_USE_MIN_MTU ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPV6_VERSION ideal-int
+pkg syscall (openbsd-amd64-cgo), const IPV6_VERSION_MASK ideal-int
+pkg syscall (openbsd-amd64-cgo), const IP_AUTH_LEVEL ideal-int
+pkg syscall (openbsd-amd64-cgo), const IP_DEFAULT_MULTICAST_LOOP ideal-int
+pkg syscall (openbsd-amd64-cgo), const IP_DEFAULT_MULTICAST_TTL ideal-int
+pkg syscall (openbsd-amd64-cgo), const IP_DF ideal-int
+pkg syscall (openbsd-amd64-cgo), const IP_ESP_NETWORK_LEVEL ideal-int
+pkg syscall (openbsd-amd64-cgo), const IP_ESP_TRANS_LEVEL ideal-int
+pkg syscall (openbsd-amd64-cgo), const IP_HDRINCL ideal-int
+pkg syscall (openbsd-amd64-cgo), const IP_IPCOMP_LEVEL ideal-int
+pkg syscall (openbsd-amd64-cgo), const IP_IPSECFLOWINFO ideal-int
+pkg syscall (openbsd-amd64-cgo), const IP_IPSEC_LOCAL_AUTH ideal-int
+pkg syscall (openbsd-amd64-cgo), const IP_IPSEC_LOCAL_CRED ideal-int
+pkg syscall (openbsd-amd64-cgo), const IP_IPSEC_LOCAL_ID ideal-int
+pkg syscall (openbsd-amd64-cgo), const IP_IPSEC_REMOTE_AUTH ideal-int
+pkg syscall (openbsd-amd64-cgo), const IP_IPSEC_REMOTE_CRED ideal-int
+pkg syscall (openbsd-amd64-cgo), const IP_IPSEC_REMOTE_ID ideal-int
+pkg syscall (openbsd-amd64-cgo), const IP_MAXPACKET ideal-int
+pkg syscall (openbsd-amd64-cgo), const IP_MAX_MEMBERSHIPS ideal-int
+pkg syscall (openbsd-amd64-cgo), const IP_MF ideal-int
+pkg syscall (openbsd-amd64-cgo), const IP_MINTTL ideal-int
+pkg syscall (openbsd-amd64-cgo), const IP_MIN_MEMBERSHIPS ideal-int
+pkg syscall (openbsd-amd64-cgo), const IP_MSS ideal-int
+pkg syscall (openbsd-amd64-cgo), const IP_OFFMASK ideal-int
+pkg syscall (openbsd-amd64-cgo), const IP_OPTIONS ideal-int
+pkg syscall (openbsd-amd64-cgo), const IP_PIPEX ideal-int
+pkg syscall (openbsd-amd64-cgo), const IP_PORTRANGE ideal-int
+pkg syscall (openbsd-amd64-cgo), const IP_PORTRANGE_DEFAULT ideal-int
+pkg syscall (openbsd-amd64-cgo), const IP_PORTRANGE_HIGH ideal-int
+pkg syscall (openbsd-amd64-cgo), const IP_PORTRANGE_LOW ideal-int
+pkg syscall (openbsd-amd64-cgo), const IP_RECVDSTADDR ideal-int
+pkg syscall (openbsd-amd64-cgo), const IP_RECVDSTPORT ideal-int
+pkg syscall (openbsd-amd64-cgo), const IP_RECVIF ideal-int
+pkg syscall (openbsd-amd64-cgo), const IP_RECVOPTS ideal-int
+pkg syscall (openbsd-amd64-cgo), const IP_RECVRETOPTS ideal-int
+pkg syscall (openbsd-amd64-cgo), const IP_RECVRTABLE ideal-int
+pkg syscall (openbsd-amd64-cgo), const IP_RECVTTL ideal-int
+pkg syscall (openbsd-amd64-cgo), const IP_RETOPTS ideal-int
+pkg syscall (openbsd-amd64-cgo), const IP_RF ideal-int
+pkg syscall (openbsd-amd64-cgo), const IP_RTABLE ideal-int
+pkg syscall (openbsd-amd64-cgo), const ISIG ideal-int
+pkg syscall (openbsd-amd64-cgo), const ISTRIP ideal-int
+pkg syscall (openbsd-amd64-cgo), const IXANY ideal-int
+pkg syscall (openbsd-amd64-cgo), const IXOFF ideal-int
+pkg syscall (openbsd-amd64-cgo), const IXON ideal-int
+pkg syscall (openbsd-amd64-cgo), const LCNT_OVERLOAD_FLUSH ideal-int
+pkg syscall (openbsd-amd64-cgo), const LOCK_EX ideal-int
+pkg syscall (openbsd-amd64-cgo), const LOCK_NB ideal-int
+pkg syscall (openbsd-amd64-cgo), const LOCK_SH ideal-int
+pkg syscall (openbsd-amd64-cgo), const LOCK_UN ideal-int
+pkg syscall (openbsd-amd64-cgo), const MSG_BCAST ideal-int
+pkg syscall (openbsd-amd64-cgo), const MSG_CTRUNC ideal-int
+pkg syscall (openbsd-amd64-cgo), const MSG_DONTROUTE ideal-int
+pkg syscall (openbsd-amd64-cgo), const MSG_DONTWAIT ideal-int
+pkg syscall (openbsd-amd64-cgo), const MSG_EOR ideal-int
+pkg syscall (openbsd-amd64-cgo), const MSG_MCAST ideal-int
+pkg syscall (openbsd-amd64-cgo), const MSG_NOSIGNAL ideal-int
+pkg syscall (openbsd-amd64-cgo), const MSG_OOB ideal-int
+pkg syscall (openbsd-amd64-cgo), const MSG_PEEK ideal-int
+pkg syscall (openbsd-amd64-cgo), const MSG_TRUNC ideal-int
+pkg syscall (openbsd-amd64-cgo), const MSG_WAITALL ideal-int
+pkg syscall (openbsd-amd64-cgo), const NAME_MAX ideal-int
+pkg syscall (openbsd-amd64-cgo), const NET_RT_DUMP ideal-int
+pkg syscall (openbsd-amd64-cgo), const NET_RT_FLAGS ideal-int
+pkg syscall (openbsd-amd64-cgo), const NET_RT_IFLIST ideal-int
+pkg syscall (openbsd-amd64-cgo), const NET_RT_MAXID ideal-int
+pkg syscall (openbsd-amd64-cgo), const NET_RT_STATS ideal-int
+pkg syscall (openbsd-amd64-cgo), const NET_RT_TABLE ideal-int
+pkg syscall (openbsd-amd64-cgo), const NOFLSH ideal-int
+pkg syscall (openbsd-amd64-cgo), const NOTE_ATTRIB ideal-int
+pkg syscall (openbsd-amd64-cgo), const NOTE_CHILD ideal-int
+pkg syscall (openbsd-amd64-cgo), const NOTE_DELETE ideal-int
+pkg syscall (openbsd-amd64-cgo), const NOTE_EOF ideal-int
+pkg syscall (openbsd-amd64-cgo), const NOTE_EXEC ideal-int
+pkg syscall (openbsd-amd64-cgo), const NOTE_EXIT ideal-int
+pkg syscall (openbsd-amd64-cgo), const NOTE_EXTEND ideal-int
+pkg syscall (openbsd-amd64-cgo), const NOTE_FORK ideal-int
+pkg syscall (openbsd-amd64-cgo), const NOTE_LINK ideal-int
+pkg syscall (openbsd-amd64-cgo), const NOTE_LOWAT ideal-int
+pkg syscall (openbsd-amd64-cgo), const NOTE_PCTRLMASK ideal-int
+pkg syscall (openbsd-amd64-cgo), const NOTE_PDATAMASK ideal-int
+pkg syscall (openbsd-amd64-cgo), const NOTE_RENAME ideal-int
+pkg syscall (openbsd-amd64-cgo), const NOTE_REVOKE ideal-int
+pkg syscall (openbsd-amd64-cgo), const NOTE_TRACK ideal-int
+pkg syscall (openbsd-amd64-cgo), const NOTE_TRACKERR ideal-int
+pkg syscall (openbsd-amd64-cgo), const NOTE_TRUNCATE ideal-int
+pkg syscall (openbsd-amd64-cgo), const NOTE_WRITE ideal-int
+pkg syscall (openbsd-amd64-cgo), const OCRNL ideal-int
+pkg syscall (openbsd-amd64-cgo), const ONLCR ideal-int
+pkg syscall (openbsd-amd64-cgo), const ONLRET ideal-int
+pkg syscall (openbsd-amd64-cgo), const ONOCR ideal-int
+pkg syscall (openbsd-amd64-cgo), const ONOEOT ideal-int
+pkg syscall (openbsd-amd64-cgo), const OPOST ideal-int
+pkg syscall (openbsd-amd64-cgo), const O_ACCMODE ideal-int
+pkg syscall (openbsd-amd64-cgo), const O_DIRECTORY ideal-int
+pkg syscall (openbsd-amd64-cgo), const O_DSYNC ideal-int
+pkg syscall (openbsd-amd64-cgo), const O_EXLOCK ideal-int
+pkg syscall (openbsd-amd64-cgo), const O_FSYNC ideal-int
+pkg syscall (openbsd-amd64-cgo), const O_NDELAY ideal-int
+pkg syscall (openbsd-amd64-cgo), const O_NOFOLLOW ideal-int
+pkg syscall (openbsd-amd64-cgo), const O_RSYNC ideal-int
+pkg syscall (openbsd-amd64-cgo), const O_SHLOCK ideal-int
+pkg syscall (openbsd-amd64-cgo), const PARENB ideal-int
+pkg syscall (openbsd-amd64-cgo), const PARMRK ideal-int
+pkg syscall (openbsd-amd64-cgo), const PARODD ideal-int
+pkg syscall (openbsd-amd64-cgo), const PENDIN ideal-int
+pkg syscall (openbsd-amd64-cgo), const PF_FLUSH ideal-int
+pkg syscall (openbsd-amd64-cgo), const PMC5_PIPELINE_FLUSH ideal-int
+pkg syscall (openbsd-amd64-cgo), const PRIO_PGRP = 1
+pkg syscall (openbsd-amd64-cgo), const PRIO_PGRP ideal-int
+pkg syscall (openbsd-amd64-cgo), const PRIO_PROCESS = 0
+pkg syscall (openbsd-amd64-cgo), const PRIO_PROCESS ideal-int
+pkg syscall (openbsd-amd64-cgo), const PRIO_USER = 2
+pkg syscall (openbsd-amd64-cgo), const PRIO_USER ideal-int
+pkg syscall (openbsd-amd64-cgo), const PTRACE_CONT ideal-int
+pkg syscall (openbsd-amd64-cgo), const PTRACE_KILL ideal-int
+pkg syscall (openbsd-amd64-cgo), const PTRACE_TRACEME ideal-int
+pkg syscall (openbsd-amd64-cgo), const RLIMIT_CORE ideal-int
+pkg syscall (openbsd-amd64-cgo), const RLIMIT_CPU ideal-int
+pkg syscall (openbsd-amd64-cgo), const RLIMIT_DATA ideal-int
+pkg syscall (openbsd-amd64-cgo), const RLIMIT_FSIZE ideal-int
+pkg syscall (openbsd-amd64-cgo), const RLIMIT_NOFILE ideal-int
+pkg syscall (openbsd-amd64-cgo), const RLIMIT_STACK ideal-int
+pkg syscall (openbsd-amd64-cgo), const RLIM_INFINITY ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTAX_AUTHOR ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTAX_BRD ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTAX_DST ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTAX_GATEWAY ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTAX_GENMASK ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTAX_IFA ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTAX_IFP ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTAX_LABEL ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTAX_MAX ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTAX_NETMASK ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTAX_SRC ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTAX_SRCMASK ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTA_AUTHOR ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTA_BRD ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTA_DST ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTA_GATEWAY ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTA_GENMASK ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTA_IFA ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTA_IFP ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTA_LABEL ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTA_NETMASK ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTA_SRC ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTA_SRCMASK ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTF_ANNOUNCE ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTF_BLACKHOLE ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTF_CLONED ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTF_CLONING ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTF_DONE ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTF_DYNAMIC ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTF_FMASK ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTF_GATEWAY ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTF_HOST ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTF_LLINFO ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTF_MASK ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTF_MODIFIED ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTF_MPATH ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTF_MPLS ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTF_PERMANENT_ARP ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTF_PROTO1 ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTF_PROTO2 ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTF_PROTO3 ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTF_REJECT ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTF_SOURCE ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTF_STATIC ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTF_TUNNEL ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTF_UP ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTF_USETRAILERS ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTF_XRESOLVE ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTM_ADD ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTM_CHANGE ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTM_DELADDR ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTM_DELETE ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTM_DESYNC ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTM_GET ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTM_IFANNOUNCE ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTM_IFINFO ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTM_LOCK ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTM_LOSING ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTM_MAXSIZE ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTM_MISS ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTM_NEWADDR ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTM_REDIRECT ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTM_RESOLVE ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTM_RTTUNIT ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTM_VERSION ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTV_EXPIRE ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTV_HOPCOUNT ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTV_MTU ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTV_RPIPE ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTV_RTT ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTV_RTTVAR ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTV_SPIPE ideal-int
+pkg syscall (openbsd-amd64-cgo), const RTV_SSTHRESH ideal-int
+pkg syscall (openbsd-amd64-cgo), const RT_TABLEID_MAX ideal-int
+pkg syscall (openbsd-amd64-cgo), const RUSAGE_CHILDREN ideal-int
+pkg syscall (openbsd-amd64-cgo), const RUSAGE_SELF ideal-int
+pkg syscall (openbsd-amd64-cgo), const RUSAGE_THREAD ideal-int
+pkg syscall (openbsd-amd64-cgo), const SCM_RIGHTS ideal-int
+pkg syscall (openbsd-amd64-cgo), const SCM_TIMESTAMP ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIGCHLD Signal
+pkg syscall (openbsd-amd64-cgo), const SIGCONT Signal
+pkg syscall (openbsd-amd64-cgo), const SIGEMT Signal
+pkg syscall (openbsd-amd64-cgo), const SIGINFO Signal
+pkg syscall (openbsd-amd64-cgo), const SIGIO Signal
+pkg syscall (openbsd-amd64-cgo), const SIGIOT Signal
+pkg syscall (openbsd-amd64-cgo), const SIGPROF Signal
+pkg syscall (openbsd-amd64-cgo), const SIGSTOP Signal
+pkg syscall (openbsd-amd64-cgo), const SIGSYS Signal
+pkg syscall (openbsd-amd64-cgo), const SIGTHR Signal
+pkg syscall (openbsd-amd64-cgo), const SIGTSTP Signal
+pkg syscall (openbsd-amd64-cgo), const SIGTTIN Signal
+pkg syscall (openbsd-amd64-cgo), const SIGTTOU Signal
+pkg syscall (openbsd-amd64-cgo), const SIGURG Signal
+pkg syscall (openbsd-amd64-cgo), const SIGUSR1 Signal
+pkg syscall (openbsd-amd64-cgo), const SIGUSR2 Signal
+pkg syscall (openbsd-amd64-cgo), const SIGVTALRM Signal
+pkg syscall (openbsd-amd64-cgo), const SIGWINCH Signal
+pkg syscall (openbsd-amd64-cgo), const SIGXCPU Signal
+pkg syscall (openbsd-amd64-cgo), const SIGXFSZ Signal
+pkg syscall (openbsd-amd64-cgo), const SIOCADDMULTI ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCAIFADDR ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCAIFGROUP ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCALIFADDR ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCATMARK ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCBRDGADD ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCBRDGADDS ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCBRDGARL ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCBRDGDADDR ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCBRDGDEL ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCBRDGDELS ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCBRDGFLUSH ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCBRDGFRL ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCBRDGGCACHE ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCBRDGGFD ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCBRDGGHT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCBRDGGIFFLGS ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCBRDGGMA ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCBRDGGPARAM ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCBRDGGPRI ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCBRDGGRL ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCBRDGGSIFS ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCBRDGGTO ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCBRDGIFS ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCBRDGRTS ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSADDR ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSCACHE ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSFD ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSHT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSIFCOST ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSIFFLGS ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSIFPRIO ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSMA ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSPRI ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSPROTO ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSTO ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSTXHC ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCDELMULTI ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCDIFADDR ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCDIFGROUP ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCDIFPHYADDR ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCDLIFADDR ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCGETKALIVE ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCGETLABEL ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCGETPFLOW ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCGETPFSYNC ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCGETSGCNT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCGETVIFCNT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCGHIWAT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCGIFADDR ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCGIFASYNCMAP ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCGIFBRDADDR ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCGIFCONF ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCGIFDATA ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCGIFDESCR ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCGIFDSTADDR ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCGIFFLAGS ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCGIFGATTR ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCGIFGENERIC ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCGIFGMEMB ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCGIFGROUP ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCGIFMEDIA ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCGIFMETRIC ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCGIFMTU ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCGIFNETMASK ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCGIFPDSTADDR ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCGIFPRIORITY ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCGIFPSRCADDR ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCGIFRDOMAIN ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCGIFRTLABEL ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCGIFTIMESLOT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCGIFXFLAGS ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCGLIFADDR ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCGLIFPHYADDR ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCGLIFPHYRTABLE ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCGLOWAT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCGPGRP ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCGVH ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCIFCREATE ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCIFDESTROY ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCIFGCLONERS ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCSETKALIVE ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCSETLABEL ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCSETPFLOW ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCSETPFSYNC ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCSHIWAT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCSIFADDR ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCSIFASYNCMAP ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCSIFBRDADDR ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCSIFDESCR ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCSIFDSTADDR ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCSIFFLAGS ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCSIFGATTR ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCSIFGENERIC ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCSIFLLADDR ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCSIFMEDIA ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCSIFMETRIC ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCSIFMTU ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCSIFNETMASK ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCSIFPHYADDR ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCSIFPRIORITY ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCSIFRDOMAIN ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCSIFRTLABEL ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCSIFTIMESLOT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCSIFXFLAGS ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCSLIFPHYADDR ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCSLIFPHYRTABLE ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCSLOWAT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCSPGRP ideal-int
+pkg syscall (openbsd-amd64-cgo), const SIOCSVH ideal-int
+pkg syscall (openbsd-amd64-cgo), const SOCK_RDM ideal-int
+pkg syscall (openbsd-amd64-cgo), const SO_ACCEPTCONN ideal-int
+pkg syscall (openbsd-amd64-cgo), const SO_BINDANY ideal-int
+pkg syscall (openbsd-amd64-cgo), const SO_DEBUG ideal-int
+pkg syscall (openbsd-amd64-cgo), const SO_ERROR ideal-int
+pkg syscall (openbsd-amd64-cgo), const SO_NETPROC ideal-int
+pkg syscall (openbsd-amd64-cgo), const SO_OOBINLINE ideal-int
+pkg syscall (openbsd-amd64-cgo), const SO_PEERCRED ideal-int
+pkg syscall (openbsd-amd64-cgo), const SO_RCVLOWAT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SO_RCVTIMEO ideal-int
+pkg syscall (openbsd-amd64-cgo), const SO_REUSEPORT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SO_RTABLE ideal-int
+pkg syscall (openbsd-amd64-cgo), const SO_SNDLOWAT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SO_SNDTIMEO ideal-int
+pkg syscall (openbsd-amd64-cgo), const SO_SPLICE ideal-int
+pkg syscall (openbsd-amd64-cgo), const SO_TIMESTAMP ideal-int
+pkg syscall (openbsd-amd64-cgo), const SO_TYPE ideal-int
+pkg syscall (openbsd-amd64-cgo), const SO_USELOOPBACK ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_ACCEPT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_ACCESS ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_ACCT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_ADJFREQ ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_ADJTIME ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_BIND ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_CHDIR ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_CHFLAGS ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_CHMOD ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_CHOWN ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_CHROOT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_CLOCK_GETRES ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_CLOCK_GETTIME ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_CLOCK_SETTIME ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_CLOSE ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_CLOSEFROM ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_CONNECT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_DUP ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_DUP2 ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_EXECVE ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_EXIT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_FACCESSAT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_FCHDIR ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_FCHFLAGS ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_FCHMOD ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_FCHMODAT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_FCHOWN ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_FCHOWNAT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_FCNTL ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_FHOPEN ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_FHSTAT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_FHSTATFS ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_FLOCK ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_FORK ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_FPATHCONF ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_FSTAT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_FSTATAT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_FSTATFS ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_FSYNC ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_FTRUNCATE ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_FUTIMENS ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_FUTIMES ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_GETDIRENTRIES ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_GETDTABLECOUNT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_GETEGID ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_GETEUID ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_GETFH ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_GETFSSTAT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_GETGID ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_GETGROUPS ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_GETITIMER ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_GETLOGIN ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_GETPEERNAME ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_GETPGID ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_GETPGRP ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_GETPID ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_GETPPID ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_GETPRIORITY ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_GETRESGID ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_GETRESUID ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_GETRLIMIT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_GETRTABLE ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_GETRUSAGE ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_GETSID ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_GETSOCKNAME ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_GETSOCKOPT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_GETTHRID ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_GETTIMEOFDAY ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_GETUID ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_IOCTL ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_ISSETUGID ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_KEVENT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_KILL ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_KQUEUE ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_KTRACE ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_LCHOWN ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_LINK ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_LINKAT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_LISTEN ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_LSEEK ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_LSTAT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_MADVISE ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_MINCORE ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_MINHERIT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_MKDIR ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_MKDIRAT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_MKFIFO ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_MKFIFOAT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_MKNOD ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_MKNODAT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_MLOCK ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_MLOCKALL ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_MMAP ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_MOUNT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_MPROTECT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_MQUERY ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_MSGCTL ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_MSGGET ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_MSGRCV ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_MSGSND ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_MSYNC ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_MUNLOCK ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_MUNLOCKALL ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_MUNMAP ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_NANOSLEEP ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_NFSSVC ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_OBREAK ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_OPEN ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_OPENAT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_PATHCONF ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_PIPE ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_POLL ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_PREAD ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_PREADV ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_PROFIL ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_PTRACE ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_PWRITE ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_PWRITEV ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_QUOTACTL ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_READ ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_READLINK ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_READLINKAT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_READV ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_REBOOT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_RECVFROM ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_RECVMSG ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_RENAME ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_RENAMEAT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_REVOKE ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_RMDIR ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_SCHED_YIELD ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_SELECT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_SEMGET ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_SEMOP ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_SENDMSG ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_SENDTO ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_SETEGID ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_SETEUID ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_SETGID ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_SETGROUPS ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_SETITIMER ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_SETLOGIN ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_SETPGID ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_SETPRIORITY ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_SETREGID ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_SETRESGID ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_SETRESUID ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_SETREUID ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_SETRLIMIT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_SETRTABLE ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_SETSID ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_SETSOCKOPT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_SETTIMEOFDAY ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_SETUID ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_SHMAT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_SHMCTL ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_SHMDT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_SHMGET ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_SHUTDOWN ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_SIGACTION ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_SIGALTSTACK ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_SIGPENDING ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_SIGPROCMASK ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_SIGRETURN ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_SIGSUSPEND ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_SOCKET ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_SOCKETPAIR ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_STAT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_STATFS ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_SWAPCTL ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_SYMLINK ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_SYMLINKAT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_SYNC ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_SYSARCH ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_TRUNCATE ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_UMASK ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_UNLINK ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_UNLINKAT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_UNMOUNT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_UTIMENSAT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_UTIMES ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_VFORK ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_WAIT4 ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_WRITE ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS_WRITEV ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS___GETCWD ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS___GET_TCB ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS___SEMCTL ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS___SET_TCB ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS___SYSCTL ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS___TFORK ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS___THREXIT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS___THRSIGDIVERT ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS___THRSLEEP ideal-int
+pkg syscall (openbsd-amd64-cgo), const SYS___THRWAKEUP ideal-int
+pkg syscall (openbsd-amd64-cgo), const SizeofBpfHdr ideal-int
+pkg syscall (openbsd-amd64-cgo), const SizeofBpfInsn ideal-int
+pkg syscall (openbsd-amd64-cgo), const SizeofBpfProgram ideal-int
+pkg syscall (openbsd-amd64-cgo), const SizeofBpfStat ideal-int
+pkg syscall (openbsd-amd64-cgo), const SizeofBpfVersion ideal-int
+pkg syscall (openbsd-amd64-cgo), const SizeofCmsghdr ideal-int
+pkg syscall (openbsd-amd64-cgo), const SizeofICMPv6Filter = 32
+pkg syscall (openbsd-amd64-cgo), const SizeofICMPv6Filter ideal-int
+pkg syscall (openbsd-amd64-cgo), const SizeofIPMreq ideal-int
+pkg syscall (openbsd-amd64-cgo), const SizeofIPv6MTUInfo = 32
+pkg syscall (openbsd-amd64-cgo), const SizeofIPv6MTUInfo ideal-int
+pkg syscall (openbsd-amd64-cgo), const SizeofIPv6Mreq ideal-int
+pkg syscall (openbsd-amd64-cgo), const SizeofIfAnnounceMsghdr ideal-int
+pkg syscall (openbsd-amd64-cgo), const SizeofIfData ideal-int
+pkg syscall (openbsd-amd64-cgo), const SizeofIfMsghdr ideal-int
+pkg syscall (openbsd-amd64-cgo), const SizeofIfaMsghdr ideal-int
+pkg syscall (openbsd-amd64-cgo), const SizeofInet6Pktinfo ideal-int
+pkg syscall (openbsd-amd64-cgo), const SizeofLinger ideal-int
+pkg syscall (openbsd-amd64-cgo), const SizeofMsghdr ideal-int
+pkg syscall (openbsd-amd64-cgo), const SizeofRtMetrics ideal-int
+pkg syscall (openbsd-amd64-cgo), const SizeofRtMsghdr ideal-int
+pkg syscall (openbsd-amd64-cgo), const SizeofSockaddrAny ideal-int
+pkg syscall (openbsd-amd64-cgo), const SizeofSockaddrDatalink ideal-int
+pkg syscall (openbsd-amd64-cgo), const SizeofSockaddrInet4 ideal-int
+pkg syscall (openbsd-amd64-cgo), const SizeofSockaddrInet6 ideal-int
+pkg syscall (openbsd-amd64-cgo), const SizeofSockaddrUnix ideal-int
+pkg syscall (openbsd-amd64-cgo), const TCIFLUSH ideal-int
+pkg syscall (openbsd-amd64-cgo), const TCIOFLUSH ideal-int
+pkg syscall (openbsd-amd64-cgo), const TCOFLUSH ideal-int
+pkg syscall (openbsd-amd64-cgo), const TCP_MAXBURST ideal-int
+pkg syscall (openbsd-amd64-cgo), const TCP_MAXSEG ideal-int
+pkg syscall (openbsd-amd64-cgo), const TCP_MAXWIN ideal-int
+pkg syscall (openbsd-amd64-cgo), const TCP_MAX_SACK ideal-int
+pkg syscall (openbsd-amd64-cgo), const TCP_MAX_WINSHIFT ideal-int
+pkg syscall (openbsd-amd64-cgo), const TCP_MD5SIG ideal-int
+pkg syscall (openbsd-amd64-cgo), const TCP_MSS ideal-int
+pkg syscall (openbsd-amd64-cgo), const TCP_NSTATES ideal-int
+pkg syscall (openbsd-amd64-cgo), const TCP_SACK_ENABLE ideal-int
+pkg syscall (openbsd-amd64-cgo), const TCSAFLUSH ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCCBRK ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCCDTR ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCCONS ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCDRAIN ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCEXCL ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCEXT ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCFLAG_CLOCAL ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCFLAG_CRTSCTS ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCFLAG_MDMBUF ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCFLAG_PPS ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCFLAG_SOFTCAR ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCFLUSH ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCGETA ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCGETD ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCGFLAGS ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCGPGRP ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCGTSTAMP ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCGWINSZ ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCMBIC ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCMBIS ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCMGET ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCMODG ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCMODS ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCMSET ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCM_CAR ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCM_CD ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCM_CTS ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCM_DSR ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCM_DTR ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCM_LE ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCM_RI ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCM_RNG ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCM_RTS ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCM_SR ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCM_ST ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCNOTTY ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCNXCL ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCOUTQ ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCPKT ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCPKT_DATA ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCPKT_DOSTOP ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCPKT_FLUSHREAD ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCPKT_FLUSHWRITE ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCPKT_IOCTL ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCPKT_NOSTOP ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCPKT_START ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCPKT_STOP ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCREMOTE ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCSBRK ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCSCTTY ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCSDTR ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCSETA ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCSETAF ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCSETAW ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCSETD ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCSFLAGS ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCSIG ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCSPGRP ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCSTART ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCSTAT ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCSTI ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCSTOP ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCSTSTAMP ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCSWINSZ ideal-int
+pkg syscall (openbsd-amd64-cgo), const TIOCUCNTL ideal-int
+pkg syscall (openbsd-amd64-cgo), const TOSTOP ideal-int
+pkg syscall (openbsd-amd64-cgo), const VDISCARD ideal-int
+pkg syscall (openbsd-amd64-cgo), const VDSUSP ideal-int
+pkg syscall (openbsd-amd64-cgo), const VEOF ideal-int
+pkg syscall (openbsd-amd64-cgo), const VEOL ideal-int
+pkg syscall (openbsd-amd64-cgo), const VEOL2 ideal-int
+pkg syscall (openbsd-amd64-cgo), const VERASE ideal-int
+pkg syscall (openbsd-amd64-cgo), const VINTR ideal-int
+pkg syscall (openbsd-amd64-cgo), const VKILL ideal-int
+pkg syscall (openbsd-amd64-cgo), const VLNEXT ideal-int
+pkg syscall (openbsd-amd64-cgo), const VMIN ideal-int
+pkg syscall (openbsd-amd64-cgo), const VQUIT ideal-int
+pkg syscall (openbsd-amd64-cgo), const VREPRINT ideal-int
+pkg syscall (openbsd-amd64-cgo), const VSTART ideal-int
+pkg syscall (openbsd-amd64-cgo), const VSTATUS ideal-int
+pkg syscall (openbsd-amd64-cgo), const VSTOP ideal-int
+pkg syscall (openbsd-amd64-cgo), const VSUSP ideal-int
+pkg syscall (openbsd-amd64-cgo), const VTIME ideal-int
+pkg syscall (openbsd-amd64-cgo), const VWERASE ideal-int
+pkg syscall (openbsd-amd64-cgo), const WALTSIG ideal-int
+pkg syscall (openbsd-amd64-cgo), const WCONTINUED ideal-int
+pkg syscall (openbsd-amd64-cgo), const WCOREFLAG ideal-int
+pkg syscall (openbsd-amd64-cgo), const WNOHANG ideal-int
+pkg syscall (openbsd-amd64-cgo), const WSTOPPED ideal-int
+pkg syscall (openbsd-amd64-cgo), const WUNTRACED ideal-int
+pkg syscall (openbsd-amd64-cgo), func Accept(int) (int, Sockaddr, error)
+pkg syscall (openbsd-amd64-cgo), func Access(string, uint32) error
+pkg syscall (openbsd-amd64-cgo), func Adjtime(*Timeval, *Timeval) error
+pkg syscall (openbsd-amd64-cgo), func Bind(int, Sockaddr) error
+pkg syscall (openbsd-amd64-cgo), func BpfBuflen(int) (int, error)
+pkg syscall (openbsd-amd64-cgo), func BpfDatalink(int) (int, error)
+pkg syscall (openbsd-amd64-cgo), func BpfHeadercmpl(int) (int, error)
+pkg syscall (openbsd-amd64-cgo), func BpfInterface(int, string) (string, error)
+pkg syscall (openbsd-amd64-cgo), func BpfJump(int, int, int, int) *BpfInsn
+pkg syscall (openbsd-amd64-cgo), func BpfStats(int) (*BpfStat, error)
+pkg syscall (openbsd-amd64-cgo), func BpfStmt(int, int) *BpfInsn
+pkg syscall (openbsd-amd64-cgo), func BpfTimeout(int) (*Timeval, error)
+pkg syscall (openbsd-amd64-cgo), func CheckBpfVersion(int) error
+pkg syscall (openbsd-amd64-cgo), func Chflags(string, int) error
+pkg syscall (openbsd-amd64-cgo), func Chroot(string) error
+pkg syscall (openbsd-amd64-cgo), func Close(int) error
+pkg syscall (openbsd-amd64-cgo), func CloseOnExec(int)
+pkg syscall (openbsd-amd64-cgo), func CmsgLen(int) int
+pkg syscall (openbsd-amd64-cgo), func CmsgSpace(int) int
+pkg syscall (openbsd-amd64-cgo), func Connect(int, Sockaddr) error
+pkg syscall (openbsd-amd64-cgo), func Dup(int) (int, error)
+pkg syscall (openbsd-amd64-cgo), func Dup2(int, int) error
+pkg syscall (openbsd-amd64-cgo), func Fchdir(int) error
+pkg syscall (openbsd-amd64-cgo), func Fchflags(int, int) error
+pkg syscall (openbsd-amd64-cgo), func Fchmod(int, uint32) error
+pkg syscall (openbsd-amd64-cgo), func Fchown(int, int, int) error
+pkg syscall (openbsd-amd64-cgo), func Flock(int, int) error
+pkg syscall (openbsd-amd64-cgo), func FlushBpf(int) error
+pkg syscall (openbsd-amd64-cgo), func ForkExec(string, []string, *ProcAttr) (int, error)
+pkg syscall (openbsd-amd64-cgo), func Fpathconf(int, int) (int, error)
+pkg syscall (openbsd-amd64-cgo), func Fstat(int, *Stat_t) error
+pkg syscall (openbsd-amd64-cgo), func Fstatfs(int, *Statfs_t) error
+pkg syscall (openbsd-amd64-cgo), func Fsync(int) error
+pkg syscall (openbsd-amd64-cgo), func Ftruncate(int, int64) error
+pkg syscall (openbsd-amd64-cgo), func Futimes(int, []Timeval) error
+pkg syscall (openbsd-amd64-cgo), func Getdirentries(int, []uint8, *uintptr) (int, error)
+pkg syscall (openbsd-amd64-cgo), func Getfsstat([]Statfs_t, int) (int, error)
+pkg syscall (openbsd-amd64-cgo), func Getpeername(int) (Sockaddr, error)
+pkg syscall (openbsd-amd64-cgo), func Getpgid(int) (int, error)
+pkg syscall (openbsd-amd64-cgo), func Getpgrp() int
+pkg syscall (openbsd-amd64-cgo), func Getpriority(int, int) (int, error)
+pkg syscall (openbsd-amd64-cgo), func Getrlimit(int, *Rlimit) error
+pkg syscall (openbsd-amd64-cgo), func Getrusage(int, *Rusage) error
+pkg syscall (openbsd-amd64-cgo), func Getsid(int) (int, error)
+pkg syscall (openbsd-amd64-cgo), func Getsockname(int) (Sockaddr, error)
+pkg syscall (openbsd-amd64-cgo), func GetsockoptByte(int, int, int) (uint8, error)
+pkg syscall (openbsd-amd64-cgo), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
+pkg syscall (openbsd-amd64-cgo), func GetsockoptIPMreq(int, int, int) (*IPMreq, error)
+pkg syscall (openbsd-amd64-cgo), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
+pkg syscall (openbsd-amd64-cgo), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error)
+pkg syscall (openbsd-amd64-cgo), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error)
+pkg syscall (openbsd-amd64-cgo), func GetsockoptInt(int, int, int) (int, error)
+pkg syscall (openbsd-amd64-cgo), func Issetugid() bool
+pkg syscall (openbsd-amd64-cgo), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error)
+pkg syscall (openbsd-amd64-cgo), func Kill(int, Signal) error
+pkg syscall (openbsd-amd64-cgo), func Kqueue() (int, error)
+pkg syscall (openbsd-amd64-cgo), func Listen(int, int) error
+pkg syscall (openbsd-amd64-cgo), func Lstat(string, *Stat_t) error
+pkg syscall (openbsd-amd64-cgo), func Mkfifo(string, uint32) error
+pkg syscall (openbsd-amd64-cgo), func Mknod(string, uint32, int) error
+pkg syscall (openbsd-amd64-cgo), func Mmap(int, int64, int, int, int) ([]uint8, error)
+pkg syscall (openbsd-amd64-cgo), func Munmap([]uint8) error
+pkg syscall (openbsd-amd64-cgo), func Nanosleep(*Timespec, *Timespec) error
+pkg syscall (openbsd-amd64-cgo), func Open(string, int, uint32) (int, error)
+pkg syscall (openbsd-amd64-cgo), func ParseDirent([]uint8, int, []string) (int, int, []string)
+pkg syscall (openbsd-amd64-cgo), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error)
+pkg syscall (openbsd-amd64-cgo), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error)
+pkg syscall (openbsd-amd64-cgo), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error)
+pkg syscall (openbsd-amd64-cgo), func ParseUnixRights(*SocketControlMessage) ([]int, error)
+pkg syscall (openbsd-amd64-cgo), func Pathconf(string, int) (int, error)
+pkg syscall (openbsd-amd64-cgo), func Pipe([]int) error
+pkg syscall (openbsd-amd64-cgo), func Pread(int, []uint8, int64) (int, error)
+pkg syscall (openbsd-amd64-cgo), func Pwrite(int, []uint8, int64) (int, error)
+pkg syscall (openbsd-amd64-cgo), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (openbsd-amd64-cgo), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (openbsd-amd64-cgo), func Read(int, []uint8) (int, error)
+pkg syscall (openbsd-amd64-cgo), func ReadDirent(int, []uint8) (int, error)
+pkg syscall (openbsd-amd64-cgo), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
+pkg syscall (openbsd-amd64-cgo), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
+pkg syscall (openbsd-amd64-cgo), func Revoke(string) error
+pkg syscall (openbsd-amd64-cgo), func RouteRIB(int, int) ([]uint8, error)
+pkg syscall (openbsd-amd64-cgo), func Seek(int, int64, int) (int64, error)
+pkg syscall (openbsd-amd64-cgo), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error
+pkg syscall (openbsd-amd64-cgo), func Sendfile(int, int, *int64, int) (int, error)
+pkg syscall (openbsd-amd64-cgo), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
+pkg syscall (openbsd-amd64-cgo), func Sendto(int, []uint8, int, Sockaddr) error
+pkg syscall (openbsd-amd64-cgo), func SetBpf(int, []BpfInsn) error
+pkg syscall (openbsd-amd64-cgo), func SetBpfBuflen(int, int) (int, error)
+pkg syscall (openbsd-amd64-cgo), func SetBpfDatalink(int, int) (int, error)
+pkg syscall (openbsd-amd64-cgo), func SetBpfHeadercmpl(int, int) error
+pkg syscall (openbsd-amd64-cgo), func SetBpfImmediate(int, int) error
+pkg syscall (openbsd-amd64-cgo), func SetBpfInterface(int, string) error
+pkg syscall (openbsd-amd64-cgo), func SetBpfPromisc(int, int) error
+pkg syscall (openbsd-amd64-cgo), func SetBpfTimeout(int, *Timeval) error
+pkg syscall (openbsd-amd64-cgo), func SetKevent(*Kevent_t, int, int, int)
+pkg syscall (openbsd-amd64-cgo), func SetNonblock(int, bool) error
+pkg syscall (openbsd-amd64-cgo), func Setegid(int) error
+pkg syscall (openbsd-amd64-cgo), func Seteuid(int) error
+pkg syscall (openbsd-amd64-cgo), func Setgid(int) error
+pkg syscall (openbsd-amd64-cgo), func Setgroups([]int) error
+pkg syscall (openbsd-amd64-cgo), func Setlogin(string) error
+pkg syscall (openbsd-amd64-cgo), func Setpgid(int, int) error
+pkg syscall (openbsd-amd64-cgo), func Setpriority(int, int, int) error
+pkg syscall (openbsd-amd64-cgo), func Setregid(int, int) error
+pkg syscall (openbsd-amd64-cgo), func Setreuid(int, int) error
+pkg syscall (openbsd-amd64-cgo), func Setrlimit(int, *Rlimit) error
+pkg syscall (openbsd-amd64-cgo), func Setsid() (int, error)
+pkg syscall (openbsd-amd64-cgo), func SetsockoptByte(int, int, int, uint8) error
+pkg syscall (openbsd-amd64-cgo), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
+pkg syscall (openbsd-amd64-cgo), func SetsockoptIPMreq(int, int, int, *IPMreq) error
+pkg syscall (openbsd-amd64-cgo), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error
+pkg syscall (openbsd-amd64-cgo), func SetsockoptInet4Addr(int, int, int, [4]uint8) error
+pkg syscall (openbsd-amd64-cgo), func SetsockoptInt(int, int, int, int) error
+pkg syscall (openbsd-amd64-cgo), func SetsockoptLinger(int, int, int, *Linger) error
+pkg syscall (openbsd-amd64-cgo), func SetsockoptString(int, int, int, string) error
+pkg syscall (openbsd-amd64-cgo), func SetsockoptTimeval(int, int, int, *Timeval) error
+pkg syscall (openbsd-amd64-cgo), func Settimeofday(*Timeval) error
+pkg syscall (openbsd-amd64-cgo), func Setuid(int) error
+pkg syscall (openbsd-amd64-cgo), func Shutdown(int, int) error
+pkg syscall (openbsd-amd64-cgo), func SlicePtrFromStrings([]string) ([]*uint8, error)
+pkg syscall (openbsd-amd64-cgo), func Socket(int, int, int) (int, error)
+pkg syscall (openbsd-amd64-cgo), func Socketpair(int, int, int) ([2]int, error)
+pkg syscall (openbsd-amd64-cgo), func Stat(string, *Stat_t) error
+pkg syscall (openbsd-amd64-cgo), func Statfs(string, *Statfs_t) error
+pkg syscall (openbsd-amd64-cgo), func StringSlicePtr([]string) []*uint8
+pkg syscall (openbsd-amd64-cgo), func Sync() error
+pkg syscall (openbsd-amd64-cgo), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (openbsd-amd64-cgo), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (openbsd-amd64-cgo), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (openbsd-amd64-cgo), func Sysctl(string) (string, error)
+pkg syscall (openbsd-amd64-cgo), func SysctlUint32(string) (uint32, error)
+pkg syscall (openbsd-amd64-cgo), func TimevalToNsec(Timeval) int64
+pkg syscall (openbsd-amd64-cgo), func Truncate(string, int64) error
+pkg syscall (openbsd-amd64-cgo), func Umask(int) int
+pkg syscall (openbsd-amd64-cgo), func UnixRights(...int) []uint8
+pkg syscall (openbsd-amd64-cgo), func Unmount(string, int) error
+pkg syscall (openbsd-amd64-cgo), func Wait4(int, *WaitStatus, int, *Rusage) (int, error)
+pkg syscall (openbsd-amd64-cgo), func Write(int, []uint8) (int, error)
+pkg syscall (openbsd-amd64-cgo), method (*Cmsghdr) SetLen(int)
+pkg syscall (openbsd-amd64-cgo), method (*Iovec) SetLen(int)
+pkg syscall (openbsd-amd64-cgo), method (*Msghdr) SetControllen(int)
+pkg syscall (openbsd-amd64-cgo), type BpfHdr struct
+pkg syscall (openbsd-amd64-cgo), type BpfHdr struct, Caplen uint32
+pkg syscall (openbsd-amd64-cgo), type BpfHdr struct, Datalen uint32
+pkg syscall (openbsd-amd64-cgo), type BpfHdr struct, Hdrlen uint16
+pkg syscall (openbsd-amd64-cgo), type BpfHdr struct, Pad_cgo_0 [2]uint8
+pkg syscall (openbsd-amd64-cgo), type BpfHdr struct, Tstamp BpfTimeval
+pkg syscall (openbsd-amd64-cgo), type BpfInsn struct
+pkg syscall (openbsd-amd64-cgo), type BpfInsn struct, Code uint16
+pkg syscall (openbsd-amd64-cgo), type BpfInsn struct, Jf uint8
+pkg syscall (openbsd-amd64-cgo), type BpfInsn struct, Jt uint8
+pkg syscall (openbsd-amd64-cgo), type BpfInsn struct, K uint32
+pkg syscall (openbsd-amd64-cgo), type BpfProgram struct
+pkg syscall (openbsd-amd64-cgo), type BpfProgram struct, Insns *BpfInsn
+pkg syscall (openbsd-amd64-cgo), type BpfProgram struct, Len uint32
+pkg syscall (openbsd-amd64-cgo), type BpfProgram struct, Pad_cgo_0 [4]uint8
+pkg syscall (openbsd-amd64-cgo), type BpfStat struct
+pkg syscall (openbsd-amd64-cgo), type BpfStat struct, Drop uint32
+pkg syscall (openbsd-amd64-cgo), type BpfStat struct, Recv uint32
+pkg syscall (openbsd-amd64-cgo), type BpfTimeval struct
+pkg syscall (openbsd-amd64-cgo), type BpfTimeval struct, Sec uint32
+pkg syscall (openbsd-amd64-cgo), type BpfTimeval struct, Usec uint32
+pkg syscall (openbsd-amd64-cgo), type BpfVersion struct
+pkg syscall (openbsd-amd64-cgo), type BpfVersion struct, Major uint16
+pkg syscall (openbsd-amd64-cgo), type BpfVersion struct, Minor uint16
+pkg syscall (openbsd-amd64-cgo), type Cmsghdr struct
+pkg syscall (openbsd-amd64-cgo), type Cmsghdr struct, Len uint32
+pkg syscall (openbsd-amd64-cgo), type Cmsghdr struct, Level int32
+pkg syscall (openbsd-amd64-cgo), type Cmsghdr struct, Type int32
+pkg syscall (openbsd-amd64-cgo), type Credential struct
+pkg syscall (openbsd-amd64-cgo), type Credential struct, Gid uint32
+pkg syscall (openbsd-amd64-cgo), type Credential struct, Groups []uint32
+pkg syscall (openbsd-amd64-cgo), type Credential struct, Uid uint32
+pkg syscall (openbsd-amd64-cgo), type Dirent struct
+pkg syscall (openbsd-amd64-cgo), type Dirent struct, Fileno uint32
+pkg syscall (openbsd-amd64-cgo), type Dirent struct, Name [256]int8
+pkg syscall (openbsd-amd64-cgo), type Dirent struct, Namlen uint8
+pkg syscall (openbsd-amd64-cgo), type Dirent struct, Reclen uint16
+pkg syscall (openbsd-amd64-cgo), type Dirent struct, Type uint8
+pkg syscall (openbsd-amd64-cgo), type FdSet struct
+pkg syscall (openbsd-amd64-cgo), type FdSet struct, Bits [32]int32
+pkg syscall (openbsd-amd64-cgo), type Flock_t struct
+pkg syscall (openbsd-amd64-cgo), type Flock_t struct, Len int64
+pkg syscall (openbsd-amd64-cgo), type Flock_t struct, Pid int32
+pkg syscall (openbsd-amd64-cgo), type Flock_t struct, Start int64
+pkg syscall (openbsd-amd64-cgo), type Flock_t struct, Type int16
+pkg syscall (openbsd-amd64-cgo), type Flock_t struct, Whence int16
+pkg syscall (openbsd-amd64-cgo), type Fsid struct
+pkg syscall (openbsd-amd64-cgo), type Fsid struct, Val [2]int32
+pkg syscall (openbsd-amd64-cgo), type ICMPv6Filter struct
+pkg syscall (openbsd-amd64-cgo), type ICMPv6Filter struct, Filt [8]uint32
+pkg syscall (openbsd-amd64-cgo), type IPv6MTUInfo struct
+pkg syscall (openbsd-amd64-cgo), type IPv6MTUInfo struct, Addr RawSockaddrInet6
+pkg syscall (openbsd-amd64-cgo), type IPv6MTUInfo struct, Mtu uint32
+pkg syscall (openbsd-amd64-cgo), type IfAnnounceMsghdr struct
+pkg syscall (openbsd-amd64-cgo), type IfAnnounceMsghdr struct, Hdrlen uint16
+pkg syscall (openbsd-amd64-cgo), type IfAnnounceMsghdr struct, Index uint16
+pkg syscall (openbsd-amd64-cgo), type IfAnnounceMsghdr struct, Msglen uint16
+pkg syscall (openbsd-amd64-cgo), type IfAnnounceMsghdr struct, Name [16]int8
+pkg syscall (openbsd-amd64-cgo), type IfAnnounceMsghdr struct, Type uint8
+pkg syscall (openbsd-amd64-cgo), type IfAnnounceMsghdr struct, Version uint8
+pkg syscall (openbsd-amd64-cgo), type IfAnnounceMsghdr struct, What uint16
+pkg syscall (openbsd-amd64-cgo), type IfData struct
+pkg syscall (openbsd-amd64-cgo), type IfData struct, Addrlen uint8
+pkg syscall (openbsd-amd64-cgo), type IfData struct, Baudrate uint64
+pkg syscall (openbsd-amd64-cgo), type IfData struct, Capabilities uint32
+pkg syscall (openbsd-amd64-cgo), type IfData struct, Collisions uint64
+pkg syscall (openbsd-amd64-cgo), type IfData struct, Hdrlen uint8
+pkg syscall (openbsd-amd64-cgo), type IfData struct, Ibytes uint64
+pkg syscall (openbsd-amd64-cgo), type IfData struct, Ierrors uint64
+pkg syscall (openbsd-amd64-cgo), type IfData struct, Imcasts uint64
+pkg syscall (openbsd-amd64-cgo), type IfData struct, Ipackets uint64
+pkg syscall (openbsd-amd64-cgo), type IfData struct, Iqdrops uint64
+pkg syscall (openbsd-amd64-cgo), type IfData struct, Lastchange Timeval
+pkg syscall (openbsd-amd64-cgo), type IfData struct, Link_state uint8
+pkg syscall (openbsd-amd64-cgo), type IfData struct, Mclpool [7]Mclpool
+pkg syscall (openbsd-amd64-cgo), type IfData struct, Metric uint32
+pkg syscall (openbsd-amd64-cgo), type IfData struct, Mtu uint32
+pkg syscall (openbsd-amd64-cgo), type IfData struct, Noproto uint64
+pkg syscall (openbsd-amd64-cgo), type IfData struct, Obytes uint64
+pkg syscall (openbsd-amd64-cgo), type IfData struct, Oerrors uint64
+pkg syscall (openbsd-amd64-cgo), type IfData struct, Omcasts uint64
+pkg syscall (openbsd-amd64-cgo), type IfData struct, Opackets uint64
+pkg syscall (openbsd-amd64-cgo), type IfData struct, Pad uint32
+pkg syscall (openbsd-amd64-cgo), type IfData struct, Pad_cgo_0 [4]uint8
+pkg syscall (openbsd-amd64-cgo), type IfData struct, Pad_cgo_1 [4]uint8
+pkg syscall (openbsd-amd64-cgo), type IfData struct, Type uint8
+pkg syscall (openbsd-amd64-cgo), type IfMsghdr struct
+pkg syscall (openbsd-amd64-cgo), type IfMsghdr struct, Addrs int32
+pkg syscall (openbsd-amd64-cgo), type IfMsghdr struct, Data IfData
+pkg syscall (openbsd-amd64-cgo), type IfMsghdr struct, Flags int32
+pkg syscall (openbsd-amd64-cgo), type IfMsghdr struct, Hdrlen uint16
+pkg syscall (openbsd-amd64-cgo), type IfMsghdr struct, Index uint16
+pkg syscall (openbsd-amd64-cgo), type IfMsghdr struct, Msglen uint16
+pkg syscall (openbsd-amd64-cgo), type IfMsghdr struct, Pad1 uint8
+pkg syscall (openbsd-amd64-cgo), type IfMsghdr struct, Pad2 uint8
+pkg syscall (openbsd-amd64-cgo), type IfMsghdr struct, Tableid uint16
+pkg syscall (openbsd-amd64-cgo), type IfMsghdr struct, Type uint8
+pkg syscall (openbsd-amd64-cgo), type IfMsghdr struct, Version uint8
+pkg syscall (openbsd-amd64-cgo), type IfMsghdr struct, Xflags int32
+pkg syscall (openbsd-amd64-cgo), type IfaMsghdr struct
+pkg syscall (openbsd-amd64-cgo), type IfaMsghdr struct, Addrs int32
+pkg syscall (openbsd-amd64-cgo), type IfaMsghdr struct, Flags int32
+pkg syscall (openbsd-amd64-cgo), type IfaMsghdr struct, Hdrlen uint16
+pkg syscall (openbsd-amd64-cgo), type IfaMsghdr struct, Index uint16
+pkg syscall (openbsd-amd64-cgo), type IfaMsghdr struct, Metric int32
+pkg syscall (openbsd-amd64-cgo), type IfaMsghdr struct, Msglen uint16
+pkg syscall (openbsd-amd64-cgo), type IfaMsghdr struct, Pad1 uint8
+pkg syscall (openbsd-amd64-cgo), type IfaMsghdr struct, Pad2 uint8
+pkg syscall (openbsd-amd64-cgo), type IfaMsghdr struct, Tableid uint16
+pkg syscall (openbsd-amd64-cgo), type IfaMsghdr struct, Type uint8
+pkg syscall (openbsd-amd64-cgo), type IfaMsghdr struct, Version uint8
+pkg syscall (openbsd-amd64-cgo), type Inet6Pktinfo struct
+pkg syscall (openbsd-amd64-cgo), type Inet6Pktinfo struct, Addr [16]uint8
+pkg syscall (openbsd-amd64-cgo), type Inet6Pktinfo struct, Ifindex uint32
+pkg syscall (openbsd-amd64-cgo), type InterfaceAddrMessage struct
+pkg syscall (openbsd-amd64-cgo), type InterfaceAddrMessage struct, Data []uint8
+pkg syscall (openbsd-amd64-cgo), type InterfaceAddrMessage struct, Header IfaMsghdr
+pkg syscall (openbsd-amd64-cgo), type InterfaceAnnounceMessage struct
+pkg syscall (openbsd-amd64-cgo), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr
+pkg syscall (openbsd-amd64-cgo), type InterfaceMessage struct
+pkg syscall (openbsd-amd64-cgo), type InterfaceMessage struct, Data []uint8
+pkg syscall (openbsd-amd64-cgo), type InterfaceMessage struct, Header IfMsghdr
+pkg syscall (openbsd-amd64-cgo), type Iovec struct
+pkg syscall (openbsd-amd64-cgo), type Iovec struct, Base *uint8
+pkg syscall (openbsd-amd64-cgo), type Iovec struct, Len uint64
+pkg syscall (openbsd-amd64-cgo), type Kevent_t struct
+pkg syscall (openbsd-amd64-cgo), type Kevent_t struct, Data int32
+pkg syscall (openbsd-amd64-cgo), type Kevent_t struct, Fflags uint32
+pkg syscall (openbsd-amd64-cgo), type Kevent_t struct, Filter int16
+pkg syscall (openbsd-amd64-cgo), type Kevent_t struct, Flags uint16
+pkg syscall (openbsd-amd64-cgo), type Kevent_t struct, Ident uint32
+pkg syscall (openbsd-amd64-cgo), type Kevent_t struct, Udata *uint8
+pkg syscall (openbsd-amd64-cgo), type Mclpool struct
+pkg syscall (openbsd-amd64-cgo), type Mclpool struct, Alive uint16
+pkg syscall (openbsd-amd64-cgo), type Mclpool struct, Cwm uint16
+pkg syscall (openbsd-amd64-cgo), type Mclpool struct, Grown uint32
+pkg syscall (openbsd-amd64-cgo), type Mclpool struct, Hwm uint16
+pkg syscall (openbsd-amd64-cgo), type Mclpool struct, Lwm uint16
+pkg syscall (openbsd-amd64-cgo), type Msghdr struct
+pkg syscall (openbsd-amd64-cgo), type Msghdr struct, Control *uint8
+pkg syscall (openbsd-amd64-cgo), type Msghdr struct, Controllen uint32
+pkg syscall (openbsd-amd64-cgo), type Msghdr struct, Flags int32
+pkg syscall (openbsd-amd64-cgo), type Msghdr struct, Iov *Iovec
+pkg syscall (openbsd-amd64-cgo), type Msghdr struct, Iovlen uint32
+pkg syscall (openbsd-amd64-cgo), type Msghdr struct, Name *uint8
+pkg syscall (openbsd-amd64-cgo), type Msghdr struct, Namelen uint32
+pkg syscall (openbsd-amd64-cgo), type Msghdr struct, Pad_cgo_0 [4]uint8
+pkg syscall (openbsd-amd64-cgo), type Msghdr struct, Pad_cgo_1 [4]uint8
+pkg syscall (openbsd-amd64-cgo), type RawSockaddr struct, Data [14]int8
+pkg syscall (openbsd-amd64-cgo), type RawSockaddr struct, Family uint8
+pkg syscall (openbsd-amd64-cgo), type RawSockaddr struct, Len uint8
+pkg syscall (openbsd-amd64-cgo), type RawSockaddrAny struct, Pad [92]int8
+pkg syscall (openbsd-amd64-cgo), type RawSockaddrDatalink struct
+pkg syscall (openbsd-amd64-cgo), type RawSockaddrDatalink struct, Alen uint8
+pkg syscall (openbsd-amd64-cgo), type RawSockaddrDatalink struct, Data [24]int8
+pkg syscall (openbsd-amd64-cgo), type RawSockaddrDatalink struct, Family uint8
+pkg syscall (openbsd-amd64-cgo), type RawSockaddrDatalink struct, Index uint16
+pkg syscall (openbsd-amd64-cgo), type RawSockaddrDatalink struct, Len uint8
+pkg syscall (openbsd-amd64-cgo), type RawSockaddrDatalink struct, Nlen uint8
+pkg syscall (openbsd-amd64-cgo), type RawSockaddrDatalink struct, Slen uint8
+pkg syscall (openbsd-amd64-cgo), type RawSockaddrDatalink struct, Type uint8
+pkg syscall (openbsd-amd64-cgo), type RawSockaddrInet4 struct, Family uint8
+pkg syscall (openbsd-amd64-cgo), type RawSockaddrInet4 struct, Len uint8
+pkg syscall (openbsd-amd64-cgo), type RawSockaddrInet4 struct, Zero [8]int8
+pkg syscall (openbsd-amd64-cgo), type RawSockaddrInet6 struct, Family uint8
+pkg syscall (openbsd-amd64-cgo), type RawSockaddrInet6 struct, Len uint8
+pkg syscall (openbsd-amd64-cgo), type RawSockaddrUnix struct
+pkg syscall (openbsd-amd64-cgo), type RawSockaddrUnix struct, Family uint8
+pkg syscall (openbsd-amd64-cgo), type RawSockaddrUnix struct, Len uint8
+pkg syscall (openbsd-amd64-cgo), type RawSockaddrUnix struct, Path [104]int8
+pkg syscall (openbsd-amd64-cgo), type Rlimit struct
+pkg syscall (openbsd-amd64-cgo), type Rlimit struct, Cur uint64
+pkg syscall (openbsd-amd64-cgo), type Rlimit struct, Max uint64
+pkg syscall (openbsd-amd64-cgo), type RouteMessage struct
+pkg syscall (openbsd-amd64-cgo), type RouteMessage struct, Data []uint8
+pkg syscall (openbsd-amd64-cgo), type RouteMessage struct, Header RtMsghdr
+pkg syscall (openbsd-amd64-cgo), type RoutingMessage interface, unexported methods
+pkg syscall (openbsd-amd64-cgo), type RtMetrics struct
+pkg syscall (openbsd-amd64-cgo), type RtMetrics struct, Expire uint32
+pkg syscall (openbsd-amd64-cgo), type RtMetrics struct, Hopcount uint32
+pkg syscall (openbsd-amd64-cgo), type RtMetrics struct, Locks uint32
+pkg syscall (openbsd-amd64-cgo), type RtMetrics struct, Mtu uint32
+pkg syscall (openbsd-amd64-cgo), type RtMetrics struct, Pksent uint64
+pkg syscall (openbsd-amd64-cgo), type RtMetrics struct, Recvpipe uint32
+pkg syscall (openbsd-amd64-cgo), type RtMetrics struct, Refcnt uint32
+pkg syscall (openbsd-amd64-cgo), type RtMetrics struct, Rtt uint32
+pkg syscall (openbsd-amd64-cgo), type RtMetrics struct, Rttvar uint32
+pkg syscall (openbsd-amd64-cgo), type RtMetrics struct, Sendpipe uint32
+pkg syscall (openbsd-amd64-cgo), type RtMetrics struct, Ssthresh uint32
+pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct
+pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct, Addrs int32
+pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct, Errno int32
+pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct, Flags int32
+pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct, Fmask int32
+pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct, Hdrlen uint16
+pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct, Index uint16
+pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct, Inits uint32
+pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct, Mpls uint8
+pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct, Msglen uint16
+pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct, Pid int32
+pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct, Priority uint8
+pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct, Rmx RtMetrics
+pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct, Seq int32
+pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct, Tableid uint16
+pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct, Type uint8
+pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct, Version uint8
+pkg syscall (openbsd-amd64-cgo), type Rusage struct, Idrss int64
+pkg syscall (openbsd-amd64-cgo), type Rusage struct, Inblock int64
+pkg syscall (openbsd-amd64-cgo), type Rusage struct, Isrss int64
+pkg syscall (openbsd-amd64-cgo), type Rusage struct, Ixrss int64
+pkg syscall (openbsd-amd64-cgo), type Rusage struct, Majflt int64
+pkg syscall (openbsd-amd64-cgo), type Rusage struct, Maxrss int64
+pkg syscall (openbsd-amd64-cgo), type Rusage struct, Minflt int64
+pkg syscall (openbsd-amd64-cgo), type Rusage struct, Msgrcv int64
+pkg syscall (openbsd-amd64-cgo), type Rusage struct, Msgsnd int64
+pkg syscall (openbsd-amd64-cgo), type Rusage struct, Nivcsw int64
+pkg syscall (openbsd-amd64-cgo), type Rusage struct, Nsignals int64
+pkg syscall (openbsd-amd64-cgo), type Rusage struct, Nswap int64
+pkg syscall (openbsd-amd64-cgo), type Rusage struct, Nvcsw int64
+pkg syscall (openbsd-amd64-cgo), type Rusage struct, Oublock int64
+pkg syscall (openbsd-amd64-cgo), type Rusage struct, Stime Timeval
+pkg syscall (openbsd-amd64-cgo), type Rusage struct, Utime Timeval
+pkg syscall (openbsd-amd64-cgo), type SockaddrDatalink struct
+pkg syscall (openbsd-amd64-cgo), type SockaddrDatalink struct, Alen uint8
+pkg syscall (openbsd-amd64-cgo), type SockaddrDatalink struct, Data [24]int8
+pkg syscall (openbsd-amd64-cgo), type SockaddrDatalink struct, Family uint8
+pkg syscall (openbsd-amd64-cgo), type SockaddrDatalink struct, Index uint16
+pkg syscall (openbsd-amd64-cgo), type SockaddrDatalink struct, Len uint8
+pkg syscall (openbsd-amd64-cgo), type SockaddrDatalink struct, Nlen uint8
+pkg syscall (openbsd-amd64-cgo), type SockaddrDatalink struct, Slen uint8
+pkg syscall (openbsd-amd64-cgo), type SockaddrDatalink struct, Type uint8
+pkg syscall (openbsd-amd64-cgo), type SocketControlMessage struct
+pkg syscall (openbsd-amd64-cgo), type SocketControlMessage struct, Data []uint8
+pkg syscall (openbsd-amd64-cgo), type SocketControlMessage struct, Header Cmsghdr
+pkg syscall (openbsd-amd64-cgo), type Stat_t struct
+pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Atim Timespec
+pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Blksize uint32
+pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Blocks int64
+pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Ctim Timespec
+pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Dev int32
+pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Flags uint32
+pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Gen uint32
+pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Gid uint32
+pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Ino uint32
+pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Lspare0 int32
+pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Lspare1 int32
+pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Mode uint32
+pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Mtim Timespec
+pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Nlink uint32
+pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Qspare [2]int64
+pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Rdev int32
+pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Size int64
+pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Uid uint32
+pkg syscall (openbsd-amd64-cgo), type Stat_t struct, X__st_birthtim Timespec
+pkg syscall (openbsd-amd64-cgo), type Statfs_t struct
+pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_asyncreads uint64
+pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_asyncwrites uint64
+pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_bavail int64
+pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_bfree uint64
+pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_blocks uint64
+pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_bsize uint32
+pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_ctime uint32
+pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_favail int64
+pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_ffree uint64
+pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_files uint64
+pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_flags uint32
+pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_fsid Fsid
+pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_fstypename [16]int8
+pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_iosize uint32
+pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_mntfromname [90]int8
+pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_mntonname [90]int8
+pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_namemax uint32
+pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_owner uint32
+pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_spare [3]uint32
+pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_syncreads uint64
+pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_syncwrites uint64
+pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, Mount_info [160]uint8
+pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, Pad_cgo_0 [4]uint8
+pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, Pad_cgo_1 [4]uint8
+pkg syscall (openbsd-amd64-cgo), type SysProcAttr struct, Chroot string
+pkg syscall (openbsd-amd64-cgo), type SysProcAttr struct, Credential *Credential
+pkg syscall (openbsd-amd64-cgo), type SysProcAttr struct, Noctty bool
+pkg syscall (openbsd-amd64-cgo), type SysProcAttr struct, Ptrace bool
+pkg syscall (openbsd-amd64-cgo), type SysProcAttr struct, Setctty bool
+pkg syscall (openbsd-amd64-cgo), type SysProcAttr struct, Setpgid bool
+pkg syscall (openbsd-amd64-cgo), type SysProcAttr struct, Setsid bool
+pkg syscall (openbsd-amd64-cgo), type Timespec struct, Nsec int64
+pkg syscall (openbsd-amd64-cgo), type Timespec struct, Pad_cgo_0 [4]uint8
+pkg syscall (openbsd-amd64-cgo), type Timespec struct, Sec int32
+pkg syscall (openbsd-amd64-cgo), type Timeval struct, Sec int64
+pkg syscall (openbsd-amd64-cgo), type Timeval struct, Usec int64
+pkg syscall (openbsd-amd64-cgo), type WaitStatus uint32
+pkg syscall (openbsd-amd64-cgo), var Stderr int
+pkg syscall (openbsd-amd64-cgo), var Stdin int
+pkg syscall (openbsd-amd64-cgo), var Stdout int
+pkg syscall (windows-386), const BASE_PROTOCOL = 1
+pkg syscall (windows-386), const BASE_PROTOCOL ideal-int
+pkg syscall (windows-386), const ERROR_HANDLE_EOF = 38
+pkg syscall (windows-386), const ERROR_HANDLE_EOF Errno
+pkg syscall (windows-386), const FILE_SKIP_COMPLETION_PORT_ON_SUCCESS = 1
+pkg syscall (windows-386), const FILE_SKIP_COMPLETION_PORT_ON_SUCCESS ideal-int
+pkg syscall (windows-386), const FILE_SKIP_SET_EVENT_ON_HANDLE = 2
+pkg syscall (windows-386), const FILE_SKIP_SET_EVENT_ON_HANDLE ideal-int
+pkg syscall (windows-386), const LAYERED_PROTOCOL = 0
+pkg syscall (windows-386), const LAYERED_PROTOCOL ideal-int
+pkg syscall (windows-386), const MAX_PROTOCOL_CHAIN = 7
+pkg syscall (windows-386), const MAX_PROTOCOL_CHAIN ideal-int
+pkg syscall (windows-386), const NetSetupDomainName = 3
+pkg syscall (windows-386), const NetSetupDomainName ideal-int
+pkg syscall (windows-386), const NetSetupUnjoined = 1
+pkg syscall (windows-386), const NetSetupUnjoined ideal-int
+pkg syscall (windows-386), const NetSetupUnknownStatus = 0
+pkg syscall (windows-386), const NetSetupUnknownStatus ideal-int
+pkg syscall (windows-386), const NetSetupWorkgroupName = 2
+pkg syscall (windows-386), const NetSetupWorkgroupName ideal-int
+pkg syscall (windows-386), const PFL_HIDDEN = 4
+pkg syscall (windows-386), const PFL_HIDDEN ideal-int
+pkg syscall (windows-386), const PFL_MATCHES_PROTOCOL_ZERO = 8
+pkg syscall (windows-386), const PFL_MATCHES_PROTOCOL_ZERO ideal-int
+pkg syscall (windows-386), const PFL_MULTIPLE_PROTO_ENTRIES = 1
+pkg syscall (windows-386), const PFL_MULTIPLE_PROTO_ENTRIES ideal-int
+pkg syscall (windows-386), const PFL_NETWORKDIRECT_PROVIDER = 16
+pkg syscall (windows-386), const PFL_NETWORKDIRECT_PROVIDER ideal-int
+pkg syscall (windows-386), const PFL_RECOMMENDED_PROTO_ENTRY = 2
+pkg syscall (windows-386), const PFL_RECOMMENDED_PROTO_ENTRY ideal-int
+pkg syscall (windows-386), const PROCESS_TERMINATE = 1
+pkg syscall (windows-386), const PROCESS_TERMINATE ideal-int
+pkg syscall (windows-386), const WSAEACCES = 10013
+pkg syscall (windows-386), const WSAEACCES Errno
+pkg syscall (windows-386), const WSAPROTOCOL_LEN = 255
+pkg syscall (windows-386), const WSAPROTOCOL_LEN ideal-int
+pkg syscall (windows-386), const XP1_CONNECTIONLESS = 1
+pkg syscall (windows-386), const XP1_CONNECTIONLESS ideal-int
+pkg syscall (windows-386), const XP1_CONNECT_DATA = 128
+pkg syscall (windows-386), const XP1_CONNECT_DATA ideal-int
+pkg syscall (windows-386), const XP1_DISCONNECT_DATA = 256
+pkg syscall (windows-386), const XP1_DISCONNECT_DATA ideal-int
+pkg syscall (windows-386), const XP1_EXPEDITED_DATA = 64
+pkg syscall (windows-386), const XP1_EXPEDITED_DATA ideal-int
+pkg syscall (windows-386), const XP1_GRACEFUL_CLOSE = 32
+pkg syscall (windows-386), const XP1_GRACEFUL_CLOSE ideal-int
+pkg syscall (windows-386), const XP1_GUARANTEED_DELIVERY = 2
+pkg syscall (windows-386), const XP1_GUARANTEED_DELIVERY ideal-int
+pkg syscall (windows-386), const XP1_GUARANTEED_ORDER = 4
+pkg syscall (windows-386), const XP1_GUARANTEED_ORDER ideal-int
+pkg syscall (windows-386), const XP1_IFS_HANDLES = 131072
+pkg syscall (windows-386), const XP1_IFS_HANDLES ideal-int
+pkg syscall (windows-386), const XP1_MESSAGE_ORIENTED = 8
+pkg syscall (windows-386), const XP1_MESSAGE_ORIENTED ideal-int
+pkg syscall (windows-386), const XP1_MULTIPOINT_CONTROL_PLANE = 2048
+pkg syscall (windows-386), const XP1_MULTIPOINT_CONTROL_PLANE ideal-int
+pkg syscall (windows-386), const XP1_MULTIPOINT_DATA_PLANE = 4096
+pkg syscall (windows-386), const XP1_MULTIPOINT_DATA_PLANE ideal-int
+pkg syscall (windows-386), const XP1_PARTIAL_MESSAGE = 262144
+pkg syscall (windows-386), const XP1_PARTIAL_MESSAGE ideal-int
+pkg syscall (windows-386), const XP1_PSEUDO_STREAM = 16
+pkg syscall (windows-386), const XP1_PSEUDO_STREAM ideal-int
+pkg syscall (windows-386), const XP1_QOS_SUPPORTED = 8192
+pkg syscall (windows-386), const XP1_QOS_SUPPORTED ideal-int
+pkg syscall (windows-386), const XP1_SAN_SUPPORT_SDP = 524288
+pkg syscall (windows-386), const XP1_SAN_SUPPORT_SDP ideal-int
+pkg syscall (windows-386), const XP1_SUPPORT_BROADCAST = 512
+pkg syscall (windows-386), const XP1_SUPPORT_BROADCAST ideal-int
+pkg syscall (windows-386), const XP1_SUPPORT_MULTIPOINT = 1024
+pkg syscall (windows-386), const XP1_SUPPORT_MULTIPOINT ideal-int
+pkg syscall (windows-386), const XP1_UNI_RECV = 65536
+pkg syscall (windows-386), const XP1_UNI_RECV ideal-int
+pkg syscall (windows-386), const XP1_UNI_SEND = 32768
+pkg syscall (windows-386), const XP1_UNI_SEND ideal-int
+pkg syscall (windows-386), func LoadSetFileCompletionNotificationModes() error
+pkg syscall (windows-386), func NetGetJoinInformation(*uint16, **uint16, *uint32) error
+pkg syscall (windows-386), func SetFileCompletionNotificationModes(Handle, uint8) error
+pkg syscall (windows-386), func WSAEnumProtocols(*int32, *WSAProtocolInfo, *uint32) (int32, error)
+pkg syscall (windows-386), type IpMaskString struct, String [16]uint8
+pkg syscall (windows-386), type WSAProtocolChain struct
+pkg syscall (windows-386), type WSAProtocolChain struct, ChainEntries [7]uint32
+pkg syscall (windows-386), type WSAProtocolChain struct, ChainLen int32
+pkg syscall (windows-386), type WSAProtocolInfo struct
+pkg syscall (windows-386), type WSAProtocolInfo struct, AddressFamily int32
+pkg syscall (windows-386), type WSAProtocolInfo struct, CatalogEntryId uint32
+pkg syscall (windows-386), type WSAProtocolInfo struct, MaxSockAddr int32
+pkg syscall (windows-386), type WSAProtocolInfo struct, MessageSize uint32
+pkg syscall (windows-386), type WSAProtocolInfo struct, MinSockAddr int32
+pkg syscall (windows-386), type WSAProtocolInfo struct, NetworkByteOrder int32
+pkg syscall (windows-386), type WSAProtocolInfo struct, Protocol int32
+pkg syscall (windows-386), type WSAProtocolInfo struct, ProtocolChain WSAProtocolChain
+pkg syscall (windows-386), type WSAProtocolInfo struct, ProtocolMaxOffset int32
+pkg syscall (windows-386), type WSAProtocolInfo struct, ProtocolName [256]uint16
+pkg syscall (windows-386), type WSAProtocolInfo struct, ProviderFlags uint32
+pkg syscall (windows-386), type WSAProtocolInfo struct, ProviderId GUID
+pkg syscall (windows-386), type WSAProtocolInfo struct, ProviderReserved uint32
+pkg syscall (windows-386), type WSAProtocolInfo struct, SecurityScheme int32
+pkg syscall (windows-386), type WSAProtocolInfo struct, ServiceFlags1 uint32
+pkg syscall (windows-386), type WSAProtocolInfo struct, ServiceFlags2 uint32
+pkg syscall (windows-386), type WSAProtocolInfo struct, ServiceFlags3 uint32
+pkg syscall (windows-386), type WSAProtocolInfo struct, ServiceFlags4 uint32
+pkg syscall (windows-386), type WSAProtocolInfo struct, SocketType int32
+pkg syscall (windows-386), type WSAProtocolInfo struct, Version int32
+pkg syscall (windows-amd64), const BASE_PROTOCOL = 1
+pkg syscall (windows-amd64), const BASE_PROTOCOL ideal-int
+pkg syscall (windows-amd64), const ERROR_HANDLE_EOF = 38
+pkg syscall (windows-amd64), const ERROR_HANDLE_EOF Errno
+pkg syscall (windows-amd64), const FILE_SKIP_COMPLETION_PORT_ON_SUCCESS = 1
+pkg syscall (windows-amd64), const FILE_SKIP_COMPLETION_PORT_ON_SUCCESS ideal-int
+pkg syscall (windows-amd64), const FILE_SKIP_SET_EVENT_ON_HANDLE = 2
+pkg syscall (windows-amd64), const FILE_SKIP_SET_EVENT_ON_HANDLE ideal-int
+pkg syscall (windows-amd64), const LAYERED_PROTOCOL = 0
+pkg syscall (windows-amd64), const LAYERED_PROTOCOL ideal-int
+pkg syscall (windows-amd64), const MAX_PROTOCOL_CHAIN = 7
+pkg syscall (windows-amd64), const MAX_PROTOCOL_CHAIN ideal-int
+pkg syscall (windows-amd64), const NetSetupDomainName = 3
+pkg syscall (windows-amd64), const NetSetupDomainName ideal-int
+pkg syscall (windows-amd64), const NetSetupUnjoined = 1
+pkg syscall (windows-amd64), const NetSetupUnjoined ideal-int
+pkg syscall (windows-amd64), const NetSetupUnknownStatus = 0
+pkg syscall (windows-amd64), const NetSetupUnknownStatus ideal-int
+pkg syscall (windows-amd64), const NetSetupWorkgroupName = 2
+pkg syscall (windows-amd64), const NetSetupWorkgroupName ideal-int
+pkg syscall (windows-amd64), const PFL_HIDDEN = 4
+pkg syscall (windows-amd64), const PFL_HIDDEN ideal-int
+pkg syscall (windows-amd64), const PFL_MATCHES_PROTOCOL_ZERO = 8
+pkg syscall (windows-amd64), const PFL_MATCHES_PROTOCOL_ZERO ideal-int
+pkg syscall (windows-amd64), const PFL_MULTIPLE_PROTO_ENTRIES = 1
+pkg syscall (windows-amd64), const PFL_MULTIPLE_PROTO_ENTRIES ideal-int
+pkg syscall (windows-amd64), const PFL_NETWORKDIRECT_PROVIDER = 16
+pkg syscall (windows-amd64), const PFL_NETWORKDIRECT_PROVIDER ideal-int
+pkg syscall (windows-amd64), const PFL_RECOMMENDED_PROTO_ENTRY = 2
+pkg syscall (windows-amd64), const PFL_RECOMMENDED_PROTO_ENTRY ideal-int
+pkg syscall (windows-amd64), const PROCESS_TERMINATE = 1
+pkg syscall (windows-amd64), const PROCESS_TERMINATE ideal-int
+pkg syscall (windows-amd64), const WSAEACCES = 10013
+pkg syscall (windows-amd64), const WSAEACCES Errno
+pkg syscall (windows-amd64), const WSAPROTOCOL_LEN = 255
+pkg syscall (windows-amd64), const WSAPROTOCOL_LEN ideal-int
+pkg syscall (windows-amd64), const XP1_CONNECTIONLESS = 1
+pkg syscall (windows-amd64), const XP1_CONNECTIONLESS ideal-int
+pkg syscall (windows-amd64), const XP1_CONNECT_DATA = 128
+pkg syscall (windows-amd64), const XP1_CONNECT_DATA ideal-int
+pkg syscall (windows-amd64), const XP1_DISCONNECT_DATA = 256
+pkg syscall (windows-amd64), const XP1_DISCONNECT_DATA ideal-int
+pkg syscall (windows-amd64), const XP1_EXPEDITED_DATA = 64
+pkg syscall (windows-amd64), const XP1_EXPEDITED_DATA ideal-int
+pkg syscall (windows-amd64), const XP1_GRACEFUL_CLOSE = 32
+pkg syscall (windows-amd64), const XP1_GRACEFUL_CLOSE ideal-int
+pkg syscall (windows-amd64), const XP1_GUARANTEED_DELIVERY = 2
+pkg syscall (windows-amd64), const XP1_GUARANTEED_DELIVERY ideal-int
+pkg syscall (windows-amd64), const XP1_GUARANTEED_ORDER = 4
+pkg syscall (windows-amd64), const XP1_GUARANTEED_ORDER ideal-int
+pkg syscall (windows-amd64), const XP1_IFS_HANDLES = 131072
+pkg syscall (windows-amd64), const XP1_IFS_HANDLES ideal-int
+pkg syscall (windows-amd64), const XP1_MESSAGE_ORIENTED = 8
+pkg syscall (windows-amd64), const XP1_MESSAGE_ORIENTED ideal-int
+pkg syscall (windows-amd64), const XP1_MULTIPOINT_CONTROL_PLANE = 2048
+pkg syscall (windows-amd64), const XP1_MULTIPOINT_CONTROL_PLANE ideal-int
+pkg syscall (windows-amd64), const XP1_MULTIPOINT_DATA_PLANE = 4096
+pkg syscall (windows-amd64), const XP1_MULTIPOINT_DATA_PLANE ideal-int
+pkg syscall (windows-amd64), const XP1_PARTIAL_MESSAGE = 262144
+pkg syscall (windows-amd64), const XP1_PARTIAL_MESSAGE ideal-int
+pkg syscall (windows-amd64), const XP1_PSEUDO_STREAM = 16
+pkg syscall (windows-amd64), const XP1_PSEUDO_STREAM ideal-int
+pkg syscall (windows-amd64), const XP1_QOS_SUPPORTED = 8192
+pkg syscall (windows-amd64), const XP1_QOS_SUPPORTED ideal-int
+pkg syscall (windows-amd64), const XP1_SAN_SUPPORT_SDP = 524288
+pkg syscall (windows-amd64), const XP1_SAN_SUPPORT_SDP ideal-int
+pkg syscall (windows-amd64), const XP1_SUPPORT_BROADCAST = 512
+pkg syscall (windows-amd64), const XP1_SUPPORT_BROADCAST ideal-int
+pkg syscall (windows-amd64), const XP1_SUPPORT_MULTIPOINT = 1024
+pkg syscall (windows-amd64), const XP1_SUPPORT_MULTIPOINT ideal-int
+pkg syscall (windows-amd64), const XP1_UNI_RECV = 65536
+pkg syscall (windows-amd64), const XP1_UNI_RECV ideal-int
+pkg syscall (windows-amd64), const XP1_UNI_SEND = 32768
+pkg syscall (windows-amd64), const XP1_UNI_SEND ideal-int
+pkg syscall (windows-amd64), func LoadSetFileCompletionNotificationModes() error
+pkg syscall (windows-amd64), func NetGetJoinInformation(*uint16, **uint16, *uint32) error
+pkg syscall (windows-amd64), func SetFileCompletionNotificationModes(Handle, uint8) error
+pkg syscall (windows-amd64), func WSAEnumProtocols(*int32, *WSAProtocolInfo, *uint32) (int32, error)
+pkg syscall (windows-amd64), type IpMaskString struct, String [16]uint8
+pkg syscall (windows-amd64), type WSAProtocolChain struct
+pkg syscall (windows-amd64), type WSAProtocolChain struct, ChainEntries [7]uint32
+pkg syscall (windows-amd64), type WSAProtocolChain struct, ChainLen int32
+pkg syscall (windows-amd64), type WSAProtocolInfo struct
+pkg syscall (windows-amd64), type WSAProtocolInfo struct, AddressFamily int32
+pkg syscall (windows-amd64), type WSAProtocolInfo struct, CatalogEntryId uint32
+pkg syscall (windows-amd64), type WSAProtocolInfo struct, MaxSockAddr int32
+pkg syscall (windows-amd64), type WSAProtocolInfo struct, MessageSize uint32
+pkg syscall (windows-amd64), type WSAProtocolInfo struct, MinSockAddr int32
+pkg syscall (windows-amd64), type WSAProtocolInfo struct, NetworkByteOrder int32
+pkg syscall (windows-amd64), type WSAProtocolInfo struct, Protocol int32
+pkg syscall (windows-amd64), type WSAProtocolInfo struct, ProtocolChain WSAProtocolChain
+pkg syscall (windows-amd64), type WSAProtocolInfo struct, ProtocolMaxOffset int32
+pkg syscall (windows-amd64), type WSAProtocolInfo struct, ProtocolName [256]uint16
+pkg syscall (windows-amd64), type WSAProtocolInfo struct, ProviderFlags uint32
+pkg syscall (windows-amd64), type WSAProtocolInfo struct, ProviderId GUID
+pkg syscall (windows-amd64), type WSAProtocolInfo struct, ProviderReserved uint32
+pkg syscall (windows-amd64), type WSAProtocolInfo struct, SecurityScheme int32
+pkg syscall (windows-amd64), type WSAProtocolInfo struct, ServiceFlags1 uint32
+pkg syscall (windows-amd64), type WSAProtocolInfo struct, ServiceFlags2 uint32
+pkg syscall (windows-amd64), type WSAProtocolInfo struct, ServiceFlags3 uint32
+pkg syscall (windows-amd64), type WSAProtocolInfo struct, ServiceFlags4 uint32
+pkg syscall (windows-amd64), type WSAProtocolInfo struct, SocketType int32
+pkg syscall (windows-amd64), type WSAProtocolInfo struct, Version int32
+pkg testing, func RegisterCover(Cover)
+pkg testing, type Cover struct
+pkg testing, type Cover struct, Blocks map[string][]CoverBlock
+pkg testing, type Cover struct, Counters map[string][]uint32
+pkg testing, type Cover struct, CoveredPackages string
+pkg testing, type Cover struct, Mode string
+pkg testing, type CoverBlock struct
+pkg testing, type CoverBlock struct, Col0 uint16
+pkg testing, type CoverBlock struct, Col1 uint16
+pkg testing, type CoverBlock struct, Line0 uint32
+pkg testing, type CoverBlock struct, Line1 uint32
+pkg testing, type CoverBlock struct, Stmts uint16
+pkg testing, type TB interface, Error(...interface{})
+pkg testing, type TB interface, Errorf(string, ...interface{})
+pkg testing, type TB interface, Fail()
+pkg testing, type TB interface, FailNow()
+pkg testing, type TB interface, Failed() bool
+pkg testing, type TB interface, Fatal(...interface{})
+pkg testing, type TB interface, Fatalf(string, ...interface{})
+pkg testing, type TB interface, Log(...interface{})
+pkg testing, type TB interface, Logf(string, ...interface{})
+pkg testing, type TB interface, Skip(...interface{})
+pkg testing, type TB interface, SkipNow()
+pkg testing, type TB interface, Skipf(string, ...interface{})
+pkg testing, type TB interface, Skipped() bool
+pkg testing, type TB interface, unexported methods
+pkg text/template, method (Template) Copy() *parse.Tree
+pkg text/template/parse, method (*Tree) Copy() *Tree
+pkg time, method (*Time) UnmarshalBinary([]uint8) error
+pkg time, method (*Time) UnmarshalText([]uint8) error
+pkg time, method (Time) MarshalBinary() ([]uint8, error)
+pkg time, method (Time) MarshalText() ([]uint8, error)
+pkg unicode, func In(int32, ...*RangeTable) bool
diff --git a/api/next.txt b/api/next.txt
index 879317f..e69de29 100644
--- a/api/next.txt
+++ b/api/next.txt
@@ -1,32479 +0,0 @@
-pkg archive/zip, func RegisterCompressor(uint16, Compressor)
-pkg archive/zip, func RegisterDecompressor(uint16, Decompressor)
-pkg archive/zip, method (*File) DataOffset() (int64, error)
-pkg archive/zip, type Compressor func(io.Writer) (io.WriteCloser, error)
-pkg archive/zip, type Decompressor func(io.Reader) io.ReadCloser
-pkg bufio, method (*Reader) Reset(io.Reader)
-pkg bufio, method (*Writer) Reset(io.Writer)
-pkg compress/flate, method (*Writer) Reset(io.Writer)
-pkg compress/gzip, method (*Writer) Reset(io.Writer)
-pkg compress/zlib, method (*Writer) Reset(io.Writer)
-pkg container/heap, func Fix(Interface, int)
-pkg container/list, method (*List) MoveAfter(*Element, *Element)
-pkg container/list, method (*List) MoveBefore(*Element, *Element)
-pkg crypto, type PublicKey interface {}
-pkg crypto/cipher, func NewGCM(Block) (AEAD, error)
-pkg crypto/cipher, type AEAD interface { NonceSize, Open, Overhead, Seal }
-pkg crypto/cipher, type AEAD interface, NonceSize() int
-pkg crypto/cipher, type AEAD interface, Open([]uint8, []uint8, []uint8, []uint8) ([]uint8, error)
-pkg crypto/cipher, type AEAD interface, Overhead() int
-pkg crypto/cipher, type AEAD interface, Seal([]uint8, []uint8, []uint8, []uint8) []uint8
-pkg crypto/md5, func Sum([]uint8) [16]uint8
-pkg crypto/rsa, const PSSSaltLengthAuto = 0
-pkg crypto/rsa, const PSSSaltLengthAuto ideal-int
-pkg crypto/rsa, const PSSSaltLengthEqualsHash = -1
-pkg crypto/rsa, const PSSSaltLengthEqualsHash ideal-int
-pkg crypto/rsa, func SignPSS(io.Reader, *PrivateKey, crypto.Hash, []uint8, *PSSOptions) ([]uint8, error)
-pkg crypto/rsa, func VerifyPSS(*PublicKey, crypto.Hash, []uint8, []uint8, *PSSOptions) error
-pkg crypto/rsa, type PSSOptions struct
-pkg crypto/rsa, type PSSOptions struct, SaltLength int
-pkg crypto/sha1, func Sum([]uint8) [20]uint8
-pkg crypto/sha256, func Sum224([]uint8) [28]uint8
-pkg crypto/sha256, func Sum256([]uint8) [32]uint8
-pkg crypto/sha512, func Sum384([]uint8) [48]uint8
-pkg crypto/sha512, func Sum512([]uint8) [64]uint8
-pkg crypto/subtle, func ConstantTimeLessOrEq(int, int) int
-pkg crypto/tls, const TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA = 49161
-pkg crypto/tls, const TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA uint16
-pkg crypto/tls, const TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 = 49195
-pkg crypto/tls, const TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 uint16
-pkg crypto/tls, const TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA = 49162
-pkg crypto/tls, const TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA uint16
-pkg crypto/tls, const TLS_ECDHE_ECDSA_WITH_RC4_128_SHA = 49159
-pkg crypto/tls, const TLS_ECDHE_ECDSA_WITH_RC4_128_SHA uint16
-pkg crypto/tls, const TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 = 49199
-pkg crypto/tls, const TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 uint16
-pkg crypto/tls, const VersionSSL30 = 768
-pkg crypto/tls, const VersionSSL30 ideal-int
-pkg crypto/tls, const VersionTLS10 = 769
-pkg crypto/tls, const VersionTLS10 ideal-int
-pkg crypto/tls, const VersionTLS11 = 770
-pkg crypto/tls, const VersionTLS11 ideal-int
-pkg crypto/tls, const VersionTLS12 = 771
-pkg crypto/tls, const VersionTLS12 ideal-int
-pkg crypto/tls, type Config struct, MaxVersion uint16
-pkg crypto/tls, type Config struct, MinVersion uint16
-pkg crypto/x509, func MarshalECPrivateKey(*ecdsa.PrivateKey) ([]uint8, error)
-pkg crypto/x509, type Certificate struct, CRLDistributionPoints []string
-pkg crypto/x509, type Certificate struct, Extensions []pkix.Extension
-pkg crypto/x509, type Certificate struct, ExtraExtensions []pkix.Extension
-pkg crypto/x509, type Certificate struct, IssuingCertificateURL []string
-pkg crypto/x509, type Certificate struct, OCSPServer []string
-pkg database/sql, method (*DB) SetMaxOpenConns(int)
-pkg encoding, type BinaryMarshaler interface { MarshalBinary }
-pkg encoding, type BinaryMarshaler interface, MarshalBinary() ([]uint8, error)
-pkg encoding, type BinaryUnmarshaler interface { UnmarshalBinary }
-pkg encoding, type BinaryUnmarshaler interface, UnmarshalBinary([]uint8) error
-pkg encoding, type TextMarshaler interface { MarshalText }
-pkg encoding, type TextMarshaler interface, MarshalText() ([]uint8, error)
-pkg encoding, type TextUnmarshaler interface { UnmarshalText }
-pkg encoding, type TextUnmarshaler interface, UnmarshalText([]uint8) error
-pkg encoding/xml, method (*Encoder) EncodeElement(interface{}, StartElement) error
-pkg encoding/xml, method (*Encoder) EncodeToken(Token) error
-pkg encoding/xml, method (*Encoder) Flush() error
-pkg encoding/xml, method (StartElement) End() EndElement
-pkg encoding/xml, type Marshaler interface { MarshalXML }
-pkg encoding/xml, type Marshaler interface, MarshalXML(*Encoder, StartElement) error
-pkg encoding/xml, type MarshalerAttr interface { MarshalXMLAttr }
-pkg encoding/xml, type MarshalerAttr interface, MarshalXMLAttr(Name) (Attr, error)
-pkg encoding/xml, type Unmarshaler interface { UnmarshalXML }
-pkg encoding/xml, type Unmarshaler interface, UnmarshalXML(*Decoder, StartElement) error
-pkg encoding/xml, type UnmarshalerAttr interface { UnmarshalXMLAttr }
-pkg encoding/xml, type UnmarshalerAttr interface, UnmarshalXMLAttr(Attr) error
-pkg flag, type Getter interface { Get, Set, String }
-pkg flag, type Getter interface, Get() interface{}
-pkg flag, type Getter interface, Set(string) error
-pkg flag, type Getter interface, String() string
-pkg flag, var CommandLine *FlagSet
-pkg go/ast, type SliceExpr struct, Max Expr
-pkg go/ast, type TypeAssertExpr struct, Lparen token.Pos
-pkg go/ast, type TypeAssertExpr struct, Rparen token.Pos
-pkg go/build, method (*Context) MatchFile(string, string) (bool, error)
-pkg go/build, type Package struct, AllTags []string
-pkg go/build, type Package struct, CXXFiles []string
-pkg go/build, type Package struct, CgoCPPFLAGS []string
-pkg go/build, type Package struct, CgoCXXFLAGS []string
-pkg go/build, type Package struct, ConflictDir string
-pkg go/token, method (*File) MergeLine(int)
-pkg html/template, type Template struct, Tree *parse.Tree
-pkg image/color/palette, var Plan9 []color.Color
-pkg image/color/palette, var WebSafe []color.Color
-pkg image/draw, method (Op) Draw(Image, image.Rectangle, image.Image, image.Point)
-pkg image/draw, type Drawer interface { Draw }
-pkg image/draw, type Drawer interface, Draw(Image, image.Rectangle, image.Image, image.Point)
-pkg image/draw, type Quantizer interface { Quantize }
-pkg image/draw, type Quantizer interface, Quantize(color.Palette, image.Image) color.Palette
-pkg image/draw, var FloydSteinberg Drawer
-pkg image/gif, func Encode(io.Writer, image.Image, *Options) error
-pkg image/gif, func EncodeAll(io.Writer, *GIF) error
-pkg image/gif, type Options struct
-pkg image/gif, type Options struct, Drawer draw.Drawer
-pkg image/gif, type Options struct, NumColors int
-pkg image/gif, type Options struct, Quantizer draw.Quantizer
-pkg log/syslog (freebsd-386-cgo), const LOG_ALERT Priority
-pkg log/syslog (freebsd-386-cgo), const LOG_AUTH Priority
-pkg log/syslog (freebsd-386-cgo), const LOG_AUTHPRIV Priority
-pkg log/syslog (freebsd-386-cgo), const LOG_CRIT Priority
-pkg log/syslog (freebsd-386-cgo), const LOG_CRON Priority
-pkg log/syslog (freebsd-386-cgo), const LOG_DAEMON Priority
-pkg log/syslog (freebsd-386-cgo), const LOG_DEBUG Priority
-pkg log/syslog (freebsd-386-cgo), const LOG_EMERG Priority
-pkg log/syslog (freebsd-386-cgo), const LOG_ERR Priority
-pkg log/syslog (freebsd-386-cgo), const LOG_FTP Priority
-pkg log/syslog (freebsd-386-cgo), const LOG_INFO Priority
-pkg log/syslog (freebsd-386-cgo), const LOG_KERN Priority
-pkg log/syslog (freebsd-386-cgo), const LOG_LOCAL0 Priority
-pkg log/syslog (freebsd-386-cgo), const LOG_LOCAL1 Priority
-pkg log/syslog (freebsd-386-cgo), const LOG_LOCAL2 Priority
-pkg log/syslog (freebsd-386-cgo), const LOG_LOCAL3 Priority
-pkg log/syslog (freebsd-386-cgo), const LOG_LOCAL4 Priority
-pkg log/syslog (freebsd-386-cgo), const LOG_LOCAL5 Priority
-pkg log/syslog (freebsd-386-cgo), const LOG_LOCAL6 Priority
-pkg log/syslog (freebsd-386-cgo), const LOG_LOCAL7 Priority
-pkg log/syslog (freebsd-386-cgo), const LOG_LPR Priority
-pkg log/syslog (freebsd-386-cgo), const LOG_MAIL Priority
-pkg log/syslog (freebsd-386-cgo), const LOG_NEWS Priority
-pkg log/syslog (freebsd-386-cgo), const LOG_NOTICE Priority
-pkg log/syslog (freebsd-386-cgo), const LOG_SYSLOG Priority
-pkg log/syslog (freebsd-386-cgo), const LOG_USER Priority
-pkg log/syslog (freebsd-386-cgo), const LOG_UUCP Priority
-pkg log/syslog (freebsd-386-cgo), const LOG_WARNING Priority
-pkg log/syslog (freebsd-386-cgo), func Dial(string, string, Priority, string) (*Writer, error)
-pkg log/syslog (freebsd-386-cgo), func New(Priority, string) (*Writer, error)
-pkg log/syslog (freebsd-386-cgo), func NewLogger(Priority, int) (*log.Logger, error)
-pkg log/syslog (freebsd-386-cgo), method (*Writer) Alert(string) error
-pkg log/syslog (freebsd-386-cgo), method (*Writer) Close() error
-pkg log/syslog (freebsd-386-cgo), method (*Writer) Crit(string) error
-pkg log/syslog (freebsd-386-cgo), method (*Writer) Debug(string) error
-pkg log/syslog (freebsd-386-cgo), method (*Writer) Emerg(string) error
-pkg log/syslog (freebsd-386-cgo), method (*Writer) Err(string) error
-pkg log/syslog (freebsd-386-cgo), method (*Writer) Info(string) error
-pkg log/syslog (freebsd-386-cgo), method (*Writer) Notice(string) error
-pkg log/syslog (freebsd-386-cgo), method (*Writer) Warning(string) error
-pkg log/syslog (freebsd-386-cgo), method (*Writer) Write([]uint8) (int, error)
-pkg log/syslog (freebsd-386-cgo), type Priority int
-pkg log/syslog (freebsd-386-cgo), type Writer struct
-pkg log/syslog (freebsd-amd64-cgo), const LOG_ALERT Priority
-pkg log/syslog (freebsd-amd64-cgo), const LOG_AUTH Priority
-pkg log/syslog (freebsd-amd64-cgo), const LOG_AUTHPRIV Priority
-pkg log/syslog (freebsd-amd64-cgo), const LOG_CRIT Priority
-pkg log/syslog (freebsd-amd64-cgo), const LOG_CRON Priority
-pkg log/syslog (freebsd-amd64-cgo), const LOG_DAEMON Priority
-pkg log/syslog (freebsd-amd64-cgo), const LOG_DEBUG Priority
-pkg log/syslog (freebsd-amd64-cgo), const LOG_EMERG Priority
-pkg log/syslog (freebsd-amd64-cgo), const LOG_ERR Priority
-pkg log/syslog (freebsd-amd64-cgo), const LOG_FTP Priority
-pkg log/syslog (freebsd-amd64-cgo), const LOG_INFO Priority
-pkg log/syslog (freebsd-amd64-cgo), const LOG_KERN Priority
-pkg log/syslog (freebsd-amd64-cgo), const LOG_LOCAL0 Priority
-pkg log/syslog (freebsd-amd64-cgo), const LOG_LOCAL1 Priority
-pkg log/syslog (freebsd-amd64-cgo), const LOG_LOCAL2 Priority
-pkg log/syslog (freebsd-amd64-cgo), const LOG_LOCAL3 Priority
-pkg log/syslog (freebsd-amd64-cgo), const LOG_LOCAL4 Priority
-pkg log/syslog (freebsd-amd64-cgo), const LOG_LOCAL5 Priority
-pkg log/syslog (freebsd-amd64-cgo), const LOG_LOCAL6 Priority
-pkg log/syslog (freebsd-amd64-cgo), const LOG_LOCAL7 Priority
-pkg log/syslog (freebsd-amd64-cgo), const LOG_LPR Priority
-pkg log/syslog (freebsd-amd64-cgo), const LOG_MAIL Priority
-pkg log/syslog (freebsd-amd64-cgo), const LOG_NEWS Priority
-pkg log/syslog (freebsd-amd64-cgo), const LOG_NOTICE Priority
-pkg log/syslog (freebsd-amd64-cgo), const LOG_SYSLOG Priority
-pkg log/syslog (freebsd-amd64-cgo), const LOG_USER Priority
-pkg log/syslog (freebsd-amd64-cgo), const LOG_UUCP Priority
-pkg log/syslog (freebsd-amd64-cgo), const LOG_WARNING Priority
-pkg log/syslog (freebsd-amd64-cgo), func Dial(string, string, Priority, string) (*Writer, error)
-pkg log/syslog (freebsd-amd64-cgo), func New(Priority, string) (*Writer, error)
-pkg log/syslog (freebsd-amd64-cgo), func NewLogger(Priority, int) (*log.Logger, error)
-pkg log/syslog (freebsd-amd64-cgo), method (*Writer) Alert(string) error
-pkg log/syslog (freebsd-amd64-cgo), method (*Writer) Close() error
-pkg log/syslog (freebsd-amd64-cgo), method (*Writer) Crit(string) error
-pkg log/syslog (freebsd-amd64-cgo), method (*Writer) Debug(string) error
-pkg log/syslog (freebsd-amd64-cgo), method (*Writer) Emerg(string) error
-pkg log/syslog (freebsd-amd64-cgo), method (*Writer) Err(string) error
-pkg log/syslog (freebsd-amd64-cgo), method (*Writer) Info(string) error
-pkg log/syslog (freebsd-amd64-cgo), method (*Writer) Notice(string) error
-pkg log/syslog (freebsd-amd64-cgo), method (*Writer) Warning(string) error
-pkg log/syslog (freebsd-amd64-cgo), method (*Writer) Write([]uint8) (int, error)
-pkg log/syslog (freebsd-amd64-cgo), type Priority int
-pkg log/syslog (freebsd-amd64-cgo), type Writer struct
-pkg log/syslog (freebsd-arm), const LOG_ALERT Priority
-pkg log/syslog (freebsd-arm), const LOG_AUTH Priority
-pkg log/syslog (freebsd-arm), const LOG_AUTHPRIV Priority
-pkg log/syslog (freebsd-arm), const LOG_CRIT Priority
-pkg log/syslog (freebsd-arm), const LOG_CRON Priority
-pkg log/syslog (freebsd-arm), const LOG_DAEMON Priority
-pkg log/syslog (freebsd-arm), const LOG_DEBUG Priority
-pkg log/syslog (freebsd-arm), const LOG_EMERG Priority
-pkg log/syslog (freebsd-arm), const LOG_ERR Priority
-pkg log/syslog (freebsd-arm), const LOG_FTP Priority
-pkg log/syslog (freebsd-arm), const LOG_INFO Priority
-pkg log/syslog (freebsd-arm), const LOG_KERN Priority
-pkg log/syslog (freebsd-arm), const LOG_LOCAL0 Priority
-pkg log/syslog (freebsd-arm), const LOG_LOCAL1 Priority
-pkg log/syslog (freebsd-arm), const LOG_LOCAL2 Priority
-pkg log/syslog (freebsd-arm), const LOG_LOCAL3 Priority
-pkg log/syslog (freebsd-arm), const LOG_LOCAL4 Priority
-pkg log/syslog (freebsd-arm), const LOG_LOCAL5 Priority
-pkg log/syslog (freebsd-arm), const LOG_LOCAL6 Priority
-pkg log/syslog (freebsd-arm), const LOG_LOCAL7 Priority
-pkg log/syslog (freebsd-arm), const LOG_LPR Priority
-pkg log/syslog (freebsd-arm), const LOG_MAIL Priority
-pkg log/syslog (freebsd-arm), const LOG_NEWS Priority
-pkg log/syslog (freebsd-arm), const LOG_NOTICE Priority
-pkg log/syslog (freebsd-arm), const LOG_SYSLOG Priority
-pkg log/syslog (freebsd-arm), const LOG_USER Priority
-pkg log/syslog (freebsd-arm), const LOG_UUCP Priority
-pkg log/syslog (freebsd-arm), const LOG_WARNING Priority
-pkg log/syslog (freebsd-arm), func Dial(string, string, Priority, string) (*Writer, error)
-pkg log/syslog (freebsd-arm), func New(Priority, string) (*Writer, error)
-pkg log/syslog (freebsd-arm), func NewLogger(Priority, int) (*log.Logger, error)
-pkg log/syslog (freebsd-arm), method (*Writer) Alert(string) error
-pkg log/syslog (freebsd-arm), method (*Writer) Close() error
-pkg log/syslog (freebsd-arm), method (*Writer) Crit(string) error
-pkg log/syslog (freebsd-arm), method (*Writer) Debug(string) error
-pkg log/syslog (freebsd-arm), method (*Writer) Emerg(string) error
-pkg log/syslog (freebsd-arm), method (*Writer) Err(string) error
-pkg log/syslog (freebsd-arm), method (*Writer) Info(string) error
-pkg log/syslog (freebsd-arm), method (*Writer) Notice(string) error
-pkg log/syslog (freebsd-arm), method (*Writer) Warning(string) error
-pkg log/syslog (freebsd-arm), method (*Writer) Write([]uint8) (int, error)
-pkg log/syslog (freebsd-arm), type Priority int
-pkg log/syslog (freebsd-arm), type Writer struct
-pkg log/syslog (freebsd-arm-cgo), const LOG_ALERT Priority
-pkg log/syslog (freebsd-arm-cgo), const LOG_AUTH Priority
-pkg log/syslog (freebsd-arm-cgo), const LOG_AUTHPRIV Priority
-pkg log/syslog (freebsd-arm-cgo), const LOG_CRIT Priority
-pkg log/syslog (freebsd-arm-cgo), const LOG_CRON Priority
-pkg log/syslog (freebsd-arm-cgo), const LOG_DAEMON Priority
-pkg log/syslog (freebsd-arm-cgo), const LOG_DEBUG Priority
-pkg log/syslog (freebsd-arm-cgo), const LOG_EMERG Priority
-pkg log/syslog (freebsd-arm-cgo), const LOG_ERR Priority
-pkg log/syslog (freebsd-arm-cgo), const LOG_FTP Priority
-pkg log/syslog (freebsd-arm-cgo), const LOG_INFO Priority
-pkg log/syslog (freebsd-arm-cgo), const LOG_KERN Priority
-pkg log/syslog (freebsd-arm-cgo), const LOG_LOCAL0 Priority
-pkg log/syslog (freebsd-arm-cgo), const LOG_LOCAL1 Priority
-pkg log/syslog (freebsd-arm-cgo), const LOG_LOCAL2 Priority
-pkg log/syslog (freebsd-arm-cgo), const LOG_LOCAL3 Priority
-pkg log/syslog (freebsd-arm-cgo), const LOG_LOCAL4 Priority
-pkg log/syslog (freebsd-arm-cgo), const LOG_LOCAL5 Priority
-pkg log/syslog (freebsd-arm-cgo), const LOG_LOCAL6 Priority
-pkg log/syslog (freebsd-arm-cgo), const LOG_LOCAL7 Priority
-pkg log/syslog (freebsd-arm-cgo), const LOG_LPR Priority
-pkg log/syslog (freebsd-arm-cgo), const LOG_MAIL Priority
-pkg log/syslog (freebsd-arm-cgo), const LOG_NEWS Priority
-pkg log/syslog (freebsd-arm-cgo), const LOG_NOTICE Priority
-pkg log/syslog (freebsd-arm-cgo), const LOG_SYSLOG Priority
-pkg log/syslog (freebsd-arm-cgo), const LOG_USER Priority
-pkg log/syslog (freebsd-arm-cgo), const LOG_UUCP Priority
-pkg log/syslog (freebsd-arm-cgo), const LOG_WARNING Priority
-pkg log/syslog (freebsd-arm-cgo), func Dial(string, string, Priority, string) (*Writer, error)
-pkg log/syslog (freebsd-arm-cgo), func New(Priority, string) (*Writer, error)
-pkg log/syslog (freebsd-arm-cgo), func NewLogger(Priority, int) (*log.Logger, error)
-pkg log/syslog (freebsd-arm-cgo), method (*Writer) Alert(string) error
-pkg log/syslog (freebsd-arm-cgo), method (*Writer) Close() error
-pkg log/syslog (freebsd-arm-cgo), method (*Writer) Crit(string) error
-pkg log/syslog (freebsd-arm-cgo), method (*Writer) Debug(string) error
-pkg log/syslog (freebsd-arm-cgo), method (*Writer) Emerg(string) error
-pkg log/syslog (freebsd-arm-cgo), method (*Writer) Err(string) error
-pkg log/syslog (freebsd-arm-cgo), method (*Writer) Info(string) error
-pkg log/syslog (freebsd-arm-cgo), method (*Writer) Notice(string) error
-pkg log/syslog (freebsd-arm-cgo), method (*Writer) Warning(string) error
-pkg log/syslog (freebsd-arm-cgo), method (*Writer) Write([]uint8) (int, error)
-pkg log/syslog (freebsd-arm-cgo), type Priority int
-pkg log/syslog (freebsd-arm-cgo), type Writer struct
-pkg log/syslog (linux-arm-cgo), const LOG_ALERT Priority
-pkg log/syslog (linux-arm-cgo), const LOG_AUTH Priority
-pkg log/syslog (linux-arm-cgo), const LOG_AUTHPRIV Priority
-pkg log/syslog (linux-arm-cgo), const LOG_CRIT Priority
-pkg log/syslog (linux-arm-cgo), const LOG_CRON Priority
-pkg log/syslog (linux-arm-cgo), const LOG_DAEMON Priority
-pkg log/syslog (linux-arm-cgo), const LOG_DEBUG Priority
-pkg log/syslog (linux-arm-cgo), const LOG_EMERG Priority
-pkg log/syslog (linux-arm-cgo), const LOG_ERR Priority
-pkg log/syslog (linux-arm-cgo), const LOG_FTP Priority
-pkg log/syslog (linux-arm-cgo), const LOG_INFO Priority
-pkg log/syslog (linux-arm-cgo), const LOG_KERN Priority
-pkg log/syslog (linux-arm-cgo), const LOG_LOCAL0 Priority
-pkg log/syslog (linux-arm-cgo), const LOG_LOCAL1 Priority
-pkg log/syslog (linux-arm-cgo), const LOG_LOCAL2 Priority
-pkg log/syslog (linux-arm-cgo), const LOG_LOCAL3 Priority
-pkg log/syslog (linux-arm-cgo), const LOG_LOCAL4 Priority
-pkg log/syslog (linux-arm-cgo), const LOG_LOCAL5 Priority
-pkg log/syslog (linux-arm-cgo), const LOG_LOCAL6 Priority
-pkg log/syslog (linux-arm-cgo), const LOG_LOCAL7 Priority
-pkg log/syslog (linux-arm-cgo), const LOG_LPR Priority
-pkg log/syslog (linux-arm-cgo), const LOG_MAIL Priority
-pkg log/syslog (linux-arm-cgo), const LOG_NEWS Priority
-pkg log/syslog (linux-arm-cgo), const LOG_NOTICE Priority
-pkg log/syslog (linux-arm-cgo), const LOG_SYSLOG Priority
-pkg log/syslog (linux-arm-cgo), const LOG_USER Priority
-pkg log/syslog (linux-arm-cgo), const LOG_UUCP Priority
-pkg log/syslog (linux-arm-cgo), const LOG_WARNING Priority
-pkg log/syslog (linux-arm-cgo), func Dial(string, string, Priority, string) (*Writer, error)
-pkg log/syslog (linux-arm-cgo), func New(Priority, string) (*Writer, error)
-pkg log/syslog (linux-arm-cgo), func NewLogger(Priority, int) (*log.Logger, error)
-pkg log/syslog (linux-arm-cgo), method (*Writer) Alert(string) error
-pkg log/syslog (linux-arm-cgo), method (*Writer) Close() error
-pkg log/syslog (linux-arm-cgo), method (*Writer) Crit(string) error
-pkg log/syslog (linux-arm-cgo), method (*Writer) Debug(string) error
-pkg log/syslog (linux-arm-cgo), method (*Writer) Emerg(string) error
-pkg log/syslog (linux-arm-cgo), method (*Writer) Err(string) error
-pkg log/syslog (linux-arm-cgo), method (*Writer) Info(string) error
-pkg log/syslog (linux-arm-cgo), method (*Writer) Notice(string) error
-pkg log/syslog (linux-arm-cgo), method (*Writer) Warning(string) error
-pkg log/syslog (linux-arm-cgo), method (*Writer) Write([]uint8) (int, error)
-pkg log/syslog (linux-arm-cgo), type Priority int
-pkg log/syslog (linux-arm-cgo), type Writer struct
-pkg log/syslog (netbsd-386), const LOG_ALERT Priority
-pkg log/syslog (netbsd-386), const LOG_AUTH Priority
-pkg log/syslog (netbsd-386), const LOG_AUTHPRIV Priority
-pkg log/syslog (netbsd-386), const LOG_CRIT Priority
-pkg log/syslog (netbsd-386), const LOG_CRON Priority
-pkg log/syslog (netbsd-386), const LOG_DAEMON Priority
-pkg log/syslog (netbsd-386), const LOG_DEBUG Priority
-pkg log/syslog (netbsd-386), const LOG_EMERG Priority
-pkg log/syslog (netbsd-386), const LOG_ERR Priority
-pkg log/syslog (netbsd-386), const LOG_FTP Priority
-pkg log/syslog (netbsd-386), const LOG_INFO Priority
-pkg log/syslog (netbsd-386), const LOG_KERN Priority
-pkg log/syslog (netbsd-386), const LOG_LOCAL0 Priority
-pkg log/syslog (netbsd-386), const LOG_LOCAL1 Priority
-pkg log/syslog (netbsd-386), const LOG_LOCAL2 Priority
-pkg log/syslog (netbsd-386), const LOG_LOCAL3 Priority
-pkg log/syslog (netbsd-386), const LOG_LOCAL4 Priority
-pkg log/syslog (netbsd-386), const LOG_LOCAL5 Priority
-pkg log/syslog (netbsd-386), const LOG_LOCAL6 Priority
-pkg log/syslog (netbsd-386), const LOG_LOCAL7 Priority
-pkg log/syslog (netbsd-386), const LOG_LPR Priority
-pkg log/syslog (netbsd-386), const LOG_MAIL Priority
-pkg log/syslog (netbsd-386), const LOG_NEWS Priority
-pkg log/syslog (netbsd-386), const LOG_NOTICE Priority
-pkg log/syslog (netbsd-386), const LOG_SYSLOG Priority
-pkg log/syslog (netbsd-386), const LOG_USER Priority
-pkg log/syslog (netbsd-386), const LOG_UUCP Priority
-pkg log/syslog (netbsd-386), const LOG_WARNING Priority
-pkg log/syslog (netbsd-386), func Dial(string, string, Priority, string) (*Writer, error)
-pkg log/syslog (netbsd-386), func New(Priority, string) (*Writer, error)
-pkg log/syslog (netbsd-386), func NewLogger(Priority, int) (*log.Logger, error)
-pkg log/syslog (netbsd-386), method (*Writer) Alert(string) error
-pkg log/syslog (netbsd-386), method (*Writer) Close() error
-pkg log/syslog (netbsd-386), method (*Writer) Crit(string) error
-pkg log/syslog (netbsd-386), method (*Writer) Debug(string) error
-pkg log/syslog (netbsd-386), method (*Writer) Emerg(string) error
-pkg log/syslog (netbsd-386), method (*Writer) Err(string) error
-pkg log/syslog (netbsd-386), method (*Writer) Info(string) error
-pkg log/syslog (netbsd-386), method (*Writer) Notice(string) error
-pkg log/syslog (netbsd-386), method (*Writer) Warning(string) error
-pkg log/syslog (netbsd-386), method (*Writer) Write([]uint8) (int, error)
-pkg log/syslog (netbsd-386), type Priority int
-pkg log/syslog (netbsd-386), type Writer struct
-pkg log/syslog (netbsd-386-cgo), const LOG_ALERT Priority
-pkg log/syslog (netbsd-386-cgo), const LOG_AUTH Priority
-pkg log/syslog (netbsd-386-cgo), const LOG_AUTHPRIV Priority
-pkg log/syslog (netbsd-386-cgo), const LOG_CRIT Priority
-pkg log/syslog (netbsd-386-cgo), const LOG_CRON Priority
-pkg log/syslog (netbsd-386-cgo), const LOG_DAEMON Priority
-pkg log/syslog (netbsd-386-cgo), const LOG_DEBUG Priority
-pkg log/syslog (netbsd-386-cgo), const LOG_EMERG Priority
-pkg log/syslog (netbsd-386-cgo), const LOG_ERR Priority
-pkg log/syslog (netbsd-386-cgo), const LOG_FTP Priority
-pkg log/syslog (netbsd-386-cgo), const LOG_INFO Priority
-pkg log/syslog (netbsd-386-cgo), const LOG_KERN Priority
-pkg log/syslog (netbsd-386-cgo), const LOG_LOCAL0 Priority
-pkg log/syslog (netbsd-386-cgo), const LOG_LOCAL1 Priority
-pkg log/syslog (netbsd-386-cgo), const LOG_LOCAL2 Priority
-pkg log/syslog (netbsd-386-cgo), const LOG_LOCAL3 Priority
-pkg log/syslog (netbsd-386-cgo), const LOG_LOCAL4 Priority
-pkg log/syslog (netbsd-386-cgo), const LOG_LOCAL5 Priority
-pkg log/syslog (netbsd-386-cgo), const LOG_LOCAL6 Priority
-pkg log/syslog (netbsd-386-cgo), const LOG_LOCAL7 Priority
-pkg log/syslog (netbsd-386-cgo), const LOG_LPR Priority
-pkg log/syslog (netbsd-386-cgo), const LOG_MAIL Priority
-pkg log/syslog (netbsd-386-cgo), const LOG_NEWS Priority
-pkg log/syslog (netbsd-386-cgo), const LOG_NOTICE Priority
-pkg log/syslog (netbsd-386-cgo), const LOG_SYSLOG Priority
-pkg log/syslog (netbsd-386-cgo), const LOG_USER Priority
-pkg log/syslog (netbsd-386-cgo), const LOG_UUCP Priority
-pkg log/syslog (netbsd-386-cgo), const LOG_WARNING Priority
-pkg log/syslog (netbsd-386-cgo), func Dial(string, string, Priority, string) (*Writer, error)
-pkg log/syslog (netbsd-386-cgo), func New(Priority, string) (*Writer, error)
-pkg log/syslog (netbsd-386-cgo), func NewLogger(Priority, int) (*log.Logger, error)
-pkg log/syslog (netbsd-386-cgo), method (*Writer) Alert(string) error
-pkg log/syslog (netbsd-386-cgo), method (*Writer) Close() error
-pkg log/syslog (netbsd-386-cgo), method (*Writer) Crit(string) error
-pkg log/syslog (netbsd-386-cgo), method (*Writer) Debug(string) error
-pkg log/syslog (netbsd-386-cgo), method (*Writer) Emerg(string) error
-pkg log/syslog (netbsd-386-cgo), method (*Writer) Err(string) error
-pkg log/syslog (netbsd-386-cgo), method (*Writer) Info(string) error
-pkg log/syslog (netbsd-386-cgo), method (*Writer) Notice(string) error
-pkg log/syslog (netbsd-386-cgo), method (*Writer) Warning(string) error
-pkg log/syslog (netbsd-386-cgo), method (*Writer) Write([]uint8) (int, error)
-pkg log/syslog (netbsd-386-cgo), type Priority int
-pkg log/syslog (netbsd-386-cgo), type Writer struct
-pkg log/syslog (netbsd-amd64), const LOG_ALERT Priority
-pkg log/syslog (netbsd-amd64), const LOG_AUTH Priority
-pkg log/syslog (netbsd-amd64), const LOG_AUTHPRIV Priority
-pkg log/syslog (netbsd-amd64), const LOG_CRIT Priority
-pkg log/syslog (netbsd-amd64), const LOG_CRON Priority
-pkg log/syslog (netbsd-amd64), const LOG_DAEMON Priority
-pkg log/syslog (netbsd-amd64), const LOG_DEBUG Priority
-pkg log/syslog (netbsd-amd64), const LOG_EMERG Priority
-pkg log/syslog (netbsd-amd64), const LOG_ERR Priority
-pkg log/syslog (netbsd-amd64), const LOG_FTP Priority
-pkg log/syslog (netbsd-amd64), const LOG_INFO Priority
-pkg log/syslog (netbsd-amd64), const LOG_KERN Priority
-pkg log/syslog (netbsd-amd64), const LOG_LOCAL0 Priority
-pkg log/syslog (netbsd-amd64), const LOG_LOCAL1 Priority
-pkg log/syslog (netbsd-amd64), const LOG_LOCAL2 Priority
-pkg log/syslog (netbsd-amd64), const LOG_LOCAL3 Priority
-pkg log/syslog (netbsd-amd64), const LOG_LOCAL4 Priority
-pkg log/syslog (netbsd-amd64), const LOG_LOCAL5 Priority
-pkg log/syslog (netbsd-amd64), const LOG_LOCAL6 Priority
-pkg log/syslog (netbsd-amd64), const LOG_LOCAL7 Priority
-pkg log/syslog (netbsd-amd64), const LOG_LPR Priority
-pkg log/syslog (netbsd-amd64), const LOG_MAIL Priority
-pkg log/syslog (netbsd-amd64), const LOG_NEWS Priority
-pkg log/syslog (netbsd-amd64), const LOG_NOTICE Priority
-pkg log/syslog (netbsd-amd64), const LOG_SYSLOG Priority
-pkg log/syslog (netbsd-amd64), const LOG_USER Priority
-pkg log/syslog (netbsd-amd64), const LOG_UUCP Priority
-pkg log/syslog (netbsd-amd64), const LOG_WARNING Priority
-pkg log/syslog (netbsd-amd64), func Dial(string, string, Priority, string) (*Writer, error)
-pkg log/syslog (netbsd-amd64), func New(Priority, string) (*Writer, error)
-pkg log/syslog (netbsd-amd64), func NewLogger(Priority, int) (*log.Logger, error)
-pkg log/syslog (netbsd-amd64), method (*Writer) Alert(string) error
-pkg log/syslog (netbsd-amd64), method (*Writer) Close() error
-pkg log/syslog (netbsd-amd64), method (*Writer) Crit(string) error
-pkg log/syslog (netbsd-amd64), method (*Writer) Debug(string) error
-pkg log/syslog (netbsd-amd64), method (*Writer) Emerg(string) error
-pkg log/syslog (netbsd-amd64), method (*Writer) Err(string) error
-pkg log/syslog (netbsd-amd64), method (*Writer) Info(string) error
-pkg log/syslog (netbsd-amd64), method (*Writer) Notice(string) error
-pkg log/syslog (netbsd-amd64), method (*Writer) Warning(string) error
-pkg log/syslog (netbsd-amd64), method (*Writer) Write([]uint8) (int, error)
-pkg log/syslog (netbsd-amd64), type Priority int
-pkg log/syslog (netbsd-amd64), type Writer struct
-pkg log/syslog (netbsd-amd64-cgo), const LOG_ALERT Priority
-pkg log/syslog (netbsd-amd64-cgo), const LOG_AUTH Priority
-pkg log/syslog (netbsd-amd64-cgo), const LOG_AUTHPRIV Priority
-pkg log/syslog (netbsd-amd64-cgo), const LOG_CRIT Priority
-pkg log/syslog (netbsd-amd64-cgo), const LOG_CRON Priority
-pkg log/syslog (netbsd-amd64-cgo), const LOG_DAEMON Priority
-pkg log/syslog (netbsd-amd64-cgo), const LOG_DEBUG Priority
-pkg log/syslog (netbsd-amd64-cgo), const LOG_EMERG Priority
-pkg log/syslog (netbsd-amd64-cgo), const LOG_ERR Priority
-pkg log/syslog (netbsd-amd64-cgo), const LOG_FTP Priority
-pkg log/syslog (netbsd-amd64-cgo), const LOG_INFO Priority
-pkg log/syslog (netbsd-amd64-cgo), const LOG_KERN Priority
-pkg log/syslog (netbsd-amd64-cgo), const LOG_LOCAL0 Priority
-pkg log/syslog (netbsd-amd64-cgo), const LOG_LOCAL1 Priority
-pkg log/syslog (netbsd-amd64-cgo), const LOG_LOCAL2 Priority
-pkg log/syslog (netbsd-amd64-cgo), const LOG_LOCAL3 Priority
-pkg log/syslog (netbsd-amd64-cgo), const LOG_LOCAL4 Priority
-pkg log/syslog (netbsd-amd64-cgo), const LOG_LOCAL5 Priority
-pkg log/syslog (netbsd-amd64-cgo), const LOG_LOCAL6 Priority
-pkg log/syslog (netbsd-amd64-cgo), const LOG_LOCAL7 Priority
-pkg log/syslog (netbsd-amd64-cgo), const LOG_LPR Priority
-pkg log/syslog (netbsd-amd64-cgo), const LOG_MAIL Priority
-pkg log/syslog (netbsd-amd64-cgo), const LOG_NEWS Priority
-pkg log/syslog (netbsd-amd64-cgo), const LOG_NOTICE Priority
-pkg log/syslog (netbsd-amd64-cgo), const LOG_SYSLOG Priority
-pkg log/syslog (netbsd-amd64-cgo), const LOG_USER Priority
-pkg log/syslog (netbsd-amd64-cgo), const LOG_UUCP Priority
-pkg log/syslog (netbsd-amd64-cgo), const LOG_WARNING Priority
-pkg log/syslog (netbsd-amd64-cgo), func Dial(string, string, Priority, string) (*Writer, error)
-pkg log/syslog (netbsd-amd64-cgo), func New(Priority, string) (*Writer, error)
-pkg log/syslog (netbsd-amd64-cgo), func NewLogger(Priority, int) (*log.Logger, error)
-pkg log/syslog (netbsd-amd64-cgo), method (*Writer) Alert(string) error
-pkg log/syslog (netbsd-amd64-cgo), method (*Writer) Close() error
-pkg log/syslog (netbsd-amd64-cgo), method (*Writer) Crit(string) error
-pkg log/syslog (netbsd-amd64-cgo), method (*Writer) Debug(string) error
-pkg log/syslog (netbsd-amd64-cgo), method (*Writer) Emerg(string) error
-pkg log/syslog (netbsd-amd64-cgo), method (*Writer) Err(string) error
-pkg log/syslog (netbsd-amd64-cgo), method (*Writer) Info(string) error
-pkg log/syslog (netbsd-amd64-cgo), method (*Writer) Notice(string) error
-pkg log/syslog (netbsd-amd64-cgo), method (*Writer) Warning(string) error
-pkg log/syslog (netbsd-amd64-cgo), method (*Writer) Write([]uint8) (int, error)
-pkg log/syslog (netbsd-amd64-cgo), type Priority int
-pkg log/syslog (netbsd-amd64-cgo), type Writer struct
-pkg log/syslog (netbsd-arm), const LOG_ALERT Priority
-pkg log/syslog (netbsd-arm), const LOG_AUTH Priority
-pkg log/syslog (netbsd-arm), const LOG_AUTHPRIV Priority
-pkg log/syslog (netbsd-arm), const LOG_CRIT Priority
-pkg log/syslog (netbsd-arm), const LOG_CRON Priority
-pkg log/syslog (netbsd-arm), const LOG_DAEMON Priority
-pkg log/syslog (netbsd-arm), const LOG_DEBUG Priority
-pkg log/syslog (netbsd-arm), const LOG_EMERG Priority
-pkg log/syslog (netbsd-arm), const LOG_ERR Priority
-pkg log/syslog (netbsd-arm), const LOG_FTP Priority
-pkg log/syslog (netbsd-arm), const LOG_INFO Priority
-pkg log/syslog (netbsd-arm), const LOG_KERN Priority
-pkg log/syslog (netbsd-arm), const LOG_LOCAL0 Priority
-pkg log/syslog (netbsd-arm), const LOG_LOCAL1 Priority
-pkg log/syslog (netbsd-arm), const LOG_LOCAL2 Priority
-pkg log/syslog (netbsd-arm), const LOG_LOCAL3 Priority
-pkg log/syslog (netbsd-arm), const LOG_LOCAL4 Priority
-pkg log/syslog (netbsd-arm), const LOG_LOCAL5 Priority
-pkg log/syslog (netbsd-arm), const LOG_LOCAL6 Priority
-pkg log/syslog (netbsd-arm), const LOG_LOCAL7 Priority
-pkg log/syslog (netbsd-arm), const LOG_LPR Priority
-pkg log/syslog (netbsd-arm), const LOG_MAIL Priority
-pkg log/syslog (netbsd-arm), const LOG_NEWS Priority
-pkg log/syslog (netbsd-arm), const LOG_NOTICE Priority
-pkg log/syslog (netbsd-arm), const LOG_SYSLOG Priority
-pkg log/syslog (netbsd-arm), const LOG_USER Priority
-pkg log/syslog (netbsd-arm), const LOG_UUCP Priority
-pkg log/syslog (netbsd-arm), const LOG_WARNING Priority
-pkg log/syslog (netbsd-arm), func Dial(string, string, Priority, string) (*Writer, error)
-pkg log/syslog (netbsd-arm), func New(Priority, string) (*Writer, error)
-pkg log/syslog (netbsd-arm), func NewLogger(Priority, int) (*log.Logger, error)
-pkg log/syslog (netbsd-arm), method (*Writer) Alert(string) error
-pkg log/syslog (netbsd-arm), method (*Writer) Close() error
-pkg log/syslog (netbsd-arm), method (*Writer) Crit(string) error
-pkg log/syslog (netbsd-arm), method (*Writer) Debug(string) error
-pkg log/syslog (netbsd-arm), method (*Writer) Emerg(string) error
-pkg log/syslog (netbsd-arm), method (*Writer) Err(string) error
-pkg log/syslog (netbsd-arm), method (*Writer) Info(string) error
-pkg log/syslog (netbsd-arm), method (*Writer) Notice(string) error
-pkg log/syslog (netbsd-arm), method (*Writer) Warning(string) error
-pkg log/syslog (netbsd-arm), method (*Writer) Write([]uint8) (int, error)
-pkg log/syslog (netbsd-arm), type Priority int
-pkg log/syslog (netbsd-arm), type Writer struct
-pkg log/syslog (netbsd-arm-cgo), const LOG_ALERT Priority
-pkg log/syslog (netbsd-arm-cgo), const LOG_AUTH Priority
-pkg log/syslog (netbsd-arm-cgo), const LOG_AUTHPRIV Priority
-pkg log/syslog (netbsd-arm-cgo), const LOG_CRIT Priority
-pkg log/syslog (netbsd-arm-cgo), const LOG_CRON Priority
-pkg log/syslog (netbsd-arm-cgo), const LOG_DAEMON Priority
-pkg log/syslog (netbsd-arm-cgo), const LOG_DEBUG Priority
-pkg log/syslog (netbsd-arm-cgo), const LOG_EMERG Priority
-pkg log/syslog (netbsd-arm-cgo), const LOG_ERR Priority
-pkg log/syslog (netbsd-arm-cgo), const LOG_FTP Priority
-pkg log/syslog (netbsd-arm-cgo), const LOG_INFO Priority
-pkg log/syslog (netbsd-arm-cgo), const LOG_KERN Priority
-pkg log/syslog (netbsd-arm-cgo), const LOG_LOCAL0 Priority
-pkg log/syslog (netbsd-arm-cgo), const LOG_LOCAL1 Priority
-pkg log/syslog (netbsd-arm-cgo), const LOG_LOCAL2 Priority
-pkg log/syslog (netbsd-arm-cgo), const LOG_LOCAL3 Priority
-pkg log/syslog (netbsd-arm-cgo), const LOG_LOCAL4 Priority
-pkg log/syslog (netbsd-arm-cgo), const LOG_LOCAL5 Priority
-pkg log/syslog (netbsd-arm-cgo), const LOG_LOCAL6 Priority
-pkg log/syslog (netbsd-arm-cgo), const LOG_LOCAL7 Priority
-pkg log/syslog (netbsd-arm-cgo), const LOG_LPR Priority
-pkg log/syslog (netbsd-arm-cgo), const LOG_MAIL Priority
-pkg log/syslog (netbsd-arm-cgo), const LOG_NEWS Priority
-pkg log/syslog (netbsd-arm-cgo), const LOG_NOTICE Priority
-pkg log/syslog (netbsd-arm-cgo), const LOG_SYSLOG Priority
-pkg log/syslog (netbsd-arm-cgo), const LOG_USER Priority
-pkg log/syslog (netbsd-arm-cgo), const LOG_UUCP Priority
-pkg log/syslog (netbsd-arm-cgo), const LOG_WARNING Priority
-pkg log/syslog (netbsd-arm-cgo), func Dial(string, string, Priority, string) (*Writer, error)
-pkg log/syslog (netbsd-arm-cgo), func New(Priority, string) (*Writer, error)
-pkg log/syslog (netbsd-arm-cgo), func NewLogger(Priority, int) (*log.Logger, error)
-pkg log/syslog (netbsd-arm-cgo), method (*Writer) Alert(string) error
-pkg log/syslog (netbsd-arm-cgo), method (*Writer) Close() error
-pkg log/syslog (netbsd-arm-cgo), method (*Writer) Crit(string) error
-pkg log/syslog (netbsd-arm-cgo), method (*Writer) Debug(string) error
-pkg log/syslog (netbsd-arm-cgo), method (*Writer) Emerg(string) error
-pkg log/syslog (netbsd-arm-cgo), method (*Writer) Err(string) error
-pkg log/syslog (netbsd-arm-cgo), method (*Writer) Info(string) error
-pkg log/syslog (netbsd-arm-cgo), method (*Writer) Notice(string) error
-pkg log/syslog (netbsd-arm-cgo), method (*Writer) Warning(string) error
-pkg log/syslog (netbsd-arm-cgo), method (*Writer) Write([]uint8) (int, error)
-pkg log/syslog (netbsd-arm-cgo), type Priority int
-pkg log/syslog (netbsd-arm-cgo), type Writer struct
-pkg log/syslog (openbsd-386), const LOG_ALERT Priority
-pkg log/syslog (openbsd-386), const LOG_AUTH Priority
-pkg log/syslog (openbsd-386), const LOG_AUTHPRIV Priority
-pkg log/syslog (openbsd-386), const LOG_CRIT Priority
-pkg log/syslog (openbsd-386), const LOG_CRON Priority
-pkg log/syslog (openbsd-386), const LOG_DAEMON Priority
-pkg log/syslog (openbsd-386), const LOG_DEBUG Priority
-pkg log/syslog (openbsd-386), const LOG_EMERG Priority
-pkg log/syslog (openbsd-386), const LOG_ERR Priority
-pkg log/syslog (openbsd-386), const LOG_FTP Priority
-pkg log/syslog (openbsd-386), const LOG_INFO Priority
-pkg log/syslog (openbsd-386), const LOG_KERN Priority
-pkg log/syslog (openbsd-386), const LOG_LOCAL0 Priority
-pkg log/syslog (openbsd-386), const LOG_LOCAL1 Priority
-pkg log/syslog (openbsd-386), const LOG_LOCAL2 Priority
-pkg log/syslog (openbsd-386), const LOG_LOCAL3 Priority
-pkg log/syslog (openbsd-386), const LOG_LOCAL4 Priority
-pkg log/syslog (openbsd-386), const LOG_LOCAL5 Priority
-pkg log/syslog (openbsd-386), const LOG_LOCAL6 Priority
-pkg log/syslog (openbsd-386), const LOG_LOCAL7 Priority
-pkg log/syslog (openbsd-386), const LOG_LPR Priority
-pkg log/syslog (openbsd-386), const LOG_MAIL Priority
-pkg log/syslog (openbsd-386), const LOG_NEWS Priority
-pkg log/syslog (openbsd-386), const LOG_NOTICE Priority
-pkg log/syslog (openbsd-386), const LOG_SYSLOG Priority
-pkg log/syslog (openbsd-386), const LOG_USER Priority
-pkg log/syslog (openbsd-386), const LOG_UUCP Priority
-pkg log/syslog (openbsd-386), const LOG_WARNING Priority
-pkg log/syslog (openbsd-386), func Dial(string, string, Priority, string) (*Writer, error)
-pkg log/syslog (openbsd-386), func New(Priority, string) (*Writer, error)
-pkg log/syslog (openbsd-386), func NewLogger(Priority, int) (*log.Logger, error)
-pkg log/syslog (openbsd-386), method (*Writer) Alert(string) error
-pkg log/syslog (openbsd-386), method (*Writer) Close() error
-pkg log/syslog (openbsd-386), method (*Writer) Crit(string) error
-pkg log/syslog (openbsd-386), method (*Writer) Debug(string) error
-pkg log/syslog (openbsd-386), method (*Writer) Emerg(string) error
-pkg log/syslog (openbsd-386), method (*Writer) Err(string) error
-pkg log/syslog (openbsd-386), method (*Writer) Info(string) error
-pkg log/syslog (openbsd-386), method (*Writer) Notice(string) error
-pkg log/syslog (openbsd-386), method (*Writer) Warning(string) error
-pkg log/syslog (openbsd-386), method (*Writer) Write([]uint8) (int, error)
-pkg log/syslog (openbsd-386), type Priority int
-pkg log/syslog (openbsd-386), type Writer struct
-pkg log/syslog (openbsd-386-cgo), const LOG_ALERT Priority
-pkg log/syslog (openbsd-386-cgo), const LOG_AUTH Priority
-pkg log/syslog (openbsd-386-cgo), const LOG_AUTHPRIV Priority
-pkg log/syslog (openbsd-386-cgo), const LOG_CRIT Priority
-pkg log/syslog (openbsd-386-cgo), const LOG_CRON Priority
-pkg log/syslog (openbsd-386-cgo), const LOG_DAEMON Priority
-pkg log/syslog (openbsd-386-cgo), const LOG_DEBUG Priority
-pkg log/syslog (openbsd-386-cgo), const LOG_EMERG Priority
-pkg log/syslog (openbsd-386-cgo), const LOG_ERR Priority
-pkg log/syslog (openbsd-386-cgo), const LOG_FTP Priority
-pkg log/syslog (openbsd-386-cgo), const LOG_INFO Priority
-pkg log/syslog (openbsd-386-cgo), const LOG_KERN Priority
-pkg log/syslog (openbsd-386-cgo), const LOG_LOCAL0 Priority
-pkg log/syslog (openbsd-386-cgo), const LOG_LOCAL1 Priority
-pkg log/syslog (openbsd-386-cgo), const LOG_LOCAL2 Priority
-pkg log/syslog (openbsd-386-cgo), const LOG_LOCAL3 Priority
-pkg log/syslog (openbsd-386-cgo), const LOG_LOCAL4 Priority
-pkg log/syslog (openbsd-386-cgo), const LOG_LOCAL5 Priority
-pkg log/syslog (openbsd-386-cgo), const LOG_LOCAL6 Priority
-pkg log/syslog (openbsd-386-cgo), const LOG_LOCAL7 Priority
-pkg log/syslog (openbsd-386-cgo), const LOG_LPR Priority
-pkg log/syslog (openbsd-386-cgo), const LOG_MAIL Priority
-pkg log/syslog (openbsd-386-cgo), const LOG_NEWS Priority
-pkg log/syslog (openbsd-386-cgo), const LOG_NOTICE Priority
-pkg log/syslog (openbsd-386-cgo), const LOG_SYSLOG Priority
-pkg log/syslog (openbsd-386-cgo), const LOG_USER Priority
-pkg log/syslog (openbsd-386-cgo), const LOG_UUCP Priority
-pkg log/syslog (openbsd-386-cgo), const LOG_WARNING Priority
-pkg log/syslog (openbsd-386-cgo), func Dial(string, string, Priority, string) (*Writer, error)
-pkg log/syslog (openbsd-386-cgo), func New(Priority, string) (*Writer, error)
-pkg log/syslog (openbsd-386-cgo), func NewLogger(Priority, int) (*log.Logger, error)
-pkg log/syslog (openbsd-386-cgo), method (*Writer) Alert(string) error
-pkg log/syslog (openbsd-386-cgo), method (*Writer) Close() error
-pkg log/syslog (openbsd-386-cgo), method (*Writer) Crit(string) error
-pkg log/syslog (openbsd-386-cgo), method (*Writer) Debug(string) error
-pkg log/syslog (openbsd-386-cgo), method (*Writer) Emerg(string) error
-pkg log/syslog (openbsd-386-cgo), method (*Writer) Err(string) error
-pkg log/syslog (openbsd-386-cgo), method (*Writer) Info(string) error
-pkg log/syslog (openbsd-386-cgo), method (*Writer) Notice(string) error
-pkg log/syslog (openbsd-386-cgo), method (*Writer) Warning(string) error
-pkg log/syslog (openbsd-386-cgo), method (*Writer) Write([]uint8) (int, error)
-pkg log/syslog (openbsd-386-cgo), type Priority int
-pkg log/syslog (openbsd-386-cgo), type Writer struct
-pkg log/syslog (openbsd-amd64), const LOG_ALERT Priority
-pkg log/syslog (openbsd-amd64), const LOG_AUTH Priority
-pkg log/syslog (openbsd-amd64), const LOG_AUTHPRIV Priority
-pkg log/syslog (openbsd-amd64), const LOG_CRIT Priority
-pkg log/syslog (openbsd-amd64), const LOG_CRON Priority
-pkg log/syslog (openbsd-amd64), const LOG_DAEMON Priority
-pkg log/syslog (openbsd-amd64), const LOG_DEBUG Priority
-pkg log/syslog (openbsd-amd64), const LOG_EMERG Priority
-pkg log/syslog (openbsd-amd64), const LOG_ERR Priority
-pkg log/syslog (openbsd-amd64), const LOG_FTP Priority
-pkg log/syslog (openbsd-amd64), const LOG_INFO Priority
-pkg log/syslog (openbsd-amd64), const LOG_KERN Priority
-pkg log/syslog (openbsd-amd64), const LOG_LOCAL0 Priority
-pkg log/syslog (openbsd-amd64), const LOG_LOCAL1 Priority
-pkg log/syslog (openbsd-amd64), const LOG_LOCAL2 Priority
-pkg log/syslog (openbsd-amd64), const LOG_LOCAL3 Priority
-pkg log/syslog (openbsd-amd64), const LOG_LOCAL4 Priority
-pkg log/syslog (openbsd-amd64), const LOG_LOCAL5 Priority
-pkg log/syslog (openbsd-amd64), const LOG_LOCAL6 Priority
-pkg log/syslog (openbsd-amd64), const LOG_LOCAL7 Priority
-pkg log/syslog (openbsd-amd64), const LOG_LPR Priority
-pkg log/syslog (openbsd-amd64), const LOG_MAIL Priority
-pkg log/syslog (openbsd-amd64), const LOG_NEWS Priority
-pkg log/syslog (openbsd-amd64), const LOG_NOTICE Priority
-pkg log/syslog (openbsd-amd64), const LOG_SYSLOG Priority
-pkg log/syslog (openbsd-amd64), const LOG_USER Priority
-pkg log/syslog (openbsd-amd64), const LOG_UUCP Priority
-pkg log/syslog (openbsd-amd64), const LOG_WARNING Priority
-pkg log/syslog (openbsd-amd64), func Dial(string, string, Priority, string) (*Writer, error)
-pkg log/syslog (openbsd-amd64), func New(Priority, string) (*Writer, error)
-pkg log/syslog (openbsd-amd64), func NewLogger(Priority, int) (*log.Logger, error)
-pkg log/syslog (openbsd-amd64), method (*Writer) Alert(string) error
-pkg log/syslog (openbsd-amd64), method (*Writer) Close() error
-pkg log/syslog (openbsd-amd64), method (*Writer) Crit(string) error
-pkg log/syslog (openbsd-amd64), method (*Writer) Debug(string) error
-pkg log/syslog (openbsd-amd64), method (*Writer) Emerg(string) error
-pkg log/syslog (openbsd-amd64), method (*Writer) Err(string) error
-pkg log/syslog (openbsd-amd64), method (*Writer) Info(string) error
-pkg log/syslog (openbsd-amd64), method (*Writer) Notice(string) error
-pkg log/syslog (openbsd-amd64), method (*Writer) Warning(string) error
-pkg log/syslog (openbsd-amd64), method (*Writer) Write([]uint8) (int, error)
-pkg log/syslog (openbsd-amd64), type Priority int
-pkg log/syslog (openbsd-amd64), type Writer struct
-pkg log/syslog (openbsd-amd64-cgo), const LOG_ALERT Priority
-pkg log/syslog (openbsd-amd64-cgo), const LOG_AUTH Priority
-pkg log/syslog (openbsd-amd64-cgo), const LOG_AUTHPRIV Priority
-pkg log/syslog (openbsd-amd64-cgo), const LOG_CRIT Priority
-pkg log/syslog (openbsd-amd64-cgo), const LOG_CRON Priority
-pkg log/syslog (openbsd-amd64-cgo), const LOG_DAEMON Priority
-pkg log/syslog (openbsd-amd64-cgo), const LOG_DEBUG Priority
-pkg log/syslog (openbsd-amd64-cgo), const LOG_EMERG Priority
-pkg log/syslog (openbsd-amd64-cgo), const LOG_ERR Priority
-pkg log/syslog (openbsd-amd64-cgo), const LOG_FTP Priority
-pkg log/syslog (openbsd-amd64-cgo), const LOG_INFO Priority
-pkg log/syslog (openbsd-amd64-cgo), const LOG_KERN Priority
-pkg log/syslog (openbsd-amd64-cgo), const LOG_LOCAL0 Priority
-pkg log/syslog (openbsd-amd64-cgo), const LOG_LOCAL1 Priority
-pkg log/syslog (openbsd-amd64-cgo), const LOG_LOCAL2 Priority
-pkg log/syslog (openbsd-amd64-cgo), const LOG_LOCAL3 Priority
-pkg log/syslog (openbsd-amd64-cgo), const LOG_LOCAL4 Priority
-pkg log/syslog (openbsd-amd64-cgo), const LOG_LOCAL5 Priority
-pkg log/syslog (openbsd-amd64-cgo), const LOG_LOCAL6 Priority
-pkg log/syslog (openbsd-amd64-cgo), const LOG_LOCAL7 Priority
-pkg log/syslog (openbsd-amd64-cgo), const LOG_LPR Priority
-pkg log/syslog (openbsd-amd64-cgo), const LOG_MAIL Priority
-pkg log/syslog (openbsd-amd64-cgo), const LOG_NEWS Priority
-pkg log/syslog (openbsd-amd64-cgo), const LOG_NOTICE Priority
-pkg log/syslog (openbsd-amd64-cgo), const LOG_SYSLOG Priority
-pkg log/syslog (openbsd-amd64-cgo), const LOG_USER Priority
-pkg log/syslog (openbsd-amd64-cgo), const LOG_UUCP Priority
-pkg log/syslog (openbsd-amd64-cgo), const LOG_WARNING Priority
-pkg log/syslog (openbsd-amd64-cgo), func Dial(string, string, Priority, string) (*Writer, error)
-pkg log/syslog (openbsd-amd64-cgo), func New(Priority, string) (*Writer, error)
-pkg log/syslog (openbsd-amd64-cgo), func NewLogger(Priority, int) (*log.Logger, error)
-pkg log/syslog (openbsd-amd64-cgo), method (*Writer) Alert(string) error
-pkg log/syslog (openbsd-amd64-cgo), method (*Writer) Close() error
-pkg log/syslog (openbsd-amd64-cgo), method (*Writer) Crit(string) error
-pkg log/syslog (openbsd-amd64-cgo), method (*Writer) Debug(string) error
-pkg log/syslog (openbsd-amd64-cgo), method (*Writer) Emerg(string) error
-pkg log/syslog (openbsd-amd64-cgo), method (*Writer) Err(string) error
-pkg log/syslog (openbsd-amd64-cgo), method (*Writer) Info(string) error
-pkg log/syslog (openbsd-amd64-cgo), method (*Writer) Notice(string) error
-pkg log/syslog (openbsd-amd64-cgo), method (*Writer) Warning(string) error
-pkg log/syslog (openbsd-amd64-cgo), method (*Writer) Write([]uint8) (int, error)
-pkg log/syslog (openbsd-amd64-cgo), type Priority int
-pkg log/syslog (openbsd-amd64-cgo), type Writer struct
-pkg net, method (*IP) UnmarshalText([]uint8) error
-pkg net, method (*TCPConn) SetKeepAlivePeriod(time.Duration) error
-pkg net, method (IP) MarshalText() ([]uint8, error)
-pkg net, type Dialer struct, DualStack bool
-pkg net/smtp, method (*Client) Close() error
-pkg os (linux-arm), const O_SYNC = 1052672
-pkg os (linux-arm-cgo), const O_SYNC = 1052672
-pkg reflect, method (Value) SetCap(int)
-pkg reflect, method (Value) Slice3(int, int, int) Value
-pkg runtime, type MemStats struct, GCSys uint64
-pkg runtime, type MemStats struct, OtherSys uint64
-pkg runtime/debug, func SetMaxStack(int) int
-pkg runtime/debug, func SetMaxThreads(int) int
-pkg sort, func Stable(Interface)
-pkg strings, func IndexByte(string, uint8) int
-pkg sync/atomic, func SwapInt32(*int32, int32) int32
-pkg sync/atomic, func SwapInt64(*int64, int64) int64
-pkg sync/atomic, func SwapPointer(*unsafe.Pointer, unsafe.Pointer) unsafe.Pointer
-pkg sync/atomic, func SwapUint32(*uint32, uint32) uint32
-pkg sync/atomic, func SwapUint64(*uint64, uint64) uint64
-pkg sync/atomic, func SwapUintptr(*uintptr, uintptr) uintptr
-pkg syscall (darwin-386), const ICMP6_FILTER = 18
-pkg syscall (darwin-386), const ICMP6_FILTER ideal-int
-pkg syscall (darwin-386), const ImplementsGetwd = true
-pkg syscall (darwin-386), const PRIO_PGRP = 1
-pkg syscall (darwin-386), const PRIO_PGRP ideal-int
-pkg syscall (darwin-386), const PRIO_PROCESS = 0
-pkg syscall (darwin-386), const PRIO_PROCESS ideal-int
-pkg syscall (darwin-386), const PRIO_USER = 2
-pkg syscall (darwin-386), const PRIO_USER ideal-int
-pkg syscall (darwin-386), const SizeofICMPv6Filter = 32
-pkg syscall (darwin-386), const SizeofICMPv6Filter ideal-int
-pkg syscall (darwin-386), const SizeofIPv6MTUInfo = 32
-pkg syscall (darwin-386), const SizeofIPv6MTUInfo ideal-int
-pkg syscall (darwin-386), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
-pkg syscall (darwin-386), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
-pkg syscall (darwin-386), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
-pkg syscall (darwin-386), type ICMPv6Filter struct
-pkg syscall (darwin-386), type ICMPv6Filter struct, Filt [8]uint32
-pkg syscall (darwin-386), type IPv6MTUInfo struct
-pkg syscall (darwin-386), type IPv6MTUInfo struct, Addr RawSockaddrInet6
-pkg syscall (darwin-386), type IPv6MTUInfo struct, Mtu uint32
-pkg syscall (darwin-386-cgo), const ICMP6_FILTER = 18
-pkg syscall (darwin-386-cgo), const ICMP6_FILTER ideal-int
-pkg syscall (darwin-386-cgo), const ImplementsGetwd = true
-pkg syscall (darwin-386-cgo), const PRIO_PGRP = 1
-pkg syscall (darwin-386-cgo), const PRIO_PGRP ideal-int
-pkg syscall (darwin-386-cgo), const PRIO_PROCESS = 0
-pkg syscall (darwin-386-cgo), const PRIO_PROCESS ideal-int
-pkg syscall (darwin-386-cgo), const PRIO_USER = 2
-pkg syscall (darwin-386-cgo), const PRIO_USER ideal-int
-pkg syscall (darwin-386-cgo), const SizeofICMPv6Filter = 32
-pkg syscall (darwin-386-cgo), const SizeofICMPv6Filter ideal-int
-pkg syscall (darwin-386-cgo), const SizeofIPv6MTUInfo = 32
-pkg syscall (darwin-386-cgo), const SizeofIPv6MTUInfo ideal-int
-pkg syscall (darwin-386-cgo), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
-pkg syscall (darwin-386-cgo), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
-pkg syscall (darwin-386-cgo), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
-pkg syscall (darwin-386-cgo), type ICMPv6Filter struct
-pkg syscall (darwin-386-cgo), type ICMPv6Filter struct, Filt [8]uint32
-pkg syscall (darwin-386-cgo), type IPv6MTUInfo struct
-pkg syscall (darwin-386-cgo), type IPv6MTUInfo struct, Addr RawSockaddrInet6
-pkg syscall (darwin-386-cgo), type IPv6MTUInfo struct, Mtu uint32
-pkg syscall (darwin-amd64), const ICMP6_FILTER = 18
-pkg syscall (darwin-amd64), const ICMP6_FILTER ideal-int
-pkg syscall (darwin-amd64), const ImplementsGetwd = true
-pkg syscall (darwin-amd64), const PRIO_PGRP = 1
-pkg syscall (darwin-amd64), const PRIO_PGRP ideal-int
-pkg syscall (darwin-amd64), const PRIO_PROCESS = 0
-pkg syscall (darwin-amd64), const PRIO_PROCESS ideal-int
-pkg syscall (darwin-amd64), const PRIO_USER = 2
-pkg syscall (darwin-amd64), const PRIO_USER ideal-int
-pkg syscall (darwin-amd64), const SizeofICMPv6Filter = 32
-pkg syscall (darwin-amd64), const SizeofICMPv6Filter ideal-int
-pkg syscall (darwin-amd64), const SizeofIPv6MTUInfo = 32
-pkg syscall (darwin-amd64), const SizeofIPv6MTUInfo ideal-int
-pkg syscall (darwin-amd64), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
-pkg syscall (darwin-amd64), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
-pkg syscall (darwin-amd64), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
-pkg syscall (darwin-amd64), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (darwin-amd64), type ICMPv6Filter struct
-pkg syscall (darwin-amd64), type ICMPv6Filter struct, Filt [8]uint32
-pkg syscall (darwin-amd64), type IPv6MTUInfo struct
-pkg syscall (darwin-amd64), type IPv6MTUInfo struct, Addr RawSockaddrInet6
-pkg syscall (darwin-amd64), type IPv6MTUInfo struct, Mtu uint32
-pkg syscall (darwin-amd64-cgo), const ICMP6_FILTER = 18
-pkg syscall (darwin-amd64-cgo), const ICMP6_FILTER ideal-int
-pkg syscall (darwin-amd64-cgo), const ImplementsGetwd = true
-pkg syscall (darwin-amd64-cgo), const PRIO_PGRP = 1
-pkg syscall (darwin-amd64-cgo), const PRIO_PGRP ideal-int
-pkg syscall (darwin-amd64-cgo), const PRIO_PROCESS = 0
-pkg syscall (darwin-amd64-cgo), const PRIO_PROCESS ideal-int
-pkg syscall (darwin-amd64-cgo), const PRIO_USER = 2
-pkg syscall (darwin-amd64-cgo), const PRIO_USER ideal-int
-pkg syscall (darwin-amd64-cgo), const SizeofICMPv6Filter = 32
-pkg syscall (darwin-amd64-cgo), const SizeofICMPv6Filter ideal-int
-pkg syscall (darwin-amd64-cgo), const SizeofIPv6MTUInfo = 32
-pkg syscall (darwin-amd64-cgo), const SizeofIPv6MTUInfo ideal-int
-pkg syscall (darwin-amd64-cgo), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
-pkg syscall (darwin-amd64-cgo), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
-pkg syscall (darwin-amd64-cgo), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
-pkg syscall (darwin-amd64-cgo), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (darwin-amd64-cgo), type ICMPv6Filter struct
-pkg syscall (darwin-amd64-cgo), type ICMPv6Filter struct, Filt [8]uint32
-pkg syscall (darwin-amd64-cgo), type IPv6MTUInfo struct
-pkg syscall (darwin-amd64-cgo), type IPv6MTUInfo struct, Addr RawSockaddrInet6
-pkg syscall (darwin-amd64-cgo), type IPv6MTUInfo struct, Mtu uint32
-pkg syscall (freebsd-386), const F_DUP2FD_CLOEXEC = 18
-pkg syscall (freebsd-386), const F_DUP2FD_CLOEXEC ideal-int
-pkg syscall (freebsd-386), const F_DUPFD_CLOEXEC = 17
-pkg syscall (freebsd-386), const F_DUPFD_CLOEXEC ideal-int
-pkg syscall (freebsd-386), const ICMP6_FILTER = 18
-pkg syscall (freebsd-386), const ICMP6_FILTER ideal-int
-pkg syscall (freebsd-386), const PRIO_PGRP = 1
-pkg syscall (freebsd-386), const PRIO_PGRP ideal-int
-pkg syscall (freebsd-386), const PRIO_PROCESS = 0
-pkg syscall (freebsd-386), const PRIO_PROCESS ideal-int
-pkg syscall (freebsd-386), const PRIO_USER = 2
-pkg syscall (freebsd-386), const PRIO_USER ideal-int
-pkg syscall (freebsd-386), const SizeofICMPv6Filter = 32
-pkg syscall (freebsd-386), const SizeofICMPv6Filter ideal-int
-pkg syscall (freebsd-386), const SizeofIPv6MTUInfo = 32
-pkg syscall (freebsd-386), const SizeofIPv6MTUInfo ideal-int
-pkg syscall (freebsd-386), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
-pkg syscall (freebsd-386), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
-pkg syscall (freebsd-386), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
-pkg syscall (freebsd-386), type ICMPv6Filter struct
-pkg syscall (freebsd-386), type ICMPv6Filter struct, Filt [8]uint32
-pkg syscall (freebsd-386), type IPv6MTUInfo struct
-pkg syscall (freebsd-386), type IPv6MTUInfo struct, Addr RawSockaddrInet6
-pkg syscall (freebsd-386), type IPv6MTUInfo struct, Mtu uint32
-pkg syscall (freebsd-386-cgo), const AF_APPLETALK ideal-int
-pkg syscall (freebsd-386-cgo), const AF_ARP ideal-int
-pkg syscall (freebsd-386-cgo), const AF_ATM ideal-int
-pkg syscall (freebsd-386-cgo), const AF_BLUETOOTH ideal-int
-pkg syscall (freebsd-386-cgo), const AF_CCITT ideal-int
-pkg syscall (freebsd-386-cgo), const AF_CHAOS ideal-int
-pkg syscall (freebsd-386-cgo), const AF_CNT ideal-int
-pkg syscall (freebsd-386-cgo), const AF_COIP ideal-int
-pkg syscall (freebsd-386-cgo), const AF_DATAKIT ideal-int
-pkg syscall (freebsd-386-cgo), const AF_DECnet ideal-int
-pkg syscall (freebsd-386-cgo), const AF_DLI ideal-int
-pkg syscall (freebsd-386-cgo), const AF_E164 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_ECMA ideal-int
-pkg syscall (freebsd-386-cgo), const AF_HYLINK ideal-int
-pkg syscall (freebsd-386-cgo), const AF_IEEE80211 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_IMPLINK ideal-int
-pkg syscall (freebsd-386-cgo), const AF_IPX ideal-int
-pkg syscall (freebsd-386-cgo), const AF_ISDN ideal-int
-pkg syscall (freebsd-386-cgo), const AF_ISO ideal-int
-pkg syscall (freebsd-386-cgo), const AF_LAT ideal-int
-pkg syscall (freebsd-386-cgo), const AF_LINK ideal-int
-pkg syscall (freebsd-386-cgo), const AF_LOCAL ideal-int
-pkg syscall (freebsd-386-cgo), const AF_MAX ideal-int
-pkg syscall (freebsd-386-cgo), const AF_NATM ideal-int
-pkg syscall (freebsd-386-cgo), const AF_NETBIOS ideal-int
-pkg syscall (freebsd-386-cgo), const AF_NETGRAPH ideal-int
-pkg syscall (freebsd-386-cgo), const AF_OSI ideal-int
-pkg syscall (freebsd-386-cgo), const AF_PUP ideal-int
-pkg syscall (freebsd-386-cgo), const AF_ROUTE ideal-int
-pkg syscall (freebsd-386-cgo), const AF_SCLUSTER ideal-int
-pkg syscall (freebsd-386-cgo), const AF_SIP ideal-int
-pkg syscall (freebsd-386-cgo), const AF_SLOW ideal-int
-pkg syscall (freebsd-386-cgo), const AF_SNA ideal-int
-pkg syscall (freebsd-386-cgo), const AF_VENDOR00 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_VENDOR01 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_VENDOR02 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_VENDOR03 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_VENDOR04 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_VENDOR05 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_VENDOR06 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_VENDOR07 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_VENDOR08 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_VENDOR09 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_VENDOR10 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_VENDOR11 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_VENDOR12 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_VENDOR13 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_VENDOR14 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_VENDOR15 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_VENDOR16 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_VENDOR17 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_VENDOR18 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_VENDOR19 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_VENDOR20 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_VENDOR21 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_VENDOR22 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_VENDOR23 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_VENDOR24 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_VENDOR25 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_VENDOR26 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_VENDOR27 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_VENDOR28 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_VENDOR29 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_VENDOR30 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_VENDOR31 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_VENDOR32 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_VENDOR33 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_VENDOR34 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_VENDOR35 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_VENDOR36 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_VENDOR37 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_VENDOR38 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_VENDOR39 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_VENDOR40 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_VENDOR41 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_VENDOR42 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_VENDOR43 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_VENDOR44 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_VENDOR45 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_VENDOR46 ideal-int
-pkg syscall (freebsd-386-cgo), const AF_VENDOR47 ideal-int
-pkg syscall (freebsd-386-cgo), const B0 ideal-int
-pkg syscall (freebsd-386-cgo), const B110 ideal-int
-pkg syscall (freebsd-386-cgo), const B115200 ideal-int
-pkg syscall (freebsd-386-cgo), const B1200 ideal-int
-pkg syscall (freebsd-386-cgo), const B134 ideal-int
-pkg syscall (freebsd-386-cgo), const B14400 ideal-int
-pkg syscall (freebsd-386-cgo), const B150 ideal-int
-pkg syscall (freebsd-386-cgo), const B1800 ideal-int
-pkg syscall (freebsd-386-cgo), const B19200 ideal-int
-pkg syscall (freebsd-386-cgo), const B200 ideal-int
-pkg syscall (freebsd-386-cgo), const B230400 ideal-int
-pkg syscall (freebsd-386-cgo), const B2400 ideal-int
-pkg syscall (freebsd-386-cgo), const B28800 ideal-int
-pkg syscall (freebsd-386-cgo), const B300 ideal-int
-pkg syscall (freebsd-386-cgo), const B38400 ideal-int
-pkg syscall (freebsd-386-cgo), const B460800 ideal-int
-pkg syscall (freebsd-386-cgo), const B4800 ideal-int
-pkg syscall (freebsd-386-cgo), const B50 ideal-int
-pkg syscall (freebsd-386-cgo), const B57600 ideal-int
-pkg syscall (freebsd-386-cgo), const B600 ideal-int
-pkg syscall (freebsd-386-cgo), const B7200 ideal-int
-pkg syscall (freebsd-386-cgo), const B75 ideal-int
-pkg syscall (freebsd-386-cgo), const B76800 ideal-int
-pkg syscall (freebsd-386-cgo), const B921600 ideal-int
-pkg syscall (freebsd-386-cgo), const B9600 ideal-int
-pkg syscall (freebsd-386-cgo), const BIOCFEEDBACK ideal-int
-pkg syscall (freebsd-386-cgo), const BIOCFLUSH ideal-int
-pkg syscall (freebsd-386-cgo), const BIOCGBLEN ideal-int
-pkg syscall (freebsd-386-cgo), const BIOCGDIRECTION ideal-int
-pkg syscall (freebsd-386-cgo), const BIOCGDLT ideal-int
-pkg syscall (freebsd-386-cgo), const BIOCGDLTLIST ideal-int
-pkg syscall (freebsd-386-cgo), const BIOCGETBUFMODE ideal-int
-pkg syscall (freebsd-386-cgo), const BIOCGETIF ideal-int
-pkg syscall (freebsd-386-cgo), const BIOCGETZMAX ideal-int
-pkg syscall (freebsd-386-cgo), const BIOCGHDRCMPLT ideal-int
-pkg syscall (freebsd-386-cgo), const BIOCGRSIG ideal-int
-pkg syscall (freebsd-386-cgo), const BIOCGRTIMEOUT ideal-int
-pkg syscall (freebsd-386-cgo), const BIOCGSEESENT ideal-int
-pkg syscall (freebsd-386-cgo), const BIOCGSTATS ideal-int
-pkg syscall (freebsd-386-cgo), const BIOCGTSTAMP ideal-int
-pkg syscall (freebsd-386-cgo), const BIOCIMMEDIATE ideal-int
-pkg syscall (freebsd-386-cgo), const BIOCLOCK ideal-int
-pkg syscall (freebsd-386-cgo), const BIOCPROMISC ideal-int
-pkg syscall (freebsd-386-cgo), const BIOCROTZBUF ideal-int
-pkg syscall (freebsd-386-cgo), const BIOCSBLEN ideal-int
-pkg syscall (freebsd-386-cgo), const BIOCSDIRECTION ideal-int
-pkg syscall (freebsd-386-cgo), const BIOCSDLT ideal-int
-pkg syscall (freebsd-386-cgo), const BIOCSETBUFMODE ideal-int
-pkg syscall (freebsd-386-cgo), const BIOCSETF ideal-int
-pkg syscall (freebsd-386-cgo), const BIOCSETFNR ideal-int
-pkg syscall (freebsd-386-cgo), const BIOCSETIF ideal-int
-pkg syscall (freebsd-386-cgo), const BIOCSETWF ideal-int
-pkg syscall (freebsd-386-cgo), const BIOCSETZBUF ideal-int
-pkg syscall (freebsd-386-cgo), const BIOCSHDRCMPLT ideal-int
-pkg syscall (freebsd-386-cgo), const BIOCSRSIG ideal-int
-pkg syscall (freebsd-386-cgo), const BIOCSRTIMEOUT ideal-int
-pkg syscall (freebsd-386-cgo), const BIOCSSEESENT ideal-int
-pkg syscall (freebsd-386-cgo), const BIOCSTSTAMP ideal-int
-pkg syscall (freebsd-386-cgo), const BIOCVERSION ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_A ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_ABS ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_ADD ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_ALIGNMENT ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_ALU ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_AND ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_B ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_BUFMODE_BUFFER ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_BUFMODE_ZBUF ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_DIV ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_H ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_IMM ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_IND ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_JA ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_JEQ ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_JGE ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_JGT ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_JMP ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_JSET ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_K ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_LD ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_LDX ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_LEN ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_LSH ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_MAJOR_VERSION ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_MAXBUFSIZE ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_MAXINSNS ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_MEM ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_MEMWORDS ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_MINBUFSIZE ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_MINOR_VERSION ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_MISC ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_MSH ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_MUL ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_NEG ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_OR ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_RELEASE ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_RET ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_RSH ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_ST ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_STX ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_SUB ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_TAX ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_TXA ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_T_BINTIME ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_T_BINTIME_FAST ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_T_BINTIME_MONOTONIC ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_T_BINTIME_MONOTONIC_FAST ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_T_FAST ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_T_FLAG_MASK ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_T_FORMAT_MASK ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_T_MICROTIME ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_T_MICROTIME_FAST ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_T_MICROTIME_MONOTONIC ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_T_MICROTIME_MONOTONIC_FAST ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_T_MONOTONIC ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_T_MONOTONIC_FAST ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_T_NANOTIME ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_T_NANOTIME_FAST ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_T_NANOTIME_MONOTONIC ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_T_NANOTIME_MONOTONIC_FAST ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_T_NONE ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_T_NORMAL ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_W ideal-int
-pkg syscall (freebsd-386-cgo), const BPF_X ideal-int
-pkg syscall (freebsd-386-cgo), const BRKINT ideal-int
-pkg syscall (freebsd-386-cgo), const CFLUSH ideal-int
-pkg syscall (freebsd-386-cgo), const CLOCAL ideal-int
-pkg syscall (freebsd-386-cgo), const CREAD ideal-int
-pkg syscall (freebsd-386-cgo), const CS5 ideal-int
-pkg syscall (freebsd-386-cgo), const CS6 ideal-int
-pkg syscall (freebsd-386-cgo), const CS7 ideal-int
-pkg syscall (freebsd-386-cgo), const CS8 ideal-int
-pkg syscall (freebsd-386-cgo), const CSIZE ideal-int
-pkg syscall (freebsd-386-cgo), const CSTART ideal-int
-pkg syscall (freebsd-386-cgo), const CSTATUS ideal-int
-pkg syscall (freebsd-386-cgo), const CSTOP ideal-int
-pkg syscall (freebsd-386-cgo), const CSTOPB ideal-int
-pkg syscall (freebsd-386-cgo), const CSUSP ideal-int
-pkg syscall (freebsd-386-cgo), const CTL_MAXNAME ideal-int
-pkg syscall (freebsd-386-cgo), const CTL_NET ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_A429 ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_A653_ICM ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_AIRONET_HEADER ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_AOS ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_ARCNET ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_ARCNET_LINUX ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_ATM_CLIP ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_ATM_RFC1483 ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_AURORA ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_AX25 ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_AX25_KISS ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_BACNET_MS_TP ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_BLUETOOTH_HCI_H4 ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_CAN20B ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_CAN_SOCKETCAN ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_CHAOS ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_CHDLC ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_CISCO_IOS ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_C_HDLC ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_C_HDLC_WITH_DIR ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_DBUS ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_DECT ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_DOCSIS ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_DVB_CI ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_ECONET ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_EN10MB ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_EN3MB ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_ENC ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_ERF ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_ERF_ETH ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_ERF_POS ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_FC_2 ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_FC_2_WITH_FRAME_DELIMS ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_FDDI ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_FLEXRAY ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_FRELAY ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_FRELAY_WITH_DIR ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_GCOM_SERIAL ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_GCOM_T1E1 ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_GPF_F ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_GPF_T ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_GPRS_LLC ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_GSMTAP_ABIS ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_GSMTAP_UM ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_HHDLC ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_IBM_SN ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_IBM_SP ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_IEEE802 ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_IEEE802_11 ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_IEEE802_11_RADIO ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_IEEE802_11_RADIO_AVS ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_IEEE802_15_4 ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_IEEE802_15_4_LINUX ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_IEEE802_15_4_NOFCS ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_IEEE802_15_4_NONASK_PHY ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_IEEE802_16_MAC_CPS ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_IEEE802_16_MAC_CPS_RADIO ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_IPFILTER ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_IPMB ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_IPMB_LINUX ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_IPNET ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_IPOIB ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_IPV4 ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_IPV6 ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_IP_OVER_FC ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_ATM1 ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_ATM2 ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_ATM_CEMIC ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_CHDLC ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_ES ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_ETHER ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_FIBRECHANNEL ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_FRELAY ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_GGSN ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_ISM ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_MFR ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_MLFR ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_MLPPP ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_MONITOR ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_PIC_PEER ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_PPP ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_PPPOE ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_PPPOE_ATM ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_SERVICES ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_SRX_E2E ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_ST ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_VP ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_VS ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_LAPB_WITH_DIR ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_LAPD ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_LIN ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_LINUX_EVDEV ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_LINUX_IRDA ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_LINUX_LAPD ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_LINUX_PPP_WITHDIRECTION ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_LINUX_SLL ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_LOOP ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_LTALK ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_MATCHING_MAX ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_MATCHING_MIN ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_MFR ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_MOST ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_MPLS ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_MTP2 ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_MTP2_WITH_PHDR ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_MTP3 ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_MUX27010 ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_NETANALYZER ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_NETANALYZER_TRANSPARENT ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_NFLOG ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_NULL ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_PCI_EXP ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_PFLOG ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_PFSYNC ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_PPI ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_PPP ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_PPP_BSDOS ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_PPP_ETHER ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_PPP_PPPD ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_PPP_SERIAL ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_PPP_WITH_DIR ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_PPP_WITH_DIRECTION ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_PRISM_HEADER ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_PRONET ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_RAIF1 ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_RAW ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_RIO ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_SCCP ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_SITA ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_SLIP ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_SLIP_BSDOS ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_STANAG_5066_D_PDU ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_SUNATM ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_SYMANTEC_FIREWALL ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_TZSP ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_USB ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_USB_LINUX ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_USB_LINUX_MMAPPED ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_USER0 ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_USER1 ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_USER10 ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_USER11 ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_USER12 ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_USER13 ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_USER14 ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_USER15 ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_USER2 ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_USER3 ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_USER4 ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_USER5 ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_USER6 ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_USER7 ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_USER8 ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_USER9 ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_WIHART ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_X2E_SERIAL ideal-int
-pkg syscall (freebsd-386-cgo), const DLT_X2E_XORAYA ideal-int
-pkg syscall (freebsd-386-cgo), const DT_BLK ideal-int
-pkg syscall (freebsd-386-cgo), const DT_CHR ideal-int
-pkg syscall (freebsd-386-cgo), const DT_DIR ideal-int
-pkg syscall (freebsd-386-cgo), const DT_FIFO ideal-int
-pkg syscall (freebsd-386-cgo), const DT_LNK ideal-int
-pkg syscall (freebsd-386-cgo), const DT_REG ideal-int
-pkg syscall (freebsd-386-cgo), const DT_SOCK ideal-int
-pkg syscall (freebsd-386-cgo), const DT_UNKNOWN ideal-int
-pkg syscall (freebsd-386-cgo), const DT_WHT ideal-int
-pkg syscall (freebsd-386-cgo), const EAUTH Errno
-pkg syscall (freebsd-386-cgo), const EBADMSG Errno
-pkg syscall (freebsd-386-cgo), const EBADRPC Errno
-pkg syscall (freebsd-386-cgo), const ECAPMODE Errno
-pkg syscall (freebsd-386-cgo), const ECHO ideal-int
-pkg syscall (freebsd-386-cgo), const ECHOCTL ideal-int
-pkg syscall (freebsd-386-cgo), const ECHOE ideal-int
-pkg syscall (freebsd-386-cgo), const ECHOK ideal-int
-pkg syscall (freebsd-386-cgo), const ECHOKE ideal-int
-pkg syscall (freebsd-386-cgo), const ECHONL ideal-int
-pkg syscall (freebsd-386-cgo), const ECHOPRT ideal-int
-pkg syscall (freebsd-386-cgo), const EDOOFUS Errno
-pkg syscall (freebsd-386-cgo), const EFTYPE Errno
-pkg syscall (freebsd-386-cgo), const ELAST Errno
-pkg syscall (freebsd-386-cgo), const EMULTIHOP Errno
-pkg syscall (freebsd-386-cgo), const ENEEDAUTH Errno
-pkg syscall (freebsd-386-cgo), const ENOATTR Errno
-pkg syscall (freebsd-386-cgo), const ENOLINK Errno
-pkg syscall (freebsd-386-cgo), const ENOTCAPABLE Errno
-pkg syscall (freebsd-386-cgo), const EPROCLIM Errno
-pkg syscall (freebsd-386-cgo), const EPROCUNAVAIL Errno
-pkg syscall (freebsd-386-cgo), const EPROGMISMATCH Errno
-pkg syscall (freebsd-386-cgo), const EPROGUNAVAIL Errno
-pkg syscall (freebsd-386-cgo), const EPROTO Errno
-pkg syscall (freebsd-386-cgo), const ERPCMISMATCH Errno
-pkg syscall (freebsd-386-cgo), const EVFILT_AIO ideal-int
-pkg syscall (freebsd-386-cgo), const EVFILT_FS ideal-int
-pkg syscall (freebsd-386-cgo), const EVFILT_LIO ideal-int
-pkg syscall (freebsd-386-cgo), const EVFILT_PROC ideal-int
-pkg syscall (freebsd-386-cgo), const EVFILT_READ ideal-int
-pkg syscall (freebsd-386-cgo), const EVFILT_SIGNAL ideal-int
-pkg syscall (freebsd-386-cgo), const EVFILT_SYSCOUNT ideal-int
-pkg syscall (freebsd-386-cgo), const EVFILT_TIMER ideal-int
-pkg syscall (freebsd-386-cgo), const EVFILT_USER ideal-int
-pkg syscall (freebsd-386-cgo), const EVFILT_VNODE ideal-int
-pkg syscall (freebsd-386-cgo), const EVFILT_WRITE ideal-int
-pkg syscall (freebsd-386-cgo), const EV_ADD ideal-int
-pkg syscall (freebsd-386-cgo), const EV_CLEAR ideal-int
-pkg syscall (freebsd-386-cgo), const EV_DELETE ideal-int
-pkg syscall (freebsd-386-cgo), const EV_DISABLE ideal-int
-pkg syscall (freebsd-386-cgo), const EV_DISPATCH ideal-int
-pkg syscall (freebsd-386-cgo), const EV_ENABLE ideal-int
-pkg syscall (freebsd-386-cgo), const EV_EOF ideal-int
-pkg syscall (freebsd-386-cgo), const EV_ERROR ideal-int
-pkg syscall (freebsd-386-cgo), const EV_FLAG1 ideal-int
-pkg syscall (freebsd-386-cgo), const EV_ONESHOT ideal-int
-pkg syscall (freebsd-386-cgo), const EV_RECEIPT ideal-int
-pkg syscall (freebsd-386-cgo), const EV_SYSFLAGS ideal-int
-pkg syscall (freebsd-386-cgo), const EXTA ideal-int
-pkg syscall (freebsd-386-cgo), const EXTB ideal-int
-pkg syscall (freebsd-386-cgo), const EXTPROC ideal-int
-pkg syscall (freebsd-386-cgo), const FD_CLOEXEC ideal-int
-pkg syscall (freebsd-386-cgo), const FD_SETSIZE ideal-int
-pkg syscall (freebsd-386-cgo), const FLUSHO ideal-int
-pkg syscall (freebsd-386-cgo), const F_CANCEL ideal-int
-pkg syscall (freebsd-386-cgo), const F_DUP2FD ideal-int
-pkg syscall (freebsd-386-cgo), const F_DUP2FD_CLOEXEC = 18
-pkg syscall (freebsd-386-cgo), const F_DUP2FD_CLOEXEC ideal-int
-pkg syscall (freebsd-386-cgo), const F_DUPFD ideal-int
-pkg syscall (freebsd-386-cgo), const F_DUPFD_CLOEXEC = 17
-pkg syscall (freebsd-386-cgo), const F_DUPFD_CLOEXEC ideal-int
-pkg syscall (freebsd-386-cgo), const F_GETFD ideal-int
-pkg syscall (freebsd-386-cgo), const F_GETFL ideal-int
-pkg syscall (freebsd-386-cgo), const F_GETLK ideal-int
-pkg syscall (freebsd-386-cgo), const F_GETOWN ideal-int
-pkg syscall (freebsd-386-cgo), const F_OGETLK ideal-int
-pkg syscall (freebsd-386-cgo), const F_OK ideal-int
-pkg syscall (freebsd-386-cgo), const F_OSETLK ideal-int
-pkg syscall (freebsd-386-cgo), const F_OSETLKW ideal-int
-pkg syscall (freebsd-386-cgo), const F_RDAHEAD ideal-int
-pkg syscall (freebsd-386-cgo), const F_RDLCK ideal-int
-pkg syscall (freebsd-386-cgo), const F_READAHEAD ideal-int
-pkg syscall (freebsd-386-cgo), const F_SETFD ideal-int
-pkg syscall (freebsd-386-cgo), const F_SETFL ideal-int
-pkg syscall (freebsd-386-cgo), const F_SETLK ideal-int
-pkg syscall (freebsd-386-cgo), const F_SETLKW ideal-int
-pkg syscall (freebsd-386-cgo), const F_SETLK_REMOTE ideal-int
-pkg syscall (freebsd-386-cgo), const F_SETOWN ideal-int
-pkg syscall (freebsd-386-cgo), const F_UNLCK ideal-int
-pkg syscall (freebsd-386-cgo), const F_UNLCKSYS ideal-int
-pkg syscall (freebsd-386-cgo), const F_WRLCK ideal-int
-pkg syscall (freebsd-386-cgo), const HUPCL ideal-int
-pkg syscall (freebsd-386-cgo), const ICANON ideal-int
-pkg syscall (freebsd-386-cgo), const ICMP6_FILTER = 18
-pkg syscall (freebsd-386-cgo), const ICMP6_FILTER ideal-int
-pkg syscall (freebsd-386-cgo), const ICRNL ideal-int
-pkg syscall (freebsd-386-cgo), const IEXTEN ideal-int
-pkg syscall (freebsd-386-cgo), const IFAN_ARRIVAL ideal-int
-pkg syscall (freebsd-386-cgo), const IFAN_DEPARTURE ideal-int
-pkg syscall (freebsd-386-cgo), const IFF_ALLMULTI ideal-int
-pkg syscall (freebsd-386-cgo), const IFF_ALTPHYS ideal-int
-pkg syscall (freebsd-386-cgo), const IFF_CANTCHANGE ideal-int
-pkg syscall (freebsd-386-cgo), const IFF_CANTCONFIG ideal-int
-pkg syscall (freebsd-386-cgo), const IFF_DEBUG ideal-int
-pkg syscall (freebsd-386-cgo), const IFF_DRV_OACTIVE ideal-int
-pkg syscall (freebsd-386-cgo), const IFF_DRV_RUNNING ideal-int
-pkg syscall (freebsd-386-cgo), const IFF_DYING ideal-int
-pkg syscall (freebsd-386-cgo), const IFF_LINK0 ideal-int
-pkg syscall (freebsd-386-cgo), const IFF_LINK1 ideal-int
-pkg syscall (freebsd-386-cgo), const IFF_LINK2 ideal-int
-pkg syscall (freebsd-386-cgo), const IFF_MONITOR ideal-int
-pkg syscall (freebsd-386-cgo), const IFF_NOARP ideal-int
-pkg syscall (freebsd-386-cgo), const IFF_OACTIVE ideal-int
-pkg syscall (freebsd-386-cgo), const IFF_POINTOPOINT ideal-int
-pkg syscall (freebsd-386-cgo), const IFF_PPROMISC ideal-int
-pkg syscall (freebsd-386-cgo), const IFF_PROMISC ideal-int
-pkg syscall (freebsd-386-cgo), const IFF_RENAMING ideal-int
-pkg syscall (freebsd-386-cgo), const IFF_RUNNING ideal-int
-pkg syscall (freebsd-386-cgo), const IFF_SIMPLEX ideal-int
-pkg syscall (freebsd-386-cgo), const IFF_SMART ideal-int
-pkg syscall (freebsd-386-cgo), const IFF_STATICARP ideal-int
-pkg syscall (freebsd-386-cgo), const IFNAMSIZ ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_1822 ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_A12MPPSWITCH ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_AAL2 ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_AAL5 ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_ADSL ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_AFLANE8023 ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_AFLANE8025 ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_ARAP ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_ARCNET ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_ARCNETPLUS ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_ASYNC ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_ATM ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_ATMDXI ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_ATMFUNI ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_ATMIMA ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_ATMLOGICAL ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_ATMRADIO ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_ATMSUBINTERFACE ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_ATMVCIENDPT ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_ATMVIRTUAL ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_BGPPOLICYACCOUNTING ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_BRIDGE ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_BSC ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_CARP ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_CCTEMUL ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_CEPT ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_CES ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_CHANNEL ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_CNR ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_COFFEE ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_COMPOSITELINK ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_DCN ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_DIGITALPOWERLINE ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_DLSW ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_DOCSCABLEDOWNSTREAM ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_DOCSCABLEMACLAYER ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_DOCSCABLEUPSTREAM ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_DS0 ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_DS0BUNDLE ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_DS1FDL ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_DS3 ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_DTM ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_DVBASILN ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_DVBASIOUT ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_DVBRCCDOWNSTREAM ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_DVBRCCMACLAYER ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_DVBRCCUPSTREAM ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_ENC ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_EON ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_EPLRS ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_ESCON ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_ETHER ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_FAITH ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_FAST ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_FASTETHER ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_FASTETHERFX ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_FDDI ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_FIBRECHANNEL ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_FRAMERELAYINTERCONNECT ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_FRAMERELAYMPI ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_FRDLCIENDPT ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_FRELAY ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_FRELAYDCE ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_FRF16MFRBUNDLE ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_FRFORWARD ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_G703AT2MB ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_G703AT64K ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_GIF ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_GIGABITETHERNET ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_GR303IDT ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_GR303RDT ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_H323GATEKEEPER ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_H323PROXY ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_HDH1822 ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_HDLC ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_HDSL2 ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_HIPERLAN2 ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_HIPPI ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_HIPPIINTERFACE ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_HOSTPAD ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_HSSI ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_HY ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_IBM370PARCHAN ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_IDSL ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_IEEE1394 ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_IEEE80211 ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_IEEE80212 ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_IEEE8023ADLAG ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_IFGSN ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_IMT ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_INFINIBAND ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_INTERLEAVE ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_IP ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_IPFORWARD ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_IPOVERATM ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_IPOVERCDLC ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_IPOVERCLAW ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_IPSWITCH ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_IPXIP ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_ISDN ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_ISDNBASIC ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_ISDNPRIMARY ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_ISDNS ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_ISDNU ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_ISO88022LLC ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_ISO88023 ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_ISO88024 ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_ISO88025 ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_ISO88025CRFPINT ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_ISO88025DTR ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_ISO88025FIBER ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_ISO88026 ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_ISUP ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_L2VLAN ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_L3IPVLAN ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_L3IPXVLAN ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_LAPB ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_LAPD ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_LAPF ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_LOCALTALK ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_LOOP ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_MEDIAMAILOVERIP ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_MFSIGLINK ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_MIOX25 ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_MODEM ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_MPC ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_MPLS ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_MPLSTUNNEL ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_MSDSL ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_MVL ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_MYRINET ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_NFAS ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_NSIP ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_OPTICALCHANNEL ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_OPTICALTRANSPORT ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_OTHER ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_P10 ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_P80 ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_PARA ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_PFLOG ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_PFSYNC ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_PLC ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_POS ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_PPP ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_PPPMULTILINKBUNDLE ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_PROPBWAP2MP ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_PROPCNLS ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_PROPMUX ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_PROPVIRTUAL ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_PROPWIRELESSP2P ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_PTPSERIAL ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_PVC ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_QLLC ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_RADIOMAC ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_RADSL ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_REACHDSL ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_RFC1483 ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_RS232 ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_RSRB ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_SDLC ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_SDSL ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_SHDSL ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_SIP ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_SLIP ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_SMDSDXI ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_SMDSICIP ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_SONET ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_SONETOVERHEADCHANNEL ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_SONETPATH ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_SONETVT ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_SRP ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_SS7SIGLINK ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_STACKTOSTACK ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_STARLAN ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_STF ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_T1 ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_TDLC ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_TERMPAD ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_TR008 ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_TRANSPHDLC ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_TUNNEL ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_ULTRA ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_USB ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_V11 ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_V35 ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_V36 ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_V37 ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_VDSL ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_VIRTUALIPADDRESS ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_VOICEEM ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_VOICEENCAP ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_VOICEFXO ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_VOICEFXS ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_VOICEOVERATM ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_VOICEOVERFRAMERELAY ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_VOICEOVERIP ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_X213 ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_X25 ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_X25DDN ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_X25HUNTGROUP ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_X25MLP ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_X25PLE ideal-int
-pkg syscall (freebsd-386-cgo), const IFT_XETHER ideal-int
-pkg syscall (freebsd-386-cgo), const IGNBRK ideal-int
-pkg syscall (freebsd-386-cgo), const IGNCR ideal-int
-pkg syscall (freebsd-386-cgo), const IGNPAR ideal-int
-pkg syscall (freebsd-386-cgo), const IMAXBEL ideal-int
-pkg syscall (freebsd-386-cgo), const INLCR ideal-int
-pkg syscall (freebsd-386-cgo), const INPCK ideal-int
-pkg syscall (freebsd-386-cgo), const IN_CLASSA_HOST ideal-int
-pkg syscall (freebsd-386-cgo), const IN_CLASSA_MAX ideal-int
-pkg syscall (freebsd-386-cgo), const IN_CLASSA_NET ideal-int
-pkg syscall (freebsd-386-cgo), const IN_CLASSA_NSHIFT ideal-int
-pkg syscall (freebsd-386-cgo), const IN_CLASSB_HOST ideal-int
-pkg syscall (freebsd-386-cgo), const IN_CLASSB_MAX ideal-int
-pkg syscall (freebsd-386-cgo), const IN_CLASSB_NET ideal-int
-pkg syscall (freebsd-386-cgo), const IN_CLASSB_NSHIFT ideal-int
-pkg syscall (freebsd-386-cgo), const IN_CLASSC_HOST ideal-int
-pkg syscall (freebsd-386-cgo), const IN_CLASSC_NET ideal-int
-pkg syscall (freebsd-386-cgo), const IN_CLASSC_NSHIFT ideal-int
-pkg syscall (freebsd-386-cgo), const IN_CLASSD_HOST ideal-int
-pkg syscall (freebsd-386-cgo), const IN_CLASSD_NET ideal-int
-pkg syscall (freebsd-386-cgo), const IN_CLASSD_NSHIFT ideal-int
-pkg syscall (freebsd-386-cgo), const IN_LOOPBACKNET ideal-int
-pkg syscall (freebsd-386-cgo), const IN_RFC3021_MASK ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_3PC ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_ADFS ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_AH ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_AHIP ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_APES ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_ARGUS ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_AX25 ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_BHA ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_BLT ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_BRSATMON ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_CARP ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_CFTP ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_CHAOS ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_CMTP ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_CPHB ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_CPNX ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_DDP ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_DGP ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_DIVERT ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_DONE ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_DSTOPTS ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_EGP ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_EMCON ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_ENCAP ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_EON ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_ESP ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_ETHERIP ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_FRAGMENT ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_GGP ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_GMTP ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_GRE ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_HELLO ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_HMP ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_HOPOPTS ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_ICMP ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_ICMPV6 ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_IDP ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_IDPR ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_IDRP ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_IGMP ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_IGP ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_IGRP ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_IL ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_INLSP ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_INP ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_IPCOMP ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_IPCV ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_IPEIP ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_IPIP ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_IPPC ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_IPV4 ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_IRTP ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_KRYPTOLAN ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_LARP ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_LEAF1 ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_LEAF2 ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_MAX ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_MAXID ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_MEAS ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_MH ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_MHRP ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_MICP ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_MOBILE ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_MTP ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_MUX ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_ND ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_NHRP ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_NONE ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_NSP ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_NVPII ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_OLD_DIVERT ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_OSPFIGP ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_PFSYNC ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_PGM ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_PIGP ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_PIM ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_PRM ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_PUP ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_PVP ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_RAW ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_RCCMON ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_RDP ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_ROUTING ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_RSVP ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_RVD ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_SATEXPAK ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_SATMON ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_SCCSP ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_SCTP ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_SDRP ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_SEND ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_SEP ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_SKIP ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_SPACER ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_SRPC ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_ST ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_SVMTP ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_SWIPE ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_TCF ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_TLSP ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_TP ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_TPXX ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_TRUNK1 ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_TRUNK2 ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_TTP ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_VINES ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_VISA ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_VMTP ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_WBEXPAK ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_WBMON ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_WSN ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_XNET ideal-int
-pkg syscall (freebsd-386-cgo), const IPPROTO_XTP ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_AUTOFLOWLABEL ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_BINDANY ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_BINDV6ONLY ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_CHECKSUM ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_DEFHLIM ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_DONTFRAG ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_DSTOPTS ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_FAITH ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_FLOWINFO_MASK ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_FLOWLABEL_MASK ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_FRAGTTL ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_FW_ADD ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_FW_DEL ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_FW_FLUSH ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_FW_GET ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_FW_ZERO ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_HLIMDEC ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_HOPLIMIT ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_HOPOPTS ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_IPSEC_POLICY ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_MAXHLIM ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_MAXOPTHDR ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_MAXPACKET ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_MAX_GROUP_SRC_FILTER ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_MAX_MEMBERSHIPS ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_MAX_SOCK_SRC_FILTER ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_MIN_MEMBERSHIPS ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_MMTU ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_MSFILTER ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_NEXTHOP ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_PATHMTU ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_PKTINFO ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_PORTRANGE ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_PORTRANGE_DEFAULT ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_PORTRANGE_HIGH ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_PORTRANGE_LOW ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_PREFER_TEMPADDR ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_RECVDSTOPTS ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_RECVHOPLIMIT ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_RECVHOPOPTS ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_RECVPATHMTU ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_RECVPKTINFO ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_RECVRTHDR ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_RECVTCLASS ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_RTHDR ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_RTHDRDSTOPTS ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_RTHDR_LOOSE ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_RTHDR_STRICT ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_RTHDR_TYPE_0 ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_SOCKOPT_RESERVED1 ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_TCLASS ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_USE_MIN_MTU ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_VERSION ideal-int
-pkg syscall (freebsd-386-cgo), const IPV6_VERSION_MASK ideal-int
-pkg syscall (freebsd-386-cgo), const IP_ADD_SOURCE_MEMBERSHIP ideal-int
-pkg syscall (freebsd-386-cgo), const IP_BINDANY ideal-int
-pkg syscall (freebsd-386-cgo), const IP_BLOCK_SOURCE ideal-int
-pkg syscall (freebsd-386-cgo), const IP_DEFAULT_MULTICAST_LOOP ideal-int
-pkg syscall (freebsd-386-cgo), const IP_DEFAULT_MULTICAST_TTL ideal-int
-pkg syscall (freebsd-386-cgo), const IP_DF ideal-int
-pkg syscall (freebsd-386-cgo), const IP_DONTFRAG ideal-int
-pkg syscall (freebsd-386-cgo), const IP_DROP_SOURCE_MEMBERSHIP ideal-int
-pkg syscall (freebsd-386-cgo), const IP_DUMMYNET3 ideal-int
-pkg syscall (freebsd-386-cgo), const IP_DUMMYNET_CONFIGURE ideal-int
-pkg syscall (freebsd-386-cgo), const IP_DUMMYNET_DEL ideal-int
-pkg syscall (freebsd-386-cgo), const IP_DUMMYNET_FLUSH ideal-int
-pkg syscall (freebsd-386-cgo), const IP_DUMMYNET_GET ideal-int
-pkg syscall (freebsd-386-cgo), const IP_FAITH ideal-int
-pkg syscall (freebsd-386-cgo), const IP_FW3 ideal-int
-pkg syscall (freebsd-386-cgo), const IP_FW_ADD ideal-int
-pkg syscall (freebsd-386-cgo), const IP_FW_DEL ideal-int
-pkg syscall (freebsd-386-cgo), const IP_FW_FLUSH ideal-int
-pkg syscall (freebsd-386-cgo), const IP_FW_GET ideal-int
-pkg syscall (freebsd-386-cgo), const IP_FW_NAT_CFG ideal-int
-pkg syscall (freebsd-386-cgo), const IP_FW_NAT_DEL ideal-int
-pkg syscall (freebsd-386-cgo), const IP_FW_NAT_GET_CONFIG ideal-int
-pkg syscall (freebsd-386-cgo), const IP_FW_NAT_GET_LOG ideal-int
-pkg syscall (freebsd-386-cgo), const IP_FW_RESETLOG ideal-int
-pkg syscall (freebsd-386-cgo), const IP_FW_TABLE_ADD ideal-int
-pkg syscall (freebsd-386-cgo), const IP_FW_TABLE_DEL ideal-int
-pkg syscall (freebsd-386-cgo), const IP_FW_TABLE_FLUSH ideal-int
-pkg syscall (freebsd-386-cgo), const IP_FW_TABLE_GETSIZE ideal-int
-pkg syscall (freebsd-386-cgo), const IP_FW_TABLE_LIST ideal-int
-pkg syscall (freebsd-386-cgo), const IP_FW_ZERO ideal-int
-pkg syscall (freebsd-386-cgo), const IP_HDRINCL ideal-int
-pkg syscall (freebsd-386-cgo), const IP_IPSEC_POLICY ideal-int
-pkg syscall (freebsd-386-cgo), const IP_MAXPACKET ideal-int
-pkg syscall (freebsd-386-cgo), const IP_MAX_GROUP_SRC_FILTER ideal-int
-pkg syscall (freebsd-386-cgo), const IP_MAX_MEMBERSHIPS ideal-int
-pkg syscall (freebsd-386-cgo), const IP_MAX_SOCK_MUTE_FILTER ideal-int
-pkg syscall (freebsd-386-cgo), const IP_MAX_SOCK_SRC_FILTER ideal-int
-pkg syscall (freebsd-386-cgo), const IP_MAX_SOURCE_FILTER ideal-int
-pkg syscall (freebsd-386-cgo), const IP_MF ideal-int
-pkg syscall (freebsd-386-cgo), const IP_MINTTL ideal-int
-pkg syscall (freebsd-386-cgo), const IP_MIN_MEMBERSHIPS ideal-int
-pkg syscall (freebsd-386-cgo), const IP_MSFILTER ideal-int
-pkg syscall (freebsd-386-cgo), const IP_MSS ideal-int
-pkg syscall (freebsd-386-cgo), const IP_MULTICAST_VIF ideal-int
-pkg syscall (freebsd-386-cgo), const IP_OFFMASK ideal-int
-pkg syscall (freebsd-386-cgo), const IP_ONESBCAST ideal-int
-pkg syscall (freebsd-386-cgo), const IP_OPTIONS ideal-int
-pkg syscall (freebsd-386-cgo), const IP_PORTRANGE ideal-int
-pkg syscall (freebsd-386-cgo), const IP_PORTRANGE_DEFAULT ideal-int
-pkg syscall (freebsd-386-cgo), const IP_PORTRANGE_HIGH ideal-int
-pkg syscall (freebsd-386-cgo), const IP_PORTRANGE_LOW ideal-int
-pkg syscall (freebsd-386-cgo), const IP_RECVDSTADDR ideal-int
-pkg syscall (freebsd-386-cgo), const IP_RECVIF ideal-int
-pkg syscall (freebsd-386-cgo), const IP_RECVOPTS ideal-int
-pkg syscall (freebsd-386-cgo), const IP_RECVRETOPTS ideal-int
-pkg syscall (freebsd-386-cgo), const IP_RECVTOS ideal-int
-pkg syscall (freebsd-386-cgo), const IP_RECVTTL ideal-int
-pkg syscall (freebsd-386-cgo), const IP_RETOPTS ideal-int
-pkg syscall (freebsd-386-cgo), const IP_RF ideal-int
-pkg syscall (freebsd-386-cgo), const IP_RSVP_OFF ideal-int
-pkg syscall (freebsd-386-cgo), const IP_RSVP_ON ideal-int
-pkg syscall (freebsd-386-cgo), const IP_RSVP_VIF_OFF ideal-int
-pkg syscall (freebsd-386-cgo), const IP_RSVP_VIF_ON ideal-int
-pkg syscall (freebsd-386-cgo), const IP_SENDSRCADDR ideal-int
-pkg syscall (freebsd-386-cgo), const IP_UNBLOCK_SOURCE ideal-int
-pkg syscall (freebsd-386-cgo), const ISIG ideal-int
-pkg syscall (freebsd-386-cgo), const ISTRIP ideal-int
-pkg syscall (freebsd-386-cgo), const IXANY ideal-int
-pkg syscall (freebsd-386-cgo), const IXOFF ideal-int
-pkg syscall (freebsd-386-cgo), const IXON ideal-int
-pkg syscall (freebsd-386-cgo), const LOCK_EX ideal-int
-pkg syscall (freebsd-386-cgo), const LOCK_NB ideal-int
-pkg syscall (freebsd-386-cgo), const LOCK_SH ideal-int
-pkg syscall (freebsd-386-cgo), const LOCK_UN ideal-int
-pkg syscall (freebsd-386-cgo), const MADV_AUTOSYNC ideal-int
-pkg syscall (freebsd-386-cgo), const MADV_CORE ideal-int
-pkg syscall (freebsd-386-cgo), const MADV_DONTNEED ideal-int
-pkg syscall (freebsd-386-cgo), const MADV_FREE ideal-int
-pkg syscall (freebsd-386-cgo), const MADV_NOCORE ideal-int
-pkg syscall (freebsd-386-cgo), const MADV_NORMAL ideal-int
-pkg syscall (freebsd-386-cgo), const MADV_NOSYNC ideal-int
-pkg syscall (freebsd-386-cgo), const MADV_PROTECT ideal-int
-pkg syscall (freebsd-386-cgo), const MADV_RANDOM ideal-int
-pkg syscall (freebsd-386-cgo), const MADV_SEQUENTIAL ideal-int
-pkg syscall (freebsd-386-cgo), const MADV_WILLNEED ideal-int
-pkg syscall (freebsd-386-cgo), const MAP_ANON ideal-int
-pkg syscall (freebsd-386-cgo), const MAP_ANONYMOUS ideal-int
-pkg syscall (freebsd-386-cgo), const MAP_COPY ideal-int
-pkg syscall (freebsd-386-cgo), const MAP_FILE ideal-int
-pkg syscall (freebsd-386-cgo), const MAP_FIXED ideal-int
-pkg syscall (freebsd-386-cgo), const MAP_HASSEMAPHORE ideal-int
-pkg syscall (freebsd-386-cgo), const MAP_NOCORE ideal-int
-pkg syscall (freebsd-386-cgo), const MAP_NORESERVE ideal-int
-pkg syscall (freebsd-386-cgo), const MAP_NOSYNC ideal-int
-pkg syscall (freebsd-386-cgo), const MAP_PREFAULT_READ ideal-int
-pkg syscall (freebsd-386-cgo), const MAP_PRIVATE ideal-int
-pkg syscall (freebsd-386-cgo), const MAP_RENAME ideal-int
-pkg syscall (freebsd-386-cgo), const MAP_RESERVED0080 ideal-int
-pkg syscall (freebsd-386-cgo), const MAP_RESERVED0100 ideal-int
-pkg syscall (freebsd-386-cgo), const MAP_SHARED ideal-int
-pkg syscall (freebsd-386-cgo), const MAP_STACK ideal-int
-pkg syscall (freebsd-386-cgo), const MCL_CURRENT ideal-int
-pkg syscall (freebsd-386-cgo), const MCL_FUTURE ideal-int
-pkg syscall (freebsd-386-cgo), const MSG_COMPAT ideal-int
-pkg syscall (freebsd-386-cgo), const MSG_CTRUNC ideal-int
-pkg syscall (freebsd-386-cgo), const MSG_DONTROUTE ideal-int
-pkg syscall (freebsd-386-cgo), const MSG_DONTWAIT ideal-int
-pkg syscall (freebsd-386-cgo), const MSG_EOF ideal-int
-pkg syscall (freebsd-386-cgo), const MSG_EOR ideal-int
-pkg syscall (freebsd-386-cgo), const MSG_NBIO ideal-int
-pkg syscall (freebsd-386-cgo), const MSG_NOSIGNAL ideal-int
-pkg syscall (freebsd-386-cgo), const MSG_NOTIFICATION ideal-int
-pkg syscall (freebsd-386-cgo), const MSG_OOB ideal-int
-pkg syscall (freebsd-386-cgo), const MSG_PEEK ideal-int
-pkg syscall (freebsd-386-cgo), const MSG_TRUNC ideal-int
-pkg syscall (freebsd-386-cgo), const MSG_WAITALL ideal-int
-pkg syscall (freebsd-386-cgo), const MS_ASYNC ideal-int
-pkg syscall (freebsd-386-cgo), const MS_INVALIDATE ideal-int
-pkg syscall (freebsd-386-cgo), const MS_SYNC ideal-int
-pkg syscall (freebsd-386-cgo), const NET_RT_DUMP ideal-int
-pkg syscall (freebsd-386-cgo), const NET_RT_FLAGS ideal-int
-pkg syscall (freebsd-386-cgo), const NET_RT_IFLIST ideal-int
-pkg syscall (freebsd-386-cgo), const NET_RT_IFLISTL ideal-int
-pkg syscall (freebsd-386-cgo), const NET_RT_IFMALIST ideal-int
-pkg syscall (freebsd-386-cgo), const NET_RT_MAXID ideal-int
-pkg syscall (freebsd-386-cgo), const NOFLSH ideal-int
-pkg syscall (freebsd-386-cgo), const NOTE_ATTRIB ideal-int
-pkg syscall (freebsd-386-cgo), const NOTE_CHILD ideal-int
-pkg syscall (freebsd-386-cgo), const NOTE_DELETE ideal-int
-pkg syscall (freebsd-386-cgo), const NOTE_EXEC ideal-int
-pkg syscall (freebsd-386-cgo), const NOTE_EXIT ideal-int
-pkg syscall (freebsd-386-cgo), const NOTE_EXTEND ideal-int
-pkg syscall (freebsd-386-cgo), const NOTE_FFAND ideal-int
-pkg syscall (freebsd-386-cgo), const NOTE_FFCOPY ideal-int
-pkg syscall (freebsd-386-cgo), const NOTE_FFCTRLMASK ideal-int
-pkg syscall (freebsd-386-cgo), const NOTE_FFLAGSMASK ideal-int
-pkg syscall (freebsd-386-cgo), const NOTE_FFNOP ideal-int
-pkg syscall (freebsd-386-cgo), const NOTE_FFOR ideal-int
-pkg syscall (freebsd-386-cgo), const NOTE_FORK ideal-int
-pkg syscall (freebsd-386-cgo), const NOTE_LINK ideal-int
-pkg syscall (freebsd-386-cgo), const NOTE_LOWAT ideal-int
-pkg syscall (freebsd-386-cgo), const NOTE_PCTRLMASK ideal-int
-pkg syscall (freebsd-386-cgo), const NOTE_PDATAMASK ideal-int
-pkg syscall (freebsd-386-cgo), const NOTE_RENAME ideal-int
-pkg syscall (freebsd-386-cgo), const NOTE_REVOKE ideal-int
-pkg syscall (freebsd-386-cgo), const NOTE_TRACK ideal-int
-pkg syscall (freebsd-386-cgo), const NOTE_TRACKERR ideal-int
-pkg syscall (freebsd-386-cgo), const NOTE_TRIGGER ideal-int
-pkg syscall (freebsd-386-cgo), const NOTE_WRITE ideal-int
-pkg syscall (freebsd-386-cgo), const OCRNL ideal-int
-pkg syscall (freebsd-386-cgo), const ONLCR ideal-int
-pkg syscall (freebsd-386-cgo), const ONLRET ideal-int
-pkg syscall (freebsd-386-cgo), const ONOCR ideal-int
-pkg syscall (freebsd-386-cgo), const ONOEOT ideal-int
-pkg syscall (freebsd-386-cgo), const OPOST ideal-int
-pkg syscall (freebsd-386-cgo), const O_ACCMODE ideal-int
-pkg syscall (freebsd-386-cgo), const O_DIRECT ideal-int
-pkg syscall (freebsd-386-cgo), const O_DIRECTORY ideal-int
-pkg syscall (freebsd-386-cgo), const O_EXEC ideal-int
-pkg syscall (freebsd-386-cgo), const O_EXLOCK ideal-int
-pkg syscall (freebsd-386-cgo), const O_FSYNC ideal-int
-pkg syscall (freebsd-386-cgo), const O_NDELAY ideal-int
-pkg syscall (freebsd-386-cgo), const O_NOFOLLOW ideal-int
-pkg syscall (freebsd-386-cgo), const O_SHLOCK ideal-int
-pkg syscall (freebsd-386-cgo), const O_TTY_INIT ideal-int
-pkg syscall (freebsd-386-cgo), const PARENB ideal-int
-pkg syscall (freebsd-386-cgo), const PARMRK ideal-int
-pkg syscall (freebsd-386-cgo), const PARODD ideal-int
-pkg syscall (freebsd-386-cgo), const PENDIN ideal-int
-pkg syscall (freebsd-386-cgo), const PRIO_PGRP = 1
-pkg syscall (freebsd-386-cgo), const PRIO_PGRP ideal-int
-pkg syscall (freebsd-386-cgo), const PRIO_PROCESS = 0
-pkg syscall (freebsd-386-cgo), const PRIO_PROCESS ideal-int
-pkg syscall (freebsd-386-cgo), const PRIO_USER = 2
-pkg syscall (freebsd-386-cgo), const PRIO_USER ideal-int
-pkg syscall (freebsd-386-cgo), const PROT_EXEC ideal-int
-pkg syscall (freebsd-386-cgo), const PROT_NONE ideal-int
-pkg syscall (freebsd-386-cgo), const PROT_READ ideal-int
-pkg syscall (freebsd-386-cgo), const PROT_WRITE ideal-int
-pkg syscall (freebsd-386-cgo), const PTRACE_CONT ideal-int
-pkg syscall (freebsd-386-cgo), const PTRACE_KILL ideal-int
-pkg syscall (freebsd-386-cgo), const PTRACE_TRACEME ideal-int
-pkg syscall (freebsd-386-cgo), const RLIMIT_AS ideal-int
-pkg syscall (freebsd-386-cgo), const RLIMIT_CORE ideal-int
-pkg syscall (freebsd-386-cgo), const RLIMIT_CPU ideal-int
-pkg syscall (freebsd-386-cgo), const RLIMIT_DATA ideal-int
-pkg syscall (freebsd-386-cgo), const RLIMIT_FSIZE ideal-int
-pkg syscall (freebsd-386-cgo), const RLIMIT_NOFILE ideal-int
-pkg syscall (freebsd-386-cgo), const RLIMIT_STACK ideal-int
-pkg syscall (freebsd-386-cgo), const RLIM_INFINITY ideal-int
-pkg syscall (freebsd-386-cgo), const RTAX_AUTHOR ideal-int
-pkg syscall (freebsd-386-cgo), const RTAX_BRD ideal-int
-pkg syscall (freebsd-386-cgo), const RTAX_DST ideal-int
-pkg syscall (freebsd-386-cgo), const RTAX_GATEWAY ideal-int
-pkg syscall (freebsd-386-cgo), const RTAX_GENMASK ideal-int
-pkg syscall (freebsd-386-cgo), const RTAX_IFA ideal-int
-pkg syscall (freebsd-386-cgo), const RTAX_IFP ideal-int
-pkg syscall (freebsd-386-cgo), const RTAX_MAX ideal-int
-pkg syscall (freebsd-386-cgo), const RTAX_NETMASK ideal-int
-pkg syscall (freebsd-386-cgo), const RTA_AUTHOR ideal-int
-pkg syscall (freebsd-386-cgo), const RTA_BRD ideal-int
-pkg syscall (freebsd-386-cgo), const RTA_DST ideal-int
-pkg syscall (freebsd-386-cgo), const RTA_GATEWAY ideal-int
-pkg syscall (freebsd-386-cgo), const RTA_GENMASK ideal-int
-pkg syscall (freebsd-386-cgo), const RTA_IFA ideal-int
-pkg syscall (freebsd-386-cgo), const RTA_IFP ideal-int
-pkg syscall (freebsd-386-cgo), const RTA_NETMASK ideal-int
-pkg syscall (freebsd-386-cgo), const RTF_BLACKHOLE ideal-int
-pkg syscall (freebsd-386-cgo), const RTF_BROADCAST ideal-int
-pkg syscall (freebsd-386-cgo), const RTF_DONE ideal-int
-pkg syscall (freebsd-386-cgo), const RTF_DYNAMIC ideal-int
-pkg syscall (freebsd-386-cgo), const RTF_FMASK ideal-int
-pkg syscall (freebsd-386-cgo), const RTF_GATEWAY ideal-int
-pkg syscall (freebsd-386-cgo), const RTF_HOST ideal-int
-pkg syscall (freebsd-386-cgo), const RTF_LLDATA ideal-int
-pkg syscall (freebsd-386-cgo), const RTF_LLINFO ideal-int
-pkg syscall (freebsd-386-cgo), const RTF_LOCAL ideal-int
-pkg syscall (freebsd-386-cgo), const RTF_MODIFIED ideal-int
-pkg syscall (freebsd-386-cgo), const RTF_MULTICAST ideal-int
-pkg syscall (freebsd-386-cgo), const RTF_PINNED ideal-int
-pkg syscall (freebsd-386-cgo), const RTF_PRCLONING ideal-int
-pkg syscall (freebsd-386-cgo), const RTF_PROTO1 ideal-int
-pkg syscall (freebsd-386-cgo), const RTF_PROTO2 ideal-int
-pkg syscall (freebsd-386-cgo), const RTF_PROTO3 ideal-int
-pkg syscall (freebsd-386-cgo), const RTF_REJECT ideal-int
-pkg syscall (freebsd-386-cgo), const RTF_RNH_LOCKED ideal-int
-pkg syscall (freebsd-386-cgo), const RTF_STATIC ideal-int
-pkg syscall (freebsd-386-cgo), const RTF_STICKY ideal-int
-pkg syscall (freebsd-386-cgo), const RTF_UP ideal-int
-pkg syscall (freebsd-386-cgo), const RTF_XRESOLVE ideal-int
-pkg syscall (freebsd-386-cgo), const RTM_ADD ideal-int
-pkg syscall (freebsd-386-cgo), const RTM_CHANGE ideal-int
-pkg syscall (freebsd-386-cgo), const RTM_DELADDR ideal-int
-pkg syscall (freebsd-386-cgo), const RTM_DELETE ideal-int
-pkg syscall (freebsd-386-cgo), const RTM_DELMADDR ideal-int
-pkg syscall (freebsd-386-cgo), const RTM_GET ideal-int
-pkg syscall (freebsd-386-cgo), const RTM_IEEE80211 ideal-int
-pkg syscall (freebsd-386-cgo), const RTM_IFANNOUNCE ideal-int
-pkg syscall (freebsd-386-cgo), const RTM_IFINFO ideal-int
-pkg syscall (freebsd-386-cgo), const RTM_LOCK ideal-int
-pkg syscall (freebsd-386-cgo), const RTM_LOSING ideal-int
-pkg syscall (freebsd-386-cgo), const RTM_MISS ideal-int
-pkg syscall (freebsd-386-cgo), const RTM_NEWADDR ideal-int
-pkg syscall (freebsd-386-cgo), const RTM_NEWMADDR ideal-int
-pkg syscall (freebsd-386-cgo), const RTM_OLDADD ideal-int
-pkg syscall (freebsd-386-cgo), const RTM_OLDDEL ideal-int
-pkg syscall (freebsd-386-cgo), const RTM_REDIRECT ideal-int
-pkg syscall (freebsd-386-cgo), const RTM_RESOLVE ideal-int
-pkg syscall (freebsd-386-cgo), const RTM_RTTUNIT ideal-int
-pkg syscall (freebsd-386-cgo), const RTM_VERSION ideal-int
-pkg syscall (freebsd-386-cgo), const RTV_EXPIRE ideal-int
-pkg syscall (freebsd-386-cgo), const RTV_HOPCOUNT ideal-int
-pkg syscall (freebsd-386-cgo), const RTV_MTU ideal-int
-pkg syscall (freebsd-386-cgo), const RTV_RPIPE ideal-int
-pkg syscall (freebsd-386-cgo), const RTV_RTT ideal-int
-pkg syscall (freebsd-386-cgo), const RTV_RTTVAR ideal-int
-pkg syscall (freebsd-386-cgo), const RTV_SPIPE ideal-int
-pkg syscall (freebsd-386-cgo), const RTV_SSTHRESH ideal-int
-pkg syscall (freebsd-386-cgo), const RTV_WEIGHT ideal-int
-pkg syscall (freebsd-386-cgo), const RT_CACHING_CONTEXT ideal-int
-pkg syscall (freebsd-386-cgo), const RT_DEFAULT_FIB ideal-int
-pkg syscall (freebsd-386-cgo), const RUSAGE_CHILDREN ideal-int
-pkg syscall (freebsd-386-cgo), const RUSAGE_SELF ideal-int
-pkg syscall (freebsd-386-cgo), const RUSAGE_THREAD ideal-int
-pkg syscall (freebsd-386-cgo), const SCM_BINTIME ideal-int
-pkg syscall (freebsd-386-cgo), const SCM_CREDS ideal-int
-pkg syscall (freebsd-386-cgo), const SCM_RIGHTS ideal-int
-pkg syscall (freebsd-386-cgo), const SCM_TIMESTAMP ideal-int
-pkg syscall (freebsd-386-cgo), const SIGCHLD Signal
-pkg syscall (freebsd-386-cgo), const SIGCONT Signal
-pkg syscall (freebsd-386-cgo), const SIGEMT Signal
-pkg syscall (freebsd-386-cgo), const SIGINFO Signal
-pkg syscall (freebsd-386-cgo), const SIGIO Signal
-pkg syscall (freebsd-386-cgo), const SIGIOT Signal
-pkg syscall (freebsd-386-cgo), const SIGLWP Signal
-pkg syscall (freebsd-386-cgo), const SIGPROF Signal
-pkg syscall (freebsd-386-cgo), const SIGSTOP Signal
-pkg syscall (freebsd-386-cgo), const SIGSYS Signal
-pkg syscall (freebsd-386-cgo), const SIGTHR Signal
-pkg syscall (freebsd-386-cgo), const SIGTSTP Signal
-pkg syscall (freebsd-386-cgo), const SIGTTIN Signal
-pkg syscall (freebsd-386-cgo), const SIGTTOU Signal
-pkg syscall (freebsd-386-cgo), const SIGURG Signal
-pkg syscall (freebsd-386-cgo), const SIGUSR1 Signal
-pkg syscall (freebsd-386-cgo), const SIGUSR2 Signal
-pkg syscall (freebsd-386-cgo), const SIGVTALRM Signal
-pkg syscall (freebsd-386-cgo), const SIGWINCH Signal
-pkg syscall (freebsd-386-cgo), const SIGXCPU Signal
-pkg syscall (freebsd-386-cgo), const SIGXFSZ Signal
-pkg syscall (freebsd-386-cgo), const SIOCADDMULTI ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCADDRT ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCAIFADDR ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCAIFGROUP ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCALIFADDR ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCATMARK ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCDELMULTI ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCDELRT ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCDIFADDR ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCDIFGROUP ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCDIFPHYADDR ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCDLIFADDR ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCGDRVSPEC ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCGETSGCNT ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCGETVIFCNT ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCGHIWAT ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCGIFADDR ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCGIFBRDADDR ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCGIFCAP ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCGIFCONF ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCGIFDESCR ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCGIFDSTADDR ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCGIFFIB ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCGIFFLAGS ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCGIFGENERIC ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCGIFGMEMB ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCGIFGROUP ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCGIFINDEX ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCGIFMAC ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCGIFMEDIA ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCGIFMETRIC ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCGIFMTU ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCGIFNETMASK ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCGIFPDSTADDR ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCGIFPHYS ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCGIFPSRCADDR ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCGIFSTATUS ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCGLIFADDR ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCGLIFPHYADDR ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCGLOWAT ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCGPGRP ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCGPRIVATE_0 ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCGPRIVATE_1 ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCIFCREATE ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCIFCREATE2 ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCIFDESTROY ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCIFGCLONERS ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCSDRVSPEC ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCSHIWAT ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCSIFADDR ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCSIFBRDADDR ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCSIFCAP ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCSIFDESCR ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCSIFDSTADDR ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCSIFFIB ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCSIFFLAGS ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCSIFGENERIC ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCSIFLLADDR ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCSIFMAC ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCSIFMEDIA ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCSIFMETRIC ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCSIFMTU ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCSIFNAME ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCSIFNETMASK ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCSIFPHYADDR ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCSIFPHYS ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCSIFRVNET ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCSIFVNET ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCSLIFPHYADDR ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCSLOWAT ideal-int
-pkg syscall (freebsd-386-cgo), const SIOCSPGRP ideal-int
-pkg syscall (freebsd-386-cgo), const SOCK_MAXADDRLEN ideal-int
-pkg syscall (freebsd-386-cgo), const SOCK_RDM ideal-int
-pkg syscall (freebsd-386-cgo), const SO_ACCEPTCONN ideal-int
-pkg syscall (freebsd-386-cgo), const SO_ACCEPTFILTER ideal-int
-pkg syscall (freebsd-386-cgo), const SO_BINTIME ideal-int
-pkg syscall (freebsd-386-cgo), const SO_DEBUG ideal-int
-pkg syscall (freebsd-386-cgo), const SO_ERROR ideal-int
-pkg syscall (freebsd-386-cgo), const SO_LABEL ideal-int
-pkg syscall (freebsd-386-cgo), const SO_LISTENINCQLEN ideal-int
-pkg syscall (freebsd-386-cgo), const SO_LISTENQLEN ideal-int
-pkg syscall (freebsd-386-cgo), const SO_LISTENQLIMIT ideal-int
-pkg syscall (freebsd-386-cgo), const SO_NOSIGPIPE ideal-int
-pkg syscall (freebsd-386-cgo), const SO_NO_DDP ideal-int
-pkg syscall (freebsd-386-cgo), const SO_NO_OFFLOAD ideal-int
-pkg syscall (freebsd-386-cgo), const SO_OOBINLINE ideal-int
-pkg syscall (freebsd-386-cgo), const SO_PEERLABEL ideal-int
-pkg syscall (freebsd-386-cgo), const SO_PROTOCOL ideal-int
-pkg syscall (freebsd-386-cgo), const SO_PROTOTYPE ideal-int
-pkg syscall (freebsd-386-cgo), const SO_RCVLOWAT ideal-int
-pkg syscall (freebsd-386-cgo), const SO_RCVTIMEO ideal-int
-pkg syscall (freebsd-386-cgo), const SO_REUSEPORT ideal-int
-pkg syscall (freebsd-386-cgo), const SO_SETFIB ideal-int
-pkg syscall (freebsd-386-cgo), const SO_SNDLOWAT ideal-int
-pkg syscall (freebsd-386-cgo), const SO_SNDTIMEO ideal-int
-pkg syscall (freebsd-386-cgo), const SO_TIMESTAMP ideal-int
-pkg syscall (freebsd-386-cgo), const SO_TYPE ideal-int
-pkg syscall (freebsd-386-cgo), const SO_USELOOPBACK ideal-int
-pkg syscall (freebsd-386-cgo), const SO_USER_COOKIE ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_ABORT2 ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_ACCEPT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_ACCESS ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_ACCT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_ADJTIME ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_AUDIT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_AUDITCTL ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_AUDITON ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_BIND ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_CAP_ENTER ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_CAP_GETMODE ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_CAP_GETRIGHTS ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_CAP_NEW ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_CHDIR ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_CHFLAGS ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_CHMOD ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_CHOWN ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_CHROOT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_CLOCK_GETCPUCLOCKID2 ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_CLOCK_GETRES ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_CLOCK_GETTIME ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_CLOCK_SETTIME ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_CLOSE ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_CLOSEFROM ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_CONNECT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_CPUSET ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_CPUSET_GETAFFINITY ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_CPUSET_GETID ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_CPUSET_SETAFFINITY ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_CPUSET_SETID ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_DUP ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_DUP2 ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_EACCESS ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_EXECVE ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_EXIT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_EXTATTRCTL ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_DELETE_FD ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_DELETE_FILE ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_DELETE_LINK ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_GET_FD ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_GET_FILE ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_GET_LINK ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_LIST_FD ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_LIST_FILE ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_LIST_LINK ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_SET_FD ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_SET_FILE ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_SET_LINK ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_FACCESSAT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_FCHDIR ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_FCHFLAGS ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_FCHMOD ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_FCHMODAT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_FCHOWN ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_FCHOWNAT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_FCNTL ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_FEXECVE ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_FFCLOCK_GETCOUNTER ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_FFCLOCK_GETESTIMATE ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_FFCLOCK_SETESTIMATE ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_FHOPEN ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_FHSTAT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_FHSTATFS ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_FLOCK ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_FORK ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_FPATHCONF ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_FREEBSD6_FTRUNCATE ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_FREEBSD6_LSEEK ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_FREEBSD6_MMAP ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_FREEBSD6_PREAD ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_FREEBSD6_PWRITE ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_FREEBSD6_TRUNCATE ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_FSTAT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_FSTATAT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_FSTATFS ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_FSYNC ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_FTRUNCATE ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_FUTIMES ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_FUTIMESAT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_GETAUDIT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_GETAUDIT_ADDR ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_GETAUID ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_GETCONTEXT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_GETDENTS ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_GETDIRENTRIES ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_GETDTABLESIZE ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_GETEGID ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_GETEUID ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_GETFH ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_GETFSSTAT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_GETGID ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_GETGROUPS ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_GETITIMER ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_GETLOGIN ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_GETLOGINCLASS ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_GETPEERNAME ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_GETPGID ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_GETPGRP ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_GETPID ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_GETPPID ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_GETPRIORITY ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_GETRESGID ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_GETRESUID ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_GETRLIMIT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_GETRUSAGE ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_GETSID ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_GETSOCKNAME ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_GETSOCKOPT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_GETTIMEOFDAY ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_GETUID ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_IOCTL ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_ISSETUGID ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_JAIL ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_JAIL_ATTACH ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_JAIL_GET ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_JAIL_REMOVE ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_JAIL_SET ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_KENV ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_KEVENT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_KILL ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_KLDFIND ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_KLDFIRSTMOD ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_KLDLOAD ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_KLDNEXT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_KLDSTAT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_KLDSYM ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_KLDUNLOAD ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_KLDUNLOADF ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_KQUEUE ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_KTIMER_CREATE ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_KTIMER_DELETE ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_KTIMER_GETOVERRUN ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_KTIMER_GETTIME ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_KTIMER_SETTIME ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_KTRACE ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_LCHFLAGS ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_LCHMOD ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_LCHOWN ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_LGETFH ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_LINK ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_LINKAT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_LISTEN ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_LPATHCONF ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_LSEEK ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_LSTAT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_LUTIMES ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_MAC_SYSCALL ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_MADVISE ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_MINCORE ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_MINHERIT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_MKDIR ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_MKDIRAT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_MKFIFO ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_MKFIFOAT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_MKNOD ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_MKNODAT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_MLOCK ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_MLOCKALL ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_MMAP ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_MODFIND ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_MODFNEXT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_MODNEXT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_MODSTAT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_MOUNT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_MPROTECT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_MSYNC ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_MUNLOCK ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_MUNLOCKALL ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_MUNMAP ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_NANOSLEEP ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_NFSTAT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_NLSTAT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_NMOUNT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_NSTAT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_NTP_ADJTIME ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_NTP_GETTIME ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_OBREAK ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_OPEN ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_OPENAT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_OPENBSD_POLL ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_OVADVISE ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_PATHCONF ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_PDFORK ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_PDGETPID ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_PDKILL ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_PIPE ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_POLL ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_POSIX_FADVISE ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_POSIX_FALLOCATE ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_POSIX_OPENPT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_PREAD ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_PREADV ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_PROFIL ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_PSELECT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_PTRACE ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_PWRITE ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_PWRITEV ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_QUOTACTL ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_RCTL_ADD_RULE ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_RCTL_GET_LIMITS ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_RCTL_GET_RACCT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_RCTL_GET_RULES ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_RCTL_REMOVE_RULE ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_READ ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_READLINK ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_READLINKAT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_READV ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_REBOOT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_RECVFROM ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_RECVMSG ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_RENAME ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_RENAMEAT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_REVOKE ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_RFORK ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_RMDIR ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_RTPRIO ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_RTPRIO_THREAD ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SBRK ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SCHED_GETPARAM ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SCHED_GETSCHEDULER ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SCHED_GET_PRIORITY_MAX ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SCHED_GET_PRIORITY_MIN ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SCHED_RR_GET_INTERVAL ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SCHED_SETPARAM ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SCHED_SETSCHEDULER ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SCHED_YIELD ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SCTP_GENERIC_RECVMSG ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SCTP_GENERIC_SENDMSG ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SCTP_GENERIC_SENDMSG_IOV ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SCTP_PEELOFF ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SELECT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SENDFILE ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SENDMSG ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SENDTO ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SETAUDIT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SETAUDIT_ADDR ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SETAUID ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SETCONTEXT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SETEGID ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SETEUID ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SETFIB ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SETGID ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SETGROUPS ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SETITIMER ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SETLOGIN ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SETLOGINCLASS ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SETPGID ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SETPRIORITY ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SETREGID ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SETRESGID ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SETRESUID ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SETREUID ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SETRLIMIT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SETSID ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SETSOCKOPT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SETTIMEOFDAY ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SETUID ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SHM_OPEN ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SHM_UNLINK ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SHUTDOWN ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SIGACTION ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SIGALTSTACK ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SIGPENDING ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SIGPROCMASK ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SIGQUEUE ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SIGRETURN ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SIGSUSPEND ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SIGTIMEDWAIT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SIGWAIT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SIGWAITINFO ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SOCKET ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SOCKETPAIR ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SSTK ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_STAT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_STATFS ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SWAPCONTEXT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SWAPOFF ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SWAPON ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SYMLINK ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SYMLINKAT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SYNC ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_SYSARCH ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_THR_CREATE ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_THR_EXIT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_THR_KILL ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_THR_KILL2 ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_THR_NEW ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_THR_SELF ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_THR_SET_NAME ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_THR_SUSPEND ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_THR_WAKE ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_TRUNCATE ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_UMASK ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_UNDELETE ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_UNLINK ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_UNLINKAT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_UNMOUNT ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_UTIMES ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_UTRACE ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_UUIDGEN ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_VFORK ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_WAIT4 ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_WAIT6 ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_WRITE ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_WRITEV ideal-int
-pkg syscall (freebsd-386-cgo), const SYS_YIELD ideal-int
-pkg syscall (freebsd-386-cgo), const SYS__UMTX_LOCK ideal-int
-pkg syscall (freebsd-386-cgo), const SYS__UMTX_OP ideal-int
-pkg syscall (freebsd-386-cgo), const SYS__UMTX_UNLOCK ideal-int
-pkg syscall (freebsd-386-cgo), const SYS___ACL_ACLCHECK_FD ideal-int
-pkg syscall (freebsd-386-cgo), const SYS___ACL_ACLCHECK_FILE ideal-int
-pkg syscall (freebsd-386-cgo), const SYS___ACL_ACLCHECK_LINK ideal-int
-pkg syscall (freebsd-386-cgo), const SYS___ACL_DELETE_FD ideal-int
-pkg syscall (freebsd-386-cgo), const SYS___ACL_DELETE_FILE ideal-int
-pkg syscall (freebsd-386-cgo), const SYS___ACL_DELETE_LINK ideal-int
-pkg syscall (freebsd-386-cgo), const SYS___ACL_GET_FD ideal-int
-pkg syscall (freebsd-386-cgo), const SYS___ACL_GET_FILE ideal-int
-pkg syscall (freebsd-386-cgo), const SYS___ACL_GET_LINK ideal-int
-pkg syscall (freebsd-386-cgo), const SYS___ACL_SET_FD ideal-int
-pkg syscall (freebsd-386-cgo), const SYS___ACL_SET_FILE ideal-int
-pkg syscall (freebsd-386-cgo), const SYS___ACL_SET_LINK ideal-int
-pkg syscall (freebsd-386-cgo), const SYS___GETCWD ideal-int
-pkg syscall (freebsd-386-cgo), const SYS___MAC_EXECVE ideal-int
-pkg syscall (freebsd-386-cgo), const SYS___MAC_GET_FD ideal-int
-pkg syscall (freebsd-386-cgo), const SYS___MAC_GET_FILE ideal-int
-pkg syscall (freebsd-386-cgo), const SYS___MAC_GET_LINK ideal-int
-pkg syscall (freebsd-386-cgo), const SYS___MAC_GET_PID ideal-int
-pkg syscall (freebsd-386-cgo), const SYS___MAC_GET_PROC ideal-int
-pkg syscall (freebsd-386-cgo), const SYS___MAC_SET_FD ideal-int
-pkg syscall (freebsd-386-cgo), const SYS___MAC_SET_FILE ideal-int
-pkg syscall (freebsd-386-cgo), const SYS___MAC_SET_LINK ideal-int
-pkg syscall (freebsd-386-cgo), const SYS___MAC_SET_PROC ideal-int
-pkg syscall (freebsd-386-cgo), const SYS___SETUGID ideal-int
-pkg syscall (freebsd-386-cgo), const SYS___SYSCTL ideal-int
-pkg syscall (freebsd-386-cgo), const SizeofBpfHdr ideal-int
-pkg syscall (freebsd-386-cgo), const SizeofBpfInsn ideal-int
-pkg syscall (freebsd-386-cgo), const SizeofBpfProgram ideal-int
-pkg syscall (freebsd-386-cgo), const SizeofBpfStat ideal-int
-pkg syscall (freebsd-386-cgo), const SizeofBpfVersion ideal-int
-pkg syscall (freebsd-386-cgo), const SizeofBpfZbuf ideal-int
-pkg syscall (freebsd-386-cgo), const SizeofBpfZbufHeader ideal-int
-pkg syscall (freebsd-386-cgo), const SizeofCmsghdr ideal-int
-pkg syscall (freebsd-386-cgo), const SizeofICMPv6Filter = 32
-pkg syscall (freebsd-386-cgo), const SizeofICMPv6Filter ideal-int
-pkg syscall (freebsd-386-cgo), const SizeofIPMreq ideal-int
-pkg syscall (freebsd-386-cgo), const SizeofIPMreqn ideal-int
-pkg syscall (freebsd-386-cgo), const SizeofIPv6MTUInfo = 32
-pkg syscall (freebsd-386-cgo), const SizeofIPv6MTUInfo ideal-int
-pkg syscall (freebsd-386-cgo), const SizeofIPv6Mreq ideal-int
-pkg syscall (freebsd-386-cgo), const SizeofIfAnnounceMsghdr ideal-int
-pkg syscall (freebsd-386-cgo), const SizeofIfData ideal-int
-pkg syscall (freebsd-386-cgo), const SizeofIfMsghdr ideal-int
-pkg syscall (freebsd-386-cgo), const SizeofIfaMsghdr ideal-int
-pkg syscall (freebsd-386-cgo), const SizeofIfmaMsghdr ideal-int
-pkg syscall (freebsd-386-cgo), const SizeofInet6Pktinfo ideal-int
-pkg syscall (freebsd-386-cgo), const SizeofLinger ideal-int
-pkg syscall (freebsd-386-cgo), const SizeofMsghdr ideal-int
-pkg syscall (freebsd-386-cgo), const SizeofRtMetrics ideal-int
-pkg syscall (freebsd-386-cgo), const SizeofRtMsghdr ideal-int
-pkg syscall (freebsd-386-cgo), const SizeofSockaddrAny ideal-int
-pkg syscall (freebsd-386-cgo), const SizeofSockaddrDatalink ideal-int
-pkg syscall (freebsd-386-cgo), const SizeofSockaddrInet4 ideal-int
-pkg syscall (freebsd-386-cgo), const SizeofSockaddrInet6 ideal-int
-pkg syscall (freebsd-386-cgo), const SizeofSockaddrUnix ideal-int
-pkg syscall (freebsd-386-cgo), const TCIFLUSH ideal-int
-pkg syscall (freebsd-386-cgo), const TCIOFLUSH ideal-int
-pkg syscall (freebsd-386-cgo), const TCOFLUSH ideal-int
-pkg syscall (freebsd-386-cgo), const TCP_CA_NAME_MAX ideal-int
-pkg syscall (freebsd-386-cgo), const TCP_CONGESTION ideal-int
-pkg syscall (freebsd-386-cgo), const TCP_INFO ideal-int
-pkg syscall (freebsd-386-cgo), const TCP_KEEPCNT ideal-int
-pkg syscall (freebsd-386-cgo), const TCP_KEEPIDLE ideal-int
-pkg syscall (freebsd-386-cgo), const TCP_KEEPINIT ideal-int
-pkg syscall (freebsd-386-cgo), const TCP_KEEPINTVL ideal-int
-pkg syscall (freebsd-386-cgo), const TCP_MAXBURST ideal-int
-pkg syscall (freebsd-386-cgo), const TCP_MAXHLEN ideal-int
-pkg syscall (freebsd-386-cgo), const TCP_MAXOLEN ideal-int
-pkg syscall (freebsd-386-cgo), const TCP_MAXSEG ideal-int
-pkg syscall (freebsd-386-cgo), const TCP_MAXWIN ideal-int
-pkg syscall (freebsd-386-cgo), const TCP_MAX_SACK ideal-int
-pkg syscall (freebsd-386-cgo), const TCP_MAX_WINSHIFT ideal-int
-pkg syscall (freebsd-386-cgo), const TCP_MD5SIG ideal-int
-pkg syscall (freebsd-386-cgo), const TCP_MINMSS ideal-int
-pkg syscall (freebsd-386-cgo), const TCP_MSS ideal-int
-pkg syscall (freebsd-386-cgo), const TCP_NOOPT ideal-int
-pkg syscall (freebsd-386-cgo), const TCP_NOPUSH ideal-int
-pkg syscall (freebsd-386-cgo), const TCSAFLUSH ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCCBRK ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCCDTR ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCCONS ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCDRAIN ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCEXCL ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCEXT ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCFLUSH ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCGDRAINWAIT ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCGETA ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCGETD ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCGPGRP ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCGPTN ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCGSID ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCGWINSZ ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCMBIC ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCMBIS ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCMGDTRWAIT ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCMGET ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCMSDTRWAIT ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCMSET ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCM_CAR ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCM_CD ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCM_CTS ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCM_DCD ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCM_DSR ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCM_DTR ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCM_LE ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCM_RI ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCM_RNG ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCM_RTS ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCM_SR ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCM_ST ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCNOTTY ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCNXCL ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCOUTQ ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCPKT ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCPKT_DATA ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCPKT_DOSTOP ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCPKT_FLUSHREAD ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCPKT_FLUSHWRITE ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCPKT_IOCTL ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCPKT_NOSTOP ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCPKT_START ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCPKT_STOP ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCPTMASTER ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCSBRK ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCSCTTY ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCSDRAINWAIT ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCSDTR ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCSETA ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCSETAF ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCSETAW ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCSETD ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCSIG ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCSPGRP ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCSTART ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCSTAT ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCSTI ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCSTOP ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCSWINSZ ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCTIMESTAMP ideal-int
-pkg syscall (freebsd-386-cgo), const TIOCUCNTL ideal-int
-pkg syscall (freebsd-386-cgo), const TOSTOP ideal-int
-pkg syscall (freebsd-386-cgo), const VDISCARD ideal-int
-pkg syscall (freebsd-386-cgo), const VDSUSP ideal-int
-pkg syscall (freebsd-386-cgo), const VEOF ideal-int
-pkg syscall (freebsd-386-cgo), const VEOL ideal-int
-pkg syscall (freebsd-386-cgo), const VEOL2 ideal-int
-pkg syscall (freebsd-386-cgo), const VERASE ideal-int
-pkg syscall (freebsd-386-cgo), const VERASE2 ideal-int
-pkg syscall (freebsd-386-cgo), const VINTR ideal-int
-pkg syscall (freebsd-386-cgo), const VKILL ideal-int
-pkg syscall (freebsd-386-cgo), const VLNEXT ideal-int
-pkg syscall (freebsd-386-cgo), const VMIN ideal-int
-pkg syscall (freebsd-386-cgo), const VQUIT ideal-int
-pkg syscall (freebsd-386-cgo), const VREPRINT ideal-int
-pkg syscall (freebsd-386-cgo), const VSTART ideal-int
-pkg syscall (freebsd-386-cgo), const VSTATUS ideal-int
-pkg syscall (freebsd-386-cgo), const VSTOP ideal-int
-pkg syscall (freebsd-386-cgo), const VSUSP ideal-int
-pkg syscall (freebsd-386-cgo), const VTIME ideal-int
-pkg syscall (freebsd-386-cgo), const VWERASE ideal-int
-pkg syscall (freebsd-386-cgo), const WCONTINUED ideal-int
-pkg syscall (freebsd-386-cgo), const WCOREFLAG ideal-int
-pkg syscall (freebsd-386-cgo), const WLINUXCLONE ideal-int
-pkg syscall (freebsd-386-cgo), const WNOHANG ideal-int
-pkg syscall (freebsd-386-cgo), const WNOWAIT ideal-int
-pkg syscall (freebsd-386-cgo), const WSTOPPED ideal-int
-pkg syscall (freebsd-386-cgo), const WUNTRACED ideal-int
-pkg syscall (freebsd-386-cgo), func Accept(int) (int, Sockaddr, error)
-pkg syscall (freebsd-386-cgo), func Access(string, uint32) error
-pkg syscall (freebsd-386-cgo), func Adjtime(*Timeval, *Timeval) error
-pkg syscall (freebsd-386-cgo), func Bind(int, Sockaddr) error
-pkg syscall (freebsd-386-cgo), func BpfBuflen(int) (int, error)
-pkg syscall (freebsd-386-cgo), func BpfDatalink(int) (int, error)
-pkg syscall (freebsd-386-cgo), func BpfHeadercmpl(int) (int, error)
-pkg syscall (freebsd-386-cgo), func BpfInterface(int, string) (string, error)
-pkg syscall (freebsd-386-cgo), func BpfJump(int, int, int, int) *BpfInsn
-pkg syscall (freebsd-386-cgo), func BpfStats(int) (*BpfStat, error)
-pkg syscall (freebsd-386-cgo), func BpfStmt(int, int) *BpfInsn
-pkg syscall (freebsd-386-cgo), func BpfTimeout(int) (*Timeval, error)
-pkg syscall (freebsd-386-cgo), func CheckBpfVersion(int) error
-pkg syscall (freebsd-386-cgo), func Chflags(string, int) error
-pkg syscall (freebsd-386-cgo), func Chroot(string) error
-pkg syscall (freebsd-386-cgo), func Close(int) error
-pkg syscall (freebsd-386-cgo), func CloseOnExec(int)
-pkg syscall (freebsd-386-cgo), func CmsgLen(int) int
-pkg syscall (freebsd-386-cgo), func CmsgSpace(int) int
-pkg syscall (freebsd-386-cgo), func Connect(int, Sockaddr) error
-pkg syscall (freebsd-386-cgo), func Dup(int) (int, error)
-pkg syscall (freebsd-386-cgo), func Dup2(int, int) error
-pkg syscall (freebsd-386-cgo), func Fchdir(int) error
-pkg syscall (freebsd-386-cgo), func Fchflags(int, int) error
-pkg syscall (freebsd-386-cgo), func Fchmod(int, uint32) error
-pkg syscall (freebsd-386-cgo), func Fchown(int, int, int) error
-pkg syscall (freebsd-386-cgo), func Flock(int, int) error
-pkg syscall (freebsd-386-cgo), func FlushBpf(int) error
-pkg syscall (freebsd-386-cgo), func ForkExec(string, []string, *ProcAttr) (int, error)
-pkg syscall (freebsd-386-cgo), func Fpathconf(int, int) (int, error)
-pkg syscall (freebsd-386-cgo), func Fstat(int, *Stat_t) error
-pkg syscall (freebsd-386-cgo), func Fstatfs(int, *Statfs_t) error
-pkg syscall (freebsd-386-cgo), func Fsync(int) error
-pkg syscall (freebsd-386-cgo), func Ftruncate(int, int64) error
-pkg syscall (freebsd-386-cgo), func Futimes(int, []Timeval) error
-pkg syscall (freebsd-386-cgo), func Getdirentries(int, []uint8, *uintptr) (int, error)
-pkg syscall (freebsd-386-cgo), func Getdtablesize() int
-pkg syscall (freebsd-386-cgo), func Getfsstat([]Statfs_t, int) (int, error)
-pkg syscall (freebsd-386-cgo), func Getpeername(int) (Sockaddr, error)
-pkg syscall (freebsd-386-cgo), func Getpgid(int) (int, error)
-pkg syscall (freebsd-386-cgo), func Getpgrp() int
-pkg syscall (freebsd-386-cgo), func Getpriority(int, int) (int, error)
-pkg syscall (freebsd-386-cgo), func Getrlimit(int, *Rlimit) error
-pkg syscall (freebsd-386-cgo), func Getrusage(int, *Rusage) error
-pkg syscall (freebsd-386-cgo), func Getsid(int) (int, error)
-pkg syscall (freebsd-386-cgo), func Getsockname(int) (Sockaddr, error)
-pkg syscall (freebsd-386-cgo), func GetsockoptByte(int, int, int) (uint8, error)
-pkg syscall (freebsd-386-cgo), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
-pkg syscall (freebsd-386-cgo), func GetsockoptIPMreq(int, int, int) (*IPMreq, error)
-pkg syscall (freebsd-386-cgo), func GetsockoptIPMreqn(int, int, int) (*IPMreqn, error)
-pkg syscall (freebsd-386-cgo), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
-pkg syscall (freebsd-386-cgo), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error)
-pkg syscall (freebsd-386-cgo), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error)
-pkg syscall (freebsd-386-cgo), func GetsockoptInt(int, int, int) (int, error)
-pkg syscall (freebsd-386-cgo), func Issetugid() bool
-pkg syscall (freebsd-386-cgo), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error)
-pkg syscall (freebsd-386-cgo), func Kill(int, Signal) error
-pkg syscall (freebsd-386-cgo), func Kqueue() (int, error)
-pkg syscall (freebsd-386-cgo), func Listen(int, int) error
-pkg syscall (freebsd-386-cgo), func Lstat(string, *Stat_t) error
-pkg syscall (freebsd-386-cgo), func Mkfifo(string, uint32) error
-pkg syscall (freebsd-386-cgo), func Mknod(string, uint32, int) error
-pkg syscall (freebsd-386-cgo), func Mmap(int, int64, int, int, int) ([]uint8, error)
-pkg syscall (freebsd-386-cgo), func Munmap([]uint8) error
-pkg syscall (freebsd-386-cgo), func Nanosleep(*Timespec, *Timespec) error
-pkg syscall (freebsd-386-cgo), func Open(string, int, uint32) (int, error)
-pkg syscall (freebsd-386-cgo), func ParseDirent([]uint8, int, []string) (int, int, []string)
-pkg syscall (freebsd-386-cgo), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error)
-pkg syscall (freebsd-386-cgo), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error)
-pkg syscall (freebsd-386-cgo), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error)
-pkg syscall (freebsd-386-cgo), func ParseUnixRights(*SocketControlMessage) ([]int, error)
-pkg syscall (freebsd-386-cgo), func Pathconf(string, int) (int, error)
-pkg syscall (freebsd-386-cgo), func Pipe([]int) error
-pkg syscall (freebsd-386-cgo), func Pread(int, []uint8, int64) (int, error)
-pkg syscall (freebsd-386-cgo), func Pwrite(int, []uint8, int64) (int, error)
-pkg syscall (freebsd-386-cgo), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (freebsd-386-cgo), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (freebsd-386-cgo), func Read(int, []uint8) (int, error)
-pkg syscall (freebsd-386-cgo), func ReadDirent(int, []uint8) (int, error)
-pkg syscall (freebsd-386-cgo), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
-pkg syscall (freebsd-386-cgo), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
-pkg syscall (freebsd-386-cgo), func Revoke(string) error
-pkg syscall (freebsd-386-cgo), func RouteRIB(int, int) ([]uint8, error)
-pkg syscall (freebsd-386-cgo), func Seek(int, int64, int) (int64, error)
-pkg syscall (freebsd-386-cgo), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error
-pkg syscall (freebsd-386-cgo), func Sendfile(int, int, *int64, int) (int, error)
-pkg syscall (freebsd-386-cgo), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
-pkg syscall (freebsd-386-cgo), func Sendto(int, []uint8, int, Sockaddr) error
-pkg syscall (freebsd-386-cgo), func SetBpf(int, []BpfInsn) error
-pkg syscall (freebsd-386-cgo), func SetBpfBuflen(int, int) (int, error)
-pkg syscall (freebsd-386-cgo), func SetBpfDatalink(int, int) (int, error)
-pkg syscall (freebsd-386-cgo), func SetBpfHeadercmpl(int, int) error
-pkg syscall (freebsd-386-cgo), func SetBpfImmediate(int, int) error
-pkg syscall (freebsd-386-cgo), func SetBpfInterface(int, string) error
-pkg syscall (freebsd-386-cgo), func SetBpfPromisc(int, int) error
-pkg syscall (freebsd-386-cgo), func SetBpfTimeout(int, *Timeval) error
-pkg syscall (freebsd-386-cgo), func SetKevent(*Kevent_t, int, int, int)
-pkg syscall (freebsd-386-cgo), func SetNonblock(int, bool) error
-pkg syscall (freebsd-386-cgo), func Setegid(int) error
-pkg syscall (freebsd-386-cgo), func Seteuid(int) error
-pkg syscall (freebsd-386-cgo), func Setgid(int) error
-pkg syscall (freebsd-386-cgo), func Setgroups([]int) error
-pkg syscall (freebsd-386-cgo), func Setlogin(string) error
-pkg syscall (freebsd-386-cgo), func Setpgid(int, int) error
-pkg syscall (freebsd-386-cgo), func Setpriority(int, int, int) error
-pkg syscall (freebsd-386-cgo), func Setregid(int, int) error
-pkg syscall (freebsd-386-cgo), func Setreuid(int, int) error
-pkg syscall (freebsd-386-cgo), func Setrlimit(int, *Rlimit) error
-pkg syscall (freebsd-386-cgo), func Setsid() (int, error)
-pkg syscall (freebsd-386-cgo), func SetsockoptByte(int, int, int, uint8) error
-pkg syscall (freebsd-386-cgo), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
-pkg syscall (freebsd-386-cgo), func SetsockoptIPMreq(int, int, int, *IPMreq) error
-pkg syscall (freebsd-386-cgo), func SetsockoptIPMreqn(int, int, int, *IPMreqn) error
-pkg syscall (freebsd-386-cgo), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error
-pkg syscall (freebsd-386-cgo), func SetsockoptInet4Addr(int, int, int, [4]uint8) error
-pkg syscall (freebsd-386-cgo), func SetsockoptInt(int, int, int, int) error
-pkg syscall (freebsd-386-cgo), func SetsockoptLinger(int, int, int, *Linger) error
-pkg syscall (freebsd-386-cgo), func SetsockoptString(int, int, int, string) error
-pkg syscall (freebsd-386-cgo), func SetsockoptTimeval(int, int, int, *Timeval) error
-pkg syscall (freebsd-386-cgo), func Settimeofday(*Timeval) error
-pkg syscall (freebsd-386-cgo), func Setuid(int) error
-pkg syscall (freebsd-386-cgo), func Shutdown(int, int) error
-pkg syscall (freebsd-386-cgo), func SlicePtrFromStrings([]string) ([]*uint8, error)
-pkg syscall (freebsd-386-cgo), func Socket(int, int, int) (int, error)
-pkg syscall (freebsd-386-cgo), func Socketpair(int, int, int) ([2]int, error)
-pkg syscall (freebsd-386-cgo), func Stat(string, *Stat_t) error
-pkg syscall (freebsd-386-cgo), func Statfs(string, *Statfs_t) error
-pkg syscall (freebsd-386-cgo), func StringSlicePtr([]string) []*uint8
-pkg syscall (freebsd-386-cgo), func Sync() error
-pkg syscall (freebsd-386-cgo), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (freebsd-386-cgo), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (freebsd-386-cgo), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (freebsd-386-cgo), func Sysctl(string) (string, error)
-pkg syscall (freebsd-386-cgo), func SysctlUint32(string) (uint32, error)
-pkg syscall (freebsd-386-cgo), func TimevalToNsec(Timeval) int64
-pkg syscall (freebsd-386-cgo), func Truncate(string, int64) error
-pkg syscall (freebsd-386-cgo), func Umask(int) int
-pkg syscall (freebsd-386-cgo), func Undelete(string) error
-pkg syscall (freebsd-386-cgo), func UnixRights(...int) []uint8
-pkg syscall (freebsd-386-cgo), func Unmount(string, int) error
-pkg syscall (freebsd-386-cgo), func Wait4(int, *WaitStatus, int, *Rusage) (int, error)
-pkg syscall (freebsd-386-cgo), func Write(int, []uint8) (int, error)
-pkg syscall (freebsd-386-cgo), method (*Cmsghdr) SetLen(int)
-pkg syscall (freebsd-386-cgo), method (*Iovec) SetLen(int)
-pkg syscall (freebsd-386-cgo), method (*Msghdr) SetControllen(int)
-pkg syscall (freebsd-386-cgo), type BpfHdr struct
-pkg syscall (freebsd-386-cgo), type BpfHdr struct, Caplen uint32
-pkg syscall (freebsd-386-cgo), type BpfHdr struct, Datalen uint32
-pkg syscall (freebsd-386-cgo), type BpfHdr struct, Hdrlen uint16
-pkg syscall (freebsd-386-cgo), type BpfHdr struct, Pad_cgo_0 [2]uint8
-pkg syscall (freebsd-386-cgo), type BpfHdr struct, Tstamp Timeval
-pkg syscall (freebsd-386-cgo), type BpfInsn struct
-pkg syscall (freebsd-386-cgo), type BpfInsn struct, Code uint16
-pkg syscall (freebsd-386-cgo), type BpfInsn struct, Jf uint8
-pkg syscall (freebsd-386-cgo), type BpfInsn struct, Jt uint8
-pkg syscall (freebsd-386-cgo), type BpfInsn struct, K uint32
-pkg syscall (freebsd-386-cgo), type BpfProgram struct
-pkg syscall (freebsd-386-cgo), type BpfProgram struct, Insns *BpfInsn
-pkg syscall (freebsd-386-cgo), type BpfProgram struct, Len uint32
-pkg syscall (freebsd-386-cgo), type BpfStat struct
-pkg syscall (freebsd-386-cgo), type BpfStat struct, Drop uint32
-pkg syscall (freebsd-386-cgo), type BpfStat struct, Recv uint32
-pkg syscall (freebsd-386-cgo), type BpfVersion struct
-pkg syscall (freebsd-386-cgo), type BpfVersion struct, Major uint16
-pkg syscall (freebsd-386-cgo), type BpfVersion struct, Minor uint16
-pkg syscall (freebsd-386-cgo), type BpfZbuf struct
-pkg syscall (freebsd-386-cgo), type BpfZbuf struct, Bufa *uint8
-pkg syscall (freebsd-386-cgo), type BpfZbuf struct, Bufb *uint8
-pkg syscall (freebsd-386-cgo), type BpfZbuf struct, Buflen uint32
-pkg syscall (freebsd-386-cgo), type BpfZbufHeader struct
-pkg syscall (freebsd-386-cgo), type BpfZbufHeader struct, Kernel_gen uint32
-pkg syscall (freebsd-386-cgo), type BpfZbufHeader struct, Kernel_len uint32
-pkg syscall (freebsd-386-cgo), type BpfZbufHeader struct, User_gen uint32
-pkg syscall (freebsd-386-cgo), type BpfZbufHeader struct, X_bzh_pad [5]uint32
-pkg syscall (freebsd-386-cgo), type Cmsghdr struct
-pkg syscall (freebsd-386-cgo), type Cmsghdr struct, Len uint32
-pkg syscall (freebsd-386-cgo), type Cmsghdr struct, Level int32
-pkg syscall (freebsd-386-cgo), type Cmsghdr struct, Type int32
-pkg syscall (freebsd-386-cgo), type Credential struct
-pkg syscall (freebsd-386-cgo), type Credential struct, Gid uint32
-pkg syscall (freebsd-386-cgo), type Credential struct, Groups []uint32
-pkg syscall (freebsd-386-cgo), type Credential struct, Uid uint32
-pkg syscall (freebsd-386-cgo), type Dirent struct
-pkg syscall (freebsd-386-cgo), type Dirent struct, Fileno uint32
-pkg syscall (freebsd-386-cgo), type Dirent struct, Name [256]int8
-pkg syscall (freebsd-386-cgo), type Dirent struct, Namlen uint8
-pkg syscall (freebsd-386-cgo), type Dirent struct, Reclen uint16
-pkg syscall (freebsd-386-cgo), type Dirent struct, Type uint8
-pkg syscall (freebsd-386-cgo), type FdSet struct
-pkg syscall (freebsd-386-cgo), type FdSet struct, X__fds_bits [32]uint32
-pkg syscall (freebsd-386-cgo), type Flock_t struct
-pkg syscall (freebsd-386-cgo), type Flock_t struct, Len int64
-pkg syscall (freebsd-386-cgo), type Flock_t struct, Pid int32
-pkg syscall (freebsd-386-cgo), type Flock_t struct, Start int64
-pkg syscall (freebsd-386-cgo), type Flock_t struct, Sysid int32
-pkg syscall (freebsd-386-cgo), type Flock_t struct, Type int16
-pkg syscall (freebsd-386-cgo), type Flock_t struct, Whence int16
-pkg syscall (freebsd-386-cgo), type Fsid struct
-pkg syscall (freebsd-386-cgo), type Fsid struct, Val [2]int32
-pkg syscall (freebsd-386-cgo), type ICMPv6Filter struct
-pkg syscall (freebsd-386-cgo), type ICMPv6Filter struct, Filt [8]uint32
-pkg syscall (freebsd-386-cgo), type IPMreqn struct
-pkg syscall (freebsd-386-cgo), type IPMreqn struct, Address [4]uint8
-pkg syscall (freebsd-386-cgo), type IPMreqn struct, Ifindex int32
-pkg syscall (freebsd-386-cgo), type IPMreqn struct, Multiaddr [4]uint8
-pkg syscall (freebsd-386-cgo), type IPv6MTUInfo struct
-pkg syscall (freebsd-386-cgo), type IPv6MTUInfo struct, Addr RawSockaddrInet6
-pkg syscall (freebsd-386-cgo), type IPv6MTUInfo struct, Mtu uint32
-pkg syscall (freebsd-386-cgo), type IfAnnounceMsghdr struct
-pkg syscall (freebsd-386-cgo), type IfAnnounceMsghdr struct, Index uint16
-pkg syscall (freebsd-386-cgo), type IfAnnounceMsghdr struct, Msglen uint16
-pkg syscall (freebsd-386-cgo), type IfAnnounceMsghdr struct, Name [16]int8
-pkg syscall (freebsd-386-cgo), type IfAnnounceMsghdr struct, Type uint8
-pkg syscall (freebsd-386-cgo), type IfAnnounceMsghdr struct, Version uint8
-pkg syscall (freebsd-386-cgo), type IfAnnounceMsghdr struct, What uint16
-pkg syscall (freebsd-386-cgo), type IfData struct
-pkg syscall (freebsd-386-cgo), type IfData struct, Addrlen uint8
-pkg syscall (freebsd-386-cgo), type IfData struct, Baudrate uint32
-pkg syscall (freebsd-386-cgo), type IfData struct, Collisions uint32
-pkg syscall (freebsd-386-cgo), type IfData struct, Datalen uint8
-pkg syscall (freebsd-386-cgo), type IfData struct, Epoch int32
-pkg syscall (freebsd-386-cgo), type IfData struct, Hdrlen uint8
-pkg syscall (freebsd-386-cgo), type IfData struct, Hwassist uint32
-pkg syscall (freebsd-386-cgo), type IfData struct, Ibytes uint32
-pkg syscall (freebsd-386-cgo), type IfData struct, Ierrors uint32
-pkg syscall (freebsd-386-cgo), type IfData struct, Imcasts uint32
-pkg syscall (freebsd-386-cgo), type IfData struct, Ipackets uint32
-pkg syscall (freebsd-386-cgo), type IfData struct, Iqdrops uint32
-pkg syscall (freebsd-386-cgo), type IfData struct, Lastchange Timeval
-pkg syscall (freebsd-386-cgo), type IfData struct, Link_state uint8
-pkg syscall (freebsd-386-cgo), type IfData struct, Metric uint32
-pkg syscall (freebsd-386-cgo), type IfData struct, Mtu uint32
-pkg syscall (freebsd-386-cgo), type IfData struct, Noproto uint32
-pkg syscall (freebsd-386-cgo), type IfData struct, Obytes uint32
-pkg syscall (freebsd-386-cgo), type IfData struct, Oerrors uint32
-pkg syscall (freebsd-386-cgo), type IfData struct, Omcasts uint32
-pkg syscall (freebsd-386-cgo), type IfData struct, Opackets uint32
-pkg syscall (freebsd-386-cgo), type IfData struct, Physical uint8
-pkg syscall (freebsd-386-cgo), type IfData struct, Spare_char1 uint8
-pkg syscall (freebsd-386-cgo), type IfData struct, Spare_char2 uint8
-pkg syscall (freebsd-386-cgo), type IfData struct, Type uint8
-pkg syscall (freebsd-386-cgo), type IfMsghdr struct
-pkg syscall (freebsd-386-cgo), type IfMsghdr struct, Addrs int32
-pkg syscall (freebsd-386-cgo), type IfMsghdr struct, Data IfData
-pkg syscall (freebsd-386-cgo), type IfMsghdr struct, Flags int32
-pkg syscall (freebsd-386-cgo), type IfMsghdr struct, Index uint16
-pkg syscall (freebsd-386-cgo), type IfMsghdr struct, Msglen uint16
-pkg syscall (freebsd-386-cgo), type IfMsghdr struct, Pad_cgo_0 [2]uint8
-pkg syscall (freebsd-386-cgo), type IfMsghdr struct, Type uint8
-pkg syscall (freebsd-386-cgo), type IfMsghdr struct, Version uint8
-pkg syscall (freebsd-386-cgo), type IfaMsghdr struct
-pkg syscall (freebsd-386-cgo), type IfaMsghdr struct, Addrs int32
-pkg syscall (freebsd-386-cgo), type IfaMsghdr struct, Flags int32
-pkg syscall (freebsd-386-cgo), type IfaMsghdr struct, Index uint16
-pkg syscall (freebsd-386-cgo), type IfaMsghdr struct, Metric int32
-pkg syscall (freebsd-386-cgo), type IfaMsghdr struct, Msglen uint16
-pkg syscall (freebsd-386-cgo), type IfaMsghdr struct, Pad_cgo_0 [2]uint8
-pkg syscall (freebsd-386-cgo), type IfaMsghdr struct, Type uint8
-pkg syscall (freebsd-386-cgo), type IfaMsghdr struct, Version uint8
-pkg syscall (freebsd-386-cgo), type IfmaMsghdr struct
-pkg syscall (freebsd-386-cgo), type IfmaMsghdr struct, Addrs int32
-pkg syscall (freebsd-386-cgo), type IfmaMsghdr struct, Flags int32
-pkg syscall (freebsd-386-cgo), type IfmaMsghdr struct, Index uint16
-pkg syscall (freebsd-386-cgo), type IfmaMsghdr struct, Msglen uint16
-pkg syscall (freebsd-386-cgo), type IfmaMsghdr struct, Pad_cgo_0 [2]uint8
-pkg syscall (freebsd-386-cgo), type IfmaMsghdr struct, Type uint8
-pkg syscall (freebsd-386-cgo), type IfmaMsghdr struct, Version uint8
-pkg syscall (freebsd-386-cgo), type Inet6Pktinfo struct
-pkg syscall (freebsd-386-cgo), type Inet6Pktinfo struct, Addr [16]uint8
-pkg syscall (freebsd-386-cgo), type Inet6Pktinfo struct, Ifindex uint32
-pkg syscall (freebsd-386-cgo), type InterfaceAddrMessage struct
-pkg syscall (freebsd-386-cgo), type InterfaceAddrMessage struct, Data []uint8
-pkg syscall (freebsd-386-cgo), type InterfaceAddrMessage struct, Header IfaMsghdr
-pkg syscall (freebsd-386-cgo), type InterfaceAnnounceMessage struct
-pkg syscall (freebsd-386-cgo), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr
-pkg syscall (freebsd-386-cgo), type InterfaceMessage struct
-pkg syscall (freebsd-386-cgo), type InterfaceMessage struct, Data []uint8
-pkg syscall (freebsd-386-cgo), type InterfaceMessage struct, Header IfMsghdr
-pkg syscall (freebsd-386-cgo), type InterfaceMulticastAddrMessage struct
-pkg syscall (freebsd-386-cgo), type InterfaceMulticastAddrMessage struct, Data []uint8
-pkg syscall (freebsd-386-cgo), type InterfaceMulticastAddrMessage struct, Header IfmaMsghdr
-pkg syscall (freebsd-386-cgo), type Iovec struct
-pkg syscall (freebsd-386-cgo), type Iovec struct, Base *uint8
-pkg syscall (freebsd-386-cgo), type Iovec struct, Len uint32
-pkg syscall (freebsd-386-cgo), type Kevent_t struct
-pkg syscall (freebsd-386-cgo), type Kevent_t struct, Data int32
-pkg syscall (freebsd-386-cgo), type Kevent_t struct, Fflags uint32
-pkg syscall (freebsd-386-cgo), type Kevent_t struct, Filter int16
-pkg syscall (freebsd-386-cgo), type Kevent_t struct, Flags uint16
-pkg syscall (freebsd-386-cgo), type Kevent_t struct, Ident uint32
-pkg syscall (freebsd-386-cgo), type Kevent_t struct, Udata *uint8
-pkg syscall (freebsd-386-cgo), type Msghdr struct
-pkg syscall (freebsd-386-cgo), type Msghdr struct, Control *uint8
-pkg syscall (freebsd-386-cgo), type Msghdr struct, Controllen uint32
-pkg syscall (freebsd-386-cgo), type Msghdr struct, Flags int32
-pkg syscall (freebsd-386-cgo), type Msghdr struct, Iov *Iovec
-pkg syscall (freebsd-386-cgo), type Msghdr struct, Iovlen int32
-pkg syscall (freebsd-386-cgo), type Msghdr struct, Name *uint8
-pkg syscall (freebsd-386-cgo), type Msghdr struct, Namelen uint32
-pkg syscall (freebsd-386-cgo), type RawSockaddr struct, Data [14]int8
-pkg syscall (freebsd-386-cgo), type RawSockaddr struct, Family uint8
-pkg syscall (freebsd-386-cgo), type RawSockaddr struct, Len uint8
-pkg syscall (freebsd-386-cgo), type RawSockaddrAny struct, Pad [92]int8
-pkg syscall (freebsd-386-cgo), type RawSockaddrDatalink struct
-pkg syscall (freebsd-386-cgo), type RawSockaddrDatalink struct, Alen uint8
-pkg syscall (freebsd-386-cgo), type RawSockaddrDatalink struct, Data [46]int8
-pkg syscall (freebsd-386-cgo), type RawSockaddrDatalink struct, Family uint8
-pkg syscall (freebsd-386-cgo), type RawSockaddrDatalink struct, Index uint16
-pkg syscall (freebsd-386-cgo), type RawSockaddrDatalink struct, Len uint8
-pkg syscall (freebsd-386-cgo), type RawSockaddrDatalink struct, Nlen uint8
-pkg syscall (freebsd-386-cgo), type RawSockaddrDatalink struct, Slen uint8
-pkg syscall (freebsd-386-cgo), type RawSockaddrDatalink struct, Type uint8
-pkg syscall (freebsd-386-cgo), type RawSockaddrInet4 struct, Family uint8
-pkg syscall (freebsd-386-cgo), type RawSockaddrInet4 struct, Len uint8
-pkg syscall (freebsd-386-cgo), type RawSockaddrInet4 struct, Zero [8]int8
-pkg syscall (freebsd-386-cgo), type RawSockaddrInet6 struct, Family uint8
-pkg syscall (freebsd-386-cgo), type RawSockaddrInet6 struct, Len uint8
-pkg syscall (freebsd-386-cgo), type RawSockaddrUnix struct
-pkg syscall (freebsd-386-cgo), type RawSockaddrUnix struct, Family uint8
-pkg syscall (freebsd-386-cgo), type RawSockaddrUnix struct, Len uint8
-pkg syscall (freebsd-386-cgo), type RawSockaddrUnix struct, Path [104]int8
-pkg syscall (freebsd-386-cgo), type Rlimit struct
-pkg syscall (freebsd-386-cgo), type Rlimit struct, Cur int64
-pkg syscall (freebsd-386-cgo), type Rlimit struct, Max int64
-pkg syscall (freebsd-386-cgo), type RouteMessage struct
-pkg syscall (freebsd-386-cgo), type RouteMessage struct, Data []uint8
-pkg syscall (freebsd-386-cgo), type RouteMessage struct, Header RtMsghdr
-pkg syscall (freebsd-386-cgo), type RoutingMessage interface, unexported methods
-pkg syscall (freebsd-386-cgo), type RtMetrics struct
-pkg syscall (freebsd-386-cgo), type RtMetrics struct, Expire uint32
-pkg syscall (freebsd-386-cgo), type RtMetrics struct, Filler [3]uint32
-pkg syscall (freebsd-386-cgo), type RtMetrics struct, Hopcount uint32
-pkg syscall (freebsd-386-cgo), type RtMetrics struct, Locks uint32
-pkg syscall (freebsd-386-cgo), type RtMetrics struct, Mtu uint32
-pkg syscall (freebsd-386-cgo), type RtMetrics struct, Pksent uint32
-pkg syscall (freebsd-386-cgo), type RtMetrics struct, Recvpipe uint32
-pkg syscall (freebsd-386-cgo), type RtMetrics struct, Rtt uint32
-pkg syscall (freebsd-386-cgo), type RtMetrics struct, Rttvar uint32
-pkg syscall (freebsd-386-cgo), type RtMetrics struct, Sendpipe uint32
-pkg syscall (freebsd-386-cgo), type RtMetrics struct, Ssthresh uint32
-pkg syscall (freebsd-386-cgo), type RtMetrics struct, Weight uint32
-pkg syscall (freebsd-386-cgo), type RtMsghdr struct
-pkg syscall (freebsd-386-cgo), type RtMsghdr struct, Addrs int32
-pkg syscall (freebsd-386-cgo), type RtMsghdr struct, Errno int32
-pkg syscall (freebsd-386-cgo), type RtMsghdr struct, Flags int32
-pkg syscall (freebsd-386-cgo), type RtMsghdr struct, Fmask int32
-pkg syscall (freebsd-386-cgo), type RtMsghdr struct, Index uint16
-pkg syscall (freebsd-386-cgo), type RtMsghdr struct, Inits uint32
-pkg syscall (freebsd-386-cgo), type RtMsghdr struct, Msglen uint16
-pkg syscall (freebsd-386-cgo), type RtMsghdr struct, Pad_cgo_0 [2]uint8
-pkg syscall (freebsd-386-cgo), type RtMsghdr struct, Pid int32
-pkg syscall (freebsd-386-cgo), type RtMsghdr struct, Rmx RtMetrics
-pkg syscall (freebsd-386-cgo), type RtMsghdr struct, Seq int32
-pkg syscall (freebsd-386-cgo), type RtMsghdr struct, Type uint8
-pkg syscall (freebsd-386-cgo), type RtMsghdr struct, Version uint8
-pkg syscall (freebsd-386-cgo), type Rusage struct, Idrss int32
-pkg syscall (freebsd-386-cgo), type Rusage struct, Inblock int32
-pkg syscall (freebsd-386-cgo), type Rusage struct, Isrss int32
-pkg syscall (freebsd-386-cgo), type Rusage struct, Ixrss int32
-pkg syscall (freebsd-386-cgo), type Rusage struct, Majflt int32
-pkg syscall (freebsd-386-cgo), type Rusage struct, Maxrss int32
-pkg syscall (freebsd-386-cgo), type Rusage struct, Minflt int32
-pkg syscall (freebsd-386-cgo), type Rusage struct, Msgrcv int32
-pkg syscall (freebsd-386-cgo), type Rusage struct, Msgsnd int32
-pkg syscall (freebsd-386-cgo), type Rusage struct, Nivcsw int32
-pkg syscall (freebsd-386-cgo), type Rusage struct, Nsignals int32
-pkg syscall (freebsd-386-cgo), type Rusage struct, Nswap int32
-pkg syscall (freebsd-386-cgo), type Rusage struct, Nvcsw int32
-pkg syscall (freebsd-386-cgo), type Rusage struct, Oublock int32
-pkg syscall (freebsd-386-cgo), type Rusage struct, Stime Timeval
-pkg syscall (freebsd-386-cgo), type Rusage struct, Utime Timeval
-pkg syscall (freebsd-386-cgo), type SockaddrDatalink struct
-pkg syscall (freebsd-386-cgo), type SockaddrDatalink struct, Alen uint8
-pkg syscall (freebsd-386-cgo), type SockaddrDatalink struct, Data [46]int8
-pkg syscall (freebsd-386-cgo), type SockaddrDatalink struct, Family uint8
-pkg syscall (freebsd-386-cgo), type SockaddrDatalink struct, Index uint16
-pkg syscall (freebsd-386-cgo), type SockaddrDatalink struct, Len uint8
-pkg syscall (freebsd-386-cgo), type SockaddrDatalink struct, Nlen uint8
-pkg syscall (freebsd-386-cgo), type SockaddrDatalink struct, Slen uint8
-pkg syscall (freebsd-386-cgo), type SockaddrDatalink struct, Type uint8
-pkg syscall (freebsd-386-cgo), type SocketControlMessage struct
-pkg syscall (freebsd-386-cgo), type SocketControlMessage struct, Data []uint8
-pkg syscall (freebsd-386-cgo), type SocketControlMessage struct, Header Cmsghdr
-pkg syscall (freebsd-386-cgo), type Stat_t struct
-pkg syscall (freebsd-386-cgo), type Stat_t struct, Atimespec Timespec
-pkg syscall (freebsd-386-cgo), type Stat_t struct, Birthtimespec Timespec
-pkg syscall (freebsd-386-cgo), type Stat_t struct, Blksize uint32
-pkg syscall (freebsd-386-cgo), type Stat_t struct, Blocks int64
-pkg syscall (freebsd-386-cgo), type Stat_t struct, Ctimespec Timespec
-pkg syscall (freebsd-386-cgo), type Stat_t struct, Dev uint32
-pkg syscall (freebsd-386-cgo), type Stat_t struct, Flags uint32
-pkg syscall (freebsd-386-cgo), type Stat_t struct, Gen uint32
-pkg syscall (freebsd-386-cgo), type Stat_t struct, Gid uint32
-pkg syscall (freebsd-386-cgo), type Stat_t struct, Ino uint32
-pkg syscall (freebsd-386-cgo), type Stat_t struct, Lspare int32
-pkg syscall (freebsd-386-cgo), type Stat_t struct, Mode uint16
-pkg syscall (freebsd-386-cgo), type Stat_t struct, Mtimespec Timespec
-pkg syscall (freebsd-386-cgo), type Stat_t struct, Nlink uint16
-pkg syscall (freebsd-386-cgo), type Stat_t struct, Pad_cgo_0 [8]uint8
-pkg syscall (freebsd-386-cgo), type Stat_t struct, Rdev uint32
-pkg syscall (freebsd-386-cgo), type Stat_t struct, Size int64
-pkg syscall (freebsd-386-cgo), type Stat_t struct, Uid uint32
-pkg syscall (freebsd-386-cgo), type Statfs_t struct
-pkg syscall (freebsd-386-cgo), type Statfs_t struct, Asyncreads uint64
-pkg syscall (freebsd-386-cgo), type Statfs_t struct, Asyncwrites uint64
-pkg syscall (freebsd-386-cgo), type Statfs_t struct, Bavail int64
-pkg syscall (freebsd-386-cgo), type Statfs_t struct, Bfree uint64
-pkg syscall (freebsd-386-cgo), type Statfs_t struct, Blocks uint64
-pkg syscall (freebsd-386-cgo), type Statfs_t struct, Bsize uint64
-pkg syscall (freebsd-386-cgo), type Statfs_t struct, Charspare [80]int8
-pkg syscall (freebsd-386-cgo), type Statfs_t struct, Ffree int64
-pkg syscall (freebsd-386-cgo), type Statfs_t struct, Files uint64
-pkg syscall (freebsd-386-cgo), type Statfs_t struct, Flags uint64
-pkg syscall (freebsd-386-cgo), type Statfs_t struct, Fsid Fsid
-pkg syscall (freebsd-386-cgo), type Statfs_t struct, Fstypename [16]int8
-pkg syscall (freebsd-386-cgo), type Statfs_t struct, Iosize uint64
-pkg syscall (freebsd-386-cgo), type Statfs_t struct, Mntfromname [88]int8
-pkg syscall (freebsd-386-cgo), type Statfs_t struct, Mntonname [88]int8
-pkg syscall (freebsd-386-cgo), type Statfs_t struct, Namemax uint32
-pkg syscall (freebsd-386-cgo), type Statfs_t struct, Owner uint32
-pkg syscall (freebsd-386-cgo), type Statfs_t struct, Spare [10]uint64
-pkg syscall (freebsd-386-cgo), type Statfs_t struct, Syncreads uint64
-pkg syscall (freebsd-386-cgo), type Statfs_t struct, Syncwrites uint64
-pkg syscall (freebsd-386-cgo), type Statfs_t struct, Type uint32
-pkg syscall (freebsd-386-cgo), type Statfs_t struct, Version uint32
-pkg syscall (freebsd-386-cgo), type SysProcAttr struct, Chroot string
-pkg syscall (freebsd-386-cgo), type SysProcAttr struct, Credential *Credential
-pkg syscall (freebsd-386-cgo), type SysProcAttr struct, Noctty bool
-pkg syscall (freebsd-386-cgo), type SysProcAttr struct, Ptrace bool
-pkg syscall (freebsd-386-cgo), type SysProcAttr struct, Setctty bool
-pkg syscall (freebsd-386-cgo), type SysProcAttr struct, Setpgid bool
-pkg syscall (freebsd-386-cgo), type SysProcAttr struct, Setsid bool
-pkg syscall (freebsd-386-cgo), type Timespec struct, Nsec int32
-pkg syscall (freebsd-386-cgo), type Timespec struct, Sec int32
-pkg syscall (freebsd-386-cgo), type Timeval struct, Sec int32
-pkg syscall (freebsd-386-cgo), type Timeval struct, Usec int32
-pkg syscall (freebsd-386-cgo), type WaitStatus uint32
-pkg syscall (freebsd-386-cgo), var Stderr int
-pkg syscall (freebsd-386-cgo), var Stdin int
-pkg syscall (freebsd-386-cgo), var Stdout int
-pkg syscall (freebsd-amd64), const F_DUP2FD_CLOEXEC = 18
-pkg syscall (freebsd-amd64), const F_DUP2FD_CLOEXEC ideal-int
-pkg syscall (freebsd-amd64), const F_DUPFD_CLOEXEC = 17
-pkg syscall (freebsd-amd64), const F_DUPFD_CLOEXEC ideal-int
-pkg syscall (freebsd-amd64), const ICMP6_FILTER = 18
-pkg syscall (freebsd-amd64), const ICMP6_FILTER ideal-int
-pkg syscall (freebsd-amd64), const PRIO_PGRP = 1
-pkg syscall (freebsd-amd64), const PRIO_PGRP ideal-int
-pkg syscall (freebsd-amd64), const PRIO_PROCESS = 0
-pkg syscall (freebsd-amd64), const PRIO_PROCESS ideal-int
-pkg syscall (freebsd-amd64), const PRIO_USER = 2
-pkg syscall (freebsd-amd64), const PRIO_USER ideal-int
-pkg syscall (freebsd-amd64), const SizeofICMPv6Filter = 32
-pkg syscall (freebsd-amd64), const SizeofICMPv6Filter ideal-int
-pkg syscall (freebsd-amd64), const SizeofIPv6MTUInfo = 32
-pkg syscall (freebsd-amd64), const SizeofIPv6MTUInfo ideal-int
-pkg syscall (freebsd-amd64), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
-pkg syscall (freebsd-amd64), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
-pkg syscall (freebsd-amd64), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
-pkg syscall (freebsd-amd64), type ICMPv6Filter struct
-pkg syscall (freebsd-amd64), type ICMPv6Filter struct, Filt [8]uint32
-pkg syscall (freebsd-amd64), type IPv6MTUInfo struct
-pkg syscall (freebsd-amd64), type IPv6MTUInfo struct, Addr RawSockaddrInet6
-pkg syscall (freebsd-amd64), type IPv6MTUInfo struct, Mtu uint32
-pkg syscall (freebsd-amd64-cgo), const AF_APPLETALK ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_ARP ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_ATM ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_BLUETOOTH ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_CCITT ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_CHAOS ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_CNT ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_COIP ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_DATAKIT ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_DECnet ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_DLI ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_E164 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_ECMA ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_HYLINK ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_IEEE80211 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_IMPLINK ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_IPX ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_ISDN ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_ISO ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_LAT ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_LINK ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_LOCAL ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_MAX ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_NATM ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_NETBIOS ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_NETGRAPH ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_OSI ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_PUP ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_ROUTE ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_SCLUSTER ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_SIP ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_SLOW ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_SNA ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_VENDOR00 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_VENDOR01 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_VENDOR02 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_VENDOR03 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_VENDOR04 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_VENDOR05 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_VENDOR06 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_VENDOR07 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_VENDOR08 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_VENDOR09 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_VENDOR10 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_VENDOR11 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_VENDOR12 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_VENDOR13 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_VENDOR14 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_VENDOR15 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_VENDOR16 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_VENDOR17 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_VENDOR18 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_VENDOR19 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_VENDOR20 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_VENDOR21 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_VENDOR22 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_VENDOR23 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_VENDOR24 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_VENDOR25 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_VENDOR26 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_VENDOR27 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_VENDOR28 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_VENDOR29 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_VENDOR30 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_VENDOR31 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_VENDOR32 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_VENDOR33 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_VENDOR34 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_VENDOR35 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_VENDOR36 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_VENDOR37 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_VENDOR38 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_VENDOR39 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_VENDOR40 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_VENDOR41 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_VENDOR42 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_VENDOR43 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_VENDOR44 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_VENDOR45 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_VENDOR46 ideal-int
-pkg syscall (freebsd-amd64-cgo), const AF_VENDOR47 ideal-int
-pkg syscall (freebsd-amd64-cgo), const B0 ideal-int
-pkg syscall (freebsd-amd64-cgo), const B110 ideal-int
-pkg syscall (freebsd-amd64-cgo), const B115200 ideal-int
-pkg syscall (freebsd-amd64-cgo), const B1200 ideal-int
-pkg syscall (freebsd-amd64-cgo), const B134 ideal-int
-pkg syscall (freebsd-amd64-cgo), const B14400 ideal-int
-pkg syscall (freebsd-amd64-cgo), const B150 ideal-int
-pkg syscall (freebsd-amd64-cgo), const B1800 ideal-int
-pkg syscall (freebsd-amd64-cgo), const B19200 ideal-int
-pkg syscall (freebsd-amd64-cgo), const B200 ideal-int
-pkg syscall (freebsd-amd64-cgo), const B230400 ideal-int
-pkg syscall (freebsd-amd64-cgo), const B2400 ideal-int
-pkg syscall (freebsd-amd64-cgo), const B28800 ideal-int
-pkg syscall (freebsd-amd64-cgo), const B300 ideal-int
-pkg syscall (freebsd-amd64-cgo), const B38400 ideal-int
-pkg syscall (freebsd-amd64-cgo), const B460800 ideal-int
-pkg syscall (freebsd-amd64-cgo), const B4800 ideal-int
-pkg syscall (freebsd-amd64-cgo), const B50 ideal-int
-pkg syscall (freebsd-amd64-cgo), const B57600 ideal-int
-pkg syscall (freebsd-amd64-cgo), const B600 ideal-int
-pkg syscall (freebsd-amd64-cgo), const B7200 ideal-int
-pkg syscall (freebsd-amd64-cgo), const B75 ideal-int
-pkg syscall (freebsd-amd64-cgo), const B76800 ideal-int
-pkg syscall (freebsd-amd64-cgo), const B921600 ideal-int
-pkg syscall (freebsd-amd64-cgo), const B9600 ideal-int
-pkg syscall (freebsd-amd64-cgo), const BIOCFEEDBACK ideal-int
-pkg syscall (freebsd-amd64-cgo), const BIOCFLUSH ideal-int
-pkg syscall (freebsd-amd64-cgo), const BIOCGBLEN ideal-int
-pkg syscall (freebsd-amd64-cgo), const BIOCGDIRECTION ideal-int
-pkg syscall (freebsd-amd64-cgo), const BIOCGDLT ideal-int
-pkg syscall (freebsd-amd64-cgo), const BIOCGDLTLIST ideal-int
-pkg syscall (freebsd-amd64-cgo), const BIOCGETBUFMODE ideal-int
-pkg syscall (freebsd-amd64-cgo), const BIOCGETIF ideal-int
-pkg syscall (freebsd-amd64-cgo), const BIOCGETZMAX ideal-int
-pkg syscall (freebsd-amd64-cgo), const BIOCGHDRCMPLT ideal-int
-pkg syscall (freebsd-amd64-cgo), const BIOCGRSIG ideal-int
-pkg syscall (freebsd-amd64-cgo), const BIOCGRTIMEOUT ideal-int
-pkg syscall (freebsd-amd64-cgo), const BIOCGSEESENT ideal-int
-pkg syscall (freebsd-amd64-cgo), const BIOCGSTATS ideal-int
-pkg syscall (freebsd-amd64-cgo), const BIOCGTSTAMP ideal-int
-pkg syscall (freebsd-amd64-cgo), const BIOCIMMEDIATE ideal-int
-pkg syscall (freebsd-amd64-cgo), const BIOCLOCK ideal-int
-pkg syscall (freebsd-amd64-cgo), const BIOCPROMISC ideal-int
-pkg syscall (freebsd-amd64-cgo), const BIOCROTZBUF ideal-int
-pkg syscall (freebsd-amd64-cgo), const BIOCSBLEN ideal-int
-pkg syscall (freebsd-amd64-cgo), const BIOCSDIRECTION ideal-int
-pkg syscall (freebsd-amd64-cgo), const BIOCSDLT ideal-int
-pkg syscall (freebsd-amd64-cgo), const BIOCSETBUFMODE ideal-int
-pkg syscall (freebsd-amd64-cgo), const BIOCSETF ideal-int
-pkg syscall (freebsd-amd64-cgo), const BIOCSETFNR ideal-int
-pkg syscall (freebsd-amd64-cgo), const BIOCSETIF ideal-int
-pkg syscall (freebsd-amd64-cgo), const BIOCSETWF ideal-int
-pkg syscall (freebsd-amd64-cgo), const BIOCSETZBUF ideal-int
-pkg syscall (freebsd-amd64-cgo), const BIOCSHDRCMPLT ideal-int
-pkg syscall (freebsd-amd64-cgo), const BIOCSRSIG ideal-int
-pkg syscall (freebsd-amd64-cgo), const BIOCSRTIMEOUT ideal-int
-pkg syscall (freebsd-amd64-cgo), const BIOCSSEESENT ideal-int
-pkg syscall (freebsd-amd64-cgo), const BIOCSTSTAMP ideal-int
-pkg syscall (freebsd-amd64-cgo), const BIOCVERSION ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_A ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_ABS ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_ADD ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_ALIGNMENT ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_ALU ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_AND ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_B ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_BUFMODE_BUFFER ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_BUFMODE_ZBUF ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_DIV ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_H ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_IMM ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_IND ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_JA ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_JEQ ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_JGE ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_JGT ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_JMP ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_JSET ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_K ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_LD ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_LDX ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_LEN ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_LSH ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_MAJOR_VERSION ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_MAXBUFSIZE ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_MAXINSNS ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_MEM ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_MEMWORDS ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_MINBUFSIZE ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_MINOR_VERSION ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_MISC ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_MSH ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_MUL ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_NEG ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_OR ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_RELEASE ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_RET ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_RSH ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_ST ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_STX ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_SUB ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_TAX ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_TXA ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_T_BINTIME ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_T_BINTIME_FAST ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_T_BINTIME_MONOTONIC ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_T_BINTIME_MONOTONIC_FAST ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_T_FAST ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_T_FLAG_MASK ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_T_FORMAT_MASK ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_T_MICROTIME ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_T_MICROTIME_FAST ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_T_MICROTIME_MONOTONIC ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_T_MICROTIME_MONOTONIC_FAST ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_T_MONOTONIC ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_T_MONOTONIC_FAST ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_T_NANOTIME ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_T_NANOTIME_FAST ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_T_NANOTIME_MONOTONIC ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_T_NANOTIME_MONOTONIC_FAST ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_T_NONE ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_T_NORMAL ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_W ideal-int
-pkg syscall (freebsd-amd64-cgo), const BPF_X ideal-int
-pkg syscall (freebsd-amd64-cgo), const BRKINT ideal-int
-pkg syscall (freebsd-amd64-cgo), const CFLUSH ideal-int
-pkg syscall (freebsd-amd64-cgo), const CLOCAL ideal-int
-pkg syscall (freebsd-amd64-cgo), const CREAD ideal-int
-pkg syscall (freebsd-amd64-cgo), const CS5 ideal-int
-pkg syscall (freebsd-amd64-cgo), const CS6 ideal-int
-pkg syscall (freebsd-amd64-cgo), const CS7 ideal-int
-pkg syscall (freebsd-amd64-cgo), const CS8 ideal-int
-pkg syscall (freebsd-amd64-cgo), const CSIZE ideal-int
-pkg syscall (freebsd-amd64-cgo), const CSTART ideal-int
-pkg syscall (freebsd-amd64-cgo), const CSTATUS ideal-int
-pkg syscall (freebsd-amd64-cgo), const CSTOP ideal-int
-pkg syscall (freebsd-amd64-cgo), const CSTOPB ideal-int
-pkg syscall (freebsd-amd64-cgo), const CSUSP ideal-int
-pkg syscall (freebsd-amd64-cgo), const CTL_MAXNAME ideal-int
-pkg syscall (freebsd-amd64-cgo), const CTL_NET ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_A429 ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_A653_ICM ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_AIRONET_HEADER ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_AOS ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_ARCNET ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_ARCNET_LINUX ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_ATM_CLIP ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_ATM_RFC1483 ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_AURORA ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_AX25 ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_AX25_KISS ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_BACNET_MS_TP ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_BLUETOOTH_HCI_H4 ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_CAN20B ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_CAN_SOCKETCAN ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_CHAOS ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_CHDLC ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_CISCO_IOS ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_C_HDLC ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_C_HDLC_WITH_DIR ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_DBUS ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_DECT ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_DOCSIS ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_DVB_CI ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_ECONET ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_EN10MB ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_EN3MB ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_ENC ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_ERF ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_ERF_ETH ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_ERF_POS ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_FC_2 ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_FC_2_WITH_FRAME_DELIMS ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_FDDI ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_FLEXRAY ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_FRELAY ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_FRELAY_WITH_DIR ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_GCOM_SERIAL ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_GCOM_T1E1 ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_GPF_F ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_GPF_T ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_GPRS_LLC ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_GSMTAP_ABIS ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_GSMTAP_UM ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_HHDLC ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_IBM_SN ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_IBM_SP ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_IEEE802 ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_IEEE802_11 ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_IEEE802_11_RADIO ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_IEEE802_11_RADIO_AVS ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_IEEE802_15_4 ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_IEEE802_15_4_LINUX ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_IEEE802_15_4_NOFCS ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_IEEE802_15_4_NONASK_PHY ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_IEEE802_16_MAC_CPS ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_IEEE802_16_MAC_CPS_RADIO ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_IPFILTER ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_IPMB ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_IPMB_LINUX ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_IPNET ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_IPOIB ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_IPV4 ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_IPV6 ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_IP_OVER_FC ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_ATM1 ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_ATM2 ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_ATM_CEMIC ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_CHDLC ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_ES ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_ETHER ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_FIBRECHANNEL ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_FRELAY ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_GGSN ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_ISM ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_MFR ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_MLFR ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_MLPPP ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_MONITOR ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_PIC_PEER ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_PPP ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_PPPOE ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_PPPOE_ATM ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_SERVICES ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_SRX_E2E ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_ST ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_VP ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_VS ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_LAPB_WITH_DIR ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_LAPD ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_LIN ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_LINUX_EVDEV ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_LINUX_IRDA ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_LINUX_LAPD ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_LINUX_PPP_WITHDIRECTION ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_LINUX_SLL ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_LOOP ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_LTALK ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_MATCHING_MAX ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_MATCHING_MIN ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_MFR ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_MOST ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_MPLS ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_MTP2 ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_MTP2_WITH_PHDR ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_MTP3 ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_MUX27010 ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_NETANALYZER ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_NETANALYZER_TRANSPARENT ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_NFLOG ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_NULL ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_PCI_EXP ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_PFLOG ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_PFSYNC ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_PPI ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_PPP ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_PPP_BSDOS ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_PPP_ETHER ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_PPP_PPPD ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_PPP_SERIAL ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_PPP_WITH_DIR ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_PPP_WITH_DIRECTION ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_PRISM_HEADER ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_PRONET ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_RAIF1 ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_RAW ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_RIO ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_SCCP ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_SITA ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_SLIP ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_SLIP_BSDOS ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_STANAG_5066_D_PDU ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_SUNATM ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_SYMANTEC_FIREWALL ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_TZSP ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_USB ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_USB_LINUX ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_USB_LINUX_MMAPPED ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_USER0 ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_USER1 ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_USER10 ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_USER11 ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_USER12 ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_USER13 ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_USER14 ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_USER15 ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_USER2 ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_USER3 ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_USER4 ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_USER5 ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_USER6 ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_USER7 ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_USER8 ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_USER9 ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_WIHART ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_X2E_SERIAL ideal-int
-pkg syscall (freebsd-amd64-cgo), const DLT_X2E_XORAYA ideal-int
-pkg syscall (freebsd-amd64-cgo), const DT_BLK ideal-int
-pkg syscall (freebsd-amd64-cgo), const DT_CHR ideal-int
-pkg syscall (freebsd-amd64-cgo), const DT_DIR ideal-int
-pkg syscall (freebsd-amd64-cgo), const DT_FIFO ideal-int
-pkg syscall (freebsd-amd64-cgo), const DT_LNK ideal-int
-pkg syscall (freebsd-amd64-cgo), const DT_REG ideal-int
-pkg syscall (freebsd-amd64-cgo), const DT_SOCK ideal-int
-pkg syscall (freebsd-amd64-cgo), const DT_UNKNOWN ideal-int
-pkg syscall (freebsd-amd64-cgo), const DT_WHT ideal-int
-pkg syscall (freebsd-amd64-cgo), const EAUTH Errno
-pkg syscall (freebsd-amd64-cgo), const EBADMSG Errno
-pkg syscall (freebsd-amd64-cgo), const EBADRPC Errno
-pkg syscall (freebsd-amd64-cgo), const ECAPMODE Errno
-pkg syscall (freebsd-amd64-cgo), const ECHO ideal-int
-pkg syscall (freebsd-amd64-cgo), const ECHOCTL ideal-int
-pkg syscall (freebsd-amd64-cgo), const ECHOE ideal-int
-pkg syscall (freebsd-amd64-cgo), const ECHOK ideal-int
-pkg syscall (freebsd-amd64-cgo), const ECHOKE ideal-int
-pkg syscall (freebsd-amd64-cgo), const ECHONL ideal-int
-pkg syscall (freebsd-amd64-cgo), const ECHOPRT ideal-int
-pkg syscall (freebsd-amd64-cgo), const EDOOFUS Errno
-pkg syscall (freebsd-amd64-cgo), const EFTYPE Errno
-pkg syscall (freebsd-amd64-cgo), const ELAST Errno
-pkg syscall (freebsd-amd64-cgo), const EMULTIHOP Errno
-pkg syscall (freebsd-amd64-cgo), const ENEEDAUTH Errno
-pkg syscall (freebsd-amd64-cgo), const ENOATTR Errno
-pkg syscall (freebsd-amd64-cgo), const ENOLINK Errno
-pkg syscall (freebsd-amd64-cgo), const ENOTCAPABLE Errno
-pkg syscall (freebsd-amd64-cgo), const EPROCLIM Errno
-pkg syscall (freebsd-amd64-cgo), const EPROCUNAVAIL Errno
-pkg syscall (freebsd-amd64-cgo), const EPROGMISMATCH Errno
-pkg syscall (freebsd-amd64-cgo), const EPROGUNAVAIL Errno
-pkg syscall (freebsd-amd64-cgo), const EPROTO Errno
-pkg syscall (freebsd-amd64-cgo), const ERPCMISMATCH Errno
-pkg syscall (freebsd-amd64-cgo), const EVFILT_AIO ideal-int
-pkg syscall (freebsd-amd64-cgo), const EVFILT_FS ideal-int
-pkg syscall (freebsd-amd64-cgo), const EVFILT_LIO ideal-int
-pkg syscall (freebsd-amd64-cgo), const EVFILT_PROC ideal-int
-pkg syscall (freebsd-amd64-cgo), const EVFILT_READ ideal-int
-pkg syscall (freebsd-amd64-cgo), const EVFILT_SIGNAL ideal-int
-pkg syscall (freebsd-amd64-cgo), const EVFILT_SYSCOUNT ideal-int
-pkg syscall (freebsd-amd64-cgo), const EVFILT_TIMER ideal-int
-pkg syscall (freebsd-amd64-cgo), const EVFILT_USER ideal-int
-pkg syscall (freebsd-amd64-cgo), const EVFILT_VNODE ideal-int
-pkg syscall (freebsd-amd64-cgo), const EVFILT_WRITE ideal-int
-pkg syscall (freebsd-amd64-cgo), const EV_ADD ideal-int
-pkg syscall (freebsd-amd64-cgo), const EV_CLEAR ideal-int
-pkg syscall (freebsd-amd64-cgo), const EV_DELETE ideal-int
-pkg syscall (freebsd-amd64-cgo), const EV_DISABLE ideal-int
-pkg syscall (freebsd-amd64-cgo), const EV_DISPATCH ideal-int
-pkg syscall (freebsd-amd64-cgo), const EV_ENABLE ideal-int
-pkg syscall (freebsd-amd64-cgo), const EV_EOF ideal-int
-pkg syscall (freebsd-amd64-cgo), const EV_ERROR ideal-int
-pkg syscall (freebsd-amd64-cgo), const EV_FLAG1 ideal-int
-pkg syscall (freebsd-amd64-cgo), const EV_ONESHOT ideal-int
-pkg syscall (freebsd-amd64-cgo), const EV_RECEIPT ideal-int
-pkg syscall (freebsd-amd64-cgo), const EV_SYSFLAGS ideal-int
-pkg syscall (freebsd-amd64-cgo), const EXTA ideal-int
-pkg syscall (freebsd-amd64-cgo), const EXTB ideal-int
-pkg syscall (freebsd-amd64-cgo), const EXTPROC ideal-int
-pkg syscall (freebsd-amd64-cgo), const FD_CLOEXEC ideal-int
-pkg syscall (freebsd-amd64-cgo), const FD_SETSIZE ideal-int
-pkg syscall (freebsd-amd64-cgo), const FLUSHO ideal-int
-pkg syscall (freebsd-amd64-cgo), const F_CANCEL ideal-int
-pkg syscall (freebsd-amd64-cgo), const F_DUP2FD ideal-int
-pkg syscall (freebsd-amd64-cgo), const F_DUP2FD_CLOEXEC = 18
-pkg syscall (freebsd-amd64-cgo), const F_DUP2FD_CLOEXEC ideal-int
-pkg syscall (freebsd-amd64-cgo), const F_DUPFD ideal-int
-pkg syscall (freebsd-amd64-cgo), const F_DUPFD_CLOEXEC = 17
-pkg syscall (freebsd-amd64-cgo), const F_DUPFD_CLOEXEC ideal-int
-pkg syscall (freebsd-amd64-cgo), const F_GETFD ideal-int
-pkg syscall (freebsd-amd64-cgo), const F_GETFL ideal-int
-pkg syscall (freebsd-amd64-cgo), const F_GETLK ideal-int
-pkg syscall (freebsd-amd64-cgo), const F_GETOWN ideal-int
-pkg syscall (freebsd-amd64-cgo), const F_OGETLK ideal-int
-pkg syscall (freebsd-amd64-cgo), const F_OK ideal-int
-pkg syscall (freebsd-amd64-cgo), const F_OSETLK ideal-int
-pkg syscall (freebsd-amd64-cgo), const F_OSETLKW ideal-int
-pkg syscall (freebsd-amd64-cgo), const F_RDAHEAD ideal-int
-pkg syscall (freebsd-amd64-cgo), const F_RDLCK ideal-int
-pkg syscall (freebsd-amd64-cgo), const F_READAHEAD ideal-int
-pkg syscall (freebsd-amd64-cgo), const F_SETFD ideal-int
-pkg syscall (freebsd-amd64-cgo), const F_SETFL ideal-int
-pkg syscall (freebsd-amd64-cgo), const F_SETLK ideal-int
-pkg syscall (freebsd-amd64-cgo), const F_SETLKW ideal-int
-pkg syscall (freebsd-amd64-cgo), const F_SETLK_REMOTE ideal-int
-pkg syscall (freebsd-amd64-cgo), const F_SETOWN ideal-int
-pkg syscall (freebsd-amd64-cgo), const F_UNLCK ideal-int
-pkg syscall (freebsd-amd64-cgo), const F_UNLCKSYS ideal-int
-pkg syscall (freebsd-amd64-cgo), const F_WRLCK ideal-int
-pkg syscall (freebsd-amd64-cgo), const HUPCL ideal-int
-pkg syscall (freebsd-amd64-cgo), const ICANON ideal-int
-pkg syscall (freebsd-amd64-cgo), const ICMP6_FILTER = 18
-pkg syscall (freebsd-amd64-cgo), const ICMP6_FILTER ideal-int
-pkg syscall (freebsd-amd64-cgo), const ICRNL ideal-int
-pkg syscall (freebsd-amd64-cgo), const IEXTEN ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFAN_ARRIVAL ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFAN_DEPARTURE ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFF_ALLMULTI ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFF_ALTPHYS ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFF_CANTCHANGE ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFF_CANTCONFIG ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFF_DEBUG ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFF_DRV_OACTIVE ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFF_DRV_RUNNING ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFF_DYING ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFF_LINK0 ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFF_LINK1 ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFF_LINK2 ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFF_MONITOR ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFF_NOARP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFF_OACTIVE ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFF_POINTOPOINT ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFF_PPROMISC ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFF_PROMISC ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFF_RENAMING ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFF_RUNNING ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFF_SIMPLEX ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFF_SMART ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFF_STATICARP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFNAMSIZ ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_1822 ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_A12MPPSWITCH ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_AAL2 ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_AAL5 ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_ADSL ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_AFLANE8023 ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_AFLANE8025 ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_ARAP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_ARCNET ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_ARCNETPLUS ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_ASYNC ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_ATM ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_ATMDXI ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_ATMFUNI ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_ATMIMA ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_ATMLOGICAL ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_ATMRADIO ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_ATMSUBINTERFACE ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_ATMVCIENDPT ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_ATMVIRTUAL ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_BGPPOLICYACCOUNTING ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_BRIDGE ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_BSC ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_CARP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_CCTEMUL ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_CEPT ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_CES ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_CHANNEL ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_CNR ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_COFFEE ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_COMPOSITELINK ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_DCN ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_DIGITALPOWERLINE ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_DLSW ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_DOCSCABLEDOWNSTREAM ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_DOCSCABLEMACLAYER ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_DOCSCABLEUPSTREAM ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_DS0 ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_DS0BUNDLE ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_DS1FDL ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_DS3 ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_DTM ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_DVBASILN ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_DVBASIOUT ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_DVBRCCDOWNSTREAM ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_DVBRCCMACLAYER ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_DVBRCCUPSTREAM ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_ENC ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_EON ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_EPLRS ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_ESCON ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_ETHER ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_FAITH ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_FAST ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_FASTETHER ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_FASTETHERFX ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_FDDI ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_FIBRECHANNEL ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_FRAMERELAYINTERCONNECT ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_FRAMERELAYMPI ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_FRDLCIENDPT ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_FRELAY ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_FRELAYDCE ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_FRF16MFRBUNDLE ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_FRFORWARD ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_G703AT2MB ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_G703AT64K ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_GIF ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_GIGABITETHERNET ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_GR303IDT ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_GR303RDT ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_H323GATEKEEPER ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_H323PROXY ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_HDH1822 ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_HDLC ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_HDSL2 ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_HIPERLAN2 ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_HIPPI ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_HIPPIINTERFACE ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_HOSTPAD ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_HSSI ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_HY ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_IBM370PARCHAN ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_IDSL ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_IEEE1394 ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_IEEE80211 ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_IEEE80212 ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_IEEE8023ADLAG ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_IFGSN ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_IMT ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_INFINIBAND ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_INTERLEAVE ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_IP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_IPFORWARD ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_IPOVERATM ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_IPOVERCDLC ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_IPOVERCLAW ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_IPSWITCH ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_IPXIP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_ISDN ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_ISDNBASIC ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_ISDNPRIMARY ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_ISDNS ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_ISDNU ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_ISO88022LLC ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_ISO88023 ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_ISO88024 ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_ISO88025 ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_ISO88025CRFPINT ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_ISO88025DTR ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_ISO88025FIBER ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_ISO88026 ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_ISUP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_L2VLAN ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_L3IPVLAN ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_L3IPXVLAN ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_LAPB ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_LAPD ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_LAPF ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_LOCALTALK ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_LOOP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_MEDIAMAILOVERIP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_MFSIGLINK ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_MIOX25 ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_MODEM ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_MPC ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_MPLS ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_MPLSTUNNEL ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_MSDSL ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_MVL ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_MYRINET ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_NFAS ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_NSIP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_OPTICALCHANNEL ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_OPTICALTRANSPORT ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_OTHER ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_P10 ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_P80 ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_PARA ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_PFLOG ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_PFSYNC ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_PLC ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_POS ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_PPP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_PPPMULTILINKBUNDLE ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_PROPBWAP2MP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_PROPCNLS ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_PROPMUX ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_PROPVIRTUAL ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_PROPWIRELESSP2P ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_PTPSERIAL ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_PVC ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_QLLC ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_RADIOMAC ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_RADSL ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_REACHDSL ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_RFC1483 ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_RS232 ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_RSRB ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_SDLC ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_SDSL ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_SHDSL ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_SIP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_SLIP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_SMDSDXI ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_SMDSICIP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_SONET ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_SONETOVERHEADCHANNEL ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_SONETPATH ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_SONETVT ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_SRP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_SS7SIGLINK ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_STACKTOSTACK ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_STARLAN ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_STF ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_T1 ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_TDLC ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_TERMPAD ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_TR008 ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_TRANSPHDLC ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_TUNNEL ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_ULTRA ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_USB ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_V11 ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_V35 ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_V36 ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_V37 ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_VDSL ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_VIRTUALIPADDRESS ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_VOICEEM ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_VOICEENCAP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_VOICEFXO ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_VOICEFXS ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_VOICEOVERATM ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_VOICEOVERFRAMERELAY ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_VOICEOVERIP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_X213 ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_X25 ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_X25DDN ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_X25HUNTGROUP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_X25MLP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_X25PLE ideal-int
-pkg syscall (freebsd-amd64-cgo), const IFT_XETHER ideal-int
-pkg syscall (freebsd-amd64-cgo), const IGNBRK ideal-int
-pkg syscall (freebsd-amd64-cgo), const IGNCR ideal-int
-pkg syscall (freebsd-amd64-cgo), const IGNPAR ideal-int
-pkg syscall (freebsd-amd64-cgo), const IMAXBEL ideal-int
-pkg syscall (freebsd-amd64-cgo), const INLCR ideal-int
-pkg syscall (freebsd-amd64-cgo), const INPCK ideal-int
-pkg syscall (freebsd-amd64-cgo), const IN_CLASSA_HOST ideal-int
-pkg syscall (freebsd-amd64-cgo), const IN_CLASSA_MAX ideal-int
-pkg syscall (freebsd-amd64-cgo), const IN_CLASSA_NET ideal-int
-pkg syscall (freebsd-amd64-cgo), const IN_CLASSA_NSHIFT ideal-int
-pkg syscall (freebsd-amd64-cgo), const IN_CLASSB_HOST ideal-int
-pkg syscall (freebsd-amd64-cgo), const IN_CLASSB_MAX ideal-int
-pkg syscall (freebsd-amd64-cgo), const IN_CLASSB_NET ideal-int
-pkg syscall (freebsd-amd64-cgo), const IN_CLASSB_NSHIFT ideal-int
-pkg syscall (freebsd-amd64-cgo), const IN_CLASSC_HOST ideal-int
-pkg syscall (freebsd-amd64-cgo), const IN_CLASSC_NET ideal-int
-pkg syscall (freebsd-amd64-cgo), const IN_CLASSC_NSHIFT ideal-int
-pkg syscall (freebsd-amd64-cgo), const IN_CLASSD_HOST ideal-int
-pkg syscall (freebsd-amd64-cgo), const IN_CLASSD_NET ideal-int
-pkg syscall (freebsd-amd64-cgo), const IN_CLASSD_NSHIFT ideal-int
-pkg syscall (freebsd-amd64-cgo), const IN_LOOPBACKNET ideal-int
-pkg syscall (freebsd-amd64-cgo), const IN_RFC3021_MASK ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_3PC ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_ADFS ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_AH ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_AHIP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_APES ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_ARGUS ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_AX25 ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_BHA ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_BLT ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_BRSATMON ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_CARP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_CFTP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_CHAOS ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_CMTP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_CPHB ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_CPNX ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_DDP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_DGP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_DIVERT ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_DONE ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_DSTOPTS ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_EGP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_EMCON ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_ENCAP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_EON ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_ESP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_ETHERIP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_FRAGMENT ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_GGP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_GMTP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_GRE ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_HELLO ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_HMP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_HOPOPTS ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_ICMP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_ICMPV6 ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_IDP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_IDPR ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_IDRP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_IGMP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_IGP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_IGRP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_IL ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_INLSP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_INP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_IPCOMP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_IPCV ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_IPEIP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_IPIP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_IPPC ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_IPV4 ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_IRTP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_KRYPTOLAN ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_LARP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_LEAF1 ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_LEAF2 ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_MAX ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_MAXID ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_MEAS ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_MH ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_MHRP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_MICP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_MOBILE ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_MTP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_MUX ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_ND ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_NHRP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_NONE ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_NSP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_NVPII ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_OLD_DIVERT ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_OSPFIGP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_PFSYNC ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_PGM ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_PIGP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_PIM ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_PRM ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_PUP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_PVP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_RAW ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_RCCMON ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_RDP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_ROUTING ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_RSVP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_RVD ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_SATEXPAK ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_SATMON ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_SCCSP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_SCTP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_SDRP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_SEND ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_SEP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_SKIP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_SPACER ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_SRPC ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_ST ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_SVMTP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_SWIPE ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_TCF ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_TLSP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_TP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_TPXX ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_TRUNK1 ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_TRUNK2 ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_TTP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_VINES ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_VISA ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_VMTP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_WBEXPAK ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_WBMON ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_WSN ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_XNET ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPPROTO_XTP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_AUTOFLOWLABEL ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_BINDANY ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_BINDV6ONLY ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_CHECKSUM ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_DEFHLIM ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_DONTFRAG ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_DSTOPTS ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_FAITH ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_FLOWINFO_MASK ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_FLOWLABEL_MASK ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_FRAGTTL ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_FW_ADD ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_FW_DEL ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_FW_FLUSH ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_FW_GET ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_FW_ZERO ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_HLIMDEC ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_HOPLIMIT ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_HOPOPTS ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_IPSEC_POLICY ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_MAXHLIM ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_MAXOPTHDR ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_MAXPACKET ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_MAX_GROUP_SRC_FILTER ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_MAX_MEMBERSHIPS ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_MAX_SOCK_SRC_FILTER ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_MIN_MEMBERSHIPS ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_MMTU ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_MSFILTER ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_NEXTHOP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_PATHMTU ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_PKTINFO ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_PORTRANGE ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_PORTRANGE_DEFAULT ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_PORTRANGE_HIGH ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_PORTRANGE_LOW ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_PREFER_TEMPADDR ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_RECVDSTOPTS ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_RECVHOPLIMIT ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_RECVHOPOPTS ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_RECVPATHMTU ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_RECVPKTINFO ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_RECVRTHDR ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_RECVTCLASS ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_RTHDR ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_RTHDRDSTOPTS ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_RTHDR_LOOSE ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_RTHDR_STRICT ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_RTHDR_TYPE_0 ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_SOCKOPT_RESERVED1 ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_TCLASS ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_USE_MIN_MTU ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_VERSION ideal-int
-pkg syscall (freebsd-amd64-cgo), const IPV6_VERSION_MASK ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_ADD_SOURCE_MEMBERSHIP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_BINDANY ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_BLOCK_SOURCE ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_DEFAULT_MULTICAST_LOOP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_DEFAULT_MULTICAST_TTL ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_DF ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_DONTFRAG ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_DROP_SOURCE_MEMBERSHIP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_DUMMYNET3 ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_DUMMYNET_CONFIGURE ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_DUMMYNET_DEL ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_DUMMYNET_FLUSH ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_DUMMYNET_GET ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_FAITH ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_FW3 ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_FW_ADD ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_FW_DEL ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_FW_FLUSH ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_FW_GET ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_FW_NAT_CFG ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_FW_NAT_DEL ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_FW_NAT_GET_CONFIG ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_FW_NAT_GET_LOG ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_FW_RESETLOG ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_FW_TABLE_ADD ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_FW_TABLE_DEL ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_FW_TABLE_FLUSH ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_FW_TABLE_GETSIZE ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_FW_TABLE_LIST ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_FW_ZERO ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_HDRINCL ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_IPSEC_POLICY ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_MAXPACKET ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_MAX_GROUP_SRC_FILTER ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_MAX_MEMBERSHIPS ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_MAX_SOCK_MUTE_FILTER ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_MAX_SOCK_SRC_FILTER ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_MAX_SOURCE_FILTER ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_MF ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_MINTTL ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_MIN_MEMBERSHIPS ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_MSFILTER ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_MSS ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_MULTICAST_VIF ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_OFFMASK ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_ONESBCAST ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_OPTIONS ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_PORTRANGE ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_PORTRANGE_DEFAULT ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_PORTRANGE_HIGH ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_PORTRANGE_LOW ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_RECVDSTADDR ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_RECVIF ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_RECVOPTS ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_RECVRETOPTS ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_RECVTOS ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_RECVTTL ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_RETOPTS ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_RF ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_RSVP_OFF ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_RSVP_ON ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_RSVP_VIF_OFF ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_RSVP_VIF_ON ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_SENDSRCADDR ideal-int
-pkg syscall (freebsd-amd64-cgo), const IP_UNBLOCK_SOURCE ideal-int
-pkg syscall (freebsd-amd64-cgo), const ISIG ideal-int
-pkg syscall (freebsd-amd64-cgo), const ISTRIP ideal-int
-pkg syscall (freebsd-amd64-cgo), const IXANY ideal-int
-pkg syscall (freebsd-amd64-cgo), const IXOFF ideal-int
-pkg syscall (freebsd-amd64-cgo), const IXON ideal-int
-pkg syscall (freebsd-amd64-cgo), const LOCK_EX ideal-int
-pkg syscall (freebsd-amd64-cgo), const LOCK_NB ideal-int
-pkg syscall (freebsd-amd64-cgo), const LOCK_SH ideal-int
-pkg syscall (freebsd-amd64-cgo), const LOCK_UN ideal-int
-pkg syscall (freebsd-amd64-cgo), const MADV_AUTOSYNC ideal-int
-pkg syscall (freebsd-amd64-cgo), const MADV_CORE ideal-int
-pkg syscall (freebsd-amd64-cgo), const MADV_DONTNEED ideal-int
-pkg syscall (freebsd-amd64-cgo), const MADV_FREE ideal-int
-pkg syscall (freebsd-amd64-cgo), const MADV_NOCORE ideal-int
-pkg syscall (freebsd-amd64-cgo), const MADV_NORMAL ideal-int
-pkg syscall (freebsd-amd64-cgo), const MADV_NOSYNC ideal-int
-pkg syscall (freebsd-amd64-cgo), const MADV_PROTECT ideal-int
-pkg syscall (freebsd-amd64-cgo), const MADV_RANDOM ideal-int
-pkg syscall (freebsd-amd64-cgo), const MADV_SEQUENTIAL ideal-int
-pkg syscall (freebsd-amd64-cgo), const MADV_WILLNEED ideal-int
-pkg syscall (freebsd-amd64-cgo), const MAP_ANON ideal-int
-pkg syscall (freebsd-amd64-cgo), const MAP_ANONYMOUS ideal-int
-pkg syscall (freebsd-amd64-cgo), const MAP_COPY ideal-int
-pkg syscall (freebsd-amd64-cgo), const MAP_FILE ideal-int
-pkg syscall (freebsd-amd64-cgo), const MAP_FIXED ideal-int
-pkg syscall (freebsd-amd64-cgo), const MAP_HASSEMAPHORE ideal-int
-pkg syscall (freebsd-amd64-cgo), const MAP_NOCORE ideal-int
-pkg syscall (freebsd-amd64-cgo), const MAP_NORESERVE ideal-int
-pkg syscall (freebsd-amd64-cgo), const MAP_NOSYNC ideal-int
-pkg syscall (freebsd-amd64-cgo), const MAP_PREFAULT_READ ideal-int
-pkg syscall (freebsd-amd64-cgo), const MAP_PRIVATE ideal-int
-pkg syscall (freebsd-amd64-cgo), const MAP_RENAME ideal-int
-pkg syscall (freebsd-amd64-cgo), const MAP_RESERVED0080 ideal-int
-pkg syscall (freebsd-amd64-cgo), const MAP_RESERVED0100 ideal-int
-pkg syscall (freebsd-amd64-cgo), const MAP_SHARED ideal-int
-pkg syscall (freebsd-amd64-cgo), const MAP_STACK ideal-int
-pkg syscall (freebsd-amd64-cgo), const MCL_CURRENT ideal-int
-pkg syscall (freebsd-amd64-cgo), const MCL_FUTURE ideal-int
-pkg syscall (freebsd-amd64-cgo), const MSG_COMPAT ideal-int
-pkg syscall (freebsd-amd64-cgo), const MSG_CTRUNC ideal-int
-pkg syscall (freebsd-amd64-cgo), const MSG_DONTROUTE ideal-int
-pkg syscall (freebsd-amd64-cgo), const MSG_DONTWAIT ideal-int
-pkg syscall (freebsd-amd64-cgo), const MSG_EOF ideal-int
-pkg syscall (freebsd-amd64-cgo), const MSG_EOR ideal-int
-pkg syscall (freebsd-amd64-cgo), const MSG_NBIO ideal-int
-pkg syscall (freebsd-amd64-cgo), const MSG_NOSIGNAL ideal-int
-pkg syscall (freebsd-amd64-cgo), const MSG_NOTIFICATION ideal-int
-pkg syscall (freebsd-amd64-cgo), const MSG_OOB ideal-int
-pkg syscall (freebsd-amd64-cgo), const MSG_PEEK ideal-int
-pkg syscall (freebsd-amd64-cgo), const MSG_TRUNC ideal-int
-pkg syscall (freebsd-amd64-cgo), const MSG_WAITALL ideal-int
-pkg syscall (freebsd-amd64-cgo), const MS_ASYNC ideal-int
-pkg syscall (freebsd-amd64-cgo), const MS_INVALIDATE ideal-int
-pkg syscall (freebsd-amd64-cgo), const MS_SYNC ideal-int
-pkg syscall (freebsd-amd64-cgo), const NET_RT_DUMP ideal-int
-pkg syscall (freebsd-amd64-cgo), const NET_RT_FLAGS ideal-int
-pkg syscall (freebsd-amd64-cgo), const NET_RT_IFLIST ideal-int
-pkg syscall (freebsd-amd64-cgo), const NET_RT_IFLISTL ideal-int
-pkg syscall (freebsd-amd64-cgo), const NET_RT_IFMALIST ideal-int
-pkg syscall (freebsd-amd64-cgo), const NET_RT_MAXID ideal-int
-pkg syscall (freebsd-amd64-cgo), const NOFLSH ideal-int
-pkg syscall (freebsd-amd64-cgo), const NOTE_ATTRIB ideal-int
-pkg syscall (freebsd-amd64-cgo), const NOTE_CHILD ideal-int
-pkg syscall (freebsd-amd64-cgo), const NOTE_DELETE ideal-int
-pkg syscall (freebsd-amd64-cgo), const NOTE_EXEC ideal-int
-pkg syscall (freebsd-amd64-cgo), const NOTE_EXIT ideal-int
-pkg syscall (freebsd-amd64-cgo), const NOTE_EXTEND ideal-int
-pkg syscall (freebsd-amd64-cgo), const NOTE_FFAND ideal-int
-pkg syscall (freebsd-amd64-cgo), const NOTE_FFCOPY ideal-int
-pkg syscall (freebsd-amd64-cgo), const NOTE_FFCTRLMASK ideal-int
-pkg syscall (freebsd-amd64-cgo), const NOTE_FFLAGSMASK ideal-int
-pkg syscall (freebsd-amd64-cgo), const NOTE_FFNOP ideal-int
-pkg syscall (freebsd-amd64-cgo), const NOTE_FFOR ideal-int
-pkg syscall (freebsd-amd64-cgo), const NOTE_FORK ideal-int
-pkg syscall (freebsd-amd64-cgo), const NOTE_LINK ideal-int
-pkg syscall (freebsd-amd64-cgo), const NOTE_LOWAT ideal-int
-pkg syscall (freebsd-amd64-cgo), const NOTE_PCTRLMASK ideal-int
-pkg syscall (freebsd-amd64-cgo), const NOTE_PDATAMASK ideal-int
-pkg syscall (freebsd-amd64-cgo), const NOTE_RENAME ideal-int
-pkg syscall (freebsd-amd64-cgo), const NOTE_REVOKE ideal-int
-pkg syscall (freebsd-amd64-cgo), const NOTE_TRACK ideal-int
-pkg syscall (freebsd-amd64-cgo), const NOTE_TRACKERR ideal-int
-pkg syscall (freebsd-amd64-cgo), const NOTE_TRIGGER ideal-int
-pkg syscall (freebsd-amd64-cgo), const NOTE_WRITE ideal-int
-pkg syscall (freebsd-amd64-cgo), const OCRNL ideal-int
-pkg syscall (freebsd-amd64-cgo), const ONLCR ideal-int
-pkg syscall (freebsd-amd64-cgo), const ONLRET ideal-int
-pkg syscall (freebsd-amd64-cgo), const ONOCR ideal-int
-pkg syscall (freebsd-amd64-cgo), const ONOEOT ideal-int
-pkg syscall (freebsd-amd64-cgo), const OPOST ideal-int
-pkg syscall (freebsd-amd64-cgo), const O_ACCMODE ideal-int
-pkg syscall (freebsd-amd64-cgo), const O_DIRECT ideal-int
-pkg syscall (freebsd-amd64-cgo), const O_DIRECTORY ideal-int
-pkg syscall (freebsd-amd64-cgo), const O_EXEC ideal-int
-pkg syscall (freebsd-amd64-cgo), const O_EXLOCK ideal-int
-pkg syscall (freebsd-amd64-cgo), const O_FSYNC ideal-int
-pkg syscall (freebsd-amd64-cgo), const O_NDELAY ideal-int
-pkg syscall (freebsd-amd64-cgo), const O_NOFOLLOW ideal-int
-pkg syscall (freebsd-amd64-cgo), const O_SHLOCK ideal-int
-pkg syscall (freebsd-amd64-cgo), const O_TTY_INIT ideal-int
-pkg syscall (freebsd-amd64-cgo), const PARENB ideal-int
-pkg syscall (freebsd-amd64-cgo), const PARMRK ideal-int
-pkg syscall (freebsd-amd64-cgo), const PARODD ideal-int
-pkg syscall (freebsd-amd64-cgo), const PENDIN ideal-int
-pkg syscall (freebsd-amd64-cgo), const PRIO_PGRP = 1
-pkg syscall (freebsd-amd64-cgo), const PRIO_PGRP ideal-int
-pkg syscall (freebsd-amd64-cgo), const PRIO_PROCESS = 0
-pkg syscall (freebsd-amd64-cgo), const PRIO_PROCESS ideal-int
-pkg syscall (freebsd-amd64-cgo), const PRIO_USER = 2
-pkg syscall (freebsd-amd64-cgo), const PRIO_USER ideal-int
-pkg syscall (freebsd-amd64-cgo), const PROT_EXEC ideal-int
-pkg syscall (freebsd-amd64-cgo), const PROT_NONE ideal-int
-pkg syscall (freebsd-amd64-cgo), const PROT_READ ideal-int
-pkg syscall (freebsd-amd64-cgo), const PROT_WRITE ideal-int
-pkg syscall (freebsd-amd64-cgo), const PTRACE_CONT ideal-int
-pkg syscall (freebsd-amd64-cgo), const PTRACE_KILL ideal-int
-pkg syscall (freebsd-amd64-cgo), const PTRACE_TRACEME ideal-int
-pkg syscall (freebsd-amd64-cgo), const RLIMIT_AS ideal-int
-pkg syscall (freebsd-amd64-cgo), const RLIMIT_CORE ideal-int
-pkg syscall (freebsd-amd64-cgo), const RLIMIT_CPU ideal-int
-pkg syscall (freebsd-amd64-cgo), const RLIMIT_DATA ideal-int
-pkg syscall (freebsd-amd64-cgo), const RLIMIT_FSIZE ideal-int
-pkg syscall (freebsd-amd64-cgo), const RLIMIT_NOFILE ideal-int
-pkg syscall (freebsd-amd64-cgo), const RLIMIT_STACK ideal-int
-pkg syscall (freebsd-amd64-cgo), const RLIM_INFINITY ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTAX_AUTHOR ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTAX_BRD ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTAX_DST ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTAX_GATEWAY ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTAX_GENMASK ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTAX_IFA ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTAX_IFP ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTAX_MAX ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTAX_NETMASK ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTA_AUTHOR ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTA_BRD ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTA_DST ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTA_GATEWAY ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTA_GENMASK ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTA_IFA ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTA_IFP ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTA_NETMASK ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTF_BLACKHOLE ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTF_BROADCAST ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTF_DONE ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTF_DYNAMIC ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTF_FMASK ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTF_GATEWAY ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTF_HOST ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTF_LLDATA ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTF_LLINFO ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTF_LOCAL ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTF_MODIFIED ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTF_MULTICAST ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTF_PINNED ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTF_PRCLONING ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTF_PROTO1 ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTF_PROTO2 ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTF_PROTO3 ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTF_REJECT ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTF_RNH_LOCKED ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTF_STATIC ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTF_STICKY ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTF_UP ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTF_XRESOLVE ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTM_ADD ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTM_CHANGE ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTM_DELADDR ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTM_DELETE ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTM_DELMADDR ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTM_GET ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTM_IEEE80211 ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTM_IFANNOUNCE ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTM_IFINFO ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTM_LOCK ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTM_LOSING ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTM_MISS ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTM_NEWADDR ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTM_NEWMADDR ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTM_OLDADD ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTM_OLDDEL ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTM_REDIRECT ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTM_RESOLVE ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTM_RTTUNIT ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTM_VERSION ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTV_EXPIRE ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTV_HOPCOUNT ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTV_MTU ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTV_RPIPE ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTV_RTT ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTV_RTTVAR ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTV_SPIPE ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTV_SSTHRESH ideal-int
-pkg syscall (freebsd-amd64-cgo), const RTV_WEIGHT ideal-int
-pkg syscall (freebsd-amd64-cgo), const RT_CACHING_CONTEXT ideal-int
-pkg syscall (freebsd-amd64-cgo), const RT_DEFAULT_FIB ideal-int
-pkg syscall (freebsd-amd64-cgo), const RUSAGE_CHILDREN ideal-int
-pkg syscall (freebsd-amd64-cgo), const RUSAGE_SELF ideal-int
-pkg syscall (freebsd-amd64-cgo), const RUSAGE_THREAD ideal-int
-pkg syscall (freebsd-amd64-cgo), const SCM_BINTIME ideal-int
-pkg syscall (freebsd-amd64-cgo), const SCM_CREDS ideal-int
-pkg syscall (freebsd-amd64-cgo), const SCM_RIGHTS ideal-int
-pkg syscall (freebsd-amd64-cgo), const SCM_TIMESTAMP ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIGCHLD Signal
-pkg syscall (freebsd-amd64-cgo), const SIGCONT Signal
-pkg syscall (freebsd-amd64-cgo), const SIGEMT Signal
-pkg syscall (freebsd-amd64-cgo), const SIGINFO Signal
-pkg syscall (freebsd-amd64-cgo), const SIGIO Signal
-pkg syscall (freebsd-amd64-cgo), const SIGIOT Signal
-pkg syscall (freebsd-amd64-cgo), const SIGLWP Signal
-pkg syscall (freebsd-amd64-cgo), const SIGPROF Signal
-pkg syscall (freebsd-amd64-cgo), const SIGSTOP Signal
-pkg syscall (freebsd-amd64-cgo), const SIGSYS Signal
-pkg syscall (freebsd-amd64-cgo), const SIGTHR Signal
-pkg syscall (freebsd-amd64-cgo), const SIGTSTP Signal
-pkg syscall (freebsd-amd64-cgo), const SIGTTIN Signal
-pkg syscall (freebsd-amd64-cgo), const SIGTTOU Signal
-pkg syscall (freebsd-amd64-cgo), const SIGURG Signal
-pkg syscall (freebsd-amd64-cgo), const SIGUSR1 Signal
-pkg syscall (freebsd-amd64-cgo), const SIGUSR2 Signal
-pkg syscall (freebsd-amd64-cgo), const SIGVTALRM Signal
-pkg syscall (freebsd-amd64-cgo), const SIGWINCH Signal
-pkg syscall (freebsd-amd64-cgo), const SIGXCPU Signal
-pkg syscall (freebsd-amd64-cgo), const SIGXFSZ Signal
-pkg syscall (freebsd-amd64-cgo), const SIOCADDMULTI ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCADDRT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCAIFADDR ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCAIFGROUP ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCALIFADDR ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCATMARK ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCDELMULTI ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCDELRT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCDIFADDR ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCDIFGROUP ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCDIFPHYADDR ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCDLIFADDR ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCGDRVSPEC ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCGETSGCNT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCGETVIFCNT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCGHIWAT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCGIFADDR ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCGIFBRDADDR ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCGIFCAP ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCGIFCONF ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCGIFDESCR ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCGIFDSTADDR ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCGIFFIB ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCGIFFLAGS ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCGIFGENERIC ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCGIFGMEMB ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCGIFGROUP ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCGIFINDEX ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCGIFMAC ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCGIFMEDIA ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCGIFMETRIC ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCGIFMTU ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCGIFNETMASK ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCGIFPDSTADDR ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCGIFPHYS ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCGIFPSRCADDR ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCGIFSTATUS ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCGLIFADDR ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCGLIFPHYADDR ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCGLOWAT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCGPGRP ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCGPRIVATE_0 ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCGPRIVATE_1 ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCIFCREATE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCIFCREATE2 ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCIFDESTROY ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCIFGCLONERS ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCSDRVSPEC ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCSHIWAT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCSIFADDR ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCSIFBRDADDR ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCSIFCAP ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCSIFDESCR ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCSIFDSTADDR ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCSIFFIB ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCSIFFLAGS ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCSIFGENERIC ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCSIFLLADDR ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCSIFMAC ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCSIFMEDIA ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCSIFMETRIC ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCSIFMTU ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCSIFNAME ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCSIFNETMASK ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCSIFPHYADDR ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCSIFPHYS ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCSIFRVNET ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCSIFVNET ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCSLIFPHYADDR ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCSLOWAT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SIOCSPGRP ideal-int
-pkg syscall (freebsd-amd64-cgo), const SOCK_MAXADDRLEN ideal-int
-pkg syscall (freebsd-amd64-cgo), const SOCK_RDM ideal-int
-pkg syscall (freebsd-amd64-cgo), const SO_ACCEPTCONN ideal-int
-pkg syscall (freebsd-amd64-cgo), const SO_ACCEPTFILTER ideal-int
-pkg syscall (freebsd-amd64-cgo), const SO_BINTIME ideal-int
-pkg syscall (freebsd-amd64-cgo), const SO_DEBUG ideal-int
-pkg syscall (freebsd-amd64-cgo), const SO_ERROR ideal-int
-pkg syscall (freebsd-amd64-cgo), const SO_LABEL ideal-int
-pkg syscall (freebsd-amd64-cgo), const SO_LISTENINCQLEN ideal-int
-pkg syscall (freebsd-amd64-cgo), const SO_LISTENQLEN ideal-int
-pkg syscall (freebsd-amd64-cgo), const SO_LISTENQLIMIT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SO_NOSIGPIPE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SO_NO_DDP ideal-int
-pkg syscall (freebsd-amd64-cgo), const SO_NO_OFFLOAD ideal-int
-pkg syscall (freebsd-amd64-cgo), const SO_OOBINLINE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SO_PEERLABEL ideal-int
-pkg syscall (freebsd-amd64-cgo), const SO_PROTOCOL ideal-int
-pkg syscall (freebsd-amd64-cgo), const SO_PROTOTYPE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SO_RCVLOWAT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SO_RCVTIMEO ideal-int
-pkg syscall (freebsd-amd64-cgo), const SO_REUSEPORT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SO_SETFIB ideal-int
-pkg syscall (freebsd-amd64-cgo), const SO_SNDLOWAT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SO_SNDTIMEO ideal-int
-pkg syscall (freebsd-amd64-cgo), const SO_TIMESTAMP ideal-int
-pkg syscall (freebsd-amd64-cgo), const SO_TYPE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SO_USELOOPBACK ideal-int
-pkg syscall (freebsd-amd64-cgo), const SO_USER_COOKIE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_ABORT2 ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_ACCEPT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_ACCESS ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_ACCT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_ADJTIME ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_AUDIT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_AUDITCTL ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_AUDITON ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_BIND ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_CAP_ENTER ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_CAP_GETMODE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_CAP_GETRIGHTS ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_CAP_NEW ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_CHDIR ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_CHFLAGS ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_CHMOD ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_CHOWN ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_CHROOT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_CLOCK_GETCPUCLOCKID2 ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_CLOCK_GETRES ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_CLOCK_GETTIME ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_CLOCK_SETTIME ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_CLOSE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_CLOSEFROM ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_CONNECT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_CPUSET ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_CPUSET_GETAFFINITY ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_CPUSET_GETID ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_CPUSET_SETAFFINITY ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_CPUSET_SETID ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_DUP ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_DUP2 ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_EACCESS ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_EXECVE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_EXIT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTRCTL ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTR_DELETE_FD ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTR_DELETE_FILE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTR_DELETE_LINK ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTR_GET_FD ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTR_GET_FILE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTR_GET_LINK ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTR_LIST_FD ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTR_LIST_FILE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTR_LIST_LINK ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTR_SET_FD ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTR_SET_FILE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTR_SET_LINK ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_FACCESSAT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_FCHDIR ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_FCHFLAGS ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_FCHMOD ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_FCHMODAT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_FCHOWN ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_FCHOWNAT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_FCNTL ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_FEXECVE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_FFCLOCK_GETCOUNTER ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_FFCLOCK_GETESTIMATE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_FFCLOCK_SETESTIMATE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_FHOPEN ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_FHSTAT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_FHSTATFS ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_FLOCK ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_FORK ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_FPATHCONF ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_FREEBSD6_FTRUNCATE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_FREEBSD6_LSEEK ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_FREEBSD6_MMAP ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_FREEBSD6_PREAD ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_FREEBSD6_PWRITE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_FREEBSD6_TRUNCATE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_FSTAT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_FSTATAT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_FSTATFS ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_FSYNC ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_FTRUNCATE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_FUTIMES ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_FUTIMESAT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_GETAUDIT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_GETAUDIT_ADDR ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_GETAUID ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_GETCONTEXT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_GETDENTS ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_GETDIRENTRIES ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_GETDTABLESIZE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_GETEGID ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_GETEUID ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_GETFH ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_GETFSSTAT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_GETGID ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_GETGROUPS ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_GETITIMER ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_GETLOGIN ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_GETLOGINCLASS ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_GETPEERNAME ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_GETPGID ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_GETPGRP ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_GETPID ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_GETPPID ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_GETPRIORITY ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_GETRESGID ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_GETRESUID ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_GETRLIMIT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_GETRUSAGE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_GETSID ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_GETSOCKNAME ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_GETSOCKOPT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_GETTIMEOFDAY ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_GETUID ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_IOCTL ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_ISSETUGID ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_JAIL ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_JAIL_ATTACH ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_JAIL_GET ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_JAIL_REMOVE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_JAIL_SET ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_KENV ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_KEVENT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_KILL ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_KLDFIND ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_KLDFIRSTMOD ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_KLDLOAD ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_KLDNEXT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_KLDSTAT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_KLDSYM ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_KLDUNLOAD ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_KLDUNLOADF ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_KQUEUE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_KTIMER_CREATE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_KTIMER_DELETE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_KTIMER_GETOVERRUN ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_KTIMER_GETTIME ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_KTIMER_SETTIME ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_KTRACE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_LCHFLAGS ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_LCHMOD ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_LCHOWN ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_LGETFH ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_LINK ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_LINKAT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_LISTEN ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_LPATHCONF ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_LSEEK ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_LSTAT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_LUTIMES ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_MAC_SYSCALL ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_MADVISE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_MINCORE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_MINHERIT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_MKDIR ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_MKDIRAT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_MKFIFO ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_MKFIFOAT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_MKNOD ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_MKNODAT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_MLOCK ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_MLOCKALL ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_MMAP ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_MODFIND ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_MODFNEXT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_MODNEXT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_MODSTAT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_MOUNT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_MPROTECT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_MSYNC ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_MUNLOCK ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_MUNLOCKALL ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_MUNMAP ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_NANOSLEEP ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_NFSTAT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_NLSTAT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_NMOUNT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_NSTAT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_NTP_ADJTIME ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_NTP_GETTIME ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_OBREAK ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_OPEN ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_OPENAT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_OPENBSD_POLL ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_OVADVISE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_PATHCONF ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_PDFORK ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_PDGETPID ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_PDKILL ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_PIPE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_POLL ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_POSIX_FADVISE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_POSIX_FALLOCATE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_POSIX_OPENPT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_PREAD ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_PREADV ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_PROFIL ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_PSELECT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_PTRACE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_PWRITE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_PWRITEV ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_QUOTACTL ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_RCTL_ADD_RULE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_RCTL_GET_LIMITS ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_RCTL_GET_RACCT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_RCTL_GET_RULES ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_RCTL_REMOVE_RULE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_READ ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_READLINK ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_READLINKAT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_READV ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_REBOOT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_RECVFROM ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_RECVMSG ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_RENAME ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_RENAMEAT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_REVOKE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_RFORK ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_RMDIR ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_RTPRIO ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_RTPRIO_THREAD ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SBRK ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SCHED_GETPARAM ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SCHED_GETSCHEDULER ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SCHED_GET_PRIORITY_MAX ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SCHED_GET_PRIORITY_MIN ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SCHED_RR_GET_INTERVAL ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SCHED_SETPARAM ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SCHED_SETSCHEDULER ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SCHED_YIELD ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SCTP_GENERIC_RECVMSG ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SCTP_GENERIC_SENDMSG ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SCTP_GENERIC_SENDMSG_IOV ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SCTP_PEELOFF ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SELECT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SENDFILE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SENDMSG ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SENDTO ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SETAUDIT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SETAUDIT_ADDR ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SETAUID ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SETCONTEXT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SETEGID ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SETEUID ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SETFIB ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SETGID ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SETGROUPS ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SETITIMER ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SETLOGIN ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SETLOGINCLASS ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SETPGID ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SETPRIORITY ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SETREGID ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SETRESGID ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SETRESUID ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SETREUID ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SETRLIMIT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SETSID ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SETSOCKOPT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SETTIMEOFDAY ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SETUID ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SHM_OPEN ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SHM_UNLINK ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SHUTDOWN ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SIGACTION ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SIGALTSTACK ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SIGPENDING ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SIGPROCMASK ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SIGQUEUE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SIGRETURN ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SIGSUSPEND ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SIGTIMEDWAIT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SIGWAIT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SIGWAITINFO ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SOCKET ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SOCKETPAIR ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SSTK ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_STAT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_STATFS ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SWAPCONTEXT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SWAPOFF ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SWAPON ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SYMLINK ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SYMLINKAT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SYNC ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_SYSARCH ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_THR_CREATE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_THR_EXIT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_THR_KILL ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_THR_KILL2 ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_THR_NEW ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_THR_SELF ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_THR_SET_NAME ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_THR_SUSPEND ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_THR_WAKE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_TRUNCATE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_UMASK ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_UNDELETE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_UNLINK ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_UNLINKAT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_UNMOUNT ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_UTIMES ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_UTRACE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_UUIDGEN ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_VFORK ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_WAIT4 ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_WAIT6 ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_WRITE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_WRITEV ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS_YIELD ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS__UMTX_LOCK ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS__UMTX_OP ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS__UMTX_UNLOCK ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS___ACL_ACLCHECK_FD ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS___ACL_ACLCHECK_FILE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS___ACL_ACLCHECK_LINK ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS___ACL_DELETE_FD ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS___ACL_DELETE_FILE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS___ACL_DELETE_LINK ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS___ACL_GET_FD ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS___ACL_GET_FILE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS___ACL_GET_LINK ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS___ACL_SET_FD ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS___ACL_SET_FILE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS___ACL_SET_LINK ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS___GETCWD ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS___MAC_EXECVE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS___MAC_GET_FD ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS___MAC_GET_FILE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS___MAC_GET_LINK ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS___MAC_GET_PID ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS___MAC_GET_PROC ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS___MAC_SET_FD ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS___MAC_SET_FILE ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS___MAC_SET_LINK ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS___MAC_SET_PROC ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS___SETUGID ideal-int
-pkg syscall (freebsd-amd64-cgo), const SYS___SYSCTL ideal-int
-pkg syscall (freebsd-amd64-cgo), const SizeofBpfHdr ideal-int
-pkg syscall (freebsd-amd64-cgo), const SizeofBpfInsn ideal-int
-pkg syscall (freebsd-amd64-cgo), const SizeofBpfProgram ideal-int
-pkg syscall (freebsd-amd64-cgo), const SizeofBpfStat ideal-int
-pkg syscall (freebsd-amd64-cgo), const SizeofBpfVersion ideal-int
-pkg syscall (freebsd-amd64-cgo), const SizeofBpfZbuf ideal-int
-pkg syscall (freebsd-amd64-cgo), const SizeofBpfZbufHeader ideal-int
-pkg syscall (freebsd-amd64-cgo), const SizeofCmsghdr ideal-int
-pkg syscall (freebsd-amd64-cgo), const SizeofICMPv6Filter = 32
-pkg syscall (freebsd-amd64-cgo), const SizeofICMPv6Filter ideal-int
-pkg syscall (freebsd-amd64-cgo), const SizeofIPMreq ideal-int
-pkg syscall (freebsd-amd64-cgo), const SizeofIPMreqn ideal-int
-pkg syscall (freebsd-amd64-cgo), const SizeofIPv6MTUInfo = 32
-pkg syscall (freebsd-amd64-cgo), const SizeofIPv6MTUInfo ideal-int
-pkg syscall (freebsd-amd64-cgo), const SizeofIPv6Mreq ideal-int
-pkg syscall (freebsd-amd64-cgo), const SizeofIfAnnounceMsghdr ideal-int
-pkg syscall (freebsd-amd64-cgo), const SizeofIfData ideal-int
-pkg syscall (freebsd-amd64-cgo), const SizeofIfMsghdr ideal-int
-pkg syscall (freebsd-amd64-cgo), const SizeofIfaMsghdr ideal-int
-pkg syscall (freebsd-amd64-cgo), const SizeofIfmaMsghdr ideal-int
-pkg syscall (freebsd-amd64-cgo), const SizeofInet6Pktinfo ideal-int
-pkg syscall (freebsd-amd64-cgo), const SizeofLinger ideal-int
-pkg syscall (freebsd-amd64-cgo), const SizeofMsghdr ideal-int
-pkg syscall (freebsd-amd64-cgo), const SizeofRtMetrics ideal-int
-pkg syscall (freebsd-amd64-cgo), const SizeofRtMsghdr ideal-int
-pkg syscall (freebsd-amd64-cgo), const SizeofSockaddrAny ideal-int
-pkg syscall (freebsd-amd64-cgo), const SizeofSockaddrDatalink ideal-int
-pkg syscall (freebsd-amd64-cgo), const SizeofSockaddrInet4 ideal-int
-pkg syscall (freebsd-amd64-cgo), const SizeofSockaddrInet6 ideal-int
-pkg syscall (freebsd-amd64-cgo), const SizeofSockaddrUnix ideal-int
-pkg syscall (freebsd-amd64-cgo), const TCIFLUSH ideal-int
-pkg syscall (freebsd-amd64-cgo), const TCIOFLUSH ideal-int
-pkg syscall (freebsd-amd64-cgo), const TCOFLUSH ideal-int
-pkg syscall (freebsd-amd64-cgo), const TCP_CA_NAME_MAX ideal-int
-pkg syscall (freebsd-amd64-cgo), const TCP_CONGESTION ideal-int
-pkg syscall (freebsd-amd64-cgo), const TCP_INFO ideal-int
-pkg syscall (freebsd-amd64-cgo), const TCP_KEEPCNT ideal-int
-pkg syscall (freebsd-amd64-cgo), const TCP_KEEPIDLE ideal-int
-pkg syscall (freebsd-amd64-cgo), const TCP_KEEPINIT ideal-int
-pkg syscall (freebsd-amd64-cgo), const TCP_KEEPINTVL ideal-int
-pkg syscall (freebsd-amd64-cgo), const TCP_MAXBURST ideal-int
-pkg syscall (freebsd-amd64-cgo), const TCP_MAXHLEN ideal-int
-pkg syscall (freebsd-amd64-cgo), const TCP_MAXOLEN ideal-int
-pkg syscall (freebsd-amd64-cgo), const TCP_MAXSEG ideal-int
-pkg syscall (freebsd-amd64-cgo), const TCP_MAXWIN ideal-int
-pkg syscall (freebsd-amd64-cgo), const TCP_MAX_SACK ideal-int
-pkg syscall (freebsd-amd64-cgo), const TCP_MAX_WINSHIFT ideal-int
-pkg syscall (freebsd-amd64-cgo), const TCP_MD5SIG ideal-int
-pkg syscall (freebsd-amd64-cgo), const TCP_MINMSS ideal-int
-pkg syscall (freebsd-amd64-cgo), const TCP_MSS ideal-int
-pkg syscall (freebsd-amd64-cgo), const TCP_NOOPT ideal-int
-pkg syscall (freebsd-amd64-cgo), const TCP_NOPUSH ideal-int
-pkg syscall (freebsd-amd64-cgo), const TCSAFLUSH ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCCBRK ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCCDTR ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCCONS ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCDRAIN ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCEXCL ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCEXT ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCFLUSH ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCGDRAINWAIT ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCGETA ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCGETD ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCGPGRP ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCGPTN ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCGSID ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCGWINSZ ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCMBIC ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCMBIS ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCMGDTRWAIT ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCMGET ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCMSDTRWAIT ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCMSET ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCM_CAR ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCM_CD ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCM_CTS ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCM_DCD ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCM_DSR ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCM_DTR ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCM_LE ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCM_RI ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCM_RNG ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCM_RTS ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCM_SR ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCM_ST ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCNOTTY ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCNXCL ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCOUTQ ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCPKT ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCPKT_DATA ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCPKT_DOSTOP ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCPKT_FLUSHREAD ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCPKT_FLUSHWRITE ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCPKT_IOCTL ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCPKT_NOSTOP ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCPKT_START ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCPKT_STOP ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCPTMASTER ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCSBRK ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCSCTTY ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCSDRAINWAIT ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCSDTR ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCSETA ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCSETAF ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCSETAW ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCSETD ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCSIG ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCSPGRP ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCSTART ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCSTAT ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCSTI ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCSTOP ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCSWINSZ ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCTIMESTAMP ideal-int
-pkg syscall (freebsd-amd64-cgo), const TIOCUCNTL ideal-int
-pkg syscall (freebsd-amd64-cgo), const TOSTOP ideal-int
-pkg syscall (freebsd-amd64-cgo), const VDISCARD ideal-int
-pkg syscall (freebsd-amd64-cgo), const VDSUSP ideal-int
-pkg syscall (freebsd-amd64-cgo), const VEOF ideal-int
-pkg syscall (freebsd-amd64-cgo), const VEOL ideal-int
-pkg syscall (freebsd-amd64-cgo), const VEOL2 ideal-int
-pkg syscall (freebsd-amd64-cgo), const VERASE ideal-int
-pkg syscall (freebsd-amd64-cgo), const VERASE2 ideal-int
-pkg syscall (freebsd-amd64-cgo), const VINTR ideal-int
-pkg syscall (freebsd-amd64-cgo), const VKILL ideal-int
-pkg syscall (freebsd-amd64-cgo), const VLNEXT ideal-int
-pkg syscall (freebsd-amd64-cgo), const VMIN ideal-int
-pkg syscall (freebsd-amd64-cgo), const VQUIT ideal-int
-pkg syscall (freebsd-amd64-cgo), const VREPRINT ideal-int
-pkg syscall (freebsd-amd64-cgo), const VSTART ideal-int
-pkg syscall (freebsd-amd64-cgo), const VSTATUS ideal-int
-pkg syscall (freebsd-amd64-cgo), const VSTOP ideal-int
-pkg syscall (freebsd-amd64-cgo), const VSUSP ideal-int
-pkg syscall (freebsd-amd64-cgo), const VTIME ideal-int
-pkg syscall (freebsd-amd64-cgo), const VWERASE ideal-int
-pkg syscall (freebsd-amd64-cgo), const WCONTINUED ideal-int
-pkg syscall (freebsd-amd64-cgo), const WCOREFLAG ideal-int
-pkg syscall (freebsd-amd64-cgo), const WLINUXCLONE ideal-int
-pkg syscall (freebsd-amd64-cgo), const WNOHANG ideal-int
-pkg syscall (freebsd-amd64-cgo), const WNOWAIT ideal-int
-pkg syscall (freebsd-amd64-cgo), const WSTOPPED ideal-int
-pkg syscall (freebsd-amd64-cgo), const WUNTRACED ideal-int
-pkg syscall (freebsd-amd64-cgo), func Accept(int) (int, Sockaddr, error)
-pkg syscall (freebsd-amd64-cgo), func Access(string, uint32) error
-pkg syscall (freebsd-amd64-cgo), func Adjtime(*Timeval, *Timeval) error
-pkg syscall (freebsd-amd64-cgo), func Bind(int, Sockaddr) error
-pkg syscall (freebsd-amd64-cgo), func BpfBuflen(int) (int, error)
-pkg syscall (freebsd-amd64-cgo), func BpfDatalink(int) (int, error)
-pkg syscall (freebsd-amd64-cgo), func BpfHeadercmpl(int) (int, error)
-pkg syscall (freebsd-amd64-cgo), func BpfInterface(int, string) (string, error)
-pkg syscall (freebsd-amd64-cgo), func BpfJump(int, int, int, int) *BpfInsn
-pkg syscall (freebsd-amd64-cgo), func BpfStats(int) (*BpfStat, error)
-pkg syscall (freebsd-amd64-cgo), func BpfStmt(int, int) *BpfInsn
-pkg syscall (freebsd-amd64-cgo), func BpfTimeout(int) (*Timeval, error)
-pkg syscall (freebsd-amd64-cgo), func CheckBpfVersion(int) error
-pkg syscall (freebsd-amd64-cgo), func Chflags(string, int) error
-pkg syscall (freebsd-amd64-cgo), func Chroot(string) error
-pkg syscall (freebsd-amd64-cgo), func Close(int) error
-pkg syscall (freebsd-amd64-cgo), func CloseOnExec(int)
-pkg syscall (freebsd-amd64-cgo), func CmsgLen(int) int
-pkg syscall (freebsd-amd64-cgo), func CmsgSpace(int) int
-pkg syscall (freebsd-amd64-cgo), func Connect(int, Sockaddr) error
-pkg syscall (freebsd-amd64-cgo), func Dup(int) (int, error)
-pkg syscall (freebsd-amd64-cgo), func Dup2(int, int) error
-pkg syscall (freebsd-amd64-cgo), func Fchdir(int) error
-pkg syscall (freebsd-amd64-cgo), func Fchflags(int, int) error
-pkg syscall (freebsd-amd64-cgo), func Fchmod(int, uint32) error
-pkg syscall (freebsd-amd64-cgo), func Fchown(int, int, int) error
-pkg syscall (freebsd-amd64-cgo), func Flock(int, int) error
-pkg syscall (freebsd-amd64-cgo), func FlushBpf(int) error
-pkg syscall (freebsd-amd64-cgo), func ForkExec(string, []string, *ProcAttr) (int, error)
-pkg syscall (freebsd-amd64-cgo), func Fpathconf(int, int) (int, error)
-pkg syscall (freebsd-amd64-cgo), func Fstat(int, *Stat_t) error
-pkg syscall (freebsd-amd64-cgo), func Fstatfs(int, *Statfs_t) error
-pkg syscall (freebsd-amd64-cgo), func Fsync(int) error
-pkg syscall (freebsd-amd64-cgo), func Ftruncate(int, int64) error
-pkg syscall (freebsd-amd64-cgo), func Futimes(int, []Timeval) error
-pkg syscall (freebsd-amd64-cgo), func Getdirentries(int, []uint8, *uintptr) (int, error)
-pkg syscall (freebsd-amd64-cgo), func Getdtablesize() int
-pkg syscall (freebsd-amd64-cgo), func Getfsstat([]Statfs_t, int) (int, error)
-pkg syscall (freebsd-amd64-cgo), func Getpeername(int) (Sockaddr, error)
-pkg syscall (freebsd-amd64-cgo), func Getpgid(int) (int, error)
-pkg syscall (freebsd-amd64-cgo), func Getpgrp() int
-pkg syscall (freebsd-amd64-cgo), func Getpriority(int, int) (int, error)
-pkg syscall (freebsd-amd64-cgo), func Getrlimit(int, *Rlimit) error
-pkg syscall (freebsd-amd64-cgo), func Getrusage(int, *Rusage) error
-pkg syscall (freebsd-amd64-cgo), func Getsid(int) (int, error)
-pkg syscall (freebsd-amd64-cgo), func Getsockname(int) (Sockaddr, error)
-pkg syscall (freebsd-amd64-cgo), func GetsockoptByte(int, int, int) (uint8, error)
-pkg syscall (freebsd-amd64-cgo), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
-pkg syscall (freebsd-amd64-cgo), func GetsockoptIPMreq(int, int, int) (*IPMreq, error)
-pkg syscall (freebsd-amd64-cgo), func GetsockoptIPMreqn(int, int, int) (*IPMreqn, error)
-pkg syscall (freebsd-amd64-cgo), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
-pkg syscall (freebsd-amd64-cgo), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error)
-pkg syscall (freebsd-amd64-cgo), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error)
-pkg syscall (freebsd-amd64-cgo), func GetsockoptInt(int, int, int) (int, error)
-pkg syscall (freebsd-amd64-cgo), func Issetugid() bool
-pkg syscall (freebsd-amd64-cgo), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error)
-pkg syscall (freebsd-amd64-cgo), func Kill(int, Signal) error
-pkg syscall (freebsd-amd64-cgo), func Kqueue() (int, error)
-pkg syscall (freebsd-amd64-cgo), func Listen(int, int) error
-pkg syscall (freebsd-amd64-cgo), func Lstat(string, *Stat_t) error
-pkg syscall (freebsd-amd64-cgo), func Mkfifo(string, uint32) error
-pkg syscall (freebsd-amd64-cgo), func Mknod(string, uint32, int) error
-pkg syscall (freebsd-amd64-cgo), func Mmap(int, int64, int, int, int) ([]uint8, error)
-pkg syscall (freebsd-amd64-cgo), func Munmap([]uint8) error
-pkg syscall (freebsd-amd64-cgo), func Nanosleep(*Timespec, *Timespec) error
-pkg syscall (freebsd-amd64-cgo), func Open(string, int, uint32) (int, error)
-pkg syscall (freebsd-amd64-cgo), func ParseDirent([]uint8, int, []string) (int, int, []string)
-pkg syscall (freebsd-amd64-cgo), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error)
-pkg syscall (freebsd-amd64-cgo), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error)
-pkg syscall (freebsd-amd64-cgo), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error)
-pkg syscall (freebsd-amd64-cgo), func ParseUnixRights(*SocketControlMessage) ([]int, error)
-pkg syscall (freebsd-amd64-cgo), func Pathconf(string, int) (int, error)
-pkg syscall (freebsd-amd64-cgo), func Pipe([]int) error
-pkg syscall (freebsd-amd64-cgo), func Pread(int, []uint8, int64) (int, error)
-pkg syscall (freebsd-amd64-cgo), func Pwrite(int, []uint8, int64) (int, error)
-pkg syscall (freebsd-amd64-cgo), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (freebsd-amd64-cgo), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (freebsd-amd64-cgo), func Read(int, []uint8) (int, error)
-pkg syscall (freebsd-amd64-cgo), func ReadDirent(int, []uint8) (int, error)
-pkg syscall (freebsd-amd64-cgo), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
-pkg syscall (freebsd-amd64-cgo), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
-pkg syscall (freebsd-amd64-cgo), func Revoke(string) error
-pkg syscall (freebsd-amd64-cgo), func RouteRIB(int, int) ([]uint8, error)
-pkg syscall (freebsd-amd64-cgo), func Seek(int, int64, int) (int64, error)
-pkg syscall (freebsd-amd64-cgo), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error
-pkg syscall (freebsd-amd64-cgo), func Sendfile(int, int, *int64, int) (int, error)
-pkg syscall (freebsd-amd64-cgo), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
-pkg syscall (freebsd-amd64-cgo), func Sendto(int, []uint8, int, Sockaddr) error
-pkg syscall (freebsd-amd64-cgo), func SetBpf(int, []BpfInsn) error
-pkg syscall (freebsd-amd64-cgo), func SetBpfBuflen(int, int) (int, error)
-pkg syscall (freebsd-amd64-cgo), func SetBpfDatalink(int, int) (int, error)
-pkg syscall (freebsd-amd64-cgo), func SetBpfHeadercmpl(int, int) error
-pkg syscall (freebsd-amd64-cgo), func SetBpfImmediate(int, int) error
-pkg syscall (freebsd-amd64-cgo), func SetBpfInterface(int, string) error
-pkg syscall (freebsd-amd64-cgo), func SetBpfPromisc(int, int) error
-pkg syscall (freebsd-amd64-cgo), func SetBpfTimeout(int, *Timeval) error
-pkg syscall (freebsd-amd64-cgo), func SetKevent(*Kevent_t, int, int, int)
-pkg syscall (freebsd-amd64-cgo), func SetNonblock(int, bool) error
-pkg syscall (freebsd-amd64-cgo), func Setegid(int) error
-pkg syscall (freebsd-amd64-cgo), func Seteuid(int) error
-pkg syscall (freebsd-amd64-cgo), func Setgid(int) error
-pkg syscall (freebsd-amd64-cgo), func Setgroups([]int) error
-pkg syscall (freebsd-amd64-cgo), func Setlogin(string) error
-pkg syscall (freebsd-amd64-cgo), func Setpgid(int, int) error
-pkg syscall (freebsd-amd64-cgo), func Setpriority(int, int, int) error
-pkg syscall (freebsd-amd64-cgo), func Setregid(int, int) error
-pkg syscall (freebsd-amd64-cgo), func Setreuid(int, int) error
-pkg syscall (freebsd-amd64-cgo), func Setrlimit(int, *Rlimit) error
-pkg syscall (freebsd-amd64-cgo), func Setsid() (int, error)
-pkg syscall (freebsd-amd64-cgo), func SetsockoptByte(int, int, int, uint8) error
-pkg syscall (freebsd-amd64-cgo), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
-pkg syscall (freebsd-amd64-cgo), func SetsockoptIPMreq(int, int, int, *IPMreq) error
-pkg syscall (freebsd-amd64-cgo), func SetsockoptIPMreqn(int, int, int, *IPMreqn) error
-pkg syscall (freebsd-amd64-cgo), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error
-pkg syscall (freebsd-amd64-cgo), func SetsockoptInet4Addr(int, int, int, [4]uint8) error
-pkg syscall (freebsd-amd64-cgo), func SetsockoptInt(int, int, int, int) error
-pkg syscall (freebsd-amd64-cgo), func SetsockoptLinger(int, int, int, *Linger) error
-pkg syscall (freebsd-amd64-cgo), func SetsockoptString(int, int, int, string) error
-pkg syscall (freebsd-amd64-cgo), func SetsockoptTimeval(int, int, int, *Timeval) error
-pkg syscall (freebsd-amd64-cgo), func Settimeofday(*Timeval) error
-pkg syscall (freebsd-amd64-cgo), func Setuid(int) error
-pkg syscall (freebsd-amd64-cgo), func Shutdown(int, int) error
-pkg syscall (freebsd-amd64-cgo), func SlicePtrFromStrings([]string) ([]*uint8, error)
-pkg syscall (freebsd-amd64-cgo), func Socket(int, int, int) (int, error)
-pkg syscall (freebsd-amd64-cgo), func Socketpair(int, int, int) ([2]int, error)
-pkg syscall (freebsd-amd64-cgo), func Stat(string, *Stat_t) error
-pkg syscall (freebsd-amd64-cgo), func Statfs(string, *Statfs_t) error
-pkg syscall (freebsd-amd64-cgo), func StringSlicePtr([]string) []*uint8
-pkg syscall (freebsd-amd64-cgo), func Sync() error
-pkg syscall (freebsd-amd64-cgo), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (freebsd-amd64-cgo), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (freebsd-amd64-cgo), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (freebsd-amd64-cgo), func Sysctl(string) (string, error)
-pkg syscall (freebsd-amd64-cgo), func SysctlUint32(string) (uint32, error)
-pkg syscall (freebsd-amd64-cgo), func TimevalToNsec(Timeval) int64
-pkg syscall (freebsd-amd64-cgo), func Truncate(string, int64) error
-pkg syscall (freebsd-amd64-cgo), func Umask(int) int
-pkg syscall (freebsd-amd64-cgo), func Undelete(string) error
-pkg syscall (freebsd-amd64-cgo), func UnixRights(...int) []uint8
-pkg syscall (freebsd-amd64-cgo), func Unmount(string, int) error
-pkg syscall (freebsd-amd64-cgo), func Wait4(int, *WaitStatus, int, *Rusage) (int, error)
-pkg syscall (freebsd-amd64-cgo), func Write(int, []uint8) (int, error)
-pkg syscall (freebsd-amd64-cgo), method (*Cmsghdr) SetLen(int)
-pkg syscall (freebsd-amd64-cgo), method (*Iovec) SetLen(int)
-pkg syscall (freebsd-amd64-cgo), method (*Msghdr) SetControllen(int)
-pkg syscall (freebsd-amd64-cgo), type BpfHdr struct
-pkg syscall (freebsd-amd64-cgo), type BpfHdr struct, Caplen uint32
-pkg syscall (freebsd-amd64-cgo), type BpfHdr struct, Datalen uint32
-pkg syscall (freebsd-amd64-cgo), type BpfHdr struct, Hdrlen uint16
-pkg syscall (freebsd-amd64-cgo), type BpfHdr struct, Pad_cgo_0 [6]uint8
-pkg syscall (freebsd-amd64-cgo), type BpfHdr struct, Tstamp Timeval
-pkg syscall (freebsd-amd64-cgo), type BpfInsn struct
-pkg syscall (freebsd-amd64-cgo), type BpfInsn struct, Code uint16
-pkg syscall (freebsd-amd64-cgo), type BpfInsn struct, Jf uint8
-pkg syscall (freebsd-amd64-cgo), type BpfInsn struct, Jt uint8
-pkg syscall (freebsd-amd64-cgo), type BpfInsn struct, K uint32
-pkg syscall (freebsd-amd64-cgo), type BpfProgram struct
-pkg syscall (freebsd-amd64-cgo), type BpfProgram struct, Insns *BpfInsn
-pkg syscall (freebsd-amd64-cgo), type BpfProgram struct, Len uint32
-pkg syscall (freebsd-amd64-cgo), type BpfProgram struct, Pad_cgo_0 [4]uint8
-pkg syscall (freebsd-amd64-cgo), type BpfStat struct
-pkg syscall (freebsd-amd64-cgo), type BpfStat struct, Drop uint32
-pkg syscall (freebsd-amd64-cgo), type BpfStat struct, Recv uint32
-pkg syscall (freebsd-amd64-cgo), type BpfVersion struct
-pkg syscall (freebsd-amd64-cgo), type BpfVersion struct, Major uint16
-pkg syscall (freebsd-amd64-cgo), type BpfVersion struct, Minor uint16
-pkg syscall (freebsd-amd64-cgo), type BpfZbuf struct
-pkg syscall (freebsd-amd64-cgo), type BpfZbuf struct, Bufa *uint8
-pkg syscall (freebsd-amd64-cgo), type BpfZbuf struct, Bufb *uint8
-pkg syscall (freebsd-amd64-cgo), type BpfZbuf struct, Buflen uint64
-pkg syscall (freebsd-amd64-cgo), type BpfZbufHeader struct
-pkg syscall (freebsd-amd64-cgo), type BpfZbufHeader struct, Kernel_gen uint32
-pkg syscall (freebsd-amd64-cgo), type BpfZbufHeader struct, Kernel_len uint32
-pkg syscall (freebsd-amd64-cgo), type BpfZbufHeader struct, User_gen uint32
-pkg syscall (freebsd-amd64-cgo), type BpfZbufHeader struct, X_bzh_pad [5]uint32
-pkg syscall (freebsd-amd64-cgo), type Cmsghdr struct
-pkg syscall (freebsd-amd64-cgo), type Cmsghdr struct, Len uint32
-pkg syscall (freebsd-amd64-cgo), type Cmsghdr struct, Level int32
-pkg syscall (freebsd-amd64-cgo), type Cmsghdr struct, Type int32
-pkg syscall (freebsd-amd64-cgo), type Credential struct
-pkg syscall (freebsd-amd64-cgo), type Credential struct, Gid uint32
-pkg syscall (freebsd-amd64-cgo), type Credential struct, Groups []uint32
-pkg syscall (freebsd-amd64-cgo), type Credential struct, Uid uint32
-pkg syscall (freebsd-amd64-cgo), type Dirent struct
-pkg syscall (freebsd-amd64-cgo), type Dirent struct, Fileno uint32
-pkg syscall (freebsd-amd64-cgo), type Dirent struct, Name [256]int8
-pkg syscall (freebsd-amd64-cgo), type Dirent struct, Namlen uint8
-pkg syscall (freebsd-amd64-cgo), type Dirent struct, Reclen uint16
-pkg syscall (freebsd-amd64-cgo), type Dirent struct, Type uint8
-pkg syscall (freebsd-amd64-cgo), type FdSet struct
-pkg syscall (freebsd-amd64-cgo), type FdSet struct, X__fds_bits [16]uint64
-pkg syscall (freebsd-amd64-cgo), type Flock_t struct
-pkg syscall (freebsd-amd64-cgo), type Flock_t struct, Len int64
-pkg syscall (freebsd-amd64-cgo), type Flock_t struct, Pad_cgo_0 [4]uint8
-pkg syscall (freebsd-amd64-cgo), type Flock_t struct, Pid int32
-pkg syscall (freebsd-amd64-cgo), type Flock_t struct, Start int64
-pkg syscall (freebsd-amd64-cgo), type Flock_t struct, Sysid int32
-pkg syscall (freebsd-amd64-cgo), type Flock_t struct, Type int16
-pkg syscall (freebsd-amd64-cgo), type Flock_t struct, Whence int16
-pkg syscall (freebsd-amd64-cgo), type Fsid struct
-pkg syscall (freebsd-amd64-cgo), type Fsid struct, Val [2]int32
-pkg syscall (freebsd-amd64-cgo), type ICMPv6Filter struct
-pkg syscall (freebsd-amd64-cgo), type ICMPv6Filter struct, Filt [8]uint32
-pkg syscall (freebsd-amd64-cgo), type IPMreqn struct
-pkg syscall (freebsd-amd64-cgo), type IPMreqn struct, Address [4]uint8
-pkg syscall (freebsd-amd64-cgo), type IPMreqn struct, Ifindex int32
-pkg syscall (freebsd-amd64-cgo), type IPMreqn struct, Multiaddr [4]uint8
-pkg syscall (freebsd-amd64-cgo), type IPv6MTUInfo struct
-pkg syscall (freebsd-amd64-cgo), type IPv6MTUInfo struct, Addr RawSockaddrInet6
-pkg syscall (freebsd-amd64-cgo), type IPv6MTUInfo struct, Mtu uint32
-pkg syscall (freebsd-amd64-cgo), type IfAnnounceMsghdr struct
-pkg syscall (freebsd-amd64-cgo), type IfAnnounceMsghdr struct, Index uint16
-pkg syscall (freebsd-amd64-cgo), type IfAnnounceMsghdr struct, Msglen uint16
-pkg syscall (freebsd-amd64-cgo), type IfAnnounceMsghdr struct, Name [16]int8
-pkg syscall (freebsd-amd64-cgo), type IfAnnounceMsghdr struct, Type uint8
-pkg syscall (freebsd-amd64-cgo), type IfAnnounceMsghdr struct, Version uint8
-pkg syscall (freebsd-amd64-cgo), type IfAnnounceMsghdr struct, What uint16
-pkg syscall (freebsd-amd64-cgo), type IfData struct
-pkg syscall (freebsd-amd64-cgo), type IfData struct, Addrlen uint8
-pkg syscall (freebsd-amd64-cgo), type IfData struct, Baudrate uint64
-pkg syscall (freebsd-amd64-cgo), type IfData struct, Collisions uint64
-pkg syscall (freebsd-amd64-cgo), type IfData struct, Datalen uint8
-pkg syscall (freebsd-amd64-cgo), type IfData struct, Epoch int64
-pkg syscall (freebsd-amd64-cgo), type IfData struct, Hdrlen uint8
-pkg syscall (freebsd-amd64-cgo), type IfData struct, Hwassist uint64
-pkg syscall (freebsd-amd64-cgo), type IfData struct, Ibytes uint64
-pkg syscall (freebsd-amd64-cgo), type IfData struct, Ierrors uint64
-pkg syscall (freebsd-amd64-cgo), type IfData struct, Imcasts uint64
-pkg syscall (freebsd-amd64-cgo), type IfData struct, Ipackets uint64
-pkg syscall (freebsd-amd64-cgo), type IfData struct, Iqdrops uint64
-pkg syscall (freebsd-amd64-cgo), type IfData struct, Lastchange Timeval
-pkg syscall (freebsd-amd64-cgo), type IfData struct, Link_state uint8
-pkg syscall (freebsd-amd64-cgo), type IfData struct, Metric uint64
-pkg syscall (freebsd-amd64-cgo), type IfData struct, Mtu uint64
-pkg syscall (freebsd-amd64-cgo), type IfData struct, Noproto uint64
-pkg syscall (freebsd-amd64-cgo), type IfData struct, Obytes uint64
-pkg syscall (freebsd-amd64-cgo), type IfData struct, Oerrors uint64
-pkg syscall (freebsd-amd64-cgo), type IfData struct, Omcasts uint64
-pkg syscall (freebsd-amd64-cgo), type IfData struct, Opackets uint64
-pkg syscall (freebsd-amd64-cgo), type IfData struct, Physical uint8
-pkg syscall (freebsd-amd64-cgo), type IfData struct, Spare_char1 uint8
-pkg syscall (freebsd-amd64-cgo), type IfData struct, Spare_char2 uint8
-pkg syscall (freebsd-amd64-cgo), type IfData struct, Type uint8
-pkg syscall (freebsd-amd64-cgo), type IfMsghdr struct
-pkg syscall (freebsd-amd64-cgo), type IfMsghdr struct, Addrs int32
-pkg syscall (freebsd-amd64-cgo), type IfMsghdr struct, Data IfData
-pkg syscall (freebsd-amd64-cgo), type IfMsghdr struct, Flags int32
-pkg syscall (freebsd-amd64-cgo), type IfMsghdr struct, Index uint16
-pkg syscall (freebsd-amd64-cgo), type IfMsghdr struct, Msglen uint16
-pkg syscall (freebsd-amd64-cgo), type IfMsghdr struct, Pad_cgo_0 [2]uint8
-pkg syscall (freebsd-amd64-cgo), type IfMsghdr struct, Type uint8
-pkg syscall (freebsd-amd64-cgo), type IfMsghdr struct, Version uint8
-pkg syscall (freebsd-amd64-cgo), type IfaMsghdr struct
-pkg syscall (freebsd-amd64-cgo), type IfaMsghdr struct, Addrs int32
-pkg syscall (freebsd-amd64-cgo), type IfaMsghdr struct, Flags int32
-pkg syscall (freebsd-amd64-cgo), type IfaMsghdr struct, Index uint16
-pkg syscall (freebsd-amd64-cgo), type IfaMsghdr struct, Metric int32
-pkg syscall (freebsd-amd64-cgo), type IfaMsghdr struct, Msglen uint16
-pkg syscall (freebsd-amd64-cgo), type IfaMsghdr struct, Pad_cgo_0 [2]uint8
-pkg syscall (freebsd-amd64-cgo), type IfaMsghdr struct, Type uint8
-pkg syscall (freebsd-amd64-cgo), type IfaMsghdr struct, Version uint8
-pkg syscall (freebsd-amd64-cgo), type IfmaMsghdr struct
-pkg syscall (freebsd-amd64-cgo), type IfmaMsghdr struct, Addrs int32
-pkg syscall (freebsd-amd64-cgo), type IfmaMsghdr struct, Flags int32
-pkg syscall (freebsd-amd64-cgo), type IfmaMsghdr struct, Index uint16
-pkg syscall (freebsd-amd64-cgo), type IfmaMsghdr struct, Msglen uint16
-pkg syscall (freebsd-amd64-cgo), type IfmaMsghdr struct, Pad_cgo_0 [2]uint8
-pkg syscall (freebsd-amd64-cgo), type IfmaMsghdr struct, Type uint8
-pkg syscall (freebsd-amd64-cgo), type IfmaMsghdr struct, Version uint8
-pkg syscall (freebsd-amd64-cgo), type Inet6Pktinfo struct
-pkg syscall (freebsd-amd64-cgo), type Inet6Pktinfo struct, Addr [16]uint8
-pkg syscall (freebsd-amd64-cgo), type Inet6Pktinfo struct, Ifindex uint32
-pkg syscall (freebsd-amd64-cgo), type InterfaceAddrMessage struct
-pkg syscall (freebsd-amd64-cgo), type InterfaceAddrMessage struct, Data []uint8
-pkg syscall (freebsd-amd64-cgo), type InterfaceAddrMessage struct, Header IfaMsghdr
-pkg syscall (freebsd-amd64-cgo), type InterfaceAnnounceMessage struct
-pkg syscall (freebsd-amd64-cgo), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr
-pkg syscall (freebsd-amd64-cgo), type InterfaceMessage struct
-pkg syscall (freebsd-amd64-cgo), type InterfaceMessage struct, Data []uint8
-pkg syscall (freebsd-amd64-cgo), type InterfaceMessage struct, Header IfMsghdr
-pkg syscall (freebsd-amd64-cgo), type InterfaceMulticastAddrMessage struct
-pkg syscall (freebsd-amd64-cgo), type InterfaceMulticastAddrMessage struct, Data []uint8
-pkg syscall (freebsd-amd64-cgo), type InterfaceMulticastAddrMessage struct, Header IfmaMsghdr
-pkg syscall (freebsd-amd64-cgo), type Iovec struct
-pkg syscall (freebsd-amd64-cgo), type Iovec struct, Base *uint8
-pkg syscall (freebsd-amd64-cgo), type Iovec struct, Len uint64
-pkg syscall (freebsd-amd64-cgo), type Kevent_t struct
-pkg syscall (freebsd-amd64-cgo), type Kevent_t struct, Data int64
-pkg syscall (freebsd-amd64-cgo), type Kevent_t struct, Fflags uint32
-pkg syscall (freebsd-amd64-cgo), type Kevent_t struct, Filter int16
-pkg syscall (freebsd-amd64-cgo), type Kevent_t struct, Flags uint16
-pkg syscall (freebsd-amd64-cgo), type Kevent_t struct, Ident uint64
-pkg syscall (freebsd-amd64-cgo), type Kevent_t struct, Udata *uint8
-pkg syscall (freebsd-amd64-cgo), type Msghdr struct
-pkg syscall (freebsd-amd64-cgo), type Msghdr struct, Control *uint8
-pkg syscall (freebsd-amd64-cgo), type Msghdr struct, Controllen uint32
-pkg syscall (freebsd-amd64-cgo), type Msghdr struct, Flags int32
-pkg syscall (freebsd-amd64-cgo), type Msghdr struct, Iov *Iovec
-pkg syscall (freebsd-amd64-cgo), type Msghdr struct, Iovlen int32
-pkg syscall (freebsd-amd64-cgo), type Msghdr struct, Name *uint8
-pkg syscall (freebsd-amd64-cgo), type Msghdr struct, Namelen uint32
-pkg syscall (freebsd-amd64-cgo), type Msghdr struct, Pad_cgo_0 [4]uint8
-pkg syscall (freebsd-amd64-cgo), type Msghdr struct, Pad_cgo_1 [4]uint8
-pkg syscall (freebsd-amd64-cgo), type RawSockaddr struct, Data [14]int8
-pkg syscall (freebsd-amd64-cgo), type RawSockaddr struct, Family uint8
-pkg syscall (freebsd-amd64-cgo), type RawSockaddr struct, Len uint8
-pkg syscall (freebsd-amd64-cgo), type RawSockaddrAny struct, Pad [92]int8
-pkg syscall (freebsd-amd64-cgo), type RawSockaddrDatalink struct
-pkg syscall (freebsd-amd64-cgo), type RawSockaddrDatalink struct, Alen uint8
-pkg syscall (freebsd-amd64-cgo), type RawSockaddrDatalink struct, Data [46]int8
-pkg syscall (freebsd-amd64-cgo), type RawSockaddrDatalink struct, Family uint8
-pkg syscall (freebsd-amd64-cgo), type RawSockaddrDatalink struct, Index uint16
-pkg syscall (freebsd-amd64-cgo), type RawSockaddrDatalink struct, Len uint8
-pkg syscall (freebsd-amd64-cgo), type RawSockaddrDatalink struct, Nlen uint8
-pkg syscall (freebsd-amd64-cgo), type RawSockaddrDatalink struct, Slen uint8
-pkg syscall (freebsd-amd64-cgo), type RawSockaddrDatalink struct, Type uint8
-pkg syscall (freebsd-amd64-cgo), type RawSockaddrInet4 struct, Family uint8
-pkg syscall (freebsd-amd64-cgo), type RawSockaddrInet4 struct, Len uint8
-pkg syscall (freebsd-amd64-cgo), type RawSockaddrInet4 struct, Zero [8]int8
-pkg syscall (freebsd-amd64-cgo), type RawSockaddrInet6 struct, Family uint8
-pkg syscall (freebsd-amd64-cgo), type RawSockaddrInet6 struct, Len uint8
-pkg syscall (freebsd-amd64-cgo), type RawSockaddrUnix struct
-pkg syscall (freebsd-amd64-cgo), type RawSockaddrUnix struct, Family uint8
-pkg syscall (freebsd-amd64-cgo), type RawSockaddrUnix struct, Len uint8
-pkg syscall (freebsd-amd64-cgo), type RawSockaddrUnix struct, Path [104]int8
-pkg syscall (freebsd-amd64-cgo), type Rlimit struct
-pkg syscall (freebsd-amd64-cgo), type Rlimit struct, Cur int64
-pkg syscall (freebsd-amd64-cgo), type Rlimit struct, Max int64
-pkg syscall (freebsd-amd64-cgo), type RouteMessage struct
-pkg syscall (freebsd-amd64-cgo), type RouteMessage struct, Data []uint8
-pkg syscall (freebsd-amd64-cgo), type RouteMessage struct, Header RtMsghdr
-pkg syscall (freebsd-amd64-cgo), type RoutingMessage interface, unexported methods
-pkg syscall (freebsd-amd64-cgo), type RtMetrics struct
-pkg syscall (freebsd-amd64-cgo), type RtMetrics struct, Expire uint64
-pkg syscall (freebsd-amd64-cgo), type RtMetrics struct, Filler [3]uint64
-pkg syscall (freebsd-amd64-cgo), type RtMetrics struct, Hopcount uint64
-pkg syscall (freebsd-amd64-cgo), type RtMetrics struct, Locks uint64
-pkg syscall (freebsd-amd64-cgo), type RtMetrics struct, Mtu uint64
-pkg syscall (freebsd-amd64-cgo), type RtMetrics struct, Pksent uint64
-pkg syscall (freebsd-amd64-cgo), type RtMetrics struct, Recvpipe uint64
-pkg syscall (freebsd-amd64-cgo), type RtMetrics struct, Rtt uint64
-pkg syscall (freebsd-amd64-cgo), type RtMetrics struct, Rttvar uint64
-pkg syscall (freebsd-amd64-cgo), type RtMetrics struct, Sendpipe uint64
-pkg syscall (freebsd-amd64-cgo), type RtMetrics struct, Ssthresh uint64
-pkg syscall (freebsd-amd64-cgo), type RtMetrics struct, Weight uint64
-pkg syscall (freebsd-amd64-cgo), type RtMsghdr struct
-pkg syscall (freebsd-amd64-cgo), type RtMsghdr struct, Addrs int32
-pkg syscall (freebsd-amd64-cgo), type RtMsghdr struct, Errno int32
-pkg syscall (freebsd-amd64-cgo), type RtMsghdr struct, Flags int32
-pkg syscall (freebsd-amd64-cgo), type RtMsghdr struct, Fmask int32
-pkg syscall (freebsd-amd64-cgo), type RtMsghdr struct, Index uint16
-pkg syscall (freebsd-amd64-cgo), type RtMsghdr struct, Inits uint64
-pkg syscall (freebsd-amd64-cgo), type RtMsghdr struct, Msglen uint16
-pkg syscall (freebsd-amd64-cgo), type RtMsghdr struct, Pad_cgo_0 [2]uint8
-pkg syscall (freebsd-amd64-cgo), type RtMsghdr struct, Pid int32
-pkg syscall (freebsd-amd64-cgo), type RtMsghdr struct, Rmx RtMetrics
-pkg syscall (freebsd-amd64-cgo), type RtMsghdr struct, Seq int32
-pkg syscall (freebsd-amd64-cgo), type RtMsghdr struct, Type uint8
-pkg syscall (freebsd-amd64-cgo), type RtMsghdr struct, Version uint8
-pkg syscall (freebsd-amd64-cgo), type Rusage struct, Idrss int64
-pkg syscall (freebsd-amd64-cgo), type Rusage struct, Inblock int64
-pkg syscall (freebsd-amd64-cgo), type Rusage struct, Isrss int64
-pkg syscall (freebsd-amd64-cgo), type Rusage struct, Ixrss int64
-pkg syscall (freebsd-amd64-cgo), type Rusage struct, Majflt int64
-pkg syscall (freebsd-amd64-cgo), type Rusage struct, Maxrss int64
-pkg syscall (freebsd-amd64-cgo), type Rusage struct, Minflt int64
-pkg syscall (freebsd-amd64-cgo), type Rusage struct, Msgrcv int64
-pkg syscall (freebsd-amd64-cgo), type Rusage struct, Msgsnd int64
-pkg syscall (freebsd-amd64-cgo), type Rusage struct, Nivcsw int64
-pkg syscall (freebsd-amd64-cgo), type Rusage struct, Nsignals int64
-pkg syscall (freebsd-amd64-cgo), type Rusage struct, Nswap int64
-pkg syscall (freebsd-amd64-cgo), type Rusage struct, Nvcsw int64
-pkg syscall (freebsd-amd64-cgo), type Rusage struct, Oublock int64
-pkg syscall (freebsd-amd64-cgo), type Rusage struct, Stime Timeval
-pkg syscall (freebsd-amd64-cgo), type Rusage struct, Utime Timeval
-pkg syscall (freebsd-amd64-cgo), type SockaddrDatalink struct
-pkg syscall (freebsd-amd64-cgo), type SockaddrDatalink struct, Alen uint8
-pkg syscall (freebsd-amd64-cgo), type SockaddrDatalink struct, Data [46]int8
-pkg syscall (freebsd-amd64-cgo), type SockaddrDatalink struct, Family uint8
-pkg syscall (freebsd-amd64-cgo), type SockaddrDatalink struct, Index uint16
-pkg syscall (freebsd-amd64-cgo), type SockaddrDatalink struct, Len uint8
-pkg syscall (freebsd-amd64-cgo), type SockaddrDatalink struct, Nlen uint8
-pkg syscall (freebsd-amd64-cgo), type SockaddrDatalink struct, Slen uint8
-pkg syscall (freebsd-amd64-cgo), type SockaddrDatalink struct, Type uint8
-pkg syscall (freebsd-amd64-cgo), type SocketControlMessage struct
-pkg syscall (freebsd-amd64-cgo), type SocketControlMessage struct, Data []uint8
-pkg syscall (freebsd-amd64-cgo), type SocketControlMessage struct, Header Cmsghdr
-pkg syscall (freebsd-amd64-cgo), type Stat_t struct
-pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Atimespec Timespec
-pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Birthtimespec Timespec
-pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Blksize uint32
-pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Blocks int64
-pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Ctimespec Timespec
-pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Dev uint32
-pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Flags uint32
-pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Gen uint32
-pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Gid uint32
-pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Ino uint32
-pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Lspare int32
-pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Mode uint16
-pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Mtimespec Timespec
-pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Nlink uint16
-pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Rdev uint32
-pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Size int64
-pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Uid uint32
-pkg syscall (freebsd-amd64-cgo), type Statfs_t struct
-pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Asyncreads uint64
-pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Asyncwrites uint64
-pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Bavail int64
-pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Bfree uint64
-pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Blocks uint64
-pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Bsize uint64
-pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Charspare [80]int8
-pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Ffree int64
-pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Files uint64
-pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Flags uint64
-pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Fsid Fsid
-pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Fstypename [16]int8
-pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Iosize uint64
-pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Mntfromname [88]int8
-pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Mntonname [88]int8
-pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Namemax uint32
-pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Owner uint32
-pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Spare [10]uint64
-pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Syncreads uint64
-pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Syncwrites uint64
-pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Type uint32
-pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Version uint32
-pkg syscall (freebsd-amd64-cgo), type SysProcAttr struct, Chroot string
-pkg syscall (freebsd-amd64-cgo), type SysProcAttr struct, Credential *Credential
-pkg syscall (freebsd-amd64-cgo), type SysProcAttr struct, Noctty bool
-pkg syscall (freebsd-amd64-cgo), type SysProcAttr struct, Ptrace bool
-pkg syscall (freebsd-amd64-cgo), type SysProcAttr struct, Setctty bool
-pkg syscall (freebsd-amd64-cgo), type SysProcAttr struct, Setpgid bool
-pkg syscall (freebsd-amd64-cgo), type SysProcAttr struct, Setsid bool
-pkg syscall (freebsd-amd64-cgo), type Timespec struct, Nsec int64
-pkg syscall (freebsd-amd64-cgo), type Timespec struct, Sec int64
-pkg syscall (freebsd-amd64-cgo), type Timeval struct, Sec int64
-pkg syscall (freebsd-amd64-cgo), type Timeval struct, Usec int64
-pkg syscall (freebsd-amd64-cgo), type WaitStatus uint32
-pkg syscall (freebsd-amd64-cgo), var Stderr int
-pkg syscall (freebsd-amd64-cgo), var Stdin int
-pkg syscall (freebsd-amd64-cgo), var Stdout int
-pkg syscall (freebsd-arm), const AF_APPLETALK ideal-int
-pkg syscall (freebsd-arm), const AF_ARP ideal-int
-pkg syscall (freebsd-arm), const AF_ATM ideal-int
-pkg syscall (freebsd-arm), const AF_BLUETOOTH ideal-int
-pkg syscall (freebsd-arm), const AF_CCITT ideal-int
-pkg syscall (freebsd-arm), const AF_CHAOS ideal-int
-pkg syscall (freebsd-arm), const AF_CNT ideal-int
-pkg syscall (freebsd-arm), const AF_COIP ideal-int
-pkg syscall (freebsd-arm), const AF_DATAKIT ideal-int
-pkg syscall (freebsd-arm), const AF_DECnet ideal-int
-pkg syscall (freebsd-arm), const AF_DLI ideal-int
-pkg syscall (freebsd-arm), const AF_E164 ideal-int
-pkg syscall (freebsd-arm), const AF_ECMA ideal-int
-pkg syscall (freebsd-arm), const AF_HYLINK ideal-int
-pkg syscall (freebsd-arm), const AF_IEEE80211 ideal-int
-pkg syscall (freebsd-arm), const AF_IMPLINK ideal-int
-pkg syscall (freebsd-arm), const AF_IPX ideal-int
-pkg syscall (freebsd-arm), const AF_ISDN ideal-int
-pkg syscall (freebsd-arm), const AF_ISO ideal-int
-pkg syscall (freebsd-arm), const AF_LAT ideal-int
-pkg syscall (freebsd-arm), const AF_LINK ideal-int
-pkg syscall (freebsd-arm), const AF_LOCAL ideal-int
-pkg syscall (freebsd-arm), const AF_MAX ideal-int
-pkg syscall (freebsd-arm), const AF_NATM ideal-int
-pkg syscall (freebsd-arm), const AF_NETBIOS ideal-int
-pkg syscall (freebsd-arm), const AF_NETGRAPH ideal-int
-pkg syscall (freebsd-arm), const AF_OSI ideal-int
-pkg syscall (freebsd-arm), const AF_PUP ideal-int
-pkg syscall (freebsd-arm), const AF_ROUTE ideal-int
-pkg syscall (freebsd-arm), const AF_SCLUSTER ideal-int
-pkg syscall (freebsd-arm), const AF_SIP ideal-int
-pkg syscall (freebsd-arm), const AF_SLOW ideal-int
-pkg syscall (freebsd-arm), const AF_SNA ideal-int
-pkg syscall (freebsd-arm), const AF_VENDOR00 ideal-int
-pkg syscall (freebsd-arm), const AF_VENDOR01 ideal-int
-pkg syscall (freebsd-arm), const AF_VENDOR02 ideal-int
-pkg syscall (freebsd-arm), const AF_VENDOR03 ideal-int
-pkg syscall (freebsd-arm), const AF_VENDOR04 ideal-int
-pkg syscall (freebsd-arm), const AF_VENDOR05 ideal-int
-pkg syscall (freebsd-arm), const AF_VENDOR06 ideal-int
-pkg syscall (freebsd-arm), const AF_VENDOR07 ideal-int
-pkg syscall (freebsd-arm), const AF_VENDOR08 ideal-int
-pkg syscall (freebsd-arm), const AF_VENDOR09 ideal-int
-pkg syscall (freebsd-arm), const AF_VENDOR10 ideal-int
-pkg syscall (freebsd-arm), const AF_VENDOR11 ideal-int
-pkg syscall (freebsd-arm), const AF_VENDOR12 ideal-int
-pkg syscall (freebsd-arm), const AF_VENDOR13 ideal-int
-pkg syscall (freebsd-arm), const AF_VENDOR14 ideal-int
-pkg syscall (freebsd-arm), const AF_VENDOR15 ideal-int
-pkg syscall (freebsd-arm), const AF_VENDOR16 ideal-int
-pkg syscall (freebsd-arm), const AF_VENDOR17 ideal-int
-pkg syscall (freebsd-arm), const AF_VENDOR18 ideal-int
-pkg syscall (freebsd-arm), const AF_VENDOR19 ideal-int
-pkg syscall (freebsd-arm), const AF_VENDOR20 ideal-int
-pkg syscall (freebsd-arm), const AF_VENDOR21 ideal-int
-pkg syscall (freebsd-arm), const AF_VENDOR22 ideal-int
-pkg syscall (freebsd-arm), const AF_VENDOR23 ideal-int
-pkg syscall (freebsd-arm), const AF_VENDOR24 ideal-int
-pkg syscall (freebsd-arm), const AF_VENDOR25 ideal-int
-pkg syscall (freebsd-arm), const AF_VENDOR26 ideal-int
-pkg syscall (freebsd-arm), const AF_VENDOR27 ideal-int
-pkg syscall (freebsd-arm), const AF_VENDOR28 ideal-int
-pkg syscall (freebsd-arm), const AF_VENDOR29 ideal-int
-pkg syscall (freebsd-arm), const AF_VENDOR30 ideal-int
-pkg syscall (freebsd-arm), const AF_VENDOR31 ideal-int
-pkg syscall (freebsd-arm), const AF_VENDOR32 ideal-int
-pkg syscall (freebsd-arm), const AF_VENDOR33 ideal-int
-pkg syscall (freebsd-arm), const AF_VENDOR34 ideal-int
-pkg syscall (freebsd-arm), const AF_VENDOR35 ideal-int
-pkg syscall (freebsd-arm), const AF_VENDOR36 ideal-int
-pkg syscall (freebsd-arm), const AF_VENDOR37 ideal-int
-pkg syscall (freebsd-arm), const AF_VENDOR38 ideal-int
-pkg syscall (freebsd-arm), const AF_VENDOR39 ideal-int
-pkg syscall (freebsd-arm), const AF_VENDOR40 ideal-int
-pkg syscall (freebsd-arm), const AF_VENDOR41 ideal-int
-pkg syscall (freebsd-arm), const AF_VENDOR42 ideal-int
-pkg syscall (freebsd-arm), const AF_VENDOR43 ideal-int
-pkg syscall (freebsd-arm), const AF_VENDOR44 ideal-int
-pkg syscall (freebsd-arm), const AF_VENDOR45 ideal-int
-pkg syscall (freebsd-arm), const AF_VENDOR46 ideal-int
-pkg syscall (freebsd-arm), const AF_VENDOR47 ideal-int
-pkg syscall (freebsd-arm), const B0 ideal-int
-pkg syscall (freebsd-arm), const B110 ideal-int
-pkg syscall (freebsd-arm), const B115200 ideal-int
-pkg syscall (freebsd-arm), const B1200 ideal-int
-pkg syscall (freebsd-arm), const B134 ideal-int
-pkg syscall (freebsd-arm), const B14400 ideal-int
-pkg syscall (freebsd-arm), const B150 ideal-int
-pkg syscall (freebsd-arm), const B1800 ideal-int
-pkg syscall (freebsd-arm), const B19200 ideal-int
-pkg syscall (freebsd-arm), const B200 ideal-int
-pkg syscall (freebsd-arm), const B230400 ideal-int
-pkg syscall (freebsd-arm), const B2400 ideal-int
-pkg syscall (freebsd-arm), const B28800 ideal-int
-pkg syscall (freebsd-arm), const B300 ideal-int
-pkg syscall (freebsd-arm), const B38400 ideal-int
-pkg syscall (freebsd-arm), const B460800 ideal-int
-pkg syscall (freebsd-arm), const B4800 ideal-int
-pkg syscall (freebsd-arm), const B50 ideal-int
-pkg syscall (freebsd-arm), const B57600 ideal-int
-pkg syscall (freebsd-arm), const B600 ideal-int
-pkg syscall (freebsd-arm), const B7200 ideal-int
-pkg syscall (freebsd-arm), const B75 ideal-int
-pkg syscall (freebsd-arm), const B76800 ideal-int
-pkg syscall (freebsd-arm), const B921600 ideal-int
-pkg syscall (freebsd-arm), const B9600 ideal-int
-pkg syscall (freebsd-arm), const BIOCFEEDBACK ideal-int
-pkg syscall (freebsd-arm), const BIOCFLUSH ideal-int
-pkg syscall (freebsd-arm), const BIOCGBLEN ideal-int
-pkg syscall (freebsd-arm), const BIOCGDIRECTION ideal-int
-pkg syscall (freebsd-arm), const BIOCGDLT ideal-int
-pkg syscall (freebsd-arm), const BIOCGDLTLIST ideal-int
-pkg syscall (freebsd-arm), const BIOCGETBUFMODE ideal-int
-pkg syscall (freebsd-arm), const BIOCGETIF ideal-int
-pkg syscall (freebsd-arm), const BIOCGETZMAX ideal-int
-pkg syscall (freebsd-arm), const BIOCGHDRCMPLT ideal-int
-pkg syscall (freebsd-arm), const BIOCGRSIG ideal-int
-pkg syscall (freebsd-arm), const BIOCGRTIMEOUT ideal-int
-pkg syscall (freebsd-arm), const BIOCGSEESENT ideal-int
-pkg syscall (freebsd-arm), const BIOCGSTATS ideal-int
-pkg syscall (freebsd-arm), const BIOCGTSTAMP ideal-int
-pkg syscall (freebsd-arm), const BIOCIMMEDIATE ideal-int
-pkg syscall (freebsd-arm), const BIOCLOCK ideal-int
-pkg syscall (freebsd-arm), const BIOCPROMISC ideal-int
-pkg syscall (freebsd-arm), const BIOCROTZBUF ideal-int
-pkg syscall (freebsd-arm), const BIOCSBLEN ideal-int
-pkg syscall (freebsd-arm), const BIOCSDIRECTION ideal-int
-pkg syscall (freebsd-arm), const BIOCSDLT ideal-int
-pkg syscall (freebsd-arm), const BIOCSETBUFMODE ideal-int
-pkg syscall (freebsd-arm), const BIOCSETF ideal-int
-pkg syscall (freebsd-arm), const BIOCSETFNR ideal-int
-pkg syscall (freebsd-arm), const BIOCSETIF ideal-int
-pkg syscall (freebsd-arm), const BIOCSETWF ideal-int
-pkg syscall (freebsd-arm), const BIOCSETZBUF ideal-int
-pkg syscall (freebsd-arm), const BIOCSHDRCMPLT ideal-int
-pkg syscall (freebsd-arm), const BIOCSRSIG ideal-int
-pkg syscall (freebsd-arm), const BIOCSRTIMEOUT ideal-int
-pkg syscall (freebsd-arm), const BIOCSSEESENT ideal-int
-pkg syscall (freebsd-arm), const BIOCSTSTAMP ideal-int
-pkg syscall (freebsd-arm), const BIOCVERSION ideal-int
-pkg syscall (freebsd-arm), const BPF_A ideal-int
-pkg syscall (freebsd-arm), const BPF_ABS ideal-int
-pkg syscall (freebsd-arm), const BPF_ADD ideal-int
-pkg syscall (freebsd-arm), const BPF_ALIGNMENT ideal-int
-pkg syscall (freebsd-arm), const BPF_ALU ideal-int
-pkg syscall (freebsd-arm), const BPF_AND ideal-int
-pkg syscall (freebsd-arm), const BPF_B ideal-int
-pkg syscall (freebsd-arm), const BPF_BUFMODE_BUFFER ideal-int
-pkg syscall (freebsd-arm), const BPF_BUFMODE_ZBUF ideal-int
-pkg syscall (freebsd-arm), const BPF_DIV ideal-int
-pkg syscall (freebsd-arm), const BPF_H ideal-int
-pkg syscall (freebsd-arm), const BPF_IMM ideal-int
-pkg syscall (freebsd-arm), const BPF_IND ideal-int
-pkg syscall (freebsd-arm), const BPF_JA ideal-int
-pkg syscall (freebsd-arm), const BPF_JEQ ideal-int
-pkg syscall (freebsd-arm), const BPF_JGE ideal-int
-pkg syscall (freebsd-arm), const BPF_JGT ideal-int
-pkg syscall (freebsd-arm), const BPF_JMP ideal-int
-pkg syscall (freebsd-arm), const BPF_JSET ideal-int
-pkg syscall (freebsd-arm), const BPF_K ideal-int
-pkg syscall (freebsd-arm), const BPF_LD ideal-int
-pkg syscall (freebsd-arm), const BPF_LDX ideal-int
-pkg syscall (freebsd-arm), const BPF_LEN ideal-int
-pkg syscall (freebsd-arm), const BPF_LSH ideal-int
-pkg syscall (freebsd-arm), const BPF_MAJOR_VERSION ideal-int
-pkg syscall (freebsd-arm), const BPF_MAXBUFSIZE ideal-int
-pkg syscall (freebsd-arm), const BPF_MAXINSNS ideal-int
-pkg syscall (freebsd-arm), const BPF_MEM ideal-int
-pkg syscall (freebsd-arm), const BPF_MEMWORDS ideal-int
-pkg syscall (freebsd-arm), const BPF_MINBUFSIZE ideal-int
-pkg syscall (freebsd-arm), const BPF_MINOR_VERSION ideal-int
-pkg syscall (freebsd-arm), const BPF_MISC ideal-int
-pkg syscall (freebsd-arm), const BPF_MSH ideal-int
-pkg syscall (freebsd-arm), const BPF_MUL ideal-int
-pkg syscall (freebsd-arm), const BPF_NEG ideal-int
-pkg syscall (freebsd-arm), const BPF_OR ideal-int
-pkg syscall (freebsd-arm), const BPF_RELEASE ideal-int
-pkg syscall (freebsd-arm), const BPF_RET ideal-int
-pkg syscall (freebsd-arm), const BPF_RSH ideal-int
-pkg syscall (freebsd-arm), const BPF_ST ideal-int
-pkg syscall (freebsd-arm), const BPF_STX ideal-int
-pkg syscall (freebsd-arm), const BPF_SUB ideal-int
-pkg syscall (freebsd-arm), const BPF_TAX ideal-int
-pkg syscall (freebsd-arm), const BPF_TXA ideal-int
-pkg syscall (freebsd-arm), const BPF_T_BINTIME ideal-int
-pkg syscall (freebsd-arm), const BPF_T_BINTIME_FAST ideal-int
-pkg syscall (freebsd-arm), const BPF_T_BINTIME_MONOTONIC ideal-int
-pkg syscall (freebsd-arm), const BPF_T_BINTIME_MONOTONIC_FAST ideal-int
-pkg syscall (freebsd-arm), const BPF_T_FAST ideal-int
-pkg syscall (freebsd-arm), const BPF_T_FLAG_MASK ideal-int
-pkg syscall (freebsd-arm), const BPF_T_FORMAT_MASK ideal-int
-pkg syscall (freebsd-arm), const BPF_T_MICROTIME ideal-int
-pkg syscall (freebsd-arm), const BPF_T_MICROTIME_FAST ideal-int
-pkg syscall (freebsd-arm), const BPF_T_MICROTIME_MONOTONIC ideal-int
-pkg syscall (freebsd-arm), const BPF_T_MICROTIME_MONOTONIC_FAST ideal-int
-pkg syscall (freebsd-arm), const BPF_T_MONOTONIC ideal-int
-pkg syscall (freebsd-arm), const BPF_T_MONOTONIC_FAST ideal-int
-pkg syscall (freebsd-arm), const BPF_T_NANOTIME ideal-int
-pkg syscall (freebsd-arm), const BPF_T_NANOTIME_FAST ideal-int
-pkg syscall (freebsd-arm), const BPF_T_NANOTIME_MONOTONIC ideal-int
-pkg syscall (freebsd-arm), const BPF_T_NANOTIME_MONOTONIC_FAST ideal-int
-pkg syscall (freebsd-arm), const BPF_T_NONE ideal-int
-pkg syscall (freebsd-arm), const BPF_T_NORMAL ideal-int
-pkg syscall (freebsd-arm), const BPF_W ideal-int
-pkg syscall (freebsd-arm), const BPF_X ideal-int
-pkg syscall (freebsd-arm), const BRKINT ideal-int
-pkg syscall (freebsd-arm), const CFLUSH ideal-int
-pkg syscall (freebsd-arm), const CLOCAL ideal-int
-pkg syscall (freebsd-arm), const CREAD ideal-int
-pkg syscall (freebsd-arm), const CS5 ideal-int
-pkg syscall (freebsd-arm), const CS6 ideal-int
-pkg syscall (freebsd-arm), const CS7 ideal-int
-pkg syscall (freebsd-arm), const CS8 ideal-int
-pkg syscall (freebsd-arm), const CSIZE ideal-int
-pkg syscall (freebsd-arm), const CSTART ideal-int
-pkg syscall (freebsd-arm), const CSTATUS ideal-int
-pkg syscall (freebsd-arm), const CSTOP ideal-int
-pkg syscall (freebsd-arm), const CSTOPB ideal-int
-pkg syscall (freebsd-arm), const CSUSP ideal-int
-pkg syscall (freebsd-arm), const CTL_MAXNAME ideal-int
-pkg syscall (freebsd-arm), const CTL_NET ideal-int
-pkg syscall (freebsd-arm), const DLT_A429 ideal-int
-pkg syscall (freebsd-arm), const DLT_A653_ICM ideal-int
-pkg syscall (freebsd-arm), const DLT_AIRONET_HEADER ideal-int
-pkg syscall (freebsd-arm), const DLT_AOS ideal-int
-pkg syscall (freebsd-arm), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int
-pkg syscall (freebsd-arm), const DLT_ARCNET ideal-int
-pkg syscall (freebsd-arm), const DLT_ARCNET_LINUX ideal-int
-pkg syscall (freebsd-arm), const DLT_ATM_CLIP ideal-int
-pkg syscall (freebsd-arm), const DLT_ATM_RFC1483 ideal-int
-pkg syscall (freebsd-arm), const DLT_AURORA ideal-int
-pkg syscall (freebsd-arm), const DLT_AX25 ideal-int
-pkg syscall (freebsd-arm), const DLT_AX25_KISS ideal-int
-pkg syscall (freebsd-arm), const DLT_BACNET_MS_TP ideal-int
-pkg syscall (freebsd-arm), const DLT_BLUETOOTH_HCI_H4 ideal-int
-pkg syscall (freebsd-arm), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR ideal-int
-pkg syscall (freebsd-arm), const DLT_CAN20B ideal-int
-pkg syscall (freebsd-arm), const DLT_CAN_SOCKETCAN ideal-int
-pkg syscall (freebsd-arm), const DLT_CHAOS ideal-int
-pkg syscall (freebsd-arm), const DLT_CHDLC ideal-int
-pkg syscall (freebsd-arm), const DLT_CISCO_IOS ideal-int
-pkg syscall (freebsd-arm), const DLT_C_HDLC ideal-int
-pkg syscall (freebsd-arm), const DLT_C_HDLC_WITH_DIR ideal-int
-pkg syscall (freebsd-arm), const DLT_DBUS ideal-int
-pkg syscall (freebsd-arm), const DLT_DECT ideal-int
-pkg syscall (freebsd-arm), const DLT_DOCSIS ideal-int
-pkg syscall (freebsd-arm), const DLT_DVB_CI ideal-int
-pkg syscall (freebsd-arm), const DLT_ECONET ideal-int
-pkg syscall (freebsd-arm), const DLT_EN10MB ideal-int
-pkg syscall (freebsd-arm), const DLT_EN3MB ideal-int
-pkg syscall (freebsd-arm), const DLT_ENC ideal-int
-pkg syscall (freebsd-arm), const DLT_ERF ideal-int
-pkg syscall (freebsd-arm), const DLT_ERF_ETH ideal-int
-pkg syscall (freebsd-arm), const DLT_ERF_POS ideal-int
-pkg syscall (freebsd-arm), const DLT_FC_2 ideal-int
-pkg syscall (freebsd-arm), const DLT_FC_2_WITH_FRAME_DELIMS ideal-int
-pkg syscall (freebsd-arm), const DLT_FDDI ideal-int
-pkg syscall (freebsd-arm), const DLT_FLEXRAY ideal-int
-pkg syscall (freebsd-arm), const DLT_FRELAY ideal-int
-pkg syscall (freebsd-arm), const DLT_FRELAY_WITH_DIR ideal-int
-pkg syscall (freebsd-arm), const DLT_GCOM_SERIAL ideal-int
-pkg syscall (freebsd-arm), const DLT_GCOM_T1E1 ideal-int
-pkg syscall (freebsd-arm), const DLT_GPF_F ideal-int
-pkg syscall (freebsd-arm), const DLT_GPF_T ideal-int
-pkg syscall (freebsd-arm), const DLT_GPRS_LLC ideal-int
-pkg syscall (freebsd-arm), const DLT_GSMTAP_ABIS ideal-int
-pkg syscall (freebsd-arm), const DLT_GSMTAP_UM ideal-int
-pkg syscall (freebsd-arm), const DLT_HHDLC ideal-int
-pkg syscall (freebsd-arm), const DLT_IBM_SN ideal-int
-pkg syscall (freebsd-arm), const DLT_IBM_SP ideal-int
-pkg syscall (freebsd-arm), const DLT_IEEE802 ideal-int
-pkg syscall (freebsd-arm), const DLT_IEEE802_11 ideal-int
-pkg syscall (freebsd-arm), const DLT_IEEE802_11_RADIO ideal-int
-pkg syscall (freebsd-arm), const DLT_IEEE802_11_RADIO_AVS ideal-int
-pkg syscall (freebsd-arm), const DLT_IEEE802_15_4 ideal-int
-pkg syscall (freebsd-arm), const DLT_IEEE802_15_4_LINUX ideal-int
-pkg syscall (freebsd-arm), const DLT_IEEE802_15_4_NOFCS ideal-int
-pkg syscall (freebsd-arm), const DLT_IEEE802_15_4_NONASK_PHY ideal-int
-pkg syscall (freebsd-arm), const DLT_IEEE802_16_MAC_CPS ideal-int
-pkg syscall (freebsd-arm), const DLT_IEEE802_16_MAC_CPS_RADIO ideal-int
-pkg syscall (freebsd-arm), const DLT_IPFILTER ideal-int
-pkg syscall (freebsd-arm), const DLT_IPMB ideal-int
-pkg syscall (freebsd-arm), const DLT_IPMB_LINUX ideal-int
-pkg syscall (freebsd-arm), const DLT_IPNET ideal-int
-pkg syscall (freebsd-arm), const DLT_IPOIB ideal-int
-pkg syscall (freebsd-arm), const DLT_IPV4 ideal-int
-pkg syscall (freebsd-arm), const DLT_IPV6 ideal-int
-pkg syscall (freebsd-arm), const DLT_IP_OVER_FC ideal-int
-pkg syscall (freebsd-arm), const DLT_JUNIPER_ATM1 ideal-int
-pkg syscall (freebsd-arm), const DLT_JUNIPER_ATM2 ideal-int
-pkg syscall (freebsd-arm), const DLT_JUNIPER_ATM_CEMIC ideal-int
-pkg syscall (freebsd-arm), const DLT_JUNIPER_CHDLC ideal-int
-pkg syscall (freebsd-arm), const DLT_JUNIPER_ES ideal-int
-pkg syscall (freebsd-arm), const DLT_JUNIPER_ETHER ideal-int
-pkg syscall (freebsd-arm), const DLT_JUNIPER_FIBRECHANNEL ideal-int
-pkg syscall (freebsd-arm), const DLT_JUNIPER_FRELAY ideal-int
-pkg syscall (freebsd-arm), const DLT_JUNIPER_GGSN ideal-int
-pkg syscall (freebsd-arm), const DLT_JUNIPER_ISM ideal-int
-pkg syscall (freebsd-arm), const DLT_JUNIPER_MFR ideal-int
-pkg syscall (freebsd-arm), const DLT_JUNIPER_MLFR ideal-int
-pkg syscall (freebsd-arm), const DLT_JUNIPER_MLPPP ideal-int
-pkg syscall (freebsd-arm), const DLT_JUNIPER_MONITOR ideal-int
-pkg syscall (freebsd-arm), const DLT_JUNIPER_PIC_PEER ideal-int
-pkg syscall (freebsd-arm), const DLT_JUNIPER_PPP ideal-int
-pkg syscall (freebsd-arm), const DLT_JUNIPER_PPPOE ideal-int
-pkg syscall (freebsd-arm), const DLT_JUNIPER_PPPOE_ATM ideal-int
-pkg syscall (freebsd-arm), const DLT_JUNIPER_SERVICES ideal-int
-pkg syscall (freebsd-arm), const DLT_JUNIPER_SRX_E2E ideal-int
-pkg syscall (freebsd-arm), const DLT_JUNIPER_ST ideal-int
-pkg syscall (freebsd-arm), const DLT_JUNIPER_VP ideal-int
-pkg syscall (freebsd-arm), const DLT_JUNIPER_VS ideal-int
-pkg syscall (freebsd-arm), const DLT_LAPB_WITH_DIR ideal-int
-pkg syscall (freebsd-arm), const DLT_LAPD ideal-int
-pkg syscall (freebsd-arm), const DLT_LIN ideal-int
-pkg syscall (freebsd-arm), const DLT_LINUX_EVDEV ideal-int
-pkg syscall (freebsd-arm), const DLT_LINUX_IRDA ideal-int
-pkg syscall (freebsd-arm), const DLT_LINUX_LAPD ideal-int
-pkg syscall (freebsd-arm), const DLT_LINUX_PPP_WITHDIRECTION ideal-int
-pkg syscall (freebsd-arm), const DLT_LINUX_SLL ideal-int
-pkg syscall (freebsd-arm), const DLT_LOOP ideal-int
-pkg syscall (freebsd-arm), const DLT_LTALK ideal-int
-pkg syscall (freebsd-arm), const DLT_MATCHING_MAX ideal-int
-pkg syscall (freebsd-arm), const DLT_MATCHING_MIN ideal-int
-pkg syscall (freebsd-arm), const DLT_MFR ideal-int
-pkg syscall (freebsd-arm), const DLT_MOST ideal-int
-pkg syscall (freebsd-arm), const DLT_MPEG_2_TS ideal-int
-pkg syscall (freebsd-arm), const DLT_MPLS ideal-int
-pkg syscall (freebsd-arm), const DLT_MTP2 ideal-int
-pkg syscall (freebsd-arm), const DLT_MTP2_WITH_PHDR ideal-int
-pkg syscall (freebsd-arm), const DLT_MTP3 ideal-int
-pkg syscall (freebsd-arm), const DLT_MUX27010 ideal-int
-pkg syscall (freebsd-arm), const DLT_NETANALYZER ideal-int
-pkg syscall (freebsd-arm), const DLT_NETANALYZER_TRANSPARENT ideal-int
-pkg syscall (freebsd-arm), const DLT_NFC_LLCP ideal-int
-pkg syscall (freebsd-arm), const DLT_NFLOG ideal-int
-pkg syscall (freebsd-arm), const DLT_NG40 ideal-int
-pkg syscall (freebsd-arm), const DLT_NULL ideal-int
-pkg syscall (freebsd-arm), const DLT_PCI_EXP ideal-int
-pkg syscall (freebsd-arm), const DLT_PFLOG ideal-int
-pkg syscall (freebsd-arm), const DLT_PFSYNC ideal-int
-pkg syscall (freebsd-arm), const DLT_PPI ideal-int
-pkg syscall (freebsd-arm), const DLT_PPP ideal-int
-pkg syscall (freebsd-arm), const DLT_PPP_BSDOS ideal-int
-pkg syscall (freebsd-arm), const DLT_PPP_ETHER ideal-int
-pkg syscall (freebsd-arm), const DLT_PPP_PPPD ideal-int
-pkg syscall (freebsd-arm), const DLT_PPP_SERIAL ideal-int
-pkg syscall (freebsd-arm), const DLT_PPP_WITH_DIR ideal-int
-pkg syscall (freebsd-arm), const DLT_PPP_WITH_DIRECTION ideal-int
-pkg syscall (freebsd-arm), const DLT_PRISM_HEADER ideal-int
-pkg syscall (freebsd-arm), const DLT_PRONET ideal-int
-pkg syscall (freebsd-arm), const DLT_RAIF1 ideal-int
-pkg syscall (freebsd-arm), const DLT_RAW ideal-int
-pkg syscall (freebsd-arm), const DLT_RIO ideal-int
-pkg syscall (freebsd-arm), const DLT_SCCP ideal-int
-pkg syscall (freebsd-arm), const DLT_SITA ideal-int
-pkg syscall (freebsd-arm), const DLT_SLIP ideal-int
-pkg syscall (freebsd-arm), const DLT_SLIP_BSDOS ideal-int
-pkg syscall (freebsd-arm), const DLT_STANAG_5066_D_PDU ideal-int
-pkg syscall (freebsd-arm), const DLT_SUNATM ideal-int
-pkg syscall (freebsd-arm), const DLT_SYMANTEC_FIREWALL ideal-int
-pkg syscall (freebsd-arm), const DLT_TZSP ideal-int
-pkg syscall (freebsd-arm), const DLT_USB ideal-int
-pkg syscall (freebsd-arm), const DLT_USB_LINUX ideal-int
-pkg syscall (freebsd-arm), const DLT_USB_LINUX_MMAPPED ideal-int
-pkg syscall (freebsd-arm), const DLT_USER0 ideal-int
-pkg syscall (freebsd-arm), const DLT_USER1 ideal-int
-pkg syscall (freebsd-arm), const DLT_USER10 ideal-int
-pkg syscall (freebsd-arm), const DLT_USER11 ideal-int
-pkg syscall (freebsd-arm), const DLT_USER12 ideal-int
-pkg syscall (freebsd-arm), const DLT_USER13 ideal-int
-pkg syscall (freebsd-arm), const DLT_USER14 ideal-int
-pkg syscall (freebsd-arm), const DLT_USER15 ideal-int
-pkg syscall (freebsd-arm), const DLT_USER2 ideal-int
-pkg syscall (freebsd-arm), const DLT_USER3 ideal-int
-pkg syscall (freebsd-arm), const DLT_USER4 ideal-int
-pkg syscall (freebsd-arm), const DLT_USER5 ideal-int
-pkg syscall (freebsd-arm), const DLT_USER6 ideal-int
-pkg syscall (freebsd-arm), const DLT_USER7 ideal-int
-pkg syscall (freebsd-arm), const DLT_USER8 ideal-int
-pkg syscall (freebsd-arm), const DLT_USER9 ideal-int
-pkg syscall (freebsd-arm), const DLT_WIHART ideal-int
-pkg syscall (freebsd-arm), const DLT_X2E_SERIAL ideal-int
-pkg syscall (freebsd-arm), const DLT_X2E_XORAYA ideal-int
-pkg syscall (freebsd-arm), const DT_BLK ideal-int
-pkg syscall (freebsd-arm), const DT_CHR ideal-int
-pkg syscall (freebsd-arm), const DT_DIR ideal-int
-pkg syscall (freebsd-arm), const DT_FIFO ideal-int
-pkg syscall (freebsd-arm), const DT_LNK ideal-int
-pkg syscall (freebsd-arm), const DT_REG ideal-int
-pkg syscall (freebsd-arm), const DT_SOCK ideal-int
-pkg syscall (freebsd-arm), const DT_UNKNOWN ideal-int
-pkg syscall (freebsd-arm), const DT_WHT ideal-int
-pkg syscall (freebsd-arm), const EAUTH Errno
-pkg syscall (freebsd-arm), const EBADMSG Errno
-pkg syscall (freebsd-arm), const EBADRPC Errno
-pkg syscall (freebsd-arm), const ECAPMODE Errno
-pkg syscall (freebsd-arm), const ECHO ideal-int
-pkg syscall (freebsd-arm), const ECHOCTL ideal-int
-pkg syscall (freebsd-arm), const ECHOE ideal-int
-pkg syscall (freebsd-arm), const ECHOK ideal-int
-pkg syscall (freebsd-arm), const ECHOKE ideal-int
-pkg syscall (freebsd-arm), const ECHONL ideal-int
-pkg syscall (freebsd-arm), const ECHOPRT ideal-int
-pkg syscall (freebsd-arm), const EDOOFUS Errno
-pkg syscall (freebsd-arm), const EFTYPE Errno
-pkg syscall (freebsd-arm), const ELAST Errno
-pkg syscall (freebsd-arm), const EMULTIHOP Errno
-pkg syscall (freebsd-arm), const ENEEDAUTH Errno
-pkg syscall (freebsd-arm), const ENOATTR Errno
-pkg syscall (freebsd-arm), const ENOLINK Errno
-pkg syscall (freebsd-arm), const ENOTCAPABLE Errno
-pkg syscall (freebsd-arm), const EPROCLIM Errno
-pkg syscall (freebsd-arm), const EPROCUNAVAIL Errno
-pkg syscall (freebsd-arm), const EPROGMISMATCH Errno
-pkg syscall (freebsd-arm), const EPROGUNAVAIL Errno
-pkg syscall (freebsd-arm), const EPROTO Errno
-pkg syscall (freebsd-arm), const ERPCMISMATCH Errno
-pkg syscall (freebsd-arm), const EVFILT_AIO ideal-int
-pkg syscall (freebsd-arm), const EVFILT_FS ideal-int
-pkg syscall (freebsd-arm), const EVFILT_LIO ideal-int
-pkg syscall (freebsd-arm), const EVFILT_PROC ideal-int
-pkg syscall (freebsd-arm), const EVFILT_READ ideal-int
-pkg syscall (freebsd-arm), const EVFILT_SIGNAL ideal-int
-pkg syscall (freebsd-arm), const EVFILT_SYSCOUNT ideal-int
-pkg syscall (freebsd-arm), const EVFILT_TIMER ideal-int
-pkg syscall (freebsd-arm), const EVFILT_USER ideal-int
-pkg syscall (freebsd-arm), const EVFILT_VNODE ideal-int
-pkg syscall (freebsd-arm), const EVFILT_WRITE ideal-int
-pkg syscall (freebsd-arm), const EV_ADD ideal-int
-pkg syscall (freebsd-arm), const EV_CLEAR ideal-int
-pkg syscall (freebsd-arm), const EV_DELETE ideal-int
-pkg syscall (freebsd-arm), const EV_DISABLE ideal-int
-pkg syscall (freebsd-arm), const EV_DISPATCH ideal-int
-pkg syscall (freebsd-arm), const EV_ENABLE ideal-int
-pkg syscall (freebsd-arm), const EV_EOF ideal-int
-pkg syscall (freebsd-arm), const EV_ERROR ideal-int
-pkg syscall (freebsd-arm), const EV_FLAG1 ideal-int
-pkg syscall (freebsd-arm), const EV_ONESHOT ideal-int
-pkg syscall (freebsd-arm), const EV_RECEIPT ideal-int
-pkg syscall (freebsd-arm), const EV_SYSFLAGS ideal-int
-pkg syscall (freebsd-arm), const EXTA ideal-int
-pkg syscall (freebsd-arm), const EXTB ideal-int
-pkg syscall (freebsd-arm), const EXTPROC ideal-int
-pkg syscall (freebsd-arm), const FD_CLOEXEC ideal-int
-pkg syscall (freebsd-arm), const FD_SETSIZE ideal-int
-pkg syscall (freebsd-arm), const FLUSHO ideal-int
-pkg syscall (freebsd-arm), const F_CANCEL ideal-int
-pkg syscall (freebsd-arm), const F_DUP2FD ideal-int
-pkg syscall (freebsd-arm), const F_DUP2FD_CLOEXEC ideal-int
-pkg syscall (freebsd-arm), const F_DUPFD ideal-int
-pkg syscall (freebsd-arm), const F_DUPFD_CLOEXEC ideal-int
-pkg syscall (freebsd-arm), const F_GETFD ideal-int
-pkg syscall (freebsd-arm), const F_GETFL ideal-int
-pkg syscall (freebsd-arm), const F_GETLK ideal-int
-pkg syscall (freebsd-arm), const F_GETOWN ideal-int
-pkg syscall (freebsd-arm), const F_OGETLK ideal-int
-pkg syscall (freebsd-arm), const F_OK ideal-int
-pkg syscall (freebsd-arm), const F_OSETLK ideal-int
-pkg syscall (freebsd-arm), const F_OSETLKW ideal-int
-pkg syscall (freebsd-arm), const F_RDAHEAD ideal-int
-pkg syscall (freebsd-arm), const F_RDLCK ideal-int
-pkg syscall (freebsd-arm), const F_READAHEAD ideal-int
-pkg syscall (freebsd-arm), const F_SETFD ideal-int
-pkg syscall (freebsd-arm), const F_SETFL ideal-int
-pkg syscall (freebsd-arm), const F_SETLK ideal-int
-pkg syscall (freebsd-arm), const F_SETLKW ideal-int
-pkg syscall (freebsd-arm), const F_SETLK_REMOTE ideal-int
-pkg syscall (freebsd-arm), const F_SETOWN ideal-int
-pkg syscall (freebsd-arm), const F_UNLCK ideal-int
-pkg syscall (freebsd-arm), const F_UNLCKSYS ideal-int
-pkg syscall (freebsd-arm), const F_WRLCK ideal-int
-pkg syscall (freebsd-arm), const HUPCL ideal-int
-pkg syscall (freebsd-arm), const ICANON ideal-int
-pkg syscall (freebsd-arm), const ICMP6_FILTER = 18
-pkg syscall (freebsd-arm), const ICMP6_FILTER ideal-int
-pkg syscall (freebsd-arm), const ICRNL ideal-int
-pkg syscall (freebsd-arm), const IEXTEN ideal-int
-pkg syscall (freebsd-arm), const IFAN_ARRIVAL ideal-int
-pkg syscall (freebsd-arm), const IFAN_DEPARTURE ideal-int
-pkg syscall (freebsd-arm), const IFF_ALLMULTI ideal-int
-pkg syscall (freebsd-arm), const IFF_ALTPHYS ideal-int
-pkg syscall (freebsd-arm), const IFF_CANTCHANGE ideal-int
-pkg syscall (freebsd-arm), const IFF_CANTCONFIG ideal-int
-pkg syscall (freebsd-arm), const IFF_DEBUG ideal-int
-pkg syscall (freebsd-arm), const IFF_DRV_OACTIVE ideal-int
-pkg syscall (freebsd-arm), const IFF_DRV_RUNNING ideal-int
-pkg syscall (freebsd-arm), const IFF_DYING ideal-int
-pkg syscall (freebsd-arm), const IFF_LINK0 ideal-int
-pkg syscall (freebsd-arm), const IFF_LINK1 ideal-int
-pkg syscall (freebsd-arm), const IFF_LINK2 ideal-int
-pkg syscall (freebsd-arm), const IFF_MONITOR ideal-int
-pkg syscall (freebsd-arm), const IFF_NOARP ideal-int
-pkg syscall (freebsd-arm), const IFF_OACTIVE ideal-int
-pkg syscall (freebsd-arm), const IFF_POINTOPOINT ideal-int
-pkg syscall (freebsd-arm), const IFF_PPROMISC ideal-int
-pkg syscall (freebsd-arm), const IFF_PROMISC ideal-int
-pkg syscall (freebsd-arm), const IFF_RENAMING ideal-int
-pkg syscall (freebsd-arm), const IFF_RUNNING ideal-int
-pkg syscall (freebsd-arm), const IFF_SIMPLEX ideal-int
-pkg syscall (freebsd-arm), const IFF_SMART ideal-int
-pkg syscall (freebsd-arm), const IFF_STATICARP ideal-int
-pkg syscall (freebsd-arm), const IFNAMSIZ ideal-int
-pkg syscall (freebsd-arm), const IFT_1822 ideal-int
-pkg syscall (freebsd-arm), const IFT_A12MPPSWITCH ideal-int
-pkg syscall (freebsd-arm), const IFT_AAL2 ideal-int
-pkg syscall (freebsd-arm), const IFT_AAL5 ideal-int
-pkg syscall (freebsd-arm), const IFT_ADSL ideal-int
-pkg syscall (freebsd-arm), const IFT_AFLANE8023 ideal-int
-pkg syscall (freebsd-arm), const IFT_AFLANE8025 ideal-int
-pkg syscall (freebsd-arm), const IFT_ARAP ideal-int
-pkg syscall (freebsd-arm), const IFT_ARCNET ideal-int
-pkg syscall (freebsd-arm), const IFT_ARCNETPLUS ideal-int
-pkg syscall (freebsd-arm), const IFT_ASYNC ideal-int
-pkg syscall (freebsd-arm), const IFT_ATM ideal-int
-pkg syscall (freebsd-arm), const IFT_ATMDXI ideal-int
-pkg syscall (freebsd-arm), const IFT_ATMFUNI ideal-int
-pkg syscall (freebsd-arm), const IFT_ATMIMA ideal-int
-pkg syscall (freebsd-arm), const IFT_ATMLOGICAL ideal-int
-pkg syscall (freebsd-arm), const IFT_ATMRADIO ideal-int
-pkg syscall (freebsd-arm), const IFT_ATMSUBINTERFACE ideal-int
-pkg syscall (freebsd-arm), const IFT_ATMVCIENDPT ideal-int
-pkg syscall (freebsd-arm), const IFT_ATMVIRTUAL ideal-int
-pkg syscall (freebsd-arm), const IFT_BGPPOLICYACCOUNTING ideal-int
-pkg syscall (freebsd-arm), const IFT_BRIDGE ideal-int
-pkg syscall (freebsd-arm), const IFT_BSC ideal-int
-pkg syscall (freebsd-arm), const IFT_CCTEMUL ideal-int
-pkg syscall (freebsd-arm), const IFT_CEPT ideal-int
-pkg syscall (freebsd-arm), const IFT_CES ideal-int
-pkg syscall (freebsd-arm), const IFT_CHANNEL ideal-int
-pkg syscall (freebsd-arm), const IFT_CNR ideal-int
-pkg syscall (freebsd-arm), const IFT_COFFEE ideal-int
-pkg syscall (freebsd-arm), const IFT_COMPOSITELINK ideal-int
-pkg syscall (freebsd-arm), const IFT_DCN ideal-int
-pkg syscall (freebsd-arm), const IFT_DIGITALPOWERLINE ideal-int
-pkg syscall (freebsd-arm), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int
-pkg syscall (freebsd-arm), const IFT_DLSW ideal-int
-pkg syscall (freebsd-arm), const IFT_DOCSCABLEDOWNSTREAM ideal-int
-pkg syscall (freebsd-arm), const IFT_DOCSCABLEMACLAYER ideal-int
-pkg syscall (freebsd-arm), const IFT_DOCSCABLEUPSTREAM ideal-int
-pkg syscall (freebsd-arm), const IFT_DS0 ideal-int
-pkg syscall (freebsd-arm), const IFT_DS0BUNDLE ideal-int
-pkg syscall (freebsd-arm), const IFT_DS1FDL ideal-int
-pkg syscall (freebsd-arm), const IFT_DS3 ideal-int
-pkg syscall (freebsd-arm), const IFT_DTM ideal-int
-pkg syscall (freebsd-arm), const IFT_DVBASILN ideal-int
-pkg syscall (freebsd-arm), const IFT_DVBASIOUT ideal-int
-pkg syscall (freebsd-arm), const IFT_DVBRCCDOWNSTREAM ideal-int
-pkg syscall (freebsd-arm), const IFT_DVBRCCMACLAYER ideal-int
-pkg syscall (freebsd-arm), const IFT_DVBRCCUPSTREAM ideal-int
-pkg syscall (freebsd-arm), const IFT_ENC ideal-int
-pkg syscall (freebsd-arm), const IFT_EON ideal-int
-pkg syscall (freebsd-arm), const IFT_EPLRS ideal-int
-pkg syscall (freebsd-arm), const IFT_ESCON ideal-int
-pkg syscall (freebsd-arm), const IFT_ETHER ideal-int
-pkg syscall (freebsd-arm), const IFT_FAITH ideal-int
-pkg syscall (freebsd-arm), const IFT_FAST ideal-int
-pkg syscall (freebsd-arm), const IFT_FASTETHER ideal-int
-pkg syscall (freebsd-arm), const IFT_FASTETHERFX ideal-int
-pkg syscall (freebsd-arm), const IFT_FDDI ideal-int
-pkg syscall (freebsd-arm), const IFT_FIBRECHANNEL ideal-int
-pkg syscall (freebsd-arm), const IFT_FRAMERELAYINTERCONNECT ideal-int
-pkg syscall (freebsd-arm), const IFT_FRAMERELAYMPI ideal-int
-pkg syscall (freebsd-arm), const IFT_FRDLCIENDPT ideal-int
-pkg syscall (freebsd-arm), const IFT_FRELAY ideal-int
-pkg syscall (freebsd-arm), const IFT_FRELAYDCE ideal-int
-pkg syscall (freebsd-arm), const IFT_FRF16MFRBUNDLE ideal-int
-pkg syscall (freebsd-arm), const IFT_FRFORWARD ideal-int
-pkg syscall (freebsd-arm), const IFT_G703AT2MB ideal-int
-pkg syscall (freebsd-arm), const IFT_G703AT64K ideal-int
-pkg syscall (freebsd-arm), const IFT_GIF ideal-int
-pkg syscall (freebsd-arm), const IFT_GIGABITETHERNET ideal-int
-pkg syscall (freebsd-arm), const IFT_GR303IDT ideal-int
-pkg syscall (freebsd-arm), const IFT_GR303RDT ideal-int
-pkg syscall (freebsd-arm), const IFT_H323GATEKEEPER ideal-int
-pkg syscall (freebsd-arm), const IFT_H323PROXY ideal-int
-pkg syscall (freebsd-arm), const IFT_HDH1822 ideal-int
-pkg syscall (freebsd-arm), const IFT_HDLC ideal-int
-pkg syscall (freebsd-arm), const IFT_HDSL2 ideal-int
-pkg syscall (freebsd-arm), const IFT_HIPERLAN2 ideal-int
-pkg syscall (freebsd-arm), const IFT_HIPPI ideal-int
-pkg syscall (freebsd-arm), const IFT_HIPPIINTERFACE ideal-int
-pkg syscall (freebsd-arm), const IFT_HOSTPAD ideal-int
-pkg syscall (freebsd-arm), const IFT_HSSI ideal-int
-pkg syscall (freebsd-arm), const IFT_HY ideal-int
-pkg syscall (freebsd-arm), const IFT_IBM370PARCHAN ideal-int
-pkg syscall (freebsd-arm), const IFT_IDSL ideal-int
-pkg syscall (freebsd-arm), const IFT_IEEE1394 ideal-int
-pkg syscall (freebsd-arm), const IFT_IEEE80211 ideal-int
-pkg syscall (freebsd-arm), const IFT_IEEE80212 ideal-int
-pkg syscall (freebsd-arm), const IFT_IEEE8023ADLAG ideal-int
-pkg syscall (freebsd-arm), const IFT_IFGSN ideal-int
-pkg syscall (freebsd-arm), const IFT_IMT ideal-int
-pkg syscall (freebsd-arm), const IFT_INFINIBAND ideal-int
-pkg syscall (freebsd-arm), const IFT_INTERLEAVE ideal-int
-pkg syscall (freebsd-arm), const IFT_IP ideal-int
-pkg syscall (freebsd-arm), const IFT_IPFORWARD ideal-int
-pkg syscall (freebsd-arm), const IFT_IPOVERATM ideal-int
-pkg syscall (freebsd-arm), const IFT_IPOVERCDLC ideal-int
-pkg syscall (freebsd-arm), const IFT_IPOVERCLAW ideal-int
-pkg syscall (freebsd-arm), const IFT_IPSWITCH ideal-int
-pkg syscall (freebsd-arm), const IFT_IPXIP ideal-int
-pkg syscall (freebsd-arm), const IFT_ISDN ideal-int
-pkg syscall (freebsd-arm), const IFT_ISDNBASIC ideal-int
-pkg syscall (freebsd-arm), const IFT_ISDNPRIMARY ideal-int
-pkg syscall (freebsd-arm), const IFT_ISDNS ideal-int
-pkg syscall (freebsd-arm), const IFT_ISDNU ideal-int
-pkg syscall (freebsd-arm), const IFT_ISO88022LLC ideal-int
-pkg syscall (freebsd-arm), const IFT_ISO88023 ideal-int
-pkg syscall (freebsd-arm), const IFT_ISO88024 ideal-int
-pkg syscall (freebsd-arm), const IFT_ISO88025 ideal-int
-pkg syscall (freebsd-arm), const IFT_ISO88025CRFPINT ideal-int
-pkg syscall (freebsd-arm), const IFT_ISO88025DTR ideal-int
-pkg syscall (freebsd-arm), const IFT_ISO88025FIBER ideal-int
-pkg syscall (freebsd-arm), const IFT_ISO88026 ideal-int
-pkg syscall (freebsd-arm), const IFT_ISUP ideal-int
-pkg syscall (freebsd-arm), const IFT_L2VLAN ideal-int
-pkg syscall (freebsd-arm), const IFT_L3IPVLAN ideal-int
-pkg syscall (freebsd-arm), const IFT_L3IPXVLAN ideal-int
-pkg syscall (freebsd-arm), const IFT_LAPB ideal-int
-pkg syscall (freebsd-arm), const IFT_LAPD ideal-int
-pkg syscall (freebsd-arm), const IFT_LAPF ideal-int
-pkg syscall (freebsd-arm), const IFT_LOCALTALK ideal-int
-pkg syscall (freebsd-arm), const IFT_LOOP ideal-int
-pkg syscall (freebsd-arm), const IFT_MEDIAMAILOVERIP ideal-int
-pkg syscall (freebsd-arm), const IFT_MFSIGLINK ideal-int
-pkg syscall (freebsd-arm), const IFT_MIOX25 ideal-int
-pkg syscall (freebsd-arm), const IFT_MODEM ideal-int
-pkg syscall (freebsd-arm), const IFT_MPC ideal-int
-pkg syscall (freebsd-arm), const IFT_MPLS ideal-int
-pkg syscall (freebsd-arm), const IFT_MPLSTUNNEL ideal-int
-pkg syscall (freebsd-arm), const IFT_MSDSL ideal-int
-pkg syscall (freebsd-arm), const IFT_MVL ideal-int
-pkg syscall (freebsd-arm), const IFT_MYRINET ideal-int
-pkg syscall (freebsd-arm), const IFT_NFAS ideal-int
-pkg syscall (freebsd-arm), const IFT_NSIP ideal-int
-pkg syscall (freebsd-arm), const IFT_OPTICALCHANNEL ideal-int
-pkg syscall (freebsd-arm), const IFT_OPTICALTRANSPORT ideal-int
-pkg syscall (freebsd-arm), const IFT_OTHER ideal-int
-pkg syscall (freebsd-arm), const IFT_P10 ideal-int
-pkg syscall (freebsd-arm), const IFT_P80 ideal-int
-pkg syscall (freebsd-arm), const IFT_PARA ideal-int
-pkg syscall (freebsd-arm), const IFT_PFLOG ideal-int
-pkg syscall (freebsd-arm), const IFT_PFSYNC ideal-int
-pkg syscall (freebsd-arm), const IFT_PLC ideal-int
-pkg syscall (freebsd-arm), const IFT_POS ideal-int
-pkg syscall (freebsd-arm), const IFT_PPP ideal-int
-pkg syscall (freebsd-arm), const IFT_PPPMULTILINKBUNDLE ideal-int
-pkg syscall (freebsd-arm), const IFT_PROPBWAP2MP ideal-int
-pkg syscall (freebsd-arm), const IFT_PROPCNLS ideal-int
-pkg syscall (freebsd-arm), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int
-pkg syscall (freebsd-arm), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int
-pkg syscall (freebsd-arm), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int
-pkg syscall (freebsd-arm), const IFT_PROPMUX ideal-int
-pkg syscall (freebsd-arm), const IFT_PROPVIRTUAL ideal-int
-pkg syscall (freebsd-arm), const IFT_PROPWIRELESSP2P ideal-int
-pkg syscall (freebsd-arm), const IFT_PTPSERIAL ideal-int
-pkg syscall (freebsd-arm), const IFT_PVC ideal-int
-pkg syscall (freebsd-arm), const IFT_QLLC ideal-int
-pkg syscall (freebsd-arm), const IFT_RADIOMAC ideal-int
-pkg syscall (freebsd-arm), const IFT_RADSL ideal-int
-pkg syscall (freebsd-arm), const IFT_REACHDSL ideal-int
-pkg syscall (freebsd-arm), const IFT_RFC1483 ideal-int
-pkg syscall (freebsd-arm), const IFT_RS232 ideal-int
-pkg syscall (freebsd-arm), const IFT_RSRB ideal-int
-pkg syscall (freebsd-arm), const IFT_SDLC ideal-int
-pkg syscall (freebsd-arm), const IFT_SDSL ideal-int
-pkg syscall (freebsd-arm), const IFT_SHDSL ideal-int
-pkg syscall (freebsd-arm), const IFT_SIP ideal-int
-pkg syscall (freebsd-arm), const IFT_SLIP ideal-int
-pkg syscall (freebsd-arm), const IFT_SMDSDXI ideal-int
-pkg syscall (freebsd-arm), const IFT_SMDSICIP ideal-int
-pkg syscall (freebsd-arm), const IFT_SONET ideal-int
-pkg syscall (freebsd-arm), const IFT_SONETOVERHEADCHANNEL ideal-int
-pkg syscall (freebsd-arm), const IFT_SONETPATH ideal-int
-pkg syscall (freebsd-arm), const IFT_SONETVT ideal-int
-pkg syscall (freebsd-arm), const IFT_SRP ideal-int
-pkg syscall (freebsd-arm), const IFT_SS7SIGLINK ideal-int
-pkg syscall (freebsd-arm), const IFT_STACKTOSTACK ideal-int
-pkg syscall (freebsd-arm), const IFT_STARLAN ideal-int
-pkg syscall (freebsd-arm), const IFT_STF ideal-int
-pkg syscall (freebsd-arm), const IFT_T1 ideal-int
-pkg syscall (freebsd-arm), const IFT_TDLC ideal-int
-pkg syscall (freebsd-arm), const IFT_TERMPAD ideal-int
-pkg syscall (freebsd-arm), const IFT_TR008 ideal-int
-pkg syscall (freebsd-arm), const IFT_TRANSPHDLC ideal-int
-pkg syscall (freebsd-arm), const IFT_TUNNEL ideal-int
-pkg syscall (freebsd-arm), const IFT_ULTRA ideal-int
-pkg syscall (freebsd-arm), const IFT_USB ideal-int
-pkg syscall (freebsd-arm), const IFT_V11 ideal-int
-pkg syscall (freebsd-arm), const IFT_V35 ideal-int
-pkg syscall (freebsd-arm), const IFT_V36 ideal-int
-pkg syscall (freebsd-arm), const IFT_V37 ideal-int
-pkg syscall (freebsd-arm), const IFT_VDSL ideal-int
-pkg syscall (freebsd-arm), const IFT_VIRTUALIPADDRESS ideal-int
-pkg syscall (freebsd-arm), const IFT_VOICEEM ideal-int
-pkg syscall (freebsd-arm), const IFT_VOICEENCAP ideal-int
-pkg syscall (freebsd-arm), const IFT_VOICEFXO ideal-int
-pkg syscall (freebsd-arm), const IFT_VOICEFXS ideal-int
-pkg syscall (freebsd-arm), const IFT_VOICEOVERATM ideal-int
-pkg syscall (freebsd-arm), const IFT_VOICEOVERFRAMERELAY ideal-int
-pkg syscall (freebsd-arm), const IFT_VOICEOVERIP ideal-int
-pkg syscall (freebsd-arm), const IFT_X213 ideal-int
-pkg syscall (freebsd-arm), const IFT_X25 ideal-int
-pkg syscall (freebsd-arm), const IFT_X25DDN ideal-int
-pkg syscall (freebsd-arm), const IFT_X25HUNTGROUP ideal-int
-pkg syscall (freebsd-arm), const IFT_X25MLP ideal-int
-pkg syscall (freebsd-arm), const IFT_X25PLE ideal-int
-pkg syscall (freebsd-arm), const IFT_XETHER ideal-int
-pkg syscall (freebsd-arm), const IGNBRK ideal-int
-pkg syscall (freebsd-arm), const IGNCR ideal-int
-pkg syscall (freebsd-arm), const IGNPAR ideal-int
-pkg syscall (freebsd-arm), const IMAXBEL ideal-int
-pkg syscall (freebsd-arm), const INLCR ideal-int
-pkg syscall (freebsd-arm), const INPCK ideal-int
-pkg syscall (freebsd-arm), const IN_CLASSA_HOST ideal-int
-pkg syscall (freebsd-arm), const IN_CLASSA_MAX ideal-int
-pkg syscall (freebsd-arm), const IN_CLASSA_NET ideal-int
-pkg syscall (freebsd-arm), const IN_CLASSA_NSHIFT ideal-int
-pkg syscall (freebsd-arm), const IN_CLASSB_HOST ideal-int
-pkg syscall (freebsd-arm), const IN_CLASSB_MAX ideal-int
-pkg syscall (freebsd-arm), const IN_CLASSB_NET ideal-int
-pkg syscall (freebsd-arm), const IN_CLASSB_NSHIFT ideal-int
-pkg syscall (freebsd-arm), const IN_CLASSC_HOST ideal-int
-pkg syscall (freebsd-arm), const IN_CLASSC_NET ideal-int
-pkg syscall (freebsd-arm), const IN_CLASSC_NSHIFT ideal-int
-pkg syscall (freebsd-arm), const IN_CLASSD_HOST ideal-int
-pkg syscall (freebsd-arm), const IN_CLASSD_NET ideal-int
-pkg syscall (freebsd-arm), const IN_CLASSD_NSHIFT ideal-int
-pkg syscall (freebsd-arm), const IN_LOOPBACKNET ideal-int
-pkg syscall (freebsd-arm), const IN_RFC3021_MASK ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_3PC ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_ADFS ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_AH ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_AHIP ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_APES ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_ARGUS ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_AX25 ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_BHA ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_BLT ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_BRSATMON ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_CARP ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_CFTP ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_CHAOS ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_CMTP ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_CPHB ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_CPNX ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_DDP ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_DGP ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_DIVERT ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_DONE ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_DSTOPTS ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_EGP ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_EMCON ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_ENCAP ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_EON ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_ESP ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_ETHERIP ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_FRAGMENT ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_GGP ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_GMTP ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_GRE ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_HELLO ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_HMP ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_HOPOPTS ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_ICMP ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_ICMPV6 ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_IDP ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_IDPR ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_IDRP ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_IGMP ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_IGP ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_IGRP ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_IL ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_INLSP ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_INP ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_IPCOMP ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_IPCV ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_IPEIP ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_IPIP ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_IPPC ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_IPV4 ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_IRTP ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_KRYPTOLAN ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_LARP ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_LEAF1 ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_LEAF2 ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_MAX ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_MAXID ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_MEAS ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_MH ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_MHRP ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_MICP ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_MOBILE ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_MPLS ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_MTP ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_MUX ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_ND ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_NHRP ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_NONE ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_NSP ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_NVPII ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_OLD_DIVERT ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_OSPFIGP ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_PFSYNC ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_PGM ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_PIGP ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_PIM ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_PRM ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_PUP ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_PVP ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_RAW ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_RCCMON ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_RDP ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_ROUTING ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_RSVP ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_RVD ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_SATEXPAK ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_SATMON ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_SCCSP ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_SCTP ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_SDRP ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_SEND ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_SEP ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_SKIP ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_SPACER ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_SRPC ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_ST ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_SVMTP ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_SWIPE ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_TCF ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_TLSP ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_TP ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_TPXX ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_TRUNK1 ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_TRUNK2 ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_TTP ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_VINES ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_VISA ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_VMTP ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_WBEXPAK ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_WBMON ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_WSN ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_XNET ideal-int
-pkg syscall (freebsd-arm), const IPPROTO_XTP ideal-int
-pkg syscall (freebsd-arm), const IPV6_AUTOFLOWLABEL ideal-int
-pkg syscall (freebsd-arm), const IPV6_BINDANY ideal-int
-pkg syscall (freebsd-arm), const IPV6_BINDV6ONLY ideal-int
-pkg syscall (freebsd-arm), const IPV6_CHECKSUM ideal-int
-pkg syscall (freebsd-arm), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int
-pkg syscall (freebsd-arm), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int
-pkg syscall (freebsd-arm), const IPV6_DEFHLIM ideal-int
-pkg syscall (freebsd-arm), const IPV6_DONTFRAG ideal-int
-pkg syscall (freebsd-arm), const IPV6_DSTOPTS ideal-int
-pkg syscall (freebsd-arm), const IPV6_FAITH ideal-int
-pkg syscall (freebsd-arm), const IPV6_FLOWINFO_MASK ideal-int
-pkg syscall (freebsd-arm), const IPV6_FLOWLABEL_MASK ideal-int
-pkg syscall (freebsd-arm), const IPV6_FRAGTTL ideal-int
-pkg syscall (freebsd-arm), const IPV6_FW_ADD ideal-int
-pkg syscall (freebsd-arm), const IPV6_FW_DEL ideal-int
-pkg syscall (freebsd-arm), const IPV6_FW_FLUSH ideal-int
-pkg syscall (freebsd-arm), const IPV6_FW_GET ideal-int
-pkg syscall (freebsd-arm), const IPV6_FW_ZERO ideal-int
-pkg syscall (freebsd-arm), const IPV6_HLIMDEC ideal-int
-pkg syscall (freebsd-arm), const IPV6_HOPLIMIT ideal-int
-pkg syscall (freebsd-arm), const IPV6_HOPOPTS ideal-int
-pkg syscall (freebsd-arm), const IPV6_IPSEC_POLICY ideal-int
-pkg syscall (freebsd-arm), const IPV6_MAXHLIM ideal-int
-pkg syscall (freebsd-arm), const IPV6_MAXOPTHDR ideal-int
-pkg syscall (freebsd-arm), const IPV6_MAXPACKET ideal-int
-pkg syscall (freebsd-arm), const IPV6_MAX_GROUP_SRC_FILTER ideal-int
-pkg syscall (freebsd-arm), const IPV6_MAX_MEMBERSHIPS ideal-int
-pkg syscall (freebsd-arm), const IPV6_MAX_SOCK_SRC_FILTER ideal-int
-pkg syscall (freebsd-arm), const IPV6_MIN_MEMBERSHIPS ideal-int
-pkg syscall (freebsd-arm), const IPV6_MMTU ideal-int
-pkg syscall (freebsd-arm), const IPV6_MSFILTER ideal-int
-pkg syscall (freebsd-arm), const IPV6_NEXTHOP ideal-int
-pkg syscall (freebsd-arm), const IPV6_PATHMTU ideal-int
-pkg syscall (freebsd-arm), const IPV6_PKTINFO ideal-int
-pkg syscall (freebsd-arm), const IPV6_PORTRANGE ideal-int
-pkg syscall (freebsd-arm), const IPV6_PORTRANGE_DEFAULT ideal-int
-pkg syscall (freebsd-arm), const IPV6_PORTRANGE_HIGH ideal-int
-pkg syscall (freebsd-arm), const IPV6_PORTRANGE_LOW ideal-int
-pkg syscall (freebsd-arm), const IPV6_PREFER_TEMPADDR ideal-int
-pkg syscall (freebsd-arm), const IPV6_RECVDSTOPTS ideal-int
-pkg syscall (freebsd-arm), const IPV6_RECVHOPLIMIT ideal-int
-pkg syscall (freebsd-arm), const IPV6_RECVHOPOPTS ideal-int
-pkg syscall (freebsd-arm), const IPV6_RECVPATHMTU ideal-int
-pkg syscall (freebsd-arm), const IPV6_RECVPKTINFO ideal-int
-pkg syscall (freebsd-arm), const IPV6_RECVRTHDR ideal-int
-pkg syscall (freebsd-arm), const IPV6_RECVTCLASS ideal-int
-pkg syscall (freebsd-arm), const IPV6_RTHDR ideal-int
-pkg syscall (freebsd-arm), const IPV6_RTHDRDSTOPTS ideal-int
-pkg syscall (freebsd-arm), const IPV6_RTHDR_LOOSE ideal-int
-pkg syscall (freebsd-arm), const IPV6_RTHDR_STRICT ideal-int
-pkg syscall (freebsd-arm), const IPV6_RTHDR_TYPE_0 ideal-int
-pkg syscall (freebsd-arm), const IPV6_SOCKOPT_RESERVED1 ideal-int
-pkg syscall (freebsd-arm), const IPV6_TCLASS ideal-int
-pkg syscall (freebsd-arm), const IPV6_USE_MIN_MTU ideal-int
-pkg syscall (freebsd-arm), const IPV6_VERSION ideal-int
-pkg syscall (freebsd-arm), const IPV6_VERSION_MASK ideal-int
-pkg syscall (freebsd-arm), const IP_ADD_SOURCE_MEMBERSHIP ideal-int
-pkg syscall (freebsd-arm), const IP_BINDANY ideal-int
-pkg syscall (freebsd-arm), const IP_BLOCK_SOURCE ideal-int
-pkg syscall (freebsd-arm), const IP_DEFAULT_MULTICAST_LOOP ideal-int
-pkg syscall (freebsd-arm), const IP_DEFAULT_MULTICAST_TTL ideal-int
-pkg syscall (freebsd-arm), const IP_DF ideal-int
-pkg syscall (freebsd-arm), const IP_DONTFRAG ideal-int
-pkg syscall (freebsd-arm), const IP_DROP_SOURCE_MEMBERSHIP ideal-int
-pkg syscall (freebsd-arm), const IP_DUMMYNET3 ideal-int
-pkg syscall (freebsd-arm), const IP_DUMMYNET_CONFIGURE ideal-int
-pkg syscall (freebsd-arm), const IP_DUMMYNET_DEL ideal-int
-pkg syscall (freebsd-arm), const IP_DUMMYNET_FLUSH ideal-int
-pkg syscall (freebsd-arm), const IP_DUMMYNET_GET ideal-int
-pkg syscall (freebsd-arm), const IP_FAITH ideal-int
-pkg syscall (freebsd-arm), const IP_FW3 ideal-int
-pkg syscall (freebsd-arm), const IP_FW_ADD ideal-int
-pkg syscall (freebsd-arm), const IP_FW_DEL ideal-int
-pkg syscall (freebsd-arm), const IP_FW_FLUSH ideal-int
-pkg syscall (freebsd-arm), const IP_FW_GET ideal-int
-pkg syscall (freebsd-arm), const IP_FW_NAT_CFG ideal-int
-pkg syscall (freebsd-arm), const IP_FW_NAT_DEL ideal-int
-pkg syscall (freebsd-arm), const IP_FW_NAT_GET_CONFIG ideal-int
-pkg syscall (freebsd-arm), const IP_FW_NAT_GET_LOG ideal-int
-pkg syscall (freebsd-arm), const IP_FW_RESETLOG ideal-int
-pkg syscall (freebsd-arm), const IP_FW_TABLE_ADD ideal-int
-pkg syscall (freebsd-arm), const IP_FW_TABLE_DEL ideal-int
-pkg syscall (freebsd-arm), const IP_FW_TABLE_FLUSH ideal-int
-pkg syscall (freebsd-arm), const IP_FW_TABLE_GETSIZE ideal-int
-pkg syscall (freebsd-arm), const IP_FW_TABLE_LIST ideal-int
-pkg syscall (freebsd-arm), const IP_FW_ZERO ideal-int
-pkg syscall (freebsd-arm), const IP_HDRINCL ideal-int
-pkg syscall (freebsd-arm), const IP_IPSEC_POLICY ideal-int
-pkg syscall (freebsd-arm), const IP_MAXPACKET ideal-int
-pkg syscall (freebsd-arm), const IP_MAX_GROUP_SRC_FILTER ideal-int
-pkg syscall (freebsd-arm), const IP_MAX_MEMBERSHIPS ideal-int
-pkg syscall (freebsd-arm), const IP_MAX_SOCK_MUTE_FILTER ideal-int
-pkg syscall (freebsd-arm), const IP_MAX_SOCK_SRC_FILTER ideal-int
-pkg syscall (freebsd-arm), const IP_MAX_SOURCE_FILTER ideal-int
-pkg syscall (freebsd-arm), const IP_MF ideal-int
-pkg syscall (freebsd-arm), const IP_MINTTL ideal-int
-pkg syscall (freebsd-arm), const IP_MIN_MEMBERSHIPS ideal-int
-pkg syscall (freebsd-arm), const IP_MSFILTER ideal-int
-pkg syscall (freebsd-arm), const IP_MSS ideal-int
-pkg syscall (freebsd-arm), const IP_MULTICAST_VIF ideal-int
-pkg syscall (freebsd-arm), const IP_OFFMASK ideal-int
-pkg syscall (freebsd-arm), const IP_ONESBCAST ideal-int
-pkg syscall (freebsd-arm), const IP_OPTIONS ideal-int
-pkg syscall (freebsd-arm), const IP_PORTRANGE ideal-int
-pkg syscall (freebsd-arm), const IP_PORTRANGE_DEFAULT ideal-int
-pkg syscall (freebsd-arm), const IP_PORTRANGE_HIGH ideal-int
-pkg syscall (freebsd-arm), const IP_PORTRANGE_LOW ideal-int
-pkg syscall (freebsd-arm), const IP_RECVDSTADDR ideal-int
-pkg syscall (freebsd-arm), const IP_RECVIF ideal-int
-pkg syscall (freebsd-arm), const IP_RECVOPTS ideal-int
-pkg syscall (freebsd-arm), const IP_RECVRETOPTS ideal-int
-pkg syscall (freebsd-arm), const IP_RECVTOS ideal-int
-pkg syscall (freebsd-arm), const IP_RECVTTL ideal-int
-pkg syscall (freebsd-arm), const IP_RETOPTS ideal-int
-pkg syscall (freebsd-arm), const IP_RF ideal-int
-pkg syscall (freebsd-arm), const IP_RSVP_OFF ideal-int
-pkg syscall (freebsd-arm), const IP_RSVP_ON ideal-int
-pkg syscall (freebsd-arm), const IP_RSVP_VIF_OFF ideal-int
-pkg syscall (freebsd-arm), const IP_RSVP_VIF_ON ideal-int
-pkg syscall (freebsd-arm), const IP_SENDSRCADDR ideal-int
-pkg syscall (freebsd-arm), const IP_UNBLOCK_SOURCE ideal-int
-pkg syscall (freebsd-arm), const ISIG ideal-int
-pkg syscall (freebsd-arm), const ISTRIP ideal-int
-pkg syscall (freebsd-arm), const IXANY ideal-int
-pkg syscall (freebsd-arm), const IXOFF ideal-int
-pkg syscall (freebsd-arm), const IXON ideal-int
-pkg syscall (freebsd-arm), const LOCK_EX ideal-int
-pkg syscall (freebsd-arm), const LOCK_NB ideal-int
-pkg syscall (freebsd-arm), const LOCK_SH ideal-int
-pkg syscall (freebsd-arm), const LOCK_UN ideal-int
-pkg syscall (freebsd-arm), const MADV_AUTOSYNC ideal-int
-pkg syscall (freebsd-arm), const MADV_CORE ideal-int
-pkg syscall (freebsd-arm), const MADV_DONTNEED ideal-int
-pkg syscall (freebsd-arm), const MADV_FREE ideal-int
-pkg syscall (freebsd-arm), const MADV_NOCORE ideal-int
-pkg syscall (freebsd-arm), const MADV_NORMAL ideal-int
-pkg syscall (freebsd-arm), const MADV_NOSYNC ideal-int
-pkg syscall (freebsd-arm), const MADV_PROTECT ideal-int
-pkg syscall (freebsd-arm), const MADV_RANDOM ideal-int
-pkg syscall (freebsd-arm), const MADV_SEQUENTIAL ideal-int
-pkg syscall (freebsd-arm), const MADV_WILLNEED ideal-int
-pkg syscall (freebsd-arm), const MAP_ANON ideal-int
-pkg syscall (freebsd-arm), const MAP_ANONYMOUS ideal-int
-pkg syscall (freebsd-arm), const MAP_COPY ideal-int
-pkg syscall (freebsd-arm), const MAP_FILE ideal-int
-pkg syscall (freebsd-arm), const MAP_FIXED ideal-int
-pkg syscall (freebsd-arm), const MAP_HASSEMAPHORE ideal-int
-pkg syscall (freebsd-arm), const MAP_NOCORE ideal-int
-pkg syscall (freebsd-arm), const MAP_NORESERVE ideal-int
-pkg syscall (freebsd-arm), const MAP_NOSYNC ideal-int
-pkg syscall (freebsd-arm), const MAP_PREFAULT_READ ideal-int
-pkg syscall (freebsd-arm), const MAP_PRIVATE ideal-int
-pkg syscall (freebsd-arm), const MAP_RENAME ideal-int
-pkg syscall (freebsd-arm), const MAP_RESERVED0080 ideal-int
-pkg syscall (freebsd-arm), const MAP_RESERVED0100 ideal-int
-pkg syscall (freebsd-arm), const MAP_SHARED ideal-int
-pkg syscall (freebsd-arm), const MAP_STACK ideal-int
-pkg syscall (freebsd-arm), const MCL_CURRENT ideal-int
-pkg syscall (freebsd-arm), const MCL_FUTURE ideal-int
-pkg syscall (freebsd-arm), const MSG_COMPAT ideal-int
-pkg syscall (freebsd-arm), const MSG_CTRUNC ideal-int
-pkg syscall (freebsd-arm), const MSG_DONTROUTE ideal-int
-pkg syscall (freebsd-arm), const MSG_DONTWAIT ideal-int
-pkg syscall (freebsd-arm), const MSG_EOF ideal-int
-pkg syscall (freebsd-arm), const MSG_EOR ideal-int
-pkg syscall (freebsd-arm), const MSG_NBIO ideal-int
-pkg syscall (freebsd-arm), const MSG_NOSIGNAL ideal-int
-pkg syscall (freebsd-arm), const MSG_NOTIFICATION ideal-int
-pkg syscall (freebsd-arm), const MSG_OOB ideal-int
-pkg syscall (freebsd-arm), const MSG_PEEK ideal-int
-pkg syscall (freebsd-arm), const MSG_TRUNC ideal-int
-pkg syscall (freebsd-arm), const MSG_WAITALL ideal-int
-pkg syscall (freebsd-arm), const MS_ASYNC ideal-int
-pkg syscall (freebsd-arm), const MS_INVALIDATE ideal-int
-pkg syscall (freebsd-arm), const MS_SYNC ideal-int
-pkg syscall (freebsd-arm), const NET_RT_DUMP ideal-int
-pkg syscall (freebsd-arm), const NET_RT_FLAGS ideal-int
-pkg syscall (freebsd-arm), const NET_RT_IFLIST ideal-int
-pkg syscall (freebsd-arm), const NET_RT_IFLISTL ideal-int
-pkg syscall (freebsd-arm), const NET_RT_IFMALIST ideal-int
-pkg syscall (freebsd-arm), const NET_RT_MAXID ideal-int
-pkg syscall (freebsd-arm), const NOFLSH ideal-int
-pkg syscall (freebsd-arm), const NOTE_ATTRIB ideal-int
-pkg syscall (freebsd-arm), const NOTE_CHILD ideal-int
-pkg syscall (freebsd-arm), const NOTE_DELETE ideal-int
-pkg syscall (freebsd-arm), const NOTE_EXEC ideal-int
-pkg syscall (freebsd-arm), const NOTE_EXIT ideal-int
-pkg syscall (freebsd-arm), const NOTE_EXTEND ideal-int
-pkg syscall (freebsd-arm), const NOTE_FFAND ideal-int
-pkg syscall (freebsd-arm), const NOTE_FFCOPY ideal-int
-pkg syscall (freebsd-arm), const NOTE_FFCTRLMASK ideal-int
-pkg syscall (freebsd-arm), const NOTE_FFLAGSMASK ideal-int
-pkg syscall (freebsd-arm), const NOTE_FFNOP ideal-int
-pkg syscall (freebsd-arm), const NOTE_FFOR ideal-int
-pkg syscall (freebsd-arm), const NOTE_FORK ideal-int
-pkg syscall (freebsd-arm), const NOTE_LINK ideal-int
-pkg syscall (freebsd-arm), const NOTE_LOWAT ideal-int
-pkg syscall (freebsd-arm), const NOTE_PCTRLMASK ideal-int
-pkg syscall (freebsd-arm), const NOTE_PDATAMASK ideal-int
-pkg syscall (freebsd-arm), const NOTE_RENAME ideal-int
-pkg syscall (freebsd-arm), const NOTE_REVOKE ideal-int
-pkg syscall (freebsd-arm), const NOTE_TRACK ideal-int
-pkg syscall (freebsd-arm), const NOTE_TRACKERR ideal-int
-pkg syscall (freebsd-arm), const NOTE_TRIGGER ideal-int
-pkg syscall (freebsd-arm), const NOTE_WRITE ideal-int
-pkg syscall (freebsd-arm), const OCRNL ideal-int
-pkg syscall (freebsd-arm), const ONLCR ideal-int
-pkg syscall (freebsd-arm), const ONLRET ideal-int
-pkg syscall (freebsd-arm), const ONOCR ideal-int
-pkg syscall (freebsd-arm), const ONOEOT ideal-int
-pkg syscall (freebsd-arm), const OPOST ideal-int
-pkg syscall (freebsd-arm), const O_ACCMODE ideal-int
-pkg syscall (freebsd-arm), const O_DIRECT ideal-int
-pkg syscall (freebsd-arm), const O_DIRECTORY ideal-int
-pkg syscall (freebsd-arm), const O_EXEC ideal-int
-pkg syscall (freebsd-arm), const O_EXLOCK ideal-int
-pkg syscall (freebsd-arm), const O_FSYNC ideal-int
-pkg syscall (freebsd-arm), const O_NDELAY ideal-int
-pkg syscall (freebsd-arm), const O_NOFOLLOW ideal-int
-pkg syscall (freebsd-arm), const O_SHLOCK ideal-int
-pkg syscall (freebsd-arm), const O_TTY_INIT ideal-int
-pkg syscall (freebsd-arm), const PARENB ideal-int
-pkg syscall (freebsd-arm), const PARMRK ideal-int
-pkg syscall (freebsd-arm), const PARODD ideal-int
-pkg syscall (freebsd-arm), const PENDIN ideal-int
-pkg syscall (freebsd-arm), const PRIO_PGRP = 1
-pkg syscall (freebsd-arm), const PRIO_PGRP ideal-int
-pkg syscall (freebsd-arm), const PRIO_PROCESS = 0
-pkg syscall (freebsd-arm), const PRIO_PROCESS ideal-int
-pkg syscall (freebsd-arm), const PRIO_USER = 2
-pkg syscall (freebsd-arm), const PRIO_USER ideal-int
-pkg syscall (freebsd-arm), const PROT_EXEC ideal-int
-pkg syscall (freebsd-arm), const PROT_NONE ideal-int
-pkg syscall (freebsd-arm), const PROT_READ ideal-int
-pkg syscall (freebsd-arm), const PROT_WRITE ideal-int
-pkg syscall (freebsd-arm), const PTRACE_CONT ideal-int
-pkg syscall (freebsd-arm), const PTRACE_KILL ideal-int
-pkg syscall (freebsd-arm), const PTRACE_TRACEME ideal-int
-pkg syscall (freebsd-arm), const RLIMIT_AS ideal-int
-pkg syscall (freebsd-arm), const RLIMIT_CORE ideal-int
-pkg syscall (freebsd-arm), const RLIMIT_CPU ideal-int
-pkg syscall (freebsd-arm), const RLIMIT_DATA ideal-int
-pkg syscall (freebsd-arm), const RLIMIT_FSIZE ideal-int
-pkg syscall (freebsd-arm), const RLIMIT_NOFILE ideal-int
-pkg syscall (freebsd-arm), const RLIMIT_STACK ideal-int
-pkg syscall (freebsd-arm), const RLIM_INFINITY ideal-int
-pkg syscall (freebsd-arm), const RTAX_AUTHOR ideal-int
-pkg syscall (freebsd-arm), const RTAX_BRD ideal-int
-pkg syscall (freebsd-arm), const RTAX_DST ideal-int
-pkg syscall (freebsd-arm), const RTAX_GATEWAY ideal-int
-pkg syscall (freebsd-arm), const RTAX_GENMASK ideal-int
-pkg syscall (freebsd-arm), const RTAX_IFA ideal-int
-pkg syscall (freebsd-arm), const RTAX_IFP ideal-int
-pkg syscall (freebsd-arm), const RTAX_MAX ideal-int
-pkg syscall (freebsd-arm), const RTAX_NETMASK ideal-int
-pkg syscall (freebsd-arm), const RTA_AUTHOR ideal-int
-pkg syscall (freebsd-arm), const RTA_BRD ideal-int
-pkg syscall (freebsd-arm), const RTA_DST ideal-int
-pkg syscall (freebsd-arm), const RTA_GATEWAY ideal-int
-pkg syscall (freebsd-arm), const RTA_GENMASK ideal-int
-pkg syscall (freebsd-arm), const RTA_IFA ideal-int
-pkg syscall (freebsd-arm), const RTA_IFP ideal-int
-pkg syscall (freebsd-arm), const RTA_NETMASK ideal-int
-pkg syscall (freebsd-arm), const RTF_BLACKHOLE ideal-int
-pkg syscall (freebsd-arm), const RTF_BROADCAST ideal-int
-pkg syscall (freebsd-arm), const RTF_DONE ideal-int
-pkg syscall (freebsd-arm), const RTF_DYNAMIC ideal-int
-pkg syscall (freebsd-arm), const RTF_FMASK ideal-int
-pkg syscall (freebsd-arm), const RTF_GATEWAY ideal-int
-pkg syscall (freebsd-arm), const RTF_HOST ideal-int
-pkg syscall (freebsd-arm), const RTF_LLDATA ideal-int
-pkg syscall (freebsd-arm), const RTF_LLINFO ideal-int
-pkg syscall (freebsd-arm), const RTF_LOCAL ideal-int
-pkg syscall (freebsd-arm), const RTF_MODIFIED ideal-int
-pkg syscall (freebsd-arm), const RTF_MULTICAST ideal-int
-pkg syscall (freebsd-arm), const RTF_PINNED ideal-int
-pkg syscall (freebsd-arm), const RTF_PRCLONING ideal-int
-pkg syscall (freebsd-arm), const RTF_PROTO1 ideal-int
-pkg syscall (freebsd-arm), const RTF_PROTO2 ideal-int
-pkg syscall (freebsd-arm), const RTF_PROTO3 ideal-int
-pkg syscall (freebsd-arm), const RTF_REJECT ideal-int
-pkg syscall (freebsd-arm), const RTF_RNH_LOCKED ideal-int
-pkg syscall (freebsd-arm), const RTF_STATIC ideal-int
-pkg syscall (freebsd-arm), const RTF_STICKY ideal-int
-pkg syscall (freebsd-arm), const RTF_UP ideal-int
-pkg syscall (freebsd-arm), const RTF_XRESOLVE ideal-int
-pkg syscall (freebsd-arm), const RTM_ADD ideal-int
-pkg syscall (freebsd-arm), const RTM_CHANGE ideal-int
-pkg syscall (freebsd-arm), const RTM_DELADDR ideal-int
-pkg syscall (freebsd-arm), const RTM_DELETE ideal-int
-pkg syscall (freebsd-arm), const RTM_DELMADDR ideal-int
-pkg syscall (freebsd-arm), const RTM_GET ideal-int
-pkg syscall (freebsd-arm), const RTM_IEEE80211 ideal-int
-pkg syscall (freebsd-arm), const RTM_IFANNOUNCE ideal-int
-pkg syscall (freebsd-arm), const RTM_IFINFO ideal-int
-pkg syscall (freebsd-arm), const RTM_LOCK ideal-int
-pkg syscall (freebsd-arm), const RTM_LOSING ideal-int
-pkg syscall (freebsd-arm), const RTM_MISS ideal-int
-pkg syscall (freebsd-arm), const RTM_NEWADDR ideal-int
-pkg syscall (freebsd-arm), const RTM_NEWMADDR ideal-int
-pkg syscall (freebsd-arm), const RTM_OLDADD ideal-int
-pkg syscall (freebsd-arm), const RTM_OLDDEL ideal-int
-pkg syscall (freebsd-arm), const RTM_REDIRECT ideal-int
-pkg syscall (freebsd-arm), const RTM_RESOLVE ideal-int
-pkg syscall (freebsd-arm), const RTM_RTTUNIT ideal-int
-pkg syscall (freebsd-arm), const RTM_VERSION ideal-int
-pkg syscall (freebsd-arm), const RTV_EXPIRE ideal-int
-pkg syscall (freebsd-arm), const RTV_HOPCOUNT ideal-int
-pkg syscall (freebsd-arm), const RTV_MTU ideal-int
-pkg syscall (freebsd-arm), const RTV_RPIPE ideal-int
-pkg syscall (freebsd-arm), const RTV_RTT ideal-int
-pkg syscall (freebsd-arm), const RTV_RTTVAR ideal-int
-pkg syscall (freebsd-arm), const RTV_SPIPE ideal-int
-pkg syscall (freebsd-arm), const RTV_SSTHRESH ideal-int
-pkg syscall (freebsd-arm), const RTV_WEIGHT ideal-int
-pkg syscall (freebsd-arm), const RT_CACHING_CONTEXT ideal-int
-pkg syscall (freebsd-arm), const RT_DEFAULT_FIB ideal-int
-pkg syscall (freebsd-arm), const RT_NORTREF ideal-int
-pkg syscall (freebsd-arm), const RUSAGE_CHILDREN ideal-int
-pkg syscall (freebsd-arm), const RUSAGE_SELF ideal-int
-pkg syscall (freebsd-arm), const RUSAGE_THREAD ideal-int
-pkg syscall (freebsd-arm), const SCM_BINTIME ideal-int
-pkg syscall (freebsd-arm), const SCM_CREDS ideal-int
-pkg syscall (freebsd-arm), const SCM_RIGHTS ideal-int
-pkg syscall (freebsd-arm), const SCM_TIMESTAMP ideal-int
-pkg syscall (freebsd-arm), const SIGCHLD Signal
-pkg syscall (freebsd-arm), const SIGCONT Signal
-pkg syscall (freebsd-arm), const SIGEMT Signal
-pkg syscall (freebsd-arm), const SIGINFO Signal
-pkg syscall (freebsd-arm), const SIGIO Signal
-pkg syscall (freebsd-arm), const SIGIOT Signal
-pkg syscall (freebsd-arm), const SIGLIBRT Signal
-pkg syscall (freebsd-arm), const SIGLWP Signal
-pkg syscall (freebsd-arm), const SIGPROF Signal
-pkg syscall (freebsd-arm), const SIGSTOP Signal
-pkg syscall (freebsd-arm), const SIGSYS Signal
-pkg syscall (freebsd-arm), const SIGTHR Signal
-pkg syscall (freebsd-arm), const SIGTSTP Signal
-pkg syscall (freebsd-arm), const SIGTTIN Signal
-pkg syscall (freebsd-arm), const SIGTTOU Signal
-pkg syscall (freebsd-arm), const SIGURG Signal
-pkg syscall (freebsd-arm), const SIGUSR1 Signal
-pkg syscall (freebsd-arm), const SIGUSR2 Signal
-pkg syscall (freebsd-arm), const SIGVTALRM Signal
-pkg syscall (freebsd-arm), const SIGWINCH Signal
-pkg syscall (freebsd-arm), const SIGXCPU Signal
-pkg syscall (freebsd-arm), const SIGXFSZ Signal
-pkg syscall (freebsd-arm), const SIOCADDMULTI ideal-int
-pkg syscall (freebsd-arm), const SIOCADDRT ideal-int
-pkg syscall (freebsd-arm), const SIOCAIFADDR ideal-int
-pkg syscall (freebsd-arm), const SIOCAIFGROUP ideal-int
-pkg syscall (freebsd-arm), const SIOCALIFADDR ideal-int
-pkg syscall (freebsd-arm), const SIOCATMARK ideal-int
-pkg syscall (freebsd-arm), const SIOCDELMULTI ideal-int
-pkg syscall (freebsd-arm), const SIOCDELRT ideal-int
-pkg syscall (freebsd-arm), const SIOCDIFADDR ideal-int
-pkg syscall (freebsd-arm), const SIOCDIFGROUP ideal-int
-pkg syscall (freebsd-arm), const SIOCDIFPHYADDR ideal-int
-pkg syscall (freebsd-arm), const SIOCDLIFADDR ideal-int
-pkg syscall (freebsd-arm), const SIOCGDRVSPEC ideal-int
-pkg syscall (freebsd-arm), const SIOCGETSGCNT ideal-int
-pkg syscall (freebsd-arm), const SIOCGETVIFCNT ideal-int
-pkg syscall (freebsd-arm), const SIOCGHIWAT ideal-int
-pkg syscall (freebsd-arm), const SIOCGIFADDR ideal-int
-pkg syscall (freebsd-arm), const SIOCGIFBRDADDR ideal-int
-pkg syscall (freebsd-arm), const SIOCGIFCAP ideal-int
-pkg syscall (freebsd-arm), const SIOCGIFCONF ideal-int
-pkg syscall (freebsd-arm), const SIOCGIFDESCR ideal-int
-pkg syscall (freebsd-arm), const SIOCGIFDSTADDR ideal-int
-pkg syscall (freebsd-arm), const SIOCGIFFIB ideal-int
-pkg syscall (freebsd-arm), const SIOCGIFFLAGS ideal-int
-pkg syscall (freebsd-arm), const SIOCGIFGENERIC ideal-int
-pkg syscall (freebsd-arm), const SIOCGIFGMEMB ideal-int
-pkg syscall (freebsd-arm), const SIOCGIFGROUP ideal-int
-pkg syscall (freebsd-arm), const SIOCGIFINDEX ideal-int
-pkg syscall (freebsd-arm), const SIOCGIFMAC ideal-int
-pkg syscall (freebsd-arm), const SIOCGIFMEDIA ideal-int
-pkg syscall (freebsd-arm), const SIOCGIFMETRIC ideal-int
-pkg syscall (freebsd-arm), const SIOCGIFMTU ideal-int
-pkg syscall (freebsd-arm), const SIOCGIFNETMASK ideal-int
-pkg syscall (freebsd-arm), const SIOCGIFPDSTADDR ideal-int
-pkg syscall (freebsd-arm), const SIOCGIFPHYS ideal-int
-pkg syscall (freebsd-arm), const SIOCGIFPSRCADDR ideal-int
-pkg syscall (freebsd-arm), const SIOCGIFSTATUS ideal-int
-pkg syscall (freebsd-arm), const SIOCGLIFADDR ideal-int
-pkg syscall (freebsd-arm), const SIOCGLIFPHYADDR ideal-int
-pkg syscall (freebsd-arm), const SIOCGLOWAT ideal-int
-pkg syscall (freebsd-arm), const SIOCGPGRP ideal-int
-pkg syscall (freebsd-arm), const SIOCGPRIVATE_0 ideal-int
-pkg syscall (freebsd-arm), const SIOCGPRIVATE_1 ideal-int
-pkg syscall (freebsd-arm), const SIOCIFCREATE ideal-int
-pkg syscall (freebsd-arm), const SIOCIFCREATE2 ideal-int
-pkg syscall (freebsd-arm), const SIOCIFDESTROY ideal-int
-pkg syscall (freebsd-arm), const SIOCIFGCLONERS ideal-int
-pkg syscall (freebsd-arm), const SIOCSDRVSPEC ideal-int
-pkg syscall (freebsd-arm), const SIOCSHIWAT ideal-int
-pkg syscall (freebsd-arm), const SIOCSIFADDR ideal-int
-pkg syscall (freebsd-arm), const SIOCSIFBRDADDR ideal-int
-pkg syscall (freebsd-arm), const SIOCSIFCAP ideal-int
-pkg syscall (freebsd-arm), const SIOCSIFDESCR ideal-int
-pkg syscall (freebsd-arm), const SIOCSIFDSTADDR ideal-int
-pkg syscall (freebsd-arm), const SIOCSIFFIB ideal-int
-pkg syscall (freebsd-arm), const SIOCSIFFLAGS ideal-int
-pkg syscall (freebsd-arm), const SIOCSIFGENERIC ideal-int
-pkg syscall (freebsd-arm), const SIOCSIFLLADDR ideal-int
-pkg syscall (freebsd-arm), const SIOCSIFMAC ideal-int
-pkg syscall (freebsd-arm), const SIOCSIFMEDIA ideal-int
-pkg syscall (freebsd-arm), const SIOCSIFMETRIC ideal-int
-pkg syscall (freebsd-arm), const SIOCSIFMTU ideal-int
-pkg syscall (freebsd-arm), const SIOCSIFNAME ideal-int
-pkg syscall (freebsd-arm), const SIOCSIFNETMASK ideal-int
-pkg syscall (freebsd-arm), const SIOCSIFPHYADDR ideal-int
-pkg syscall (freebsd-arm), const SIOCSIFPHYS ideal-int
-pkg syscall (freebsd-arm), const SIOCSIFRVNET ideal-int
-pkg syscall (freebsd-arm), const SIOCSIFVNET ideal-int
-pkg syscall (freebsd-arm), const SIOCSLIFPHYADDR ideal-int
-pkg syscall (freebsd-arm), const SIOCSLOWAT ideal-int
-pkg syscall (freebsd-arm), const SIOCSPGRP ideal-int
-pkg syscall (freebsd-arm), const SOCK_MAXADDRLEN ideal-int
-pkg syscall (freebsd-arm), const SOCK_RDM ideal-int
-pkg syscall (freebsd-arm), const SO_ACCEPTCONN ideal-int
-pkg syscall (freebsd-arm), const SO_ACCEPTFILTER ideal-int
-pkg syscall (freebsd-arm), const SO_BINTIME ideal-int
-pkg syscall (freebsd-arm), const SO_DEBUG ideal-int
-pkg syscall (freebsd-arm), const SO_ERROR ideal-int
-pkg syscall (freebsd-arm), const SO_LABEL ideal-int
-pkg syscall (freebsd-arm), const SO_LISTENINCQLEN ideal-int
-pkg syscall (freebsd-arm), const SO_LISTENQLEN ideal-int
-pkg syscall (freebsd-arm), const SO_LISTENQLIMIT ideal-int
-pkg syscall (freebsd-arm), const SO_NOSIGPIPE ideal-int
-pkg syscall (freebsd-arm), const SO_NO_DDP ideal-int
-pkg syscall (freebsd-arm), const SO_NO_OFFLOAD ideal-int
-pkg syscall (freebsd-arm), const SO_OOBINLINE ideal-int
-pkg syscall (freebsd-arm), const SO_PEERLABEL ideal-int
-pkg syscall (freebsd-arm), const SO_PROTOCOL ideal-int
-pkg syscall (freebsd-arm), const SO_PROTOTYPE ideal-int
-pkg syscall (freebsd-arm), const SO_RCVLOWAT ideal-int
-pkg syscall (freebsd-arm), const SO_RCVTIMEO ideal-int
-pkg syscall (freebsd-arm), const SO_REUSEPORT ideal-int
-pkg syscall (freebsd-arm), const SO_SETFIB ideal-int
-pkg syscall (freebsd-arm), const SO_SNDLOWAT ideal-int
-pkg syscall (freebsd-arm), const SO_SNDTIMEO ideal-int
-pkg syscall (freebsd-arm), const SO_TIMESTAMP ideal-int
-pkg syscall (freebsd-arm), const SO_TYPE ideal-int
-pkg syscall (freebsd-arm), const SO_USELOOPBACK ideal-int
-pkg syscall (freebsd-arm), const SO_USER_COOKIE ideal-int
-pkg syscall (freebsd-arm), const SYS_ABORT2 ideal-int
-pkg syscall (freebsd-arm), const SYS_ACCEPT ideal-int
-pkg syscall (freebsd-arm), const SYS_ACCESS ideal-int
-pkg syscall (freebsd-arm), const SYS_ACCT ideal-int
-pkg syscall (freebsd-arm), const SYS_ADJTIME ideal-int
-pkg syscall (freebsd-arm), const SYS_AUDIT ideal-int
-pkg syscall (freebsd-arm), const SYS_AUDITCTL ideal-int
-pkg syscall (freebsd-arm), const SYS_AUDITON ideal-int
-pkg syscall (freebsd-arm), const SYS_BIND ideal-int
-pkg syscall (freebsd-arm), const SYS_CAP_ENTER ideal-int
-pkg syscall (freebsd-arm), const SYS_CAP_FCNTLS_GET ideal-int
-pkg syscall (freebsd-arm), const SYS_CAP_FCNTLS_LIMIT ideal-int
-pkg syscall (freebsd-arm), const SYS_CAP_GETMODE ideal-int
-pkg syscall (freebsd-arm), const SYS_CAP_IOCTLS_GET ideal-int
-pkg syscall (freebsd-arm), const SYS_CAP_IOCTLS_LIMIT ideal-int
-pkg syscall (freebsd-arm), const SYS_CAP_NEW ideal-int
-pkg syscall (freebsd-arm), const SYS_CAP_RIGHTS_GET ideal-int
-pkg syscall (freebsd-arm), const SYS_CAP_RIGHTS_LIMIT ideal-int
-pkg syscall (freebsd-arm), const SYS_CHDIR ideal-int
-pkg syscall (freebsd-arm), const SYS_CHFLAGS ideal-int
-pkg syscall (freebsd-arm), const SYS_CHMOD ideal-int
-pkg syscall (freebsd-arm), const SYS_CHOWN ideal-int
-pkg syscall (freebsd-arm), const SYS_CHROOT ideal-int
-pkg syscall (freebsd-arm), const SYS_CLOCK_GETCPUCLOCKID2 ideal-int
-pkg syscall (freebsd-arm), const SYS_CLOCK_GETRES ideal-int
-pkg syscall (freebsd-arm), const SYS_CLOCK_GETTIME ideal-int
-pkg syscall (freebsd-arm), const SYS_CLOCK_SETTIME ideal-int
-pkg syscall (freebsd-arm), const SYS_CLOSE ideal-int
-pkg syscall (freebsd-arm), const SYS_CLOSEFROM ideal-int
-pkg syscall (freebsd-arm), const SYS_CONNECT ideal-int
-pkg syscall (freebsd-arm), const SYS_CPUSET ideal-int
-pkg syscall (freebsd-arm), const SYS_CPUSET_GETAFFINITY ideal-int
-pkg syscall (freebsd-arm), const SYS_CPUSET_GETID ideal-int
-pkg syscall (freebsd-arm), const SYS_CPUSET_SETAFFINITY ideal-int
-pkg syscall (freebsd-arm), const SYS_CPUSET_SETID ideal-int
-pkg syscall (freebsd-arm), const SYS_DUP ideal-int
-pkg syscall (freebsd-arm), const SYS_DUP2 ideal-int
-pkg syscall (freebsd-arm), const SYS_EACCESS ideal-int
-pkg syscall (freebsd-arm), const SYS_EXECVE ideal-int
-pkg syscall (freebsd-arm), const SYS_EXIT ideal-int
-pkg syscall (freebsd-arm), const SYS_EXTATTRCTL ideal-int
-pkg syscall (freebsd-arm), const SYS_EXTATTR_DELETE_FD ideal-int
-pkg syscall (freebsd-arm), const SYS_EXTATTR_DELETE_FILE ideal-int
-pkg syscall (freebsd-arm), const SYS_EXTATTR_DELETE_LINK ideal-int
-pkg syscall (freebsd-arm), const SYS_EXTATTR_GET_FD ideal-int
-pkg syscall (freebsd-arm), const SYS_EXTATTR_GET_FILE ideal-int
-pkg syscall (freebsd-arm), const SYS_EXTATTR_GET_LINK ideal-int
-pkg syscall (freebsd-arm), const SYS_EXTATTR_LIST_FD ideal-int
-pkg syscall (freebsd-arm), const SYS_EXTATTR_LIST_FILE ideal-int
-pkg syscall (freebsd-arm), const SYS_EXTATTR_LIST_LINK ideal-int
-pkg syscall (freebsd-arm), const SYS_EXTATTR_SET_FD ideal-int
-pkg syscall (freebsd-arm), const SYS_EXTATTR_SET_FILE ideal-int
-pkg syscall (freebsd-arm), const SYS_EXTATTR_SET_LINK ideal-int
-pkg syscall (freebsd-arm), const SYS_FACCESSAT ideal-int
-pkg syscall (freebsd-arm), const SYS_FCHDIR ideal-int
-pkg syscall (freebsd-arm), const SYS_FCHFLAGS ideal-int
-pkg syscall (freebsd-arm), const SYS_FCHMOD ideal-int
-pkg syscall (freebsd-arm), const SYS_FCHMODAT ideal-int
-pkg syscall (freebsd-arm), const SYS_FCHOWN ideal-int
-pkg syscall (freebsd-arm), const SYS_FCHOWNAT ideal-int
-pkg syscall (freebsd-arm), const SYS_FCNTL ideal-int
-pkg syscall (freebsd-arm), const SYS_FEXECVE ideal-int
-pkg syscall (freebsd-arm), const SYS_FFCLOCK_GETCOUNTER ideal-int
-pkg syscall (freebsd-arm), const SYS_FFCLOCK_GETESTIMATE ideal-int
-pkg syscall (freebsd-arm), const SYS_FFCLOCK_SETESTIMATE ideal-int
-pkg syscall (freebsd-arm), const SYS_FHOPEN ideal-int
-pkg syscall (freebsd-arm), const SYS_FHSTAT ideal-int
-pkg syscall (freebsd-arm), const SYS_FHSTATFS ideal-int
-pkg syscall (freebsd-arm), const SYS_FLOCK ideal-int
-pkg syscall (freebsd-arm), const SYS_FORK ideal-int
-pkg syscall (freebsd-arm), const SYS_FPATHCONF ideal-int
-pkg syscall (freebsd-arm), const SYS_FREEBSD6_FTRUNCATE ideal-int
-pkg syscall (freebsd-arm), const SYS_FREEBSD6_LSEEK ideal-int
-pkg syscall (freebsd-arm), const SYS_FREEBSD6_MMAP ideal-int
-pkg syscall (freebsd-arm), const SYS_FREEBSD6_PREAD ideal-int
-pkg syscall (freebsd-arm), const SYS_FREEBSD6_PWRITE ideal-int
-pkg syscall (freebsd-arm), const SYS_FREEBSD6_TRUNCATE ideal-int
-pkg syscall (freebsd-arm), const SYS_FSTAT ideal-int
-pkg syscall (freebsd-arm), const SYS_FSTATAT ideal-int
-pkg syscall (freebsd-arm), const SYS_FSTATFS ideal-int
-pkg syscall (freebsd-arm), const SYS_FSYNC ideal-int
-pkg syscall (freebsd-arm), const SYS_FTRUNCATE ideal-int
-pkg syscall (freebsd-arm), const SYS_FUTIMES ideal-int
-pkg syscall (freebsd-arm), const SYS_FUTIMESAT ideal-int
-pkg syscall (freebsd-arm), const SYS_GETAUDIT ideal-int
-pkg syscall (freebsd-arm), const SYS_GETAUDIT_ADDR ideal-int
-pkg syscall (freebsd-arm), const SYS_GETAUID ideal-int
-pkg syscall (freebsd-arm), const SYS_GETCONTEXT ideal-int
-pkg syscall (freebsd-arm), const SYS_GETDENTS ideal-int
-pkg syscall (freebsd-arm), const SYS_GETDIRENTRIES ideal-int
-pkg syscall (freebsd-arm), const SYS_GETDTABLESIZE ideal-int
-pkg syscall (freebsd-arm), const SYS_GETEGID ideal-int
-pkg syscall (freebsd-arm), const SYS_GETEUID ideal-int
-pkg syscall (freebsd-arm), const SYS_GETFH ideal-int
-pkg syscall (freebsd-arm), const SYS_GETFSSTAT ideal-int
-pkg syscall (freebsd-arm), const SYS_GETGID ideal-int
-pkg syscall (freebsd-arm), const SYS_GETGROUPS ideal-int
-pkg syscall (freebsd-arm), const SYS_GETITIMER ideal-int
-pkg syscall (freebsd-arm), const SYS_GETLOGIN ideal-int
-pkg syscall (freebsd-arm), const SYS_GETLOGINCLASS ideal-int
-pkg syscall (freebsd-arm), const SYS_GETPEERNAME ideal-int
-pkg syscall (freebsd-arm), const SYS_GETPGID ideal-int
-pkg syscall (freebsd-arm), const SYS_GETPGRP ideal-int
-pkg syscall (freebsd-arm), const SYS_GETPID ideal-int
-pkg syscall (freebsd-arm), const SYS_GETPPID ideal-int
-pkg syscall (freebsd-arm), const SYS_GETPRIORITY ideal-int
-pkg syscall (freebsd-arm), const SYS_GETRESGID ideal-int
-pkg syscall (freebsd-arm), const SYS_GETRESUID ideal-int
-pkg syscall (freebsd-arm), const SYS_GETRLIMIT ideal-int
-pkg syscall (freebsd-arm), const SYS_GETRUSAGE ideal-int
-pkg syscall (freebsd-arm), const SYS_GETSID ideal-int
-pkg syscall (freebsd-arm), const SYS_GETSOCKNAME ideal-int
-pkg syscall (freebsd-arm), const SYS_GETSOCKOPT ideal-int
-pkg syscall (freebsd-arm), const SYS_GETTIMEOFDAY ideal-int
-pkg syscall (freebsd-arm), const SYS_GETUID ideal-int
-pkg syscall (freebsd-arm), const SYS_IOCTL ideal-int
-pkg syscall (freebsd-arm), const SYS_ISSETUGID ideal-int
-pkg syscall (freebsd-arm), const SYS_JAIL ideal-int
-pkg syscall (freebsd-arm), const SYS_JAIL_ATTACH ideal-int
-pkg syscall (freebsd-arm), const SYS_JAIL_GET ideal-int
-pkg syscall (freebsd-arm), const SYS_JAIL_REMOVE ideal-int
-pkg syscall (freebsd-arm), const SYS_JAIL_SET ideal-int
-pkg syscall (freebsd-arm), const SYS_KENV ideal-int
-pkg syscall (freebsd-arm), const SYS_KEVENT ideal-int
-pkg syscall (freebsd-arm), const SYS_KILL ideal-int
-pkg syscall (freebsd-arm), const SYS_KLDFIND ideal-int
-pkg syscall (freebsd-arm), const SYS_KLDFIRSTMOD ideal-int
-pkg syscall (freebsd-arm), const SYS_KLDLOAD ideal-int
-pkg syscall (freebsd-arm), const SYS_KLDNEXT ideal-int
-pkg syscall (freebsd-arm), const SYS_KLDSTAT ideal-int
-pkg syscall (freebsd-arm), const SYS_KLDSYM ideal-int
-pkg syscall (freebsd-arm), const SYS_KLDUNLOAD ideal-int
-pkg syscall (freebsd-arm), const SYS_KLDUNLOADF ideal-int
-pkg syscall (freebsd-arm), const SYS_KQUEUE ideal-int
-pkg syscall (freebsd-arm), const SYS_KTIMER_CREATE ideal-int
-pkg syscall (freebsd-arm), const SYS_KTIMER_DELETE ideal-int
-pkg syscall (freebsd-arm), const SYS_KTIMER_GETOVERRUN ideal-int
-pkg syscall (freebsd-arm), const SYS_KTIMER_GETTIME ideal-int
-pkg syscall (freebsd-arm), const SYS_KTIMER_SETTIME ideal-int
-pkg syscall (freebsd-arm), const SYS_KTRACE ideal-int
-pkg syscall (freebsd-arm), const SYS_LCHFLAGS ideal-int
-pkg syscall (freebsd-arm), const SYS_LCHMOD ideal-int
-pkg syscall (freebsd-arm), const SYS_LCHOWN ideal-int
-pkg syscall (freebsd-arm), const SYS_LGETFH ideal-int
-pkg syscall (freebsd-arm), const SYS_LINK ideal-int
-pkg syscall (freebsd-arm), const SYS_LINKAT ideal-int
-pkg syscall (freebsd-arm), const SYS_LISTEN ideal-int
-pkg syscall (freebsd-arm), const SYS_LPATHCONF ideal-int
-pkg syscall (freebsd-arm), const SYS_LSEEK ideal-int
-pkg syscall (freebsd-arm), const SYS_LSTAT ideal-int
-pkg syscall (freebsd-arm), const SYS_LUTIMES ideal-int
-pkg syscall (freebsd-arm), const SYS_MAC_SYSCALL ideal-int
-pkg syscall (freebsd-arm), const SYS_MADVISE ideal-int
-pkg syscall (freebsd-arm), const SYS_MINCORE ideal-int
-pkg syscall (freebsd-arm), const SYS_MINHERIT ideal-int
-pkg syscall (freebsd-arm), const SYS_MKDIR ideal-int
-pkg syscall (freebsd-arm), const SYS_MKDIRAT ideal-int
-pkg syscall (freebsd-arm), const SYS_MKFIFO ideal-int
-pkg syscall (freebsd-arm), const SYS_MKFIFOAT ideal-int
-pkg syscall (freebsd-arm), const SYS_MKNOD ideal-int
-pkg syscall (freebsd-arm), const SYS_MKNODAT ideal-int
-pkg syscall (freebsd-arm), const SYS_MLOCK ideal-int
-pkg syscall (freebsd-arm), const SYS_MLOCKALL ideal-int
-pkg syscall (freebsd-arm), const SYS_MMAP ideal-int
-pkg syscall (freebsd-arm), const SYS_MODFIND ideal-int
-pkg syscall (freebsd-arm), const SYS_MODFNEXT ideal-int
-pkg syscall (freebsd-arm), const SYS_MODNEXT ideal-int
-pkg syscall (freebsd-arm), const SYS_MODSTAT ideal-int
-pkg syscall (freebsd-arm), const SYS_MOUNT ideal-int
-pkg syscall (freebsd-arm), const SYS_MPROTECT ideal-int
-pkg syscall (freebsd-arm), const SYS_MSYNC ideal-int
-pkg syscall (freebsd-arm), const SYS_MUNLOCK ideal-int
-pkg syscall (freebsd-arm), const SYS_MUNLOCKALL ideal-int
-pkg syscall (freebsd-arm), const SYS_MUNMAP ideal-int
-pkg syscall (freebsd-arm), const SYS_NANOSLEEP ideal-int
-pkg syscall (freebsd-arm), const SYS_NFSTAT ideal-int
-pkg syscall (freebsd-arm), const SYS_NLSTAT ideal-int
-pkg syscall (freebsd-arm), const SYS_NMOUNT ideal-int
-pkg syscall (freebsd-arm), const SYS_NSTAT ideal-int
-pkg syscall (freebsd-arm), const SYS_NTP_ADJTIME ideal-int
-pkg syscall (freebsd-arm), const SYS_NTP_GETTIME ideal-int
-pkg syscall (freebsd-arm), const SYS_OBREAK ideal-int
-pkg syscall (freebsd-arm), const SYS_OPEN ideal-int
-pkg syscall (freebsd-arm), const SYS_OPENAT ideal-int
-pkg syscall (freebsd-arm), const SYS_OPENBSD_POLL ideal-int
-pkg syscall (freebsd-arm), const SYS_OVADVISE ideal-int
-pkg syscall (freebsd-arm), const SYS_PATHCONF ideal-int
-pkg syscall (freebsd-arm), const SYS_PDFORK ideal-int
-pkg syscall (freebsd-arm), const SYS_PDGETPID ideal-int
-pkg syscall (freebsd-arm), const SYS_PDKILL ideal-int
-pkg syscall (freebsd-arm), const SYS_PIPE ideal-int
-pkg syscall (freebsd-arm), const SYS_POLL ideal-int
-pkg syscall (freebsd-arm), const SYS_POSIX_FADVISE ideal-int
-pkg syscall (freebsd-arm), const SYS_POSIX_FALLOCATE ideal-int
-pkg syscall (freebsd-arm), const SYS_POSIX_OPENPT ideal-int
-pkg syscall (freebsd-arm), const SYS_PREAD ideal-int
-pkg syscall (freebsd-arm), const SYS_PREADV ideal-int
-pkg syscall (freebsd-arm), const SYS_PROFIL ideal-int
-pkg syscall (freebsd-arm), const SYS_PSELECT ideal-int
-pkg syscall (freebsd-arm), const SYS_PTRACE ideal-int
-pkg syscall (freebsd-arm), const SYS_PWRITE ideal-int
-pkg syscall (freebsd-arm), const SYS_PWRITEV ideal-int
-pkg syscall (freebsd-arm), const SYS_QUOTACTL ideal-int
-pkg syscall (freebsd-arm), const SYS_RCTL_ADD_RULE ideal-int
-pkg syscall (freebsd-arm), const SYS_RCTL_GET_LIMITS ideal-int
-pkg syscall (freebsd-arm), const SYS_RCTL_GET_RACCT ideal-int
-pkg syscall (freebsd-arm), const SYS_RCTL_GET_RULES ideal-int
-pkg syscall (freebsd-arm), const SYS_RCTL_REMOVE_RULE ideal-int
-pkg syscall (freebsd-arm), const SYS_READ ideal-int
-pkg syscall (freebsd-arm), const SYS_READLINK ideal-int
-pkg syscall (freebsd-arm), const SYS_READLINKAT ideal-int
-pkg syscall (freebsd-arm), const SYS_READV ideal-int
-pkg syscall (freebsd-arm), const SYS_REBOOT ideal-int
-pkg syscall (freebsd-arm), const SYS_RECVFROM ideal-int
-pkg syscall (freebsd-arm), const SYS_RECVMSG ideal-int
-pkg syscall (freebsd-arm), const SYS_RENAME ideal-int
-pkg syscall (freebsd-arm), const SYS_RENAMEAT ideal-int
-pkg syscall (freebsd-arm), const SYS_REVOKE ideal-int
-pkg syscall (freebsd-arm), const SYS_RFORK ideal-int
-pkg syscall (freebsd-arm), const SYS_RMDIR ideal-int
-pkg syscall (freebsd-arm), const SYS_RTPRIO ideal-int
-pkg syscall (freebsd-arm), const SYS_RTPRIO_THREAD ideal-int
-pkg syscall (freebsd-arm), const SYS_SBRK ideal-int
-pkg syscall (freebsd-arm), const SYS_SCHED_GETPARAM ideal-int
-pkg syscall (freebsd-arm), const SYS_SCHED_GETSCHEDULER ideal-int
-pkg syscall (freebsd-arm), const SYS_SCHED_GET_PRIORITY_MAX ideal-int
-pkg syscall (freebsd-arm), const SYS_SCHED_GET_PRIORITY_MIN ideal-int
-pkg syscall (freebsd-arm), const SYS_SCHED_RR_GET_INTERVAL ideal-int
-pkg syscall (freebsd-arm), const SYS_SCHED_SETPARAM ideal-int
-pkg syscall (freebsd-arm), const SYS_SCHED_SETSCHEDULER ideal-int
-pkg syscall (freebsd-arm), const SYS_SCHED_YIELD ideal-int
-pkg syscall (freebsd-arm), const SYS_SCTP_GENERIC_RECVMSG ideal-int
-pkg syscall (freebsd-arm), const SYS_SCTP_GENERIC_SENDMSG ideal-int
-pkg syscall (freebsd-arm), const SYS_SCTP_GENERIC_SENDMSG_IOV ideal-int
-pkg syscall (freebsd-arm), const SYS_SCTP_PEELOFF ideal-int
-pkg syscall (freebsd-arm), const SYS_SELECT ideal-int
-pkg syscall (freebsd-arm), const SYS_SENDFILE ideal-int
-pkg syscall (freebsd-arm), const SYS_SENDMSG ideal-int
-pkg syscall (freebsd-arm), const SYS_SENDTO ideal-int
-pkg syscall (freebsd-arm), const SYS_SETAUDIT ideal-int
-pkg syscall (freebsd-arm), const SYS_SETAUDIT_ADDR ideal-int
-pkg syscall (freebsd-arm), const SYS_SETAUID ideal-int
-pkg syscall (freebsd-arm), const SYS_SETCONTEXT ideal-int
-pkg syscall (freebsd-arm), const SYS_SETEGID ideal-int
-pkg syscall (freebsd-arm), const SYS_SETEUID ideal-int
-pkg syscall (freebsd-arm), const SYS_SETFIB ideal-int
-pkg syscall (freebsd-arm), const SYS_SETGID ideal-int
-pkg syscall (freebsd-arm), const SYS_SETGROUPS ideal-int
-pkg syscall (freebsd-arm), const SYS_SETITIMER ideal-int
-pkg syscall (freebsd-arm), const SYS_SETLOGIN ideal-int
-pkg syscall (freebsd-arm), const SYS_SETLOGINCLASS ideal-int
-pkg syscall (freebsd-arm), const SYS_SETPGID ideal-int
-pkg syscall (freebsd-arm), const SYS_SETPRIORITY ideal-int
-pkg syscall (freebsd-arm), const SYS_SETREGID ideal-int
-pkg syscall (freebsd-arm), const SYS_SETRESGID ideal-int
-pkg syscall (freebsd-arm), const SYS_SETRESUID ideal-int
-pkg syscall (freebsd-arm), const SYS_SETREUID ideal-int
-pkg syscall (freebsd-arm), const SYS_SETRLIMIT ideal-int
-pkg syscall (freebsd-arm), const SYS_SETSID ideal-int
-pkg syscall (freebsd-arm), const SYS_SETSOCKOPT ideal-int
-pkg syscall (freebsd-arm), const SYS_SETTIMEOFDAY ideal-int
-pkg syscall (freebsd-arm), const SYS_SETUID ideal-int
-pkg syscall (freebsd-arm), const SYS_SHM_OPEN ideal-int
-pkg syscall (freebsd-arm), const SYS_SHM_UNLINK ideal-int
-pkg syscall (freebsd-arm), const SYS_SHUTDOWN ideal-int
-pkg syscall (freebsd-arm), const SYS_SIGACTION ideal-int
-pkg syscall (freebsd-arm), const SYS_SIGALTSTACK ideal-int
-pkg syscall (freebsd-arm), const SYS_SIGPENDING ideal-int
-pkg syscall (freebsd-arm), const SYS_SIGPROCMASK ideal-int
-pkg syscall (freebsd-arm), const SYS_SIGQUEUE ideal-int
-pkg syscall (freebsd-arm), const SYS_SIGRETURN ideal-int
-pkg syscall (freebsd-arm), const SYS_SIGSUSPEND ideal-int
-pkg syscall (freebsd-arm), const SYS_SIGTIMEDWAIT ideal-int
-pkg syscall (freebsd-arm), const SYS_SIGWAIT ideal-int
-pkg syscall (freebsd-arm), const SYS_SIGWAITINFO ideal-int
-pkg syscall (freebsd-arm), const SYS_SOCKET ideal-int
-pkg syscall (freebsd-arm), const SYS_SOCKETPAIR ideal-int
-pkg syscall (freebsd-arm), const SYS_SSTK ideal-int
-pkg syscall (freebsd-arm), const SYS_STAT ideal-int
-pkg syscall (freebsd-arm), const SYS_STATFS ideal-int
-pkg syscall (freebsd-arm), const SYS_SWAPCONTEXT ideal-int
-pkg syscall (freebsd-arm), const SYS_SWAPOFF ideal-int
-pkg syscall (freebsd-arm), const SYS_SWAPON ideal-int
-pkg syscall (freebsd-arm), const SYS_SYMLINK ideal-int
-pkg syscall (freebsd-arm), const SYS_SYMLINKAT ideal-int
-pkg syscall (freebsd-arm), const SYS_SYNC ideal-int
-pkg syscall (freebsd-arm), const SYS_SYSARCH ideal-int
-pkg syscall (freebsd-arm), const SYS_THR_CREATE ideal-int
-pkg syscall (freebsd-arm), const SYS_THR_EXIT ideal-int
-pkg syscall (freebsd-arm), const SYS_THR_KILL ideal-int
-pkg syscall (freebsd-arm), const SYS_THR_KILL2 ideal-int
-pkg syscall (freebsd-arm), const SYS_THR_NEW ideal-int
-pkg syscall (freebsd-arm), const SYS_THR_SELF ideal-int
-pkg syscall (freebsd-arm), const SYS_THR_SET_NAME ideal-int
-pkg syscall (freebsd-arm), const SYS_THR_SUSPEND ideal-int
-pkg syscall (freebsd-arm), const SYS_THR_WAKE ideal-int
-pkg syscall (freebsd-arm), const SYS_TRUNCATE ideal-int
-pkg syscall (freebsd-arm), const SYS_UMASK ideal-int
-pkg syscall (freebsd-arm), const SYS_UNDELETE ideal-int
-pkg syscall (freebsd-arm), const SYS_UNLINK ideal-int
-pkg syscall (freebsd-arm), const SYS_UNLINKAT ideal-int
-pkg syscall (freebsd-arm), const SYS_UNMOUNT ideal-int
-pkg syscall (freebsd-arm), const SYS_UTIMES ideal-int
-pkg syscall (freebsd-arm), const SYS_UTRACE ideal-int
-pkg syscall (freebsd-arm), const SYS_UUIDGEN ideal-int
-pkg syscall (freebsd-arm), const SYS_VFORK ideal-int
-pkg syscall (freebsd-arm), const SYS_WAIT4 ideal-int
-pkg syscall (freebsd-arm), const SYS_WAIT6 ideal-int
-pkg syscall (freebsd-arm), const SYS_WRITE ideal-int
-pkg syscall (freebsd-arm), const SYS_WRITEV ideal-int
-pkg syscall (freebsd-arm), const SYS_YIELD ideal-int
-pkg syscall (freebsd-arm), const SYS__UMTX_LOCK ideal-int
-pkg syscall (freebsd-arm), const SYS__UMTX_OP ideal-int
-pkg syscall (freebsd-arm), const SYS__UMTX_UNLOCK ideal-int
-pkg syscall (freebsd-arm), const SYS___ACL_ACLCHECK_FD ideal-int
-pkg syscall (freebsd-arm), const SYS___ACL_ACLCHECK_FILE ideal-int
-pkg syscall (freebsd-arm), const SYS___ACL_ACLCHECK_LINK ideal-int
-pkg syscall (freebsd-arm), const SYS___ACL_DELETE_FD ideal-int
-pkg syscall (freebsd-arm), const SYS___ACL_DELETE_FILE ideal-int
-pkg syscall (freebsd-arm), const SYS___ACL_DELETE_LINK ideal-int
-pkg syscall (freebsd-arm), const SYS___ACL_GET_FD ideal-int
-pkg syscall (freebsd-arm), const SYS___ACL_GET_FILE ideal-int
-pkg syscall (freebsd-arm), const SYS___ACL_GET_LINK ideal-int
-pkg syscall (freebsd-arm), const SYS___ACL_SET_FD ideal-int
-pkg syscall (freebsd-arm), const SYS___ACL_SET_FILE ideal-int
-pkg syscall (freebsd-arm), const SYS___ACL_SET_LINK ideal-int
-pkg syscall (freebsd-arm), const SYS___GETCWD ideal-int
-pkg syscall (freebsd-arm), const SYS___MAC_EXECVE ideal-int
-pkg syscall (freebsd-arm), const SYS___MAC_GET_FD ideal-int
-pkg syscall (freebsd-arm), const SYS___MAC_GET_FILE ideal-int
-pkg syscall (freebsd-arm), const SYS___MAC_GET_LINK ideal-int
-pkg syscall (freebsd-arm), const SYS___MAC_GET_PID ideal-int
-pkg syscall (freebsd-arm), const SYS___MAC_GET_PROC ideal-int
-pkg syscall (freebsd-arm), const SYS___MAC_SET_FD ideal-int
-pkg syscall (freebsd-arm), const SYS___MAC_SET_FILE ideal-int
-pkg syscall (freebsd-arm), const SYS___MAC_SET_LINK ideal-int
-pkg syscall (freebsd-arm), const SYS___MAC_SET_PROC ideal-int
-pkg syscall (freebsd-arm), const SYS___SETUGID ideal-int
-pkg syscall (freebsd-arm), const SYS___SYSCTL ideal-int
-pkg syscall (freebsd-arm), const SizeofBpfHdr ideal-int
-pkg syscall (freebsd-arm), const SizeofBpfInsn ideal-int
-pkg syscall (freebsd-arm), const SizeofBpfProgram ideal-int
-pkg syscall (freebsd-arm), const SizeofBpfStat ideal-int
-pkg syscall (freebsd-arm), const SizeofBpfVersion ideal-int
-pkg syscall (freebsd-arm), const SizeofBpfZbuf ideal-int
-pkg syscall (freebsd-arm), const SizeofBpfZbufHeader ideal-int
-pkg syscall (freebsd-arm), const SizeofCmsghdr ideal-int
-pkg syscall (freebsd-arm), const SizeofICMPv6Filter = 32
-pkg syscall (freebsd-arm), const SizeofICMPv6Filter ideal-int
-pkg syscall (freebsd-arm), const SizeofIPMreq ideal-int
-pkg syscall (freebsd-arm), const SizeofIPMreqn ideal-int
-pkg syscall (freebsd-arm), const SizeofIPv6MTUInfo = 32
-pkg syscall (freebsd-arm), const SizeofIPv6MTUInfo ideal-int
-pkg syscall (freebsd-arm), const SizeofIPv6Mreq ideal-int
-pkg syscall (freebsd-arm), const SizeofIfAnnounceMsghdr ideal-int
-pkg syscall (freebsd-arm), const SizeofIfData ideal-int
-pkg syscall (freebsd-arm), const SizeofIfMsghdr ideal-int
-pkg syscall (freebsd-arm), const SizeofIfaMsghdr ideal-int
-pkg syscall (freebsd-arm), const SizeofIfmaMsghdr ideal-int
-pkg syscall (freebsd-arm), const SizeofInet6Pktinfo ideal-int
-pkg syscall (freebsd-arm), const SizeofLinger ideal-int
-pkg syscall (freebsd-arm), const SizeofMsghdr ideal-int
-pkg syscall (freebsd-arm), const SizeofRtMetrics ideal-int
-pkg syscall (freebsd-arm), const SizeofRtMsghdr ideal-int
-pkg syscall (freebsd-arm), const SizeofSockaddrAny ideal-int
-pkg syscall (freebsd-arm), const SizeofSockaddrDatalink ideal-int
-pkg syscall (freebsd-arm), const SizeofSockaddrInet4 ideal-int
-pkg syscall (freebsd-arm), const SizeofSockaddrInet6 ideal-int
-pkg syscall (freebsd-arm), const SizeofSockaddrUnix ideal-int
-pkg syscall (freebsd-arm), const TCIFLUSH ideal-int
-pkg syscall (freebsd-arm), const TCIOFLUSH ideal-int
-pkg syscall (freebsd-arm), const TCOFLUSH ideal-int
-pkg syscall (freebsd-arm), const TCP_CA_NAME_MAX ideal-int
-pkg syscall (freebsd-arm), const TCP_CONGESTION ideal-int
-pkg syscall (freebsd-arm), const TCP_INFO ideal-int
-pkg syscall (freebsd-arm), const TCP_KEEPCNT ideal-int
-pkg syscall (freebsd-arm), const TCP_KEEPIDLE ideal-int
-pkg syscall (freebsd-arm), const TCP_KEEPINIT ideal-int
-pkg syscall (freebsd-arm), const TCP_KEEPINTVL ideal-int
-pkg syscall (freebsd-arm), const TCP_MAXBURST ideal-int
-pkg syscall (freebsd-arm), const TCP_MAXHLEN ideal-int
-pkg syscall (freebsd-arm), const TCP_MAXOLEN ideal-int
-pkg syscall (freebsd-arm), const TCP_MAXSEG ideal-int
-pkg syscall (freebsd-arm), const TCP_MAXWIN ideal-int
-pkg syscall (freebsd-arm), const TCP_MAX_SACK ideal-int
-pkg syscall (freebsd-arm), const TCP_MAX_WINSHIFT ideal-int
-pkg syscall (freebsd-arm), const TCP_MD5SIG ideal-int
-pkg syscall (freebsd-arm), const TCP_MINMSS ideal-int
-pkg syscall (freebsd-arm), const TCP_MSS ideal-int
-pkg syscall (freebsd-arm), const TCP_NOOPT ideal-int
-pkg syscall (freebsd-arm), const TCP_NOPUSH ideal-int
-pkg syscall (freebsd-arm), const TCSAFLUSH ideal-int
-pkg syscall (freebsd-arm), const TIOCCBRK ideal-int
-pkg syscall (freebsd-arm), const TIOCCDTR ideal-int
-pkg syscall (freebsd-arm), const TIOCCONS ideal-int
-pkg syscall (freebsd-arm), const TIOCDRAIN ideal-int
-pkg syscall (freebsd-arm), const TIOCEXCL ideal-int
-pkg syscall (freebsd-arm), const TIOCEXT ideal-int
-pkg syscall (freebsd-arm), const TIOCFLUSH ideal-int
-pkg syscall (freebsd-arm), const TIOCGDRAINWAIT ideal-int
-pkg syscall (freebsd-arm), const TIOCGETA ideal-int
-pkg syscall (freebsd-arm), const TIOCGETD ideal-int
-pkg syscall (freebsd-arm), const TIOCGPGRP ideal-int
-pkg syscall (freebsd-arm), const TIOCGPTN ideal-int
-pkg syscall (freebsd-arm), const TIOCGSID ideal-int
-pkg syscall (freebsd-arm), const TIOCGWINSZ ideal-int
-pkg syscall (freebsd-arm), const TIOCMBIC ideal-int
-pkg syscall (freebsd-arm), const TIOCMBIS ideal-int
-pkg syscall (freebsd-arm), const TIOCMGDTRWAIT ideal-int
-pkg syscall (freebsd-arm), const TIOCMGET ideal-int
-pkg syscall (freebsd-arm), const TIOCMSDTRWAIT ideal-int
-pkg syscall (freebsd-arm), const TIOCMSET ideal-int
-pkg syscall (freebsd-arm), const TIOCM_CAR ideal-int
-pkg syscall (freebsd-arm), const TIOCM_CD ideal-int
-pkg syscall (freebsd-arm), const TIOCM_CTS ideal-int
-pkg syscall (freebsd-arm), const TIOCM_DCD ideal-int
-pkg syscall (freebsd-arm), const TIOCM_DSR ideal-int
-pkg syscall (freebsd-arm), const TIOCM_DTR ideal-int
-pkg syscall (freebsd-arm), const TIOCM_LE ideal-int
-pkg syscall (freebsd-arm), const TIOCM_RI ideal-int
-pkg syscall (freebsd-arm), const TIOCM_RNG ideal-int
-pkg syscall (freebsd-arm), const TIOCM_RTS ideal-int
-pkg syscall (freebsd-arm), const TIOCM_SR ideal-int
-pkg syscall (freebsd-arm), const TIOCM_ST ideal-int
-pkg syscall (freebsd-arm), const TIOCNOTTY ideal-int
-pkg syscall (freebsd-arm), const TIOCNXCL ideal-int
-pkg syscall (freebsd-arm), const TIOCOUTQ ideal-int
-pkg syscall (freebsd-arm), const TIOCPKT ideal-int
-pkg syscall (freebsd-arm), const TIOCPKT_DATA ideal-int
-pkg syscall (freebsd-arm), const TIOCPKT_DOSTOP ideal-int
-pkg syscall (freebsd-arm), const TIOCPKT_FLUSHREAD ideal-int
-pkg syscall (freebsd-arm), const TIOCPKT_FLUSHWRITE ideal-int
-pkg syscall (freebsd-arm), const TIOCPKT_IOCTL ideal-int
-pkg syscall (freebsd-arm), const TIOCPKT_NOSTOP ideal-int
-pkg syscall (freebsd-arm), const TIOCPKT_START ideal-int
-pkg syscall (freebsd-arm), const TIOCPKT_STOP ideal-int
-pkg syscall (freebsd-arm), const TIOCPTMASTER ideal-int
-pkg syscall (freebsd-arm), const TIOCSBRK ideal-int
-pkg syscall (freebsd-arm), const TIOCSCTTY ideal-int
-pkg syscall (freebsd-arm), const TIOCSDRAINWAIT ideal-int
-pkg syscall (freebsd-arm), const TIOCSDTR ideal-int
-pkg syscall (freebsd-arm), const TIOCSETA ideal-int
-pkg syscall (freebsd-arm), const TIOCSETAF ideal-int
-pkg syscall (freebsd-arm), const TIOCSETAW ideal-int
-pkg syscall (freebsd-arm), const TIOCSETD ideal-int
-pkg syscall (freebsd-arm), const TIOCSIG ideal-int
-pkg syscall (freebsd-arm), const TIOCSPGRP ideal-int
-pkg syscall (freebsd-arm), const TIOCSTART ideal-int
-pkg syscall (freebsd-arm), const TIOCSTAT ideal-int
-pkg syscall (freebsd-arm), const TIOCSTI ideal-int
-pkg syscall (freebsd-arm), const TIOCSTOP ideal-int
-pkg syscall (freebsd-arm), const TIOCSWINSZ ideal-int
-pkg syscall (freebsd-arm), const TIOCTIMESTAMP ideal-int
-pkg syscall (freebsd-arm), const TIOCUCNTL ideal-int
-pkg syscall (freebsd-arm), const TOSTOP ideal-int
-pkg syscall (freebsd-arm), const VDISCARD ideal-int
-pkg syscall (freebsd-arm), const VDSUSP ideal-int
-pkg syscall (freebsd-arm), const VEOF ideal-int
-pkg syscall (freebsd-arm), const VEOL ideal-int
-pkg syscall (freebsd-arm), const VEOL2 ideal-int
-pkg syscall (freebsd-arm), const VERASE ideal-int
-pkg syscall (freebsd-arm), const VERASE2 ideal-int
-pkg syscall (freebsd-arm), const VINTR ideal-int
-pkg syscall (freebsd-arm), const VKILL ideal-int
-pkg syscall (freebsd-arm), const VLNEXT ideal-int
-pkg syscall (freebsd-arm), const VMIN ideal-int
-pkg syscall (freebsd-arm), const VQUIT ideal-int
-pkg syscall (freebsd-arm), const VREPRINT ideal-int
-pkg syscall (freebsd-arm), const VSTART ideal-int
-pkg syscall (freebsd-arm), const VSTATUS ideal-int
-pkg syscall (freebsd-arm), const VSTOP ideal-int
-pkg syscall (freebsd-arm), const VSUSP ideal-int
-pkg syscall (freebsd-arm), const VTIME ideal-int
-pkg syscall (freebsd-arm), const VWERASE ideal-int
-pkg syscall (freebsd-arm), const WCONTINUED ideal-int
-pkg syscall (freebsd-arm), const WCOREFLAG ideal-int
-pkg syscall (freebsd-arm), const WEXITED ideal-int
-pkg syscall (freebsd-arm), const WLINUXCLONE ideal-int
-pkg syscall (freebsd-arm), const WNOHANG ideal-int
-pkg syscall (freebsd-arm), const WNOWAIT ideal-int
-pkg syscall (freebsd-arm), const WSTOPPED ideal-int
-pkg syscall (freebsd-arm), const WTRAPPED ideal-int
-pkg syscall (freebsd-arm), const WUNTRACED ideal-int
-pkg syscall (freebsd-arm), func Accept(int) (int, Sockaddr, error)
-pkg syscall (freebsd-arm), func Access(string, uint32) error
-pkg syscall (freebsd-arm), func Adjtime(*Timeval, *Timeval) error
-pkg syscall (freebsd-arm), func Bind(int, Sockaddr) error
-pkg syscall (freebsd-arm), func BpfBuflen(int) (int, error)
-pkg syscall (freebsd-arm), func BpfDatalink(int) (int, error)
-pkg syscall (freebsd-arm), func BpfHeadercmpl(int) (int, error)
-pkg syscall (freebsd-arm), func BpfInterface(int, string) (string, error)
-pkg syscall (freebsd-arm), func BpfJump(int, int, int, int) *BpfInsn
-pkg syscall (freebsd-arm), func BpfStats(int) (*BpfStat, error)
-pkg syscall (freebsd-arm), func BpfStmt(int, int) *BpfInsn
-pkg syscall (freebsd-arm), func BpfTimeout(int) (*Timeval, error)
-pkg syscall (freebsd-arm), func CheckBpfVersion(int) error
-pkg syscall (freebsd-arm), func Chflags(string, int) error
-pkg syscall (freebsd-arm), func Chroot(string) error
-pkg syscall (freebsd-arm), func Close(int) error
-pkg syscall (freebsd-arm), func CloseOnExec(int)
-pkg syscall (freebsd-arm), func CmsgLen(int) int
-pkg syscall (freebsd-arm), func CmsgSpace(int) int
-pkg syscall (freebsd-arm), func Connect(int, Sockaddr) error
-pkg syscall (freebsd-arm), func Dup(int) (int, error)
-pkg syscall (freebsd-arm), func Dup2(int, int) error
-pkg syscall (freebsd-arm), func Fchdir(int) error
-pkg syscall (freebsd-arm), func Fchflags(string, int) error
-pkg syscall (freebsd-arm), func Fchmod(int, uint32) error
-pkg syscall (freebsd-arm), func Fchown(int, int, int) error
-pkg syscall (freebsd-arm), func Flock(int, int) error
-pkg syscall (freebsd-arm), func FlushBpf(int) error
-pkg syscall (freebsd-arm), func ForkExec(string, []string, *ProcAttr) (int, error)
-pkg syscall (freebsd-arm), func Fpathconf(int, int) (int, error)
-pkg syscall (freebsd-arm), func Fstat(int, *Stat_t) error
-pkg syscall (freebsd-arm), func Fstatfs(int, *Statfs_t) error
-pkg syscall (freebsd-arm), func Fsync(int) error
-pkg syscall (freebsd-arm), func Ftruncate(int, int64) error
-pkg syscall (freebsd-arm), func Futimes(int, []Timeval) error
-pkg syscall (freebsd-arm), func Getdirentries(int, []uint8, *uintptr) (int, error)
-pkg syscall (freebsd-arm), func Getdtablesize() int
-pkg syscall (freebsd-arm), func Getfsstat([]Statfs_t, int) (int, error)
-pkg syscall (freebsd-arm), func Getpeername(int) (Sockaddr, error)
-pkg syscall (freebsd-arm), func Getpgid(int) (int, error)
-pkg syscall (freebsd-arm), func Getpgrp() int
-pkg syscall (freebsd-arm), func Getpriority(int, int) (int, error)
-pkg syscall (freebsd-arm), func Getrlimit(int, *Rlimit) error
-pkg syscall (freebsd-arm), func Getrusage(int, *Rusage) error
-pkg syscall (freebsd-arm), func Getsid(int) (int, error)
-pkg syscall (freebsd-arm), func Getsockname(int) (Sockaddr, error)
-pkg syscall (freebsd-arm), func GetsockoptByte(int, int, int) (uint8, error)
-pkg syscall (freebsd-arm), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
-pkg syscall (freebsd-arm), func GetsockoptIPMreq(int, int, int) (*IPMreq, error)
-pkg syscall (freebsd-arm), func GetsockoptIPMreqn(int, int, int) (*IPMreqn, error)
-pkg syscall (freebsd-arm), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
-pkg syscall (freebsd-arm), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error)
-pkg syscall (freebsd-arm), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error)
-pkg syscall (freebsd-arm), func GetsockoptInt(int, int, int) (int, error)
-pkg syscall (freebsd-arm), func Issetugid() bool
-pkg syscall (freebsd-arm), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error)
-pkg syscall (freebsd-arm), func Kill(int, Signal) error
-pkg syscall (freebsd-arm), func Kqueue() (int, error)
-pkg syscall (freebsd-arm), func Listen(int, int) error
-pkg syscall (freebsd-arm), func Lstat(string, *Stat_t) error
-pkg syscall (freebsd-arm), func Mkfifo(string, uint32) error
-pkg syscall (freebsd-arm), func Mknod(string, uint32, int) error
-pkg syscall (freebsd-arm), func Mmap(int, int64, int, int, int) ([]uint8, error)
-pkg syscall (freebsd-arm), func Munmap([]uint8) error
-pkg syscall (freebsd-arm), func Nanosleep(*Timespec, *Timespec) error
-pkg syscall (freebsd-arm), func Open(string, int, uint32) (int, error)
-pkg syscall (freebsd-arm), func ParseDirent([]uint8, int, []string) (int, int, []string)
-pkg syscall (freebsd-arm), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error)
-pkg syscall (freebsd-arm), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error)
-pkg syscall (freebsd-arm), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error)
-pkg syscall (freebsd-arm), func ParseUnixRights(*SocketControlMessage) ([]int, error)
-pkg syscall (freebsd-arm), func Pathconf(string, int) (int, error)
-pkg syscall (freebsd-arm), func Pipe([]int) error
-pkg syscall (freebsd-arm), func Pread(int, []uint8, int64) (int, error)
-pkg syscall (freebsd-arm), func Pwrite(int, []uint8, int64) (int, error)
-pkg syscall (freebsd-arm), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (freebsd-arm), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (freebsd-arm), func Read(int, []uint8) (int, error)
-pkg syscall (freebsd-arm), func ReadDirent(int, []uint8) (int, error)
-pkg syscall (freebsd-arm), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
-pkg syscall (freebsd-arm), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
-pkg syscall (freebsd-arm), func Revoke(string) error
-pkg syscall (freebsd-arm), func RouteRIB(int, int) ([]uint8, error)
-pkg syscall (freebsd-arm), func Seek(int, int64, int) (int64, error)
-pkg syscall (freebsd-arm), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error
-pkg syscall (freebsd-arm), func Sendfile(int, int, *int64, int) (int, error)
-pkg syscall (freebsd-arm), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
-pkg syscall (freebsd-arm), func Sendto(int, []uint8, int, Sockaddr) error
-pkg syscall (freebsd-arm), func SetBpf(int, []BpfInsn) error
-pkg syscall (freebsd-arm), func SetBpfBuflen(int, int) (int, error)
-pkg syscall (freebsd-arm), func SetBpfDatalink(int, int) (int, error)
-pkg syscall (freebsd-arm), func SetBpfHeadercmpl(int, int) error
-pkg syscall (freebsd-arm), func SetBpfImmediate(int, int) error
-pkg syscall (freebsd-arm), func SetBpfInterface(int, string) error
-pkg syscall (freebsd-arm), func SetBpfPromisc(int, int) error
-pkg syscall (freebsd-arm), func SetBpfTimeout(int, *Timeval) error
-pkg syscall (freebsd-arm), func SetKevent(*Kevent_t, int, int, int)
-pkg syscall (freebsd-arm), func SetNonblock(int, bool) error
-pkg syscall (freebsd-arm), func Setegid(int) error
-pkg syscall (freebsd-arm), func Seteuid(int) error
-pkg syscall (freebsd-arm), func Setgid(int) error
-pkg syscall (freebsd-arm), func Setgroups([]int) error
-pkg syscall (freebsd-arm), func Setlogin(string) error
-pkg syscall (freebsd-arm), func Setpgid(int, int) error
-pkg syscall (freebsd-arm), func Setpriority(int, int, int) error
-pkg syscall (freebsd-arm), func Setregid(int, int) error
-pkg syscall (freebsd-arm), func Setreuid(int, int) error
-pkg syscall (freebsd-arm), func Setrlimit(int, *Rlimit) error
-pkg syscall (freebsd-arm), func Setsid() (int, error)
-pkg syscall (freebsd-arm), func SetsockoptByte(int, int, int, uint8) error
-pkg syscall (freebsd-arm), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
-pkg syscall (freebsd-arm), func SetsockoptIPMreq(int, int, int, *IPMreq) error
-pkg syscall (freebsd-arm), func SetsockoptIPMreqn(int, int, int, *IPMreqn) error
-pkg syscall (freebsd-arm), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error
-pkg syscall (freebsd-arm), func SetsockoptInet4Addr(int, int, int, [4]uint8) error
-pkg syscall (freebsd-arm), func SetsockoptInt(int, int, int, int) error
-pkg syscall (freebsd-arm), func SetsockoptLinger(int, int, int, *Linger) error
-pkg syscall (freebsd-arm), func SetsockoptString(int, int, int, string) error
-pkg syscall (freebsd-arm), func SetsockoptTimeval(int, int, int, *Timeval) error
-pkg syscall (freebsd-arm), func Settimeofday(*Timeval) error
-pkg syscall (freebsd-arm), func Setuid(int) error
-pkg syscall (freebsd-arm), func Shutdown(int, int) error
-pkg syscall (freebsd-arm), func SlicePtrFromStrings([]string) ([]*uint8, error)
-pkg syscall (freebsd-arm), func Socket(int, int, int) (int, error)
-pkg syscall (freebsd-arm), func Socketpair(int, int, int) ([2]int, error)
-pkg syscall (freebsd-arm), func Stat(string, *Stat_t) error
-pkg syscall (freebsd-arm), func Statfs(string, *Statfs_t) error
-pkg syscall (freebsd-arm), func StringSlicePtr([]string) []*uint8
-pkg syscall (freebsd-arm), func Sync() error
-pkg syscall (freebsd-arm), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (freebsd-arm), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (freebsd-arm), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (freebsd-arm), func Sysctl(string) (string, error)
-pkg syscall (freebsd-arm), func SysctlUint32(string) (uint32, error)
-pkg syscall (freebsd-arm), func TimevalToNsec(Timeval) int64
-pkg syscall (freebsd-arm), func Truncate(string, int64) error
-pkg syscall (freebsd-arm), func Umask(int) int
-pkg syscall (freebsd-arm), func Undelete(string) error
-pkg syscall (freebsd-arm), func UnixRights(...int) []uint8
-pkg syscall (freebsd-arm), func Unmount(string, int) error
-pkg syscall (freebsd-arm), func Wait4(int, *WaitStatus, int, *Rusage) (int, error)
-pkg syscall (freebsd-arm), func Write(int, []uint8) (int, error)
-pkg syscall (freebsd-arm), method (*Cmsghdr) SetLen(int)
-pkg syscall (freebsd-arm), method (*Iovec) SetLen(int)
-pkg syscall (freebsd-arm), method (*Msghdr) SetControllen(int)
-pkg syscall (freebsd-arm), type BpfHdr struct
-pkg syscall (freebsd-arm), type BpfHdr struct, Caplen uint32
-pkg syscall (freebsd-arm), type BpfHdr struct, Datalen uint32
-pkg syscall (freebsd-arm), type BpfHdr struct, Hdrlen uint16
-pkg syscall (freebsd-arm), type BpfHdr struct, Pad_cgo_0 [2]uint8
-pkg syscall (freebsd-arm), type BpfHdr struct, Tstamp Timeval
-pkg syscall (freebsd-arm), type BpfInsn struct
-pkg syscall (freebsd-arm), type BpfInsn struct, Code uint16
-pkg syscall (freebsd-arm), type BpfInsn struct, Jf uint8
-pkg syscall (freebsd-arm), type BpfInsn struct, Jt uint8
-pkg syscall (freebsd-arm), type BpfInsn struct, K uint32
-pkg syscall (freebsd-arm), type BpfProgram struct
-pkg syscall (freebsd-arm), type BpfProgram struct, Insns *BpfInsn
-pkg syscall (freebsd-arm), type BpfProgram struct, Len uint32
-pkg syscall (freebsd-arm), type BpfStat struct
-pkg syscall (freebsd-arm), type BpfStat struct, Drop uint32
-pkg syscall (freebsd-arm), type BpfStat struct, Recv uint32
-pkg syscall (freebsd-arm), type BpfVersion struct
-pkg syscall (freebsd-arm), type BpfVersion struct, Major uint16
-pkg syscall (freebsd-arm), type BpfVersion struct, Minor uint16
-pkg syscall (freebsd-arm), type BpfZbuf struct
-pkg syscall (freebsd-arm), type BpfZbuf struct, Bufa *uint8
-pkg syscall (freebsd-arm), type BpfZbuf struct, Bufb *uint8
-pkg syscall (freebsd-arm), type BpfZbuf struct, Buflen uint32
-pkg syscall (freebsd-arm), type BpfZbufHeader struct
-pkg syscall (freebsd-arm), type BpfZbufHeader struct, Kernel_gen uint32
-pkg syscall (freebsd-arm), type BpfZbufHeader struct, Kernel_len uint32
-pkg syscall (freebsd-arm), type BpfZbufHeader struct, User_gen uint32
-pkg syscall (freebsd-arm), type BpfZbufHeader struct, X_bzh_pad [5]uint32
-pkg syscall (freebsd-arm), type Cmsghdr struct
-pkg syscall (freebsd-arm), type Cmsghdr struct, Len uint32
-pkg syscall (freebsd-arm), type Cmsghdr struct, Level int32
-pkg syscall (freebsd-arm), type Cmsghdr struct, Type int32
-pkg syscall (freebsd-arm), type Credential struct
-pkg syscall (freebsd-arm), type Credential struct, Gid uint32
-pkg syscall (freebsd-arm), type Credential struct, Groups []uint32
-pkg syscall (freebsd-arm), type Credential struct, Uid uint32
-pkg syscall (freebsd-arm), type Dirent struct
-pkg syscall (freebsd-arm), type Dirent struct, Fileno uint32
-pkg syscall (freebsd-arm), type Dirent struct, Name [256]int8
-pkg syscall (freebsd-arm), type Dirent struct, Namlen uint8
-pkg syscall (freebsd-arm), type Dirent struct, Reclen uint16
-pkg syscall (freebsd-arm), type Dirent struct, Type uint8
-pkg syscall (freebsd-arm), type FdSet struct
-pkg syscall (freebsd-arm), type FdSet struct, X__fds_bits [32]uint32
-pkg syscall (freebsd-arm), type Flock_t struct
-pkg syscall (freebsd-arm), type Flock_t struct, Len int64
-pkg syscall (freebsd-arm), type Flock_t struct, Pid int32
-pkg syscall (freebsd-arm), type Flock_t struct, Start int64
-pkg syscall (freebsd-arm), type Flock_t struct, Sysid int32
-pkg syscall (freebsd-arm), type Flock_t struct, Type int16
-pkg syscall (freebsd-arm), type Flock_t struct, Whence int16
-pkg syscall (freebsd-arm), type Fsid struct
-pkg syscall (freebsd-arm), type Fsid struct, Val [2]int32
-pkg syscall (freebsd-arm), type ICMPv6Filter struct
-pkg syscall (freebsd-arm), type ICMPv6Filter struct, Filt [8]uint32
-pkg syscall (freebsd-arm), type IPMreqn struct
-pkg syscall (freebsd-arm), type IPMreqn struct, Address [4]uint8
-pkg syscall (freebsd-arm), type IPMreqn struct, Ifindex int32
-pkg syscall (freebsd-arm), type IPMreqn struct, Multiaddr [4]uint8
-pkg syscall (freebsd-arm), type IPv6MTUInfo struct
-pkg syscall (freebsd-arm), type IPv6MTUInfo struct, Addr RawSockaddrInet6
-pkg syscall (freebsd-arm), type IPv6MTUInfo struct, Mtu uint32
-pkg syscall (freebsd-arm), type IfAnnounceMsghdr struct
-pkg syscall (freebsd-arm), type IfAnnounceMsghdr struct, Index uint16
-pkg syscall (freebsd-arm), type IfAnnounceMsghdr struct, Msglen uint16
-pkg syscall (freebsd-arm), type IfAnnounceMsghdr struct, Name [16]int8
-pkg syscall (freebsd-arm), type IfAnnounceMsghdr struct, Type uint8
-pkg syscall (freebsd-arm), type IfAnnounceMsghdr struct, Version uint8
-pkg syscall (freebsd-arm), type IfAnnounceMsghdr struct, What uint16
-pkg syscall (freebsd-arm), type IfData struct
-pkg syscall (freebsd-arm), type IfData struct, Addrlen uint8
-pkg syscall (freebsd-arm), type IfData struct, Baudrate uint32
-pkg syscall (freebsd-arm), type IfData struct, Collisions uint32
-pkg syscall (freebsd-arm), type IfData struct, Datalen uint8
-pkg syscall (freebsd-arm), type IfData struct, Epoch int64
-pkg syscall (freebsd-arm), type IfData struct, Hdrlen uint8
-pkg syscall (freebsd-arm), type IfData struct, Hwassist uint32
-pkg syscall (freebsd-arm), type IfData struct, Ibytes uint32
-pkg syscall (freebsd-arm), type IfData struct, Ierrors uint32
-pkg syscall (freebsd-arm), type IfData struct, Imcasts uint32
-pkg syscall (freebsd-arm), type IfData struct, Ipackets uint32
-pkg syscall (freebsd-arm), type IfData struct, Iqdrops uint32
-pkg syscall (freebsd-arm), type IfData struct, Lastchange Timeval
-pkg syscall (freebsd-arm), type IfData struct, Link_state uint8
-pkg syscall (freebsd-arm), type IfData struct, Metric uint32
-pkg syscall (freebsd-arm), type IfData struct, Mtu uint32
-pkg syscall (freebsd-arm), type IfData struct, Noproto uint32
-pkg syscall (freebsd-arm), type IfData struct, Obytes uint32
-pkg syscall (freebsd-arm), type IfData struct, Oerrors uint32
-pkg syscall (freebsd-arm), type IfData struct, Omcasts uint32
-pkg syscall (freebsd-arm), type IfData struct, Opackets uint32
-pkg syscall (freebsd-arm), type IfData struct, Physical uint8
-pkg syscall (freebsd-arm), type IfData struct, Spare_char1 uint8
-pkg syscall (freebsd-arm), type IfData struct, Spare_char2 uint8
-pkg syscall (freebsd-arm), type IfData struct, Type uint8
-pkg syscall (freebsd-arm), type IfMsghdr struct
-pkg syscall (freebsd-arm), type IfMsghdr struct, Addrs int32
-pkg syscall (freebsd-arm), type IfMsghdr struct, Data IfData
-pkg syscall (freebsd-arm), type IfMsghdr struct, Flags int32
-pkg syscall (freebsd-arm), type IfMsghdr struct, Index uint16
-pkg syscall (freebsd-arm), type IfMsghdr struct, Msglen uint16
-pkg syscall (freebsd-arm), type IfMsghdr struct, Pad_cgo_0 [2]uint8
-pkg syscall (freebsd-arm), type IfMsghdr struct, Type uint8
-pkg syscall (freebsd-arm), type IfMsghdr struct, Version uint8
-pkg syscall (freebsd-arm), type IfaMsghdr struct
-pkg syscall (freebsd-arm), type IfaMsghdr struct, Addrs int32
-pkg syscall (freebsd-arm), type IfaMsghdr struct, Flags int32
-pkg syscall (freebsd-arm), type IfaMsghdr struct, Index uint16
-pkg syscall (freebsd-arm), type IfaMsghdr struct, Metric int32
-pkg syscall (freebsd-arm), type IfaMsghdr struct, Msglen uint16
-pkg syscall (freebsd-arm), type IfaMsghdr struct, Pad_cgo_0 [2]uint8
-pkg syscall (freebsd-arm), type IfaMsghdr struct, Type uint8
-pkg syscall (freebsd-arm), type IfaMsghdr struct, Version uint8
-pkg syscall (freebsd-arm), type IfmaMsghdr struct
-pkg syscall (freebsd-arm), type IfmaMsghdr struct, Addrs int32
-pkg syscall (freebsd-arm), type IfmaMsghdr struct, Flags int32
-pkg syscall (freebsd-arm), type IfmaMsghdr struct, Index uint16
-pkg syscall (freebsd-arm), type IfmaMsghdr struct, Msglen uint16
-pkg syscall (freebsd-arm), type IfmaMsghdr struct, Pad_cgo_0 [2]uint8
-pkg syscall (freebsd-arm), type IfmaMsghdr struct, Type uint8
-pkg syscall (freebsd-arm), type IfmaMsghdr struct, Version uint8
-pkg syscall (freebsd-arm), type Inet6Pktinfo struct
-pkg syscall (freebsd-arm), type Inet6Pktinfo struct, Addr [16]uint8
-pkg syscall (freebsd-arm), type Inet6Pktinfo struct, Ifindex uint32
-pkg syscall (freebsd-arm), type InterfaceAddrMessage struct
-pkg syscall (freebsd-arm), type InterfaceAddrMessage struct, Data []uint8
-pkg syscall (freebsd-arm), type InterfaceAddrMessage struct, Header IfaMsghdr
-pkg syscall (freebsd-arm), type InterfaceAnnounceMessage struct
-pkg syscall (freebsd-arm), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr
-pkg syscall (freebsd-arm), type InterfaceMessage struct
-pkg syscall (freebsd-arm), type InterfaceMessage struct, Data []uint8
-pkg syscall (freebsd-arm), type InterfaceMessage struct, Header IfMsghdr
-pkg syscall (freebsd-arm), type InterfaceMulticastAddrMessage struct
-pkg syscall (freebsd-arm), type InterfaceMulticastAddrMessage struct, Data []uint8
-pkg syscall (freebsd-arm), type InterfaceMulticastAddrMessage struct, Header IfmaMsghdr
-pkg syscall (freebsd-arm), type Iovec struct
-pkg syscall (freebsd-arm), type Iovec struct, Base *uint8
-pkg syscall (freebsd-arm), type Iovec struct, Len uint32
-pkg syscall (freebsd-arm), type Kevent_t struct
-pkg syscall (freebsd-arm), type Kevent_t struct, Data int32
-pkg syscall (freebsd-arm), type Kevent_t struct, Fflags uint32
-pkg syscall (freebsd-arm), type Kevent_t struct, Filter int16
-pkg syscall (freebsd-arm), type Kevent_t struct, Flags uint16
-pkg syscall (freebsd-arm), type Kevent_t struct, Ident uint32
-pkg syscall (freebsd-arm), type Kevent_t struct, Udata *uint8
-pkg syscall (freebsd-arm), type Msghdr struct
-pkg syscall (freebsd-arm), type Msghdr struct, Control *uint8
-pkg syscall (freebsd-arm), type Msghdr struct, Controllen uint32
-pkg syscall (freebsd-arm), type Msghdr struct, Flags int32
-pkg syscall (freebsd-arm), type Msghdr struct, Iov *Iovec
-pkg syscall (freebsd-arm), type Msghdr struct, Iovlen int32
-pkg syscall (freebsd-arm), type Msghdr struct, Name *uint8
-pkg syscall (freebsd-arm), type Msghdr struct, Namelen uint32
-pkg syscall (freebsd-arm), type RawSockaddr struct, Data [14]int8
-pkg syscall (freebsd-arm), type RawSockaddr struct, Family uint8
-pkg syscall (freebsd-arm), type RawSockaddr struct, Len uint8
-pkg syscall (freebsd-arm), type RawSockaddrAny struct, Pad [92]int8
-pkg syscall (freebsd-arm), type RawSockaddrDatalink struct
-pkg syscall (freebsd-arm), type RawSockaddrDatalink struct, Alen uint8
-pkg syscall (freebsd-arm), type RawSockaddrDatalink struct, Data [46]int8
-pkg syscall (freebsd-arm), type RawSockaddrDatalink struct, Family uint8
-pkg syscall (freebsd-arm), type RawSockaddrDatalink struct, Index uint16
-pkg syscall (freebsd-arm), type RawSockaddrDatalink struct, Len uint8
-pkg syscall (freebsd-arm), type RawSockaddrDatalink struct, Nlen uint8
-pkg syscall (freebsd-arm), type RawSockaddrDatalink struct, Pad_cgo_0 [2]uint8
-pkg syscall (freebsd-arm), type RawSockaddrDatalink struct, Slen uint8
-pkg syscall (freebsd-arm), type RawSockaddrDatalink struct, Type uint8
-pkg syscall (freebsd-arm), type RawSockaddrInet4 struct, Family uint8
-pkg syscall (freebsd-arm), type RawSockaddrInet4 struct, Len uint8
-pkg syscall (freebsd-arm), type RawSockaddrInet4 struct, Zero [8]int8
-pkg syscall (freebsd-arm), type RawSockaddrInet6 struct, Family uint8
-pkg syscall (freebsd-arm), type RawSockaddrInet6 struct, Len uint8
-pkg syscall (freebsd-arm), type RawSockaddrUnix struct
-pkg syscall (freebsd-arm), type RawSockaddrUnix struct, Family uint8
-pkg syscall (freebsd-arm), type RawSockaddrUnix struct, Len uint8
-pkg syscall (freebsd-arm), type RawSockaddrUnix struct, Pad_cgo_0 [2]uint8
-pkg syscall (freebsd-arm), type RawSockaddrUnix struct, Path [104]int8
-pkg syscall (freebsd-arm), type Rlimit struct
-pkg syscall (freebsd-arm), type Rlimit struct, Cur int64
-pkg syscall (freebsd-arm), type Rlimit struct, Max int64
-pkg syscall (freebsd-arm), type RouteMessage struct
-pkg syscall (freebsd-arm), type RouteMessage struct, Data []uint8
-pkg syscall (freebsd-arm), type RouteMessage struct, Header RtMsghdr
-pkg syscall (freebsd-arm), type RoutingMessage interface, unexported methods
-pkg syscall (freebsd-arm), type RtMetrics struct
-pkg syscall (freebsd-arm), type RtMetrics struct, Expire uint32
-pkg syscall (freebsd-arm), type RtMetrics struct, Filler [3]uint32
-pkg syscall (freebsd-arm), type RtMetrics struct, Hopcount uint32
-pkg syscall (freebsd-arm), type RtMetrics struct, Locks uint32
-pkg syscall (freebsd-arm), type RtMetrics struct, Mtu uint32
-pkg syscall (freebsd-arm), type RtMetrics struct, Pksent uint32
-pkg syscall (freebsd-arm), type RtMetrics struct, Recvpipe uint32
-pkg syscall (freebsd-arm), type RtMetrics struct, Rtt uint32
-pkg syscall (freebsd-arm), type RtMetrics struct, Rttvar uint32
-pkg syscall (freebsd-arm), type RtMetrics struct, Sendpipe uint32
-pkg syscall (freebsd-arm), type RtMetrics struct, Ssthresh uint32
-pkg syscall (freebsd-arm), type RtMetrics struct, Weight uint32
-pkg syscall (freebsd-arm), type RtMsghdr struct
-pkg syscall (freebsd-arm), type RtMsghdr struct, Addrs int32
-pkg syscall (freebsd-arm), type RtMsghdr struct, Errno int32
-pkg syscall (freebsd-arm), type RtMsghdr struct, Flags int32
-pkg syscall (freebsd-arm), type RtMsghdr struct, Fmask int32
-pkg syscall (freebsd-arm), type RtMsghdr struct, Index uint16
-pkg syscall (freebsd-arm), type RtMsghdr struct, Inits uint32
-pkg syscall (freebsd-arm), type RtMsghdr struct, Msglen uint16
-pkg syscall (freebsd-arm), type RtMsghdr struct, Pad_cgo_0 [2]uint8
-pkg syscall (freebsd-arm), type RtMsghdr struct, Pid int32
-pkg syscall (freebsd-arm), type RtMsghdr struct, Rmx RtMetrics
-pkg syscall (freebsd-arm), type RtMsghdr struct, Seq int32
-pkg syscall (freebsd-arm), type RtMsghdr struct, Type uint8
-pkg syscall (freebsd-arm), type RtMsghdr struct, Version uint8
-pkg syscall (freebsd-arm), type Rusage struct, Idrss int32
-pkg syscall (freebsd-arm), type Rusage struct, Inblock int32
-pkg syscall (freebsd-arm), type Rusage struct, Isrss int32
-pkg syscall (freebsd-arm), type Rusage struct, Ixrss int32
-pkg syscall (freebsd-arm), type Rusage struct, Majflt int32
-pkg syscall (freebsd-arm), type Rusage struct, Maxrss int32
-pkg syscall (freebsd-arm), type Rusage struct, Minflt int32
-pkg syscall (freebsd-arm), type Rusage struct, Msgrcv int32
-pkg syscall (freebsd-arm), type Rusage struct, Msgsnd int32
-pkg syscall (freebsd-arm), type Rusage struct, Nivcsw int32
-pkg syscall (freebsd-arm), type Rusage struct, Nsignals int32
-pkg syscall (freebsd-arm), type Rusage struct, Nswap int32
-pkg syscall (freebsd-arm), type Rusage struct, Nvcsw int32
-pkg syscall (freebsd-arm), type Rusage struct, Oublock int32
-pkg syscall (freebsd-arm), type Rusage struct, Stime Timeval
-pkg syscall (freebsd-arm), type Rusage struct, Utime Timeval
-pkg syscall (freebsd-arm), type SockaddrDatalink struct
-pkg syscall (freebsd-arm), type SockaddrDatalink struct, Alen uint8
-pkg syscall (freebsd-arm), type SockaddrDatalink struct, Data [46]int8
-pkg syscall (freebsd-arm), type SockaddrDatalink struct, Family uint8
-pkg syscall (freebsd-arm), type SockaddrDatalink struct, Index uint16
-pkg syscall (freebsd-arm), type SockaddrDatalink struct, Len uint8
-pkg syscall (freebsd-arm), type SockaddrDatalink struct, Nlen uint8
-pkg syscall (freebsd-arm), type SockaddrDatalink struct, Slen uint8
-pkg syscall (freebsd-arm), type SockaddrDatalink struct, Type uint8
-pkg syscall (freebsd-arm), type SocketControlMessage struct
-pkg syscall (freebsd-arm), type SocketControlMessage struct, Data []uint8
-pkg syscall (freebsd-arm), type SocketControlMessage struct, Header Cmsghdr
-pkg syscall (freebsd-arm), type Stat_t struct
-pkg syscall (freebsd-arm), type Stat_t struct, Atimespec Timespec
-pkg syscall (freebsd-arm), type Stat_t struct, Birthtimespec Timespec
-pkg syscall (freebsd-arm), type Stat_t struct, Blksize uint32
-pkg syscall (freebsd-arm), type Stat_t struct, Blocks int64
-pkg syscall (freebsd-arm), type Stat_t struct, Ctimespec Timespec
-pkg syscall (freebsd-arm), type Stat_t struct, Dev uint32
-pkg syscall (freebsd-arm), type Stat_t struct, Flags uint32
-pkg syscall (freebsd-arm), type Stat_t struct, Gen uint32
-pkg syscall (freebsd-arm), type Stat_t struct, Gid uint32
-pkg syscall (freebsd-arm), type Stat_t struct, Ino uint32
-pkg syscall (freebsd-arm), type Stat_t struct, Lspare int32
-pkg syscall (freebsd-arm), type Stat_t struct, Mode uint16
-pkg syscall (freebsd-arm), type Stat_t struct, Mtimespec Timespec
-pkg syscall (freebsd-arm), type Stat_t struct, Nlink uint16
-pkg syscall (freebsd-arm), type Stat_t struct, Pad_cgo_0 [4]uint8
-pkg syscall (freebsd-arm), type Stat_t struct, Rdev uint32
-pkg syscall (freebsd-arm), type Stat_t struct, Size int64
-pkg syscall (freebsd-arm), type Stat_t struct, Uid uint32
-pkg syscall (freebsd-arm), type Statfs_t struct
-pkg syscall (freebsd-arm), type Statfs_t struct, Asyncreads uint64
-pkg syscall (freebsd-arm), type Statfs_t struct, Asyncwrites uint64
-pkg syscall (freebsd-arm), type Statfs_t struct, Bavail int64
-pkg syscall (freebsd-arm), type Statfs_t struct, Bfree uint64
-pkg syscall (freebsd-arm), type Statfs_t struct, Blocks uint64
-pkg syscall (freebsd-arm), type Statfs_t struct, Bsize uint64
-pkg syscall (freebsd-arm), type Statfs_t struct, Charspare [80]int8
-pkg syscall (freebsd-arm), type Statfs_t struct, Ffree int64
-pkg syscall (freebsd-arm), type Statfs_t struct, Files uint64
-pkg syscall (freebsd-arm), type Statfs_t struct, Flags uint64
-pkg syscall (freebsd-arm), type Statfs_t struct, Fsid Fsid
-pkg syscall (freebsd-arm), type Statfs_t struct, Fstypename [16]int8
-pkg syscall (freebsd-arm), type Statfs_t struct, Iosize uint64
-pkg syscall (freebsd-arm), type Statfs_t struct, Mntfromname [88]int8
-pkg syscall (freebsd-arm), type Statfs_t struct, Mntonname [88]int8
-pkg syscall (freebsd-arm), type Statfs_t struct, Namemax uint32
-pkg syscall (freebsd-arm), type Statfs_t struct, Owner uint32
-pkg syscall (freebsd-arm), type Statfs_t struct, Spare [10]uint64
-pkg syscall (freebsd-arm), type Statfs_t struct, Syncreads uint64
-pkg syscall (freebsd-arm), type Statfs_t struct, Syncwrites uint64
-pkg syscall (freebsd-arm), type Statfs_t struct, Type uint32
-pkg syscall (freebsd-arm), type Statfs_t struct, Version uint32
-pkg syscall (freebsd-arm), type SysProcAttr struct, Chroot string
-pkg syscall (freebsd-arm), type SysProcAttr struct, Credential *Credential
-pkg syscall (freebsd-arm), type SysProcAttr struct, Noctty bool
-pkg syscall (freebsd-arm), type SysProcAttr struct, Ptrace bool
-pkg syscall (freebsd-arm), type SysProcAttr struct, Setctty bool
-pkg syscall (freebsd-arm), type SysProcAttr struct, Setpgid bool
-pkg syscall (freebsd-arm), type SysProcAttr struct, Setsid bool
-pkg syscall (freebsd-arm), type Timespec struct, Nsec int32
-pkg syscall (freebsd-arm), type Timespec struct, Sec int64
-pkg syscall (freebsd-arm), type Timeval struct, Sec int64
-pkg syscall (freebsd-arm), type Timeval struct, Usec int32
-pkg syscall (freebsd-arm), type WaitStatus uint32
-pkg syscall (freebsd-arm), var Stderr int
-pkg syscall (freebsd-arm), var Stdin int
-pkg syscall (freebsd-arm), var Stdout int
-pkg syscall (freebsd-arm-cgo), const AF_APPLETALK ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_ARP ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_ATM ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_BLUETOOTH ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_CCITT ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_CHAOS ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_CNT ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_COIP ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_DATAKIT ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_DECnet ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_DLI ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_E164 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_ECMA ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_HYLINK ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_IEEE80211 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_IMPLINK ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_IPX ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_ISDN ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_ISO ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_LAT ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_LINK ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_LOCAL ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_MAX ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_NATM ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_NETBIOS ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_NETGRAPH ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_OSI ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_PUP ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_ROUTE ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_SCLUSTER ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_SIP ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_SLOW ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_SNA ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_VENDOR00 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_VENDOR01 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_VENDOR02 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_VENDOR03 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_VENDOR04 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_VENDOR05 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_VENDOR06 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_VENDOR07 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_VENDOR08 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_VENDOR09 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_VENDOR10 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_VENDOR11 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_VENDOR12 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_VENDOR13 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_VENDOR14 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_VENDOR15 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_VENDOR16 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_VENDOR17 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_VENDOR18 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_VENDOR19 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_VENDOR20 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_VENDOR21 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_VENDOR22 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_VENDOR23 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_VENDOR24 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_VENDOR25 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_VENDOR26 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_VENDOR27 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_VENDOR28 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_VENDOR29 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_VENDOR30 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_VENDOR31 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_VENDOR32 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_VENDOR33 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_VENDOR34 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_VENDOR35 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_VENDOR36 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_VENDOR37 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_VENDOR38 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_VENDOR39 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_VENDOR40 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_VENDOR41 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_VENDOR42 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_VENDOR43 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_VENDOR44 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_VENDOR45 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_VENDOR46 ideal-int
-pkg syscall (freebsd-arm-cgo), const AF_VENDOR47 ideal-int
-pkg syscall (freebsd-arm-cgo), const B0 ideal-int
-pkg syscall (freebsd-arm-cgo), const B110 ideal-int
-pkg syscall (freebsd-arm-cgo), const B115200 ideal-int
-pkg syscall (freebsd-arm-cgo), const B1200 ideal-int
-pkg syscall (freebsd-arm-cgo), const B134 ideal-int
-pkg syscall (freebsd-arm-cgo), const B14400 ideal-int
-pkg syscall (freebsd-arm-cgo), const B150 ideal-int
-pkg syscall (freebsd-arm-cgo), const B1800 ideal-int
-pkg syscall (freebsd-arm-cgo), const B19200 ideal-int
-pkg syscall (freebsd-arm-cgo), const B200 ideal-int
-pkg syscall (freebsd-arm-cgo), const B230400 ideal-int
-pkg syscall (freebsd-arm-cgo), const B2400 ideal-int
-pkg syscall (freebsd-arm-cgo), const B28800 ideal-int
-pkg syscall (freebsd-arm-cgo), const B300 ideal-int
-pkg syscall (freebsd-arm-cgo), const B38400 ideal-int
-pkg syscall (freebsd-arm-cgo), const B460800 ideal-int
-pkg syscall (freebsd-arm-cgo), const B4800 ideal-int
-pkg syscall (freebsd-arm-cgo), const B50 ideal-int
-pkg syscall (freebsd-arm-cgo), const B57600 ideal-int
-pkg syscall (freebsd-arm-cgo), const B600 ideal-int
-pkg syscall (freebsd-arm-cgo), const B7200 ideal-int
-pkg syscall (freebsd-arm-cgo), const B75 ideal-int
-pkg syscall (freebsd-arm-cgo), const B76800 ideal-int
-pkg syscall (freebsd-arm-cgo), const B921600 ideal-int
-pkg syscall (freebsd-arm-cgo), const B9600 ideal-int
-pkg syscall (freebsd-arm-cgo), const BIOCFEEDBACK ideal-int
-pkg syscall (freebsd-arm-cgo), const BIOCFLUSH ideal-int
-pkg syscall (freebsd-arm-cgo), const BIOCGBLEN ideal-int
-pkg syscall (freebsd-arm-cgo), const BIOCGDIRECTION ideal-int
-pkg syscall (freebsd-arm-cgo), const BIOCGDLT ideal-int
-pkg syscall (freebsd-arm-cgo), const BIOCGDLTLIST ideal-int
-pkg syscall (freebsd-arm-cgo), const BIOCGETBUFMODE ideal-int
-pkg syscall (freebsd-arm-cgo), const BIOCGETIF ideal-int
-pkg syscall (freebsd-arm-cgo), const BIOCGETZMAX ideal-int
-pkg syscall (freebsd-arm-cgo), const BIOCGHDRCMPLT ideal-int
-pkg syscall (freebsd-arm-cgo), const BIOCGRSIG ideal-int
-pkg syscall (freebsd-arm-cgo), const BIOCGRTIMEOUT ideal-int
-pkg syscall (freebsd-arm-cgo), const BIOCGSEESENT ideal-int
-pkg syscall (freebsd-arm-cgo), const BIOCGSTATS ideal-int
-pkg syscall (freebsd-arm-cgo), const BIOCGTSTAMP ideal-int
-pkg syscall (freebsd-arm-cgo), const BIOCIMMEDIATE ideal-int
-pkg syscall (freebsd-arm-cgo), const BIOCLOCK ideal-int
-pkg syscall (freebsd-arm-cgo), const BIOCPROMISC ideal-int
-pkg syscall (freebsd-arm-cgo), const BIOCROTZBUF ideal-int
-pkg syscall (freebsd-arm-cgo), const BIOCSBLEN ideal-int
-pkg syscall (freebsd-arm-cgo), const BIOCSDIRECTION ideal-int
-pkg syscall (freebsd-arm-cgo), const BIOCSDLT ideal-int
-pkg syscall (freebsd-arm-cgo), const BIOCSETBUFMODE ideal-int
-pkg syscall (freebsd-arm-cgo), const BIOCSETF ideal-int
-pkg syscall (freebsd-arm-cgo), const BIOCSETFNR ideal-int
-pkg syscall (freebsd-arm-cgo), const BIOCSETIF ideal-int
-pkg syscall (freebsd-arm-cgo), const BIOCSETWF ideal-int
-pkg syscall (freebsd-arm-cgo), const BIOCSETZBUF ideal-int
-pkg syscall (freebsd-arm-cgo), const BIOCSHDRCMPLT ideal-int
-pkg syscall (freebsd-arm-cgo), const BIOCSRSIG ideal-int
-pkg syscall (freebsd-arm-cgo), const BIOCSRTIMEOUT ideal-int
-pkg syscall (freebsd-arm-cgo), const BIOCSSEESENT ideal-int
-pkg syscall (freebsd-arm-cgo), const BIOCSTSTAMP ideal-int
-pkg syscall (freebsd-arm-cgo), const BIOCVERSION ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_A ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_ABS ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_ADD ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_ALIGNMENT ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_ALU ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_AND ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_B ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_BUFMODE_BUFFER ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_BUFMODE_ZBUF ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_DIV ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_H ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_IMM ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_IND ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_JA ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_JEQ ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_JGE ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_JGT ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_JMP ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_JSET ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_K ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_LD ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_LDX ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_LEN ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_LSH ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_MAJOR_VERSION ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_MAXBUFSIZE ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_MAXINSNS ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_MEM ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_MEMWORDS ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_MINBUFSIZE ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_MINOR_VERSION ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_MISC ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_MSH ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_MUL ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_NEG ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_OR ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_RELEASE ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_RET ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_RSH ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_ST ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_STX ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_SUB ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_TAX ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_TXA ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_T_BINTIME ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_T_BINTIME_FAST ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_T_BINTIME_MONOTONIC ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_T_BINTIME_MONOTONIC_FAST ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_T_FAST ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_T_FLAG_MASK ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_T_FORMAT_MASK ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_T_MICROTIME ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_T_MICROTIME_FAST ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_T_MICROTIME_MONOTONIC ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_T_MICROTIME_MONOTONIC_FAST ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_T_MONOTONIC ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_T_MONOTONIC_FAST ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_T_NANOTIME ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_T_NANOTIME_FAST ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_T_NANOTIME_MONOTONIC ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_T_NANOTIME_MONOTONIC_FAST ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_T_NONE ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_T_NORMAL ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_W ideal-int
-pkg syscall (freebsd-arm-cgo), const BPF_X ideal-int
-pkg syscall (freebsd-arm-cgo), const BRKINT ideal-int
-pkg syscall (freebsd-arm-cgo), const CFLUSH ideal-int
-pkg syscall (freebsd-arm-cgo), const CLOCAL ideal-int
-pkg syscall (freebsd-arm-cgo), const CREAD ideal-int
-pkg syscall (freebsd-arm-cgo), const CS5 ideal-int
-pkg syscall (freebsd-arm-cgo), const CS6 ideal-int
-pkg syscall (freebsd-arm-cgo), const CS7 ideal-int
-pkg syscall (freebsd-arm-cgo), const CS8 ideal-int
-pkg syscall (freebsd-arm-cgo), const CSIZE ideal-int
-pkg syscall (freebsd-arm-cgo), const CSTART ideal-int
-pkg syscall (freebsd-arm-cgo), const CSTATUS ideal-int
-pkg syscall (freebsd-arm-cgo), const CSTOP ideal-int
-pkg syscall (freebsd-arm-cgo), const CSTOPB ideal-int
-pkg syscall (freebsd-arm-cgo), const CSUSP ideal-int
-pkg syscall (freebsd-arm-cgo), const CTL_MAXNAME ideal-int
-pkg syscall (freebsd-arm-cgo), const CTL_NET ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_A429 ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_A653_ICM ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_AIRONET_HEADER ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_AOS ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_ARCNET ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_ARCNET_LINUX ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_ATM_CLIP ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_ATM_RFC1483 ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_AURORA ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_AX25 ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_AX25_KISS ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_BACNET_MS_TP ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_BLUETOOTH_HCI_H4 ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_CAN20B ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_CAN_SOCKETCAN ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_CHAOS ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_CHDLC ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_CISCO_IOS ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_C_HDLC ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_C_HDLC_WITH_DIR ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_DBUS ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_DECT ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_DOCSIS ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_DVB_CI ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_ECONET ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_EN10MB ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_EN3MB ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_ENC ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_ERF ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_ERF_ETH ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_ERF_POS ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_FC_2 ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_FC_2_WITH_FRAME_DELIMS ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_FDDI ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_FLEXRAY ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_FRELAY ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_FRELAY_WITH_DIR ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_GCOM_SERIAL ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_GCOM_T1E1 ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_GPF_F ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_GPF_T ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_GPRS_LLC ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_GSMTAP_ABIS ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_GSMTAP_UM ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_HHDLC ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_IBM_SN ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_IBM_SP ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_IEEE802 ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_IEEE802_11 ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_IEEE802_11_RADIO ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_IEEE802_11_RADIO_AVS ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_IEEE802_15_4 ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_IEEE802_15_4_LINUX ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_IEEE802_15_4_NOFCS ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_IEEE802_15_4_NONASK_PHY ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_IEEE802_16_MAC_CPS ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_IEEE802_16_MAC_CPS_RADIO ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_IPFILTER ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_IPMB ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_IPMB_LINUX ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_IPNET ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_IPOIB ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_IPV4 ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_IPV6 ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_IP_OVER_FC ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_ATM1 ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_ATM2 ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_ATM_CEMIC ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_CHDLC ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_ES ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_ETHER ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_FIBRECHANNEL ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_FRELAY ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_GGSN ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_ISM ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_MFR ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_MLFR ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_MLPPP ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_MONITOR ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_PIC_PEER ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_PPP ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_PPPOE ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_PPPOE_ATM ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_SERVICES ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_SRX_E2E ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_ST ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_VP ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_VS ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_LAPB_WITH_DIR ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_LAPD ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_LIN ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_LINUX_EVDEV ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_LINUX_IRDA ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_LINUX_LAPD ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_LINUX_PPP_WITHDIRECTION ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_LINUX_SLL ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_LOOP ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_LTALK ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_MATCHING_MAX ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_MATCHING_MIN ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_MFR ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_MOST ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_MPEG_2_TS ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_MPLS ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_MTP2 ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_MTP2_WITH_PHDR ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_MTP3 ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_MUX27010 ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_NETANALYZER ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_NETANALYZER_TRANSPARENT ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_NFC_LLCP ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_NFLOG ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_NG40 ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_NULL ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_PCI_EXP ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_PFLOG ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_PFSYNC ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_PPI ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_PPP ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_PPP_BSDOS ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_PPP_ETHER ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_PPP_PPPD ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_PPP_SERIAL ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_PPP_WITH_DIR ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_PPP_WITH_DIRECTION ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_PRISM_HEADER ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_PRONET ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_RAIF1 ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_RAW ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_RIO ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_SCCP ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_SITA ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_SLIP ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_SLIP_BSDOS ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_STANAG_5066_D_PDU ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_SUNATM ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_SYMANTEC_FIREWALL ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_TZSP ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_USB ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_USB_LINUX ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_USB_LINUX_MMAPPED ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_USER0 ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_USER1 ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_USER10 ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_USER11 ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_USER12 ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_USER13 ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_USER14 ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_USER15 ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_USER2 ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_USER3 ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_USER4 ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_USER5 ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_USER6 ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_USER7 ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_USER8 ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_USER9 ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_WIHART ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_X2E_SERIAL ideal-int
-pkg syscall (freebsd-arm-cgo), const DLT_X2E_XORAYA ideal-int
-pkg syscall (freebsd-arm-cgo), const DT_BLK ideal-int
-pkg syscall (freebsd-arm-cgo), const DT_CHR ideal-int
-pkg syscall (freebsd-arm-cgo), const DT_DIR ideal-int
-pkg syscall (freebsd-arm-cgo), const DT_FIFO ideal-int
-pkg syscall (freebsd-arm-cgo), const DT_LNK ideal-int
-pkg syscall (freebsd-arm-cgo), const DT_REG ideal-int
-pkg syscall (freebsd-arm-cgo), const DT_SOCK ideal-int
-pkg syscall (freebsd-arm-cgo), const DT_UNKNOWN ideal-int
-pkg syscall (freebsd-arm-cgo), const DT_WHT ideal-int
-pkg syscall (freebsd-arm-cgo), const EAUTH Errno
-pkg syscall (freebsd-arm-cgo), const EBADMSG Errno
-pkg syscall (freebsd-arm-cgo), const EBADRPC Errno
-pkg syscall (freebsd-arm-cgo), const ECAPMODE Errno
-pkg syscall (freebsd-arm-cgo), const ECHO ideal-int
-pkg syscall (freebsd-arm-cgo), const ECHOCTL ideal-int
-pkg syscall (freebsd-arm-cgo), const ECHOE ideal-int
-pkg syscall (freebsd-arm-cgo), const ECHOK ideal-int
-pkg syscall (freebsd-arm-cgo), const ECHOKE ideal-int
-pkg syscall (freebsd-arm-cgo), const ECHONL ideal-int
-pkg syscall (freebsd-arm-cgo), const ECHOPRT ideal-int
-pkg syscall (freebsd-arm-cgo), const EDOOFUS Errno
-pkg syscall (freebsd-arm-cgo), const EFTYPE Errno
-pkg syscall (freebsd-arm-cgo), const ELAST Errno
-pkg syscall (freebsd-arm-cgo), const EMULTIHOP Errno
-pkg syscall (freebsd-arm-cgo), const ENEEDAUTH Errno
-pkg syscall (freebsd-arm-cgo), const ENOATTR Errno
-pkg syscall (freebsd-arm-cgo), const ENOLINK Errno
-pkg syscall (freebsd-arm-cgo), const ENOTCAPABLE Errno
-pkg syscall (freebsd-arm-cgo), const EPROCLIM Errno
-pkg syscall (freebsd-arm-cgo), const EPROCUNAVAIL Errno
-pkg syscall (freebsd-arm-cgo), const EPROGMISMATCH Errno
-pkg syscall (freebsd-arm-cgo), const EPROGUNAVAIL Errno
-pkg syscall (freebsd-arm-cgo), const EPROTO Errno
-pkg syscall (freebsd-arm-cgo), const ERPCMISMATCH Errno
-pkg syscall (freebsd-arm-cgo), const EVFILT_AIO ideal-int
-pkg syscall (freebsd-arm-cgo), const EVFILT_FS ideal-int
-pkg syscall (freebsd-arm-cgo), const EVFILT_LIO ideal-int
-pkg syscall (freebsd-arm-cgo), const EVFILT_PROC ideal-int
-pkg syscall (freebsd-arm-cgo), const EVFILT_READ ideal-int
-pkg syscall (freebsd-arm-cgo), const EVFILT_SIGNAL ideal-int
-pkg syscall (freebsd-arm-cgo), const EVFILT_SYSCOUNT ideal-int
-pkg syscall (freebsd-arm-cgo), const EVFILT_TIMER ideal-int
-pkg syscall (freebsd-arm-cgo), const EVFILT_USER ideal-int
-pkg syscall (freebsd-arm-cgo), const EVFILT_VNODE ideal-int
-pkg syscall (freebsd-arm-cgo), const EVFILT_WRITE ideal-int
-pkg syscall (freebsd-arm-cgo), const EV_ADD ideal-int
-pkg syscall (freebsd-arm-cgo), const EV_CLEAR ideal-int
-pkg syscall (freebsd-arm-cgo), const EV_DELETE ideal-int
-pkg syscall (freebsd-arm-cgo), const EV_DISABLE ideal-int
-pkg syscall (freebsd-arm-cgo), const EV_DISPATCH ideal-int
-pkg syscall (freebsd-arm-cgo), const EV_ENABLE ideal-int
-pkg syscall (freebsd-arm-cgo), const EV_EOF ideal-int
-pkg syscall (freebsd-arm-cgo), const EV_ERROR ideal-int
-pkg syscall (freebsd-arm-cgo), const EV_FLAG1 ideal-int
-pkg syscall (freebsd-arm-cgo), const EV_ONESHOT ideal-int
-pkg syscall (freebsd-arm-cgo), const EV_RECEIPT ideal-int
-pkg syscall (freebsd-arm-cgo), const EV_SYSFLAGS ideal-int
-pkg syscall (freebsd-arm-cgo), const EXTA ideal-int
-pkg syscall (freebsd-arm-cgo), const EXTB ideal-int
-pkg syscall (freebsd-arm-cgo), const EXTPROC ideal-int
-pkg syscall (freebsd-arm-cgo), const FD_CLOEXEC ideal-int
-pkg syscall (freebsd-arm-cgo), const FD_SETSIZE ideal-int
-pkg syscall (freebsd-arm-cgo), const FLUSHO ideal-int
-pkg syscall (freebsd-arm-cgo), const F_CANCEL ideal-int
-pkg syscall (freebsd-arm-cgo), const F_DUP2FD ideal-int
-pkg syscall (freebsd-arm-cgo), const F_DUP2FD_CLOEXEC ideal-int
-pkg syscall (freebsd-arm-cgo), const F_DUPFD ideal-int
-pkg syscall (freebsd-arm-cgo), const F_DUPFD_CLOEXEC ideal-int
-pkg syscall (freebsd-arm-cgo), const F_GETFD ideal-int
-pkg syscall (freebsd-arm-cgo), const F_GETFL ideal-int
-pkg syscall (freebsd-arm-cgo), const F_GETLK ideal-int
-pkg syscall (freebsd-arm-cgo), const F_GETOWN ideal-int
-pkg syscall (freebsd-arm-cgo), const F_OGETLK ideal-int
-pkg syscall (freebsd-arm-cgo), const F_OK ideal-int
-pkg syscall (freebsd-arm-cgo), const F_OSETLK ideal-int
-pkg syscall (freebsd-arm-cgo), const F_OSETLKW ideal-int
-pkg syscall (freebsd-arm-cgo), const F_RDAHEAD ideal-int
-pkg syscall (freebsd-arm-cgo), const F_RDLCK ideal-int
-pkg syscall (freebsd-arm-cgo), const F_READAHEAD ideal-int
-pkg syscall (freebsd-arm-cgo), const F_SETFD ideal-int
-pkg syscall (freebsd-arm-cgo), const F_SETFL ideal-int
-pkg syscall (freebsd-arm-cgo), const F_SETLK ideal-int
-pkg syscall (freebsd-arm-cgo), const F_SETLKW ideal-int
-pkg syscall (freebsd-arm-cgo), const F_SETLK_REMOTE ideal-int
-pkg syscall (freebsd-arm-cgo), const F_SETOWN ideal-int
-pkg syscall (freebsd-arm-cgo), const F_UNLCK ideal-int
-pkg syscall (freebsd-arm-cgo), const F_UNLCKSYS ideal-int
-pkg syscall (freebsd-arm-cgo), const F_WRLCK ideal-int
-pkg syscall (freebsd-arm-cgo), const HUPCL ideal-int
-pkg syscall (freebsd-arm-cgo), const ICANON ideal-int
-pkg syscall (freebsd-arm-cgo), const ICMP6_FILTER = 18
-pkg syscall (freebsd-arm-cgo), const ICMP6_FILTER ideal-int
-pkg syscall (freebsd-arm-cgo), const ICRNL ideal-int
-pkg syscall (freebsd-arm-cgo), const IEXTEN ideal-int
-pkg syscall (freebsd-arm-cgo), const IFAN_ARRIVAL ideal-int
-pkg syscall (freebsd-arm-cgo), const IFAN_DEPARTURE ideal-int
-pkg syscall (freebsd-arm-cgo), const IFF_ALLMULTI ideal-int
-pkg syscall (freebsd-arm-cgo), const IFF_ALTPHYS ideal-int
-pkg syscall (freebsd-arm-cgo), const IFF_CANTCHANGE ideal-int
-pkg syscall (freebsd-arm-cgo), const IFF_CANTCONFIG ideal-int
-pkg syscall (freebsd-arm-cgo), const IFF_DEBUG ideal-int
-pkg syscall (freebsd-arm-cgo), const IFF_DRV_OACTIVE ideal-int
-pkg syscall (freebsd-arm-cgo), const IFF_DRV_RUNNING ideal-int
-pkg syscall (freebsd-arm-cgo), const IFF_DYING ideal-int
-pkg syscall (freebsd-arm-cgo), const IFF_LINK0 ideal-int
-pkg syscall (freebsd-arm-cgo), const IFF_LINK1 ideal-int
-pkg syscall (freebsd-arm-cgo), const IFF_LINK2 ideal-int
-pkg syscall (freebsd-arm-cgo), const IFF_MONITOR ideal-int
-pkg syscall (freebsd-arm-cgo), const IFF_NOARP ideal-int
-pkg syscall (freebsd-arm-cgo), const IFF_OACTIVE ideal-int
-pkg syscall (freebsd-arm-cgo), const IFF_POINTOPOINT ideal-int
-pkg syscall (freebsd-arm-cgo), const IFF_PPROMISC ideal-int
-pkg syscall (freebsd-arm-cgo), const IFF_PROMISC ideal-int
-pkg syscall (freebsd-arm-cgo), const IFF_RENAMING ideal-int
-pkg syscall (freebsd-arm-cgo), const IFF_RUNNING ideal-int
-pkg syscall (freebsd-arm-cgo), const IFF_SIMPLEX ideal-int
-pkg syscall (freebsd-arm-cgo), const IFF_SMART ideal-int
-pkg syscall (freebsd-arm-cgo), const IFF_STATICARP ideal-int
-pkg syscall (freebsd-arm-cgo), const IFNAMSIZ ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_1822 ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_A12MPPSWITCH ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_AAL2 ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_AAL5 ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_ADSL ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_AFLANE8023 ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_AFLANE8025 ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_ARAP ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_ARCNET ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_ARCNETPLUS ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_ASYNC ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_ATM ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_ATMDXI ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_ATMFUNI ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_ATMIMA ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_ATMLOGICAL ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_ATMRADIO ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_ATMSUBINTERFACE ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_ATMVCIENDPT ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_ATMVIRTUAL ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_BGPPOLICYACCOUNTING ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_BRIDGE ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_BSC ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_CCTEMUL ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_CEPT ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_CES ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_CHANNEL ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_CNR ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_COFFEE ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_COMPOSITELINK ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_DCN ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_DIGITALPOWERLINE ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_DLSW ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_DOCSCABLEDOWNSTREAM ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_DOCSCABLEMACLAYER ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_DOCSCABLEUPSTREAM ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_DS0 ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_DS0BUNDLE ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_DS1FDL ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_DS3 ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_DTM ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_DVBASILN ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_DVBASIOUT ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_DVBRCCDOWNSTREAM ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_DVBRCCMACLAYER ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_DVBRCCUPSTREAM ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_ENC ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_EON ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_EPLRS ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_ESCON ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_ETHER ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_FAITH ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_FAST ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_FASTETHER ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_FASTETHERFX ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_FDDI ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_FIBRECHANNEL ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_FRAMERELAYINTERCONNECT ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_FRAMERELAYMPI ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_FRDLCIENDPT ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_FRELAY ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_FRELAYDCE ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_FRF16MFRBUNDLE ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_FRFORWARD ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_G703AT2MB ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_G703AT64K ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_GIF ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_GIGABITETHERNET ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_GR303IDT ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_GR303RDT ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_H323GATEKEEPER ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_H323PROXY ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_HDH1822 ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_HDLC ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_HDSL2 ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_HIPERLAN2 ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_HIPPI ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_HIPPIINTERFACE ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_HOSTPAD ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_HSSI ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_HY ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_IBM370PARCHAN ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_IDSL ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_IEEE1394 ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_IEEE80211 ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_IEEE80212 ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_IEEE8023ADLAG ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_IFGSN ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_IMT ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_INFINIBAND ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_INTERLEAVE ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_IP ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_IPFORWARD ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_IPOVERATM ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_IPOVERCDLC ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_IPOVERCLAW ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_IPSWITCH ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_IPXIP ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_ISDN ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_ISDNBASIC ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_ISDNPRIMARY ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_ISDNS ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_ISDNU ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_ISO88022LLC ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_ISO88023 ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_ISO88024 ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_ISO88025 ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_ISO88025CRFPINT ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_ISO88025DTR ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_ISO88025FIBER ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_ISO88026 ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_ISUP ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_L2VLAN ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_L3IPVLAN ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_L3IPXVLAN ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_LAPB ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_LAPD ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_LAPF ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_LOCALTALK ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_LOOP ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_MEDIAMAILOVERIP ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_MFSIGLINK ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_MIOX25 ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_MODEM ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_MPC ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_MPLS ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_MPLSTUNNEL ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_MSDSL ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_MVL ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_MYRINET ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_NFAS ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_NSIP ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_OPTICALCHANNEL ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_OPTICALTRANSPORT ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_OTHER ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_P10 ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_P80 ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_PARA ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_PFLOG ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_PFSYNC ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_PLC ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_POS ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_PPP ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_PPPMULTILINKBUNDLE ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_PROPBWAP2MP ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_PROPCNLS ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_PROPMUX ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_PROPVIRTUAL ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_PROPWIRELESSP2P ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_PTPSERIAL ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_PVC ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_QLLC ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_RADIOMAC ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_RADSL ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_REACHDSL ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_RFC1483 ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_RS232 ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_RSRB ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_SDLC ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_SDSL ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_SHDSL ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_SIP ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_SLIP ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_SMDSDXI ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_SMDSICIP ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_SONET ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_SONETOVERHEADCHANNEL ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_SONETPATH ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_SONETVT ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_SRP ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_SS7SIGLINK ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_STACKTOSTACK ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_STARLAN ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_STF ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_T1 ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_TDLC ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_TERMPAD ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_TR008 ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_TRANSPHDLC ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_TUNNEL ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_ULTRA ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_USB ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_V11 ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_V35 ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_V36 ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_V37 ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_VDSL ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_VIRTUALIPADDRESS ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_VOICEEM ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_VOICEENCAP ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_VOICEFXO ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_VOICEFXS ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_VOICEOVERATM ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_VOICEOVERFRAMERELAY ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_VOICEOVERIP ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_X213 ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_X25 ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_X25DDN ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_X25HUNTGROUP ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_X25MLP ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_X25PLE ideal-int
-pkg syscall (freebsd-arm-cgo), const IFT_XETHER ideal-int
-pkg syscall (freebsd-arm-cgo), const IGNBRK ideal-int
-pkg syscall (freebsd-arm-cgo), const IGNCR ideal-int
-pkg syscall (freebsd-arm-cgo), const IGNPAR ideal-int
-pkg syscall (freebsd-arm-cgo), const IMAXBEL ideal-int
-pkg syscall (freebsd-arm-cgo), const INLCR ideal-int
-pkg syscall (freebsd-arm-cgo), const INPCK ideal-int
-pkg syscall (freebsd-arm-cgo), const IN_CLASSA_HOST ideal-int
-pkg syscall (freebsd-arm-cgo), const IN_CLASSA_MAX ideal-int
-pkg syscall (freebsd-arm-cgo), const IN_CLASSA_NET ideal-int
-pkg syscall (freebsd-arm-cgo), const IN_CLASSA_NSHIFT ideal-int
-pkg syscall (freebsd-arm-cgo), const IN_CLASSB_HOST ideal-int
-pkg syscall (freebsd-arm-cgo), const IN_CLASSB_MAX ideal-int
-pkg syscall (freebsd-arm-cgo), const IN_CLASSB_NET ideal-int
-pkg syscall (freebsd-arm-cgo), const IN_CLASSB_NSHIFT ideal-int
-pkg syscall (freebsd-arm-cgo), const IN_CLASSC_HOST ideal-int
-pkg syscall (freebsd-arm-cgo), const IN_CLASSC_NET ideal-int
-pkg syscall (freebsd-arm-cgo), const IN_CLASSC_NSHIFT ideal-int
-pkg syscall (freebsd-arm-cgo), const IN_CLASSD_HOST ideal-int
-pkg syscall (freebsd-arm-cgo), const IN_CLASSD_NET ideal-int
-pkg syscall (freebsd-arm-cgo), const IN_CLASSD_NSHIFT ideal-int
-pkg syscall (freebsd-arm-cgo), const IN_LOOPBACKNET ideal-int
-pkg syscall (freebsd-arm-cgo), const IN_RFC3021_MASK ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_3PC ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_ADFS ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_AH ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_AHIP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_APES ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_ARGUS ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_AX25 ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_BHA ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_BLT ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_BRSATMON ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_CARP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_CFTP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_CHAOS ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_CMTP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_CPHB ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_CPNX ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_DDP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_DGP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_DIVERT ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_DONE ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_DSTOPTS ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_EGP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_EMCON ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_ENCAP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_EON ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_ESP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_ETHERIP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_FRAGMENT ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_GGP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_GMTP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_GRE ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_HELLO ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_HMP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_HOPOPTS ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_ICMP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_ICMPV6 ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_IDP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_IDPR ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_IDRP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_IGMP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_IGP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_IGRP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_IL ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_INLSP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_INP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_IPCOMP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_IPCV ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_IPEIP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_IPIP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_IPPC ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_IPV4 ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_IRTP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_KRYPTOLAN ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_LARP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_LEAF1 ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_LEAF2 ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_MAX ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_MAXID ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_MEAS ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_MH ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_MHRP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_MICP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_MOBILE ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_MPLS ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_MTP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_MUX ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_ND ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_NHRP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_NONE ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_NSP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_NVPII ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_OLD_DIVERT ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_OSPFIGP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_PFSYNC ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_PGM ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_PIGP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_PIM ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_PRM ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_PUP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_PVP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_RAW ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_RCCMON ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_RDP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_ROUTING ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_RSVP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_RVD ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_SATEXPAK ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_SATMON ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_SCCSP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_SCTP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_SDRP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_SEND ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_SEP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_SKIP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_SPACER ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_SRPC ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_ST ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_SVMTP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_SWIPE ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_TCF ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_TLSP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_TP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_TPXX ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_TRUNK1 ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_TRUNK2 ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_TTP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_VINES ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_VISA ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_VMTP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_WBEXPAK ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_WBMON ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_WSN ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_XNET ideal-int
-pkg syscall (freebsd-arm-cgo), const IPPROTO_XTP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_AUTOFLOWLABEL ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_BINDANY ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_BINDV6ONLY ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_CHECKSUM ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_DEFHLIM ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_DONTFRAG ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_DSTOPTS ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_FAITH ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_FLOWINFO_MASK ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_FLOWLABEL_MASK ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_FRAGTTL ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_FW_ADD ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_FW_DEL ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_FW_FLUSH ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_FW_GET ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_FW_ZERO ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_HLIMDEC ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_HOPLIMIT ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_HOPOPTS ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_IPSEC_POLICY ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_MAXHLIM ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_MAXOPTHDR ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_MAXPACKET ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_MAX_GROUP_SRC_FILTER ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_MAX_MEMBERSHIPS ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_MAX_SOCK_SRC_FILTER ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_MIN_MEMBERSHIPS ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_MMTU ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_MSFILTER ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_NEXTHOP ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_PATHMTU ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_PKTINFO ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_PORTRANGE ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_PORTRANGE_DEFAULT ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_PORTRANGE_HIGH ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_PORTRANGE_LOW ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_PREFER_TEMPADDR ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_RECVDSTOPTS ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_RECVHOPLIMIT ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_RECVHOPOPTS ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_RECVPATHMTU ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_RECVPKTINFO ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_RECVRTHDR ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_RECVTCLASS ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_RTHDR ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_RTHDRDSTOPTS ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_RTHDR_LOOSE ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_RTHDR_STRICT ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_RTHDR_TYPE_0 ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_SOCKOPT_RESERVED1 ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_TCLASS ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_USE_MIN_MTU ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_VERSION ideal-int
-pkg syscall (freebsd-arm-cgo), const IPV6_VERSION_MASK ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_ADD_SOURCE_MEMBERSHIP ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_BINDANY ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_BLOCK_SOURCE ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_DEFAULT_MULTICAST_LOOP ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_DEFAULT_MULTICAST_TTL ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_DF ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_DONTFRAG ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_DROP_SOURCE_MEMBERSHIP ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_DUMMYNET3 ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_DUMMYNET_CONFIGURE ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_DUMMYNET_DEL ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_DUMMYNET_FLUSH ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_DUMMYNET_GET ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_FAITH ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_FW3 ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_FW_ADD ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_FW_DEL ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_FW_FLUSH ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_FW_GET ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_FW_NAT_CFG ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_FW_NAT_DEL ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_FW_NAT_GET_CONFIG ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_FW_NAT_GET_LOG ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_FW_RESETLOG ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_FW_TABLE_ADD ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_FW_TABLE_DEL ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_FW_TABLE_FLUSH ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_FW_TABLE_GETSIZE ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_FW_TABLE_LIST ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_FW_ZERO ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_HDRINCL ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_IPSEC_POLICY ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_MAXPACKET ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_MAX_GROUP_SRC_FILTER ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_MAX_MEMBERSHIPS ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_MAX_SOCK_MUTE_FILTER ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_MAX_SOCK_SRC_FILTER ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_MAX_SOURCE_FILTER ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_MF ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_MINTTL ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_MIN_MEMBERSHIPS ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_MSFILTER ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_MSS ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_MULTICAST_VIF ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_OFFMASK ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_ONESBCAST ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_OPTIONS ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_PORTRANGE ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_PORTRANGE_DEFAULT ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_PORTRANGE_HIGH ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_PORTRANGE_LOW ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_RECVDSTADDR ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_RECVIF ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_RECVOPTS ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_RECVRETOPTS ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_RECVTOS ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_RECVTTL ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_RETOPTS ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_RF ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_RSVP_OFF ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_RSVP_ON ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_RSVP_VIF_OFF ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_RSVP_VIF_ON ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_SENDSRCADDR ideal-int
-pkg syscall (freebsd-arm-cgo), const IP_UNBLOCK_SOURCE ideal-int
-pkg syscall (freebsd-arm-cgo), const ISIG ideal-int
-pkg syscall (freebsd-arm-cgo), const ISTRIP ideal-int
-pkg syscall (freebsd-arm-cgo), const IXANY ideal-int
-pkg syscall (freebsd-arm-cgo), const IXOFF ideal-int
-pkg syscall (freebsd-arm-cgo), const IXON ideal-int
-pkg syscall (freebsd-arm-cgo), const LOCK_EX ideal-int
-pkg syscall (freebsd-arm-cgo), const LOCK_NB ideal-int
-pkg syscall (freebsd-arm-cgo), const LOCK_SH ideal-int
-pkg syscall (freebsd-arm-cgo), const LOCK_UN ideal-int
-pkg syscall (freebsd-arm-cgo), const MADV_AUTOSYNC ideal-int
-pkg syscall (freebsd-arm-cgo), const MADV_CORE ideal-int
-pkg syscall (freebsd-arm-cgo), const MADV_DONTNEED ideal-int
-pkg syscall (freebsd-arm-cgo), const MADV_FREE ideal-int
-pkg syscall (freebsd-arm-cgo), const MADV_NOCORE ideal-int
-pkg syscall (freebsd-arm-cgo), const MADV_NORMAL ideal-int
-pkg syscall (freebsd-arm-cgo), const MADV_NOSYNC ideal-int
-pkg syscall (freebsd-arm-cgo), const MADV_PROTECT ideal-int
-pkg syscall (freebsd-arm-cgo), const MADV_RANDOM ideal-int
-pkg syscall (freebsd-arm-cgo), const MADV_SEQUENTIAL ideal-int
-pkg syscall (freebsd-arm-cgo), const MADV_WILLNEED ideal-int
-pkg syscall (freebsd-arm-cgo), const MAP_ANON ideal-int
-pkg syscall (freebsd-arm-cgo), const MAP_ANONYMOUS ideal-int
-pkg syscall (freebsd-arm-cgo), const MAP_COPY ideal-int
-pkg syscall (freebsd-arm-cgo), const MAP_FILE ideal-int
-pkg syscall (freebsd-arm-cgo), const MAP_FIXED ideal-int
-pkg syscall (freebsd-arm-cgo), const MAP_HASSEMAPHORE ideal-int
-pkg syscall (freebsd-arm-cgo), const MAP_NOCORE ideal-int
-pkg syscall (freebsd-arm-cgo), const MAP_NORESERVE ideal-int
-pkg syscall (freebsd-arm-cgo), const MAP_NOSYNC ideal-int
-pkg syscall (freebsd-arm-cgo), const MAP_PREFAULT_READ ideal-int
-pkg syscall (freebsd-arm-cgo), const MAP_PRIVATE ideal-int
-pkg syscall (freebsd-arm-cgo), const MAP_RENAME ideal-int
-pkg syscall (freebsd-arm-cgo), const MAP_RESERVED0080 ideal-int
-pkg syscall (freebsd-arm-cgo), const MAP_RESERVED0100 ideal-int
-pkg syscall (freebsd-arm-cgo), const MAP_SHARED ideal-int
-pkg syscall (freebsd-arm-cgo), const MAP_STACK ideal-int
-pkg syscall (freebsd-arm-cgo), const MCL_CURRENT ideal-int
-pkg syscall (freebsd-arm-cgo), const MCL_FUTURE ideal-int
-pkg syscall (freebsd-arm-cgo), const MSG_COMPAT ideal-int
-pkg syscall (freebsd-arm-cgo), const MSG_CTRUNC ideal-int
-pkg syscall (freebsd-arm-cgo), const MSG_DONTROUTE ideal-int
-pkg syscall (freebsd-arm-cgo), const MSG_DONTWAIT ideal-int
-pkg syscall (freebsd-arm-cgo), const MSG_EOF ideal-int
-pkg syscall (freebsd-arm-cgo), const MSG_EOR ideal-int
-pkg syscall (freebsd-arm-cgo), const MSG_NBIO ideal-int
-pkg syscall (freebsd-arm-cgo), const MSG_NOSIGNAL ideal-int
-pkg syscall (freebsd-arm-cgo), const MSG_NOTIFICATION ideal-int
-pkg syscall (freebsd-arm-cgo), const MSG_OOB ideal-int
-pkg syscall (freebsd-arm-cgo), const MSG_PEEK ideal-int
-pkg syscall (freebsd-arm-cgo), const MSG_TRUNC ideal-int
-pkg syscall (freebsd-arm-cgo), const MSG_WAITALL ideal-int
-pkg syscall (freebsd-arm-cgo), const MS_ASYNC ideal-int
-pkg syscall (freebsd-arm-cgo), const MS_INVALIDATE ideal-int
-pkg syscall (freebsd-arm-cgo), const MS_SYNC ideal-int
-pkg syscall (freebsd-arm-cgo), const NET_RT_DUMP ideal-int
-pkg syscall (freebsd-arm-cgo), const NET_RT_FLAGS ideal-int
-pkg syscall (freebsd-arm-cgo), const NET_RT_IFLIST ideal-int
-pkg syscall (freebsd-arm-cgo), const NET_RT_IFLISTL ideal-int
-pkg syscall (freebsd-arm-cgo), const NET_RT_IFMALIST ideal-int
-pkg syscall (freebsd-arm-cgo), const NET_RT_MAXID ideal-int
-pkg syscall (freebsd-arm-cgo), const NOFLSH ideal-int
-pkg syscall (freebsd-arm-cgo), const NOTE_ATTRIB ideal-int
-pkg syscall (freebsd-arm-cgo), const NOTE_CHILD ideal-int
-pkg syscall (freebsd-arm-cgo), const NOTE_DELETE ideal-int
-pkg syscall (freebsd-arm-cgo), const NOTE_EXEC ideal-int
-pkg syscall (freebsd-arm-cgo), const NOTE_EXIT ideal-int
-pkg syscall (freebsd-arm-cgo), const NOTE_EXTEND ideal-int
-pkg syscall (freebsd-arm-cgo), const NOTE_FFAND ideal-int
-pkg syscall (freebsd-arm-cgo), const NOTE_FFCOPY ideal-int
-pkg syscall (freebsd-arm-cgo), const NOTE_FFCTRLMASK ideal-int
-pkg syscall (freebsd-arm-cgo), const NOTE_FFLAGSMASK ideal-int
-pkg syscall (freebsd-arm-cgo), const NOTE_FFNOP ideal-int
-pkg syscall (freebsd-arm-cgo), const NOTE_FFOR ideal-int
-pkg syscall (freebsd-arm-cgo), const NOTE_FORK ideal-int
-pkg syscall (freebsd-arm-cgo), const NOTE_LINK ideal-int
-pkg syscall (freebsd-arm-cgo), const NOTE_LOWAT ideal-int
-pkg syscall (freebsd-arm-cgo), const NOTE_PCTRLMASK ideal-int
-pkg syscall (freebsd-arm-cgo), const NOTE_PDATAMASK ideal-int
-pkg syscall (freebsd-arm-cgo), const NOTE_RENAME ideal-int
-pkg syscall (freebsd-arm-cgo), const NOTE_REVOKE ideal-int
-pkg syscall (freebsd-arm-cgo), const NOTE_TRACK ideal-int
-pkg syscall (freebsd-arm-cgo), const NOTE_TRACKERR ideal-int
-pkg syscall (freebsd-arm-cgo), const NOTE_TRIGGER ideal-int
-pkg syscall (freebsd-arm-cgo), const NOTE_WRITE ideal-int
-pkg syscall (freebsd-arm-cgo), const OCRNL ideal-int
-pkg syscall (freebsd-arm-cgo), const ONLCR ideal-int
-pkg syscall (freebsd-arm-cgo), const ONLRET ideal-int
-pkg syscall (freebsd-arm-cgo), const ONOCR ideal-int
-pkg syscall (freebsd-arm-cgo), const ONOEOT ideal-int
-pkg syscall (freebsd-arm-cgo), const OPOST ideal-int
-pkg syscall (freebsd-arm-cgo), const O_ACCMODE ideal-int
-pkg syscall (freebsd-arm-cgo), const O_DIRECT ideal-int
-pkg syscall (freebsd-arm-cgo), const O_DIRECTORY ideal-int
-pkg syscall (freebsd-arm-cgo), const O_EXEC ideal-int
-pkg syscall (freebsd-arm-cgo), const O_EXLOCK ideal-int
-pkg syscall (freebsd-arm-cgo), const O_FSYNC ideal-int
-pkg syscall (freebsd-arm-cgo), const O_NDELAY ideal-int
-pkg syscall (freebsd-arm-cgo), const O_NOFOLLOW ideal-int
-pkg syscall (freebsd-arm-cgo), const O_SHLOCK ideal-int
-pkg syscall (freebsd-arm-cgo), const O_TTY_INIT ideal-int
-pkg syscall (freebsd-arm-cgo), const PARENB ideal-int
-pkg syscall (freebsd-arm-cgo), const PARMRK ideal-int
-pkg syscall (freebsd-arm-cgo), const PARODD ideal-int
-pkg syscall (freebsd-arm-cgo), const PENDIN ideal-int
-pkg syscall (freebsd-arm-cgo), const PRIO_PGRP = 1
-pkg syscall (freebsd-arm-cgo), const PRIO_PGRP ideal-int
-pkg syscall (freebsd-arm-cgo), const PRIO_PROCESS = 0
-pkg syscall (freebsd-arm-cgo), const PRIO_PROCESS ideal-int
-pkg syscall (freebsd-arm-cgo), const PRIO_USER = 2
-pkg syscall (freebsd-arm-cgo), const PRIO_USER ideal-int
-pkg syscall (freebsd-arm-cgo), const PROT_EXEC ideal-int
-pkg syscall (freebsd-arm-cgo), const PROT_NONE ideal-int
-pkg syscall (freebsd-arm-cgo), const PROT_READ ideal-int
-pkg syscall (freebsd-arm-cgo), const PROT_WRITE ideal-int
-pkg syscall (freebsd-arm-cgo), const PTRACE_CONT ideal-int
-pkg syscall (freebsd-arm-cgo), const PTRACE_KILL ideal-int
-pkg syscall (freebsd-arm-cgo), const PTRACE_TRACEME ideal-int
-pkg syscall (freebsd-arm-cgo), const RLIMIT_AS ideal-int
-pkg syscall (freebsd-arm-cgo), const RLIMIT_CORE ideal-int
-pkg syscall (freebsd-arm-cgo), const RLIMIT_CPU ideal-int
-pkg syscall (freebsd-arm-cgo), const RLIMIT_DATA ideal-int
-pkg syscall (freebsd-arm-cgo), const RLIMIT_FSIZE ideal-int
-pkg syscall (freebsd-arm-cgo), const RLIMIT_NOFILE ideal-int
-pkg syscall (freebsd-arm-cgo), const RLIMIT_STACK ideal-int
-pkg syscall (freebsd-arm-cgo), const RLIM_INFINITY ideal-int
-pkg syscall (freebsd-arm-cgo), const RTAX_AUTHOR ideal-int
-pkg syscall (freebsd-arm-cgo), const RTAX_BRD ideal-int
-pkg syscall (freebsd-arm-cgo), const RTAX_DST ideal-int
-pkg syscall (freebsd-arm-cgo), const RTAX_GATEWAY ideal-int
-pkg syscall (freebsd-arm-cgo), const RTAX_GENMASK ideal-int
-pkg syscall (freebsd-arm-cgo), const RTAX_IFA ideal-int
-pkg syscall (freebsd-arm-cgo), const RTAX_IFP ideal-int
-pkg syscall (freebsd-arm-cgo), const RTAX_MAX ideal-int
-pkg syscall (freebsd-arm-cgo), const RTAX_NETMASK ideal-int
-pkg syscall (freebsd-arm-cgo), const RTA_AUTHOR ideal-int
-pkg syscall (freebsd-arm-cgo), const RTA_BRD ideal-int
-pkg syscall (freebsd-arm-cgo), const RTA_DST ideal-int
-pkg syscall (freebsd-arm-cgo), const RTA_GATEWAY ideal-int
-pkg syscall (freebsd-arm-cgo), const RTA_GENMASK ideal-int
-pkg syscall (freebsd-arm-cgo), const RTA_IFA ideal-int
-pkg syscall (freebsd-arm-cgo), const RTA_IFP ideal-int
-pkg syscall (freebsd-arm-cgo), const RTA_NETMASK ideal-int
-pkg syscall (freebsd-arm-cgo), const RTF_BLACKHOLE ideal-int
-pkg syscall (freebsd-arm-cgo), const RTF_BROADCAST ideal-int
-pkg syscall (freebsd-arm-cgo), const RTF_DONE ideal-int
-pkg syscall (freebsd-arm-cgo), const RTF_DYNAMIC ideal-int
-pkg syscall (freebsd-arm-cgo), const RTF_FMASK ideal-int
-pkg syscall (freebsd-arm-cgo), const RTF_GATEWAY ideal-int
-pkg syscall (freebsd-arm-cgo), const RTF_HOST ideal-int
-pkg syscall (freebsd-arm-cgo), const RTF_LLDATA ideal-int
-pkg syscall (freebsd-arm-cgo), const RTF_LLINFO ideal-int
-pkg syscall (freebsd-arm-cgo), const RTF_LOCAL ideal-int
-pkg syscall (freebsd-arm-cgo), const RTF_MODIFIED ideal-int
-pkg syscall (freebsd-arm-cgo), const RTF_MULTICAST ideal-int
-pkg syscall (freebsd-arm-cgo), const RTF_PINNED ideal-int
-pkg syscall (freebsd-arm-cgo), const RTF_PRCLONING ideal-int
-pkg syscall (freebsd-arm-cgo), const RTF_PROTO1 ideal-int
-pkg syscall (freebsd-arm-cgo), const RTF_PROTO2 ideal-int
-pkg syscall (freebsd-arm-cgo), const RTF_PROTO3 ideal-int
-pkg syscall (freebsd-arm-cgo), const RTF_REJECT ideal-int
-pkg syscall (freebsd-arm-cgo), const RTF_RNH_LOCKED ideal-int
-pkg syscall (freebsd-arm-cgo), const RTF_STATIC ideal-int
-pkg syscall (freebsd-arm-cgo), const RTF_STICKY ideal-int
-pkg syscall (freebsd-arm-cgo), const RTF_UP ideal-int
-pkg syscall (freebsd-arm-cgo), const RTF_XRESOLVE ideal-int
-pkg syscall (freebsd-arm-cgo), const RTM_ADD ideal-int
-pkg syscall (freebsd-arm-cgo), const RTM_CHANGE ideal-int
-pkg syscall (freebsd-arm-cgo), const RTM_DELADDR ideal-int
-pkg syscall (freebsd-arm-cgo), const RTM_DELETE ideal-int
-pkg syscall (freebsd-arm-cgo), const RTM_DELMADDR ideal-int
-pkg syscall (freebsd-arm-cgo), const RTM_GET ideal-int
-pkg syscall (freebsd-arm-cgo), const RTM_IEEE80211 ideal-int
-pkg syscall (freebsd-arm-cgo), const RTM_IFANNOUNCE ideal-int
-pkg syscall (freebsd-arm-cgo), const RTM_IFINFO ideal-int
-pkg syscall (freebsd-arm-cgo), const RTM_LOCK ideal-int
-pkg syscall (freebsd-arm-cgo), const RTM_LOSING ideal-int
-pkg syscall (freebsd-arm-cgo), const RTM_MISS ideal-int
-pkg syscall (freebsd-arm-cgo), const RTM_NEWADDR ideal-int
-pkg syscall (freebsd-arm-cgo), const RTM_NEWMADDR ideal-int
-pkg syscall (freebsd-arm-cgo), const RTM_OLDADD ideal-int
-pkg syscall (freebsd-arm-cgo), const RTM_OLDDEL ideal-int
-pkg syscall (freebsd-arm-cgo), const RTM_REDIRECT ideal-int
-pkg syscall (freebsd-arm-cgo), const RTM_RESOLVE ideal-int
-pkg syscall (freebsd-arm-cgo), const RTM_RTTUNIT ideal-int
-pkg syscall (freebsd-arm-cgo), const RTM_VERSION ideal-int
-pkg syscall (freebsd-arm-cgo), const RTV_EXPIRE ideal-int
-pkg syscall (freebsd-arm-cgo), const RTV_HOPCOUNT ideal-int
-pkg syscall (freebsd-arm-cgo), const RTV_MTU ideal-int
-pkg syscall (freebsd-arm-cgo), const RTV_RPIPE ideal-int
-pkg syscall (freebsd-arm-cgo), const RTV_RTT ideal-int
-pkg syscall (freebsd-arm-cgo), const RTV_RTTVAR ideal-int
-pkg syscall (freebsd-arm-cgo), const RTV_SPIPE ideal-int
-pkg syscall (freebsd-arm-cgo), const RTV_SSTHRESH ideal-int
-pkg syscall (freebsd-arm-cgo), const RTV_WEIGHT ideal-int
-pkg syscall (freebsd-arm-cgo), const RT_CACHING_CONTEXT ideal-int
-pkg syscall (freebsd-arm-cgo), const RT_DEFAULT_FIB ideal-int
-pkg syscall (freebsd-arm-cgo), const RT_NORTREF ideal-int
-pkg syscall (freebsd-arm-cgo), const RUSAGE_CHILDREN ideal-int
-pkg syscall (freebsd-arm-cgo), const RUSAGE_SELF ideal-int
-pkg syscall (freebsd-arm-cgo), const RUSAGE_THREAD ideal-int
-pkg syscall (freebsd-arm-cgo), const SCM_BINTIME ideal-int
-pkg syscall (freebsd-arm-cgo), const SCM_CREDS ideal-int
-pkg syscall (freebsd-arm-cgo), const SCM_RIGHTS ideal-int
-pkg syscall (freebsd-arm-cgo), const SCM_TIMESTAMP ideal-int
-pkg syscall (freebsd-arm-cgo), const SIGCHLD Signal
-pkg syscall (freebsd-arm-cgo), const SIGCONT Signal
-pkg syscall (freebsd-arm-cgo), const SIGEMT Signal
-pkg syscall (freebsd-arm-cgo), const SIGINFO Signal
-pkg syscall (freebsd-arm-cgo), const SIGIO Signal
-pkg syscall (freebsd-arm-cgo), const SIGIOT Signal
-pkg syscall (freebsd-arm-cgo), const SIGLIBRT Signal
-pkg syscall (freebsd-arm-cgo), const SIGLWP Signal
-pkg syscall (freebsd-arm-cgo), const SIGPROF Signal
-pkg syscall (freebsd-arm-cgo), const SIGSTOP Signal
-pkg syscall (freebsd-arm-cgo), const SIGSYS Signal
-pkg syscall (freebsd-arm-cgo), const SIGTHR Signal
-pkg syscall (freebsd-arm-cgo), const SIGTSTP Signal
-pkg syscall (freebsd-arm-cgo), const SIGTTIN Signal
-pkg syscall (freebsd-arm-cgo), const SIGTTOU Signal
-pkg syscall (freebsd-arm-cgo), const SIGURG Signal
-pkg syscall (freebsd-arm-cgo), const SIGUSR1 Signal
-pkg syscall (freebsd-arm-cgo), const SIGUSR2 Signal
-pkg syscall (freebsd-arm-cgo), const SIGVTALRM Signal
-pkg syscall (freebsd-arm-cgo), const SIGWINCH Signal
-pkg syscall (freebsd-arm-cgo), const SIGXCPU Signal
-pkg syscall (freebsd-arm-cgo), const SIGXFSZ Signal
-pkg syscall (freebsd-arm-cgo), const SIOCADDMULTI ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCADDRT ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCAIFADDR ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCAIFGROUP ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCALIFADDR ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCATMARK ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCDELMULTI ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCDELRT ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCDIFADDR ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCDIFGROUP ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCDIFPHYADDR ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCDLIFADDR ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCGDRVSPEC ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCGETSGCNT ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCGETVIFCNT ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCGHIWAT ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCGIFADDR ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCGIFBRDADDR ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCGIFCAP ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCGIFCONF ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCGIFDESCR ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCGIFDSTADDR ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCGIFFIB ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCGIFFLAGS ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCGIFGENERIC ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCGIFGMEMB ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCGIFGROUP ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCGIFINDEX ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCGIFMAC ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCGIFMEDIA ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCGIFMETRIC ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCGIFMTU ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCGIFNETMASK ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCGIFPDSTADDR ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCGIFPHYS ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCGIFPSRCADDR ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCGIFSTATUS ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCGLIFADDR ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCGLIFPHYADDR ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCGLOWAT ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCGPGRP ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCGPRIVATE_0 ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCGPRIVATE_1 ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCIFCREATE ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCIFCREATE2 ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCIFDESTROY ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCIFGCLONERS ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCSDRVSPEC ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCSHIWAT ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCSIFADDR ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCSIFBRDADDR ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCSIFCAP ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCSIFDESCR ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCSIFDSTADDR ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCSIFFIB ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCSIFFLAGS ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCSIFGENERIC ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCSIFLLADDR ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCSIFMAC ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCSIFMEDIA ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCSIFMETRIC ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCSIFMTU ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCSIFNAME ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCSIFNETMASK ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCSIFPHYADDR ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCSIFPHYS ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCSIFRVNET ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCSIFVNET ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCSLIFPHYADDR ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCSLOWAT ideal-int
-pkg syscall (freebsd-arm-cgo), const SIOCSPGRP ideal-int
-pkg syscall (freebsd-arm-cgo), const SOCK_MAXADDRLEN ideal-int
-pkg syscall (freebsd-arm-cgo), const SOCK_RDM ideal-int
-pkg syscall (freebsd-arm-cgo), const SO_ACCEPTCONN ideal-int
-pkg syscall (freebsd-arm-cgo), const SO_ACCEPTFILTER ideal-int
-pkg syscall (freebsd-arm-cgo), const SO_BINTIME ideal-int
-pkg syscall (freebsd-arm-cgo), const SO_DEBUG ideal-int
-pkg syscall (freebsd-arm-cgo), const SO_ERROR ideal-int
-pkg syscall (freebsd-arm-cgo), const SO_LABEL ideal-int
-pkg syscall (freebsd-arm-cgo), const SO_LISTENINCQLEN ideal-int
-pkg syscall (freebsd-arm-cgo), const SO_LISTENQLEN ideal-int
-pkg syscall (freebsd-arm-cgo), const SO_LISTENQLIMIT ideal-int
-pkg syscall (freebsd-arm-cgo), const SO_NOSIGPIPE ideal-int
-pkg syscall (freebsd-arm-cgo), const SO_NO_DDP ideal-int
-pkg syscall (freebsd-arm-cgo), const SO_NO_OFFLOAD ideal-int
-pkg syscall (freebsd-arm-cgo), const SO_OOBINLINE ideal-int
-pkg syscall (freebsd-arm-cgo), const SO_PEERLABEL ideal-int
-pkg syscall (freebsd-arm-cgo), const SO_PROTOCOL ideal-int
-pkg syscall (freebsd-arm-cgo), const SO_PROTOTYPE ideal-int
-pkg syscall (freebsd-arm-cgo), const SO_RCVLOWAT ideal-int
-pkg syscall (freebsd-arm-cgo), const SO_RCVTIMEO ideal-int
-pkg syscall (freebsd-arm-cgo), const SO_REUSEPORT ideal-int
-pkg syscall (freebsd-arm-cgo), const SO_SETFIB ideal-int
-pkg syscall (freebsd-arm-cgo), const SO_SNDLOWAT ideal-int
-pkg syscall (freebsd-arm-cgo), const SO_SNDTIMEO ideal-int
-pkg syscall (freebsd-arm-cgo), const SO_TIMESTAMP ideal-int
-pkg syscall (freebsd-arm-cgo), const SO_TYPE ideal-int
-pkg syscall (freebsd-arm-cgo), const SO_USELOOPBACK ideal-int
-pkg syscall (freebsd-arm-cgo), const SO_USER_COOKIE ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_ABORT2 ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_ACCEPT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_ACCESS ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_ACCT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_ADJTIME ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_AUDIT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_AUDITCTL ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_AUDITON ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_BIND ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_CAP_ENTER ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_CAP_FCNTLS_GET ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_CAP_FCNTLS_LIMIT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_CAP_GETMODE ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_CAP_IOCTLS_GET ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_CAP_IOCTLS_LIMIT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_CAP_NEW ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_CAP_RIGHTS_GET ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_CAP_RIGHTS_LIMIT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_CHDIR ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_CHFLAGS ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_CHMOD ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_CHOWN ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_CHROOT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_CLOCK_GETCPUCLOCKID2 ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_CLOCK_GETRES ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_CLOCK_GETTIME ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_CLOCK_SETTIME ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_CLOSE ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_CLOSEFROM ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_CONNECT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_CPUSET ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_CPUSET_GETAFFINITY ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_CPUSET_GETID ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_CPUSET_SETAFFINITY ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_CPUSET_SETID ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_DUP ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_DUP2 ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_EACCESS ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_EXECVE ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_EXIT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_EXTATTRCTL ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_EXTATTR_DELETE_FD ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_EXTATTR_DELETE_FILE ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_EXTATTR_DELETE_LINK ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_EXTATTR_GET_FD ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_EXTATTR_GET_FILE ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_EXTATTR_GET_LINK ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_EXTATTR_LIST_FD ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_EXTATTR_LIST_FILE ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_EXTATTR_LIST_LINK ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_EXTATTR_SET_FD ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_EXTATTR_SET_FILE ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_EXTATTR_SET_LINK ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_FACCESSAT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_FCHDIR ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_FCHFLAGS ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_FCHMOD ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_FCHMODAT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_FCHOWN ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_FCHOWNAT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_FCNTL ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_FEXECVE ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_FFCLOCK_GETCOUNTER ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_FFCLOCK_GETESTIMATE ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_FFCLOCK_SETESTIMATE ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_FHOPEN ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_FHSTAT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_FHSTATFS ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_FLOCK ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_FORK ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_FPATHCONF ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_FREEBSD6_FTRUNCATE ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_FREEBSD6_LSEEK ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_FREEBSD6_MMAP ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_FREEBSD6_PREAD ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_FREEBSD6_PWRITE ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_FREEBSD6_TRUNCATE ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_FSTAT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_FSTATAT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_FSTATFS ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_FSYNC ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_FTRUNCATE ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_FUTIMES ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_FUTIMESAT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_GETAUDIT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_GETAUDIT_ADDR ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_GETAUID ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_GETCONTEXT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_GETDENTS ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_GETDIRENTRIES ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_GETDTABLESIZE ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_GETEGID ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_GETEUID ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_GETFH ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_GETFSSTAT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_GETGID ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_GETGROUPS ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_GETITIMER ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_GETLOGIN ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_GETLOGINCLASS ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_GETPEERNAME ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_GETPGID ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_GETPGRP ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_GETPID ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_GETPPID ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_GETPRIORITY ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_GETRESGID ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_GETRESUID ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_GETRLIMIT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_GETRUSAGE ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_GETSID ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_GETSOCKNAME ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_GETSOCKOPT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_GETTIMEOFDAY ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_GETUID ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_IOCTL ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_ISSETUGID ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_JAIL ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_JAIL_ATTACH ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_JAIL_GET ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_JAIL_REMOVE ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_JAIL_SET ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_KENV ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_KEVENT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_KILL ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_KLDFIND ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_KLDFIRSTMOD ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_KLDLOAD ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_KLDNEXT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_KLDSTAT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_KLDSYM ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_KLDUNLOAD ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_KLDUNLOADF ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_KQUEUE ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_KTIMER_CREATE ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_KTIMER_DELETE ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_KTIMER_GETOVERRUN ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_KTIMER_GETTIME ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_KTIMER_SETTIME ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_KTRACE ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_LCHFLAGS ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_LCHMOD ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_LCHOWN ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_LGETFH ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_LINK ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_LINKAT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_LISTEN ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_LPATHCONF ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_LSEEK ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_LSTAT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_LUTIMES ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_MAC_SYSCALL ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_MADVISE ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_MINCORE ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_MINHERIT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_MKDIR ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_MKDIRAT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_MKFIFO ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_MKFIFOAT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_MKNOD ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_MKNODAT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_MLOCK ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_MLOCKALL ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_MMAP ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_MODFIND ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_MODFNEXT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_MODNEXT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_MODSTAT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_MOUNT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_MPROTECT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_MSYNC ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_MUNLOCK ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_MUNLOCKALL ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_MUNMAP ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_NANOSLEEP ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_NFSTAT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_NLSTAT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_NMOUNT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_NSTAT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_NTP_ADJTIME ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_NTP_GETTIME ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_OBREAK ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_OPEN ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_OPENAT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_OPENBSD_POLL ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_OVADVISE ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_PATHCONF ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_PDFORK ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_PDGETPID ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_PDKILL ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_PIPE ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_POLL ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_POSIX_FADVISE ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_POSIX_FALLOCATE ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_POSIX_OPENPT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_PREAD ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_PREADV ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_PROFIL ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_PSELECT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_PTRACE ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_PWRITE ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_PWRITEV ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_QUOTACTL ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_RCTL_ADD_RULE ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_RCTL_GET_LIMITS ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_RCTL_GET_RACCT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_RCTL_GET_RULES ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_RCTL_REMOVE_RULE ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_READ ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_READLINK ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_READLINKAT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_READV ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_REBOOT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_RECVFROM ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_RECVMSG ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_RENAME ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_RENAMEAT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_REVOKE ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_RFORK ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_RMDIR ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_RTPRIO ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_RTPRIO_THREAD ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SBRK ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SCHED_GETPARAM ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SCHED_GETSCHEDULER ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SCHED_GET_PRIORITY_MAX ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SCHED_GET_PRIORITY_MIN ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SCHED_RR_GET_INTERVAL ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SCHED_SETPARAM ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SCHED_SETSCHEDULER ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SCHED_YIELD ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SCTP_GENERIC_RECVMSG ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SCTP_GENERIC_SENDMSG ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SCTP_GENERIC_SENDMSG_IOV ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SCTP_PEELOFF ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SELECT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SENDFILE ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SENDMSG ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SENDTO ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SETAUDIT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SETAUDIT_ADDR ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SETAUID ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SETCONTEXT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SETEGID ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SETEUID ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SETFIB ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SETGID ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SETGROUPS ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SETITIMER ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SETLOGIN ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SETLOGINCLASS ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SETPGID ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SETPRIORITY ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SETREGID ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SETRESGID ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SETRESUID ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SETREUID ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SETRLIMIT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SETSID ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SETSOCKOPT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SETTIMEOFDAY ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SETUID ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SHM_OPEN ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SHM_UNLINK ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SHUTDOWN ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SIGACTION ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SIGALTSTACK ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SIGPENDING ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SIGPROCMASK ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SIGQUEUE ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SIGRETURN ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SIGSUSPEND ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SIGTIMEDWAIT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SIGWAIT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SIGWAITINFO ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SOCKET ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SOCKETPAIR ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SSTK ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_STAT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_STATFS ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SWAPCONTEXT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SWAPOFF ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SWAPON ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SYMLINK ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SYMLINKAT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SYNC ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_SYSARCH ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_THR_CREATE ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_THR_EXIT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_THR_KILL ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_THR_KILL2 ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_THR_NEW ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_THR_SELF ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_THR_SET_NAME ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_THR_SUSPEND ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_THR_WAKE ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_TRUNCATE ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_UMASK ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_UNDELETE ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_UNLINK ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_UNLINKAT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_UNMOUNT ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_UTIMES ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_UTRACE ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_UUIDGEN ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_VFORK ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_WAIT4 ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_WAIT6 ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_WRITE ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_WRITEV ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS_YIELD ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS__UMTX_LOCK ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS__UMTX_OP ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS__UMTX_UNLOCK ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS___ACL_ACLCHECK_FD ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS___ACL_ACLCHECK_FILE ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS___ACL_ACLCHECK_LINK ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS___ACL_DELETE_FD ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS___ACL_DELETE_FILE ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS___ACL_DELETE_LINK ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS___ACL_GET_FD ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS___ACL_GET_FILE ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS___ACL_GET_LINK ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS___ACL_SET_FD ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS___ACL_SET_FILE ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS___ACL_SET_LINK ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS___GETCWD ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS___MAC_EXECVE ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS___MAC_GET_FD ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS___MAC_GET_FILE ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS___MAC_GET_LINK ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS___MAC_GET_PID ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS___MAC_GET_PROC ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS___MAC_SET_FD ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS___MAC_SET_FILE ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS___MAC_SET_LINK ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS___MAC_SET_PROC ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS___SETUGID ideal-int
-pkg syscall (freebsd-arm-cgo), const SYS___SYSCTL ideal-int
-pkg syscall (freebsd-arm-cgo), const SizeofBpfHdr ideal-int
-pkg syscall (freebsd-arm-cgo), const SizeofBpfInsn ideal-int
-pkg syscall (freebsd-arm-cgo), const SizeofBpfProgram ideal-int
-pkg syscall (freebsd-arm-cgo), const SizeofBpfStat ideal-int
-pkg syscall (freebsd-arm-cgo), const SizeofBpfVersion ideal-int
-pkg syscall (freebsd-arm-cgo), const SizeofBpfZbuf ideal-int
-pkg syscall (freebsd-arm-cgo), const SizeofBpfZbufHeader ideal-int
-pkg syscall (freebsd-arm-cgo), const SizeofCmsghdr ideal-int
-pkg syscall (freebsd-arm-cgo), const SizeofICMPv6Filter = 32
-pkg syscall (freebsd-arm-cgo), const SizeofICMPv6Filter ideal-int
-pkg syscall (freebsd-arm-cgo), const SizeofIPMreq ideal-int
-pkg syscall (freebsd-arm-cgo), const SizeofIPMreqn ideal-int
-pkg syscall (freebsd-arm-cgo), const SizeofIPv6MTUInfo = 32
-pkg syscall (freebsd-arm-cgo), const SizeofIPv6MTUInfo ideal-int
-pkg syscall (freebsd-arm-cgo), const SizeofIPv6Mreq ideal-int
-pkg syscall (freebsd-arm-cgo), const SizeofIfAnnounceMsghdr ideal-int
-pkg syscall (freebsd-arm-cgo), const SizeofIfData ideal-int
-pkg syscall (freebsd-arm-cgo), const SizeofIfMsghdr ideal-int
-pkg syscall (freebsd-arm-cgo), const SizeofIfaMsghdr ideal-int
-pkg syscall (freebsd-arm-cgo), const SizeofIfmaMsghdr ideal-int
-pkg syscall (freebsd-arm-cgo), const SizeofInet6Pktinfo ideal-int
-pkg syscall (freebsd-arm-cgo), const SizeofLinger ideal-int
-pkg syscall (freebsd-arm-cgo), const SizeofMsghdr ideal-int
-pkg syscall (freebsd-arm-cgo), const SizeofRtMetrics ideal-int
-pkg syscall (freebsd-arm-cgo), const SizeofRtMsghdr ideal-int
-pkg syscall (freebsd-arm-cgo), const SizeofSockaddrAny ideal-int
-pkg syscall (freebsd-arm-cgo), const SizeofSockaddrDatalink ideal-int
-pkg syscall (freebsd-arm-cgo), const SizeofSockaddrInet4 ideal-int
-pkg syscall (freebsd-arm-cgo), const SizeofSockaddrInet6 ideal-int
-pkg syscall (freebsd-arm-cgo), const SizeofSockaddrUnix ideal-int
-pkg syscall (freebsd-arm-cgo), const TCIFLUSH ideal-int
-pkg syscall (freebsd-arm-cgo), const TCIOFLUSH ideal-int
-pkg syscall (freebsd-arm-cgo), const TCOFLUSH ideal-int
-pkg syscall (freebsd-arm-cgo), const TCP_CA_NAME_MAX ideal-int
-pkg syscall (freebsd-arm-cgo), const TCP_CONGESTION ideal-int
-pkg syscall (freebsd-arm-cgo), const TCP_INFO ideal-int
-pkg syscall (freebsd-arm-cgo), const TCP_KEEPCNT ideal-int
-pkg syscall (freebsd-arm-cgo), const TCP_KEEPIDLE ideal-int
-pkg syscall (freebsd-arm-cgo), const TCP_KEEPINIT ideal-int
-pkg syscall (freebsd-arm-cgo), const TCP_KEEPINTVL ideal-int
-pkg syscall (freebsd-arm-cgo), const TCP_MAXBURST ideal-int
-pkg syscall (freebsd-arm-cgo), const TCP_MAXHLEN ideal-int
-pkg syscall (freebsd-arm-cgo), const TCP_MAXOLEN ideal-int
-pkg syscall (freebsd-arm-cgo), const TCP_MAXSEG ideal-int
-pkg syscall (freebsd-arm-cgo), const TCP_MAXWIN ideal-int
-pkg syscall (freebsd-arm-cgo), const TCP_MAX_SACK ideal-int
-pkg syscall (freebsd-arm-cgo), const TCP_MAX_WINSHIFT ideal-int
-pkg syscall (freebsd-arm-cgo), const TCP_MD5SIG ideal-int
-pkg syscall (freebsd-arm-cgo), const TCP_MINMSS ideal-int
-pkg syscall (freebsd-arm-cgo), const TCP_MSS ideal-int
-pkg syscall (freebsd-arm-cgo), const TCP_NOOPT ideal-int
-pkg syscall (freebsd-arm-cgo), const TCP_NOPUSH ideal-int
-pkg syscall (freebsd-arm-cgo), const TCSAFLUSH ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCCBRK ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCCDTR ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCCONS ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCDRAIN ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCEXCL ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCEXT ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCFLUSH ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCGDRAINWAIT ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCGETA ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCGETD ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCGPGRP ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCGPTN ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCGSID ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCGWINSZ ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCMBIC ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCMBIS ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCMGDTRWAIT ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCMGET ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCMSDTRWAIT ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCMSET ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCM_CAR ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCM_CD ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCM_CTS ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCM_DCD ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCM_DSR ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCM_DTR ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCM_LE ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCM_RI ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCM_RNG ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCM_RTS ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCM_SR ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCM_ST ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCNOTTY ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCNXCL ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCOUTQ ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCPKT ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCPKT_DATA ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCPKT_DOSTOP ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCPKT_FLUSHREAD ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCPKT_FLUSHWRITE ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCPKT_IOCTL ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCPKT_NOSTOP ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCPKT_START ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCPKT_STOP ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCPTMASTER ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCSBRK ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCSCTTY ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCSDRAINWAIT ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCSDTR ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCSETA ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCSETAF ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCSETAW ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCSETD ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCSIG ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCSPGRP ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCSTART ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCSTAT ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCSTI ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCSTOP ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCSWINSZ ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCTIMESTAMP ideal-int
-pkg syscall (freebsd-arm-cgo), const TIOCUCNTL ideal-int
-pkg syscall (freebsd-arm-cgo), const TOSTOP ideal-int
-pkg syscall (freebsd-arm-cgo), const VDISCARD ideal-int
-pkg syscall (freebsd-arm-cgo), const VDSUSP ideal-int
-pkg syscall (freebsd-arm-cgo), const VEOF ideal-int
-pkg syscall (freebsd-arm-cgo), const VEOL ideal-int
-pkg syscall (freebsd-arm-cgo), const VEOL2 ideal-int
-pkg syscall (freebsd-arm-cgo), const VERASE ideal-int
-pkg syscall (freebsd-arm-cgo), const VERASE2 ideal-int
-pkg syscall (freebsd-arm-cgo), const VINTR ideal-int
-pkg syscall (freebsd-arm-cgo), const VKILL ideal-int
-pkg syscall (freebsd-arm-cgo), const VLNEXT ideal-int
-pkg syscall (freebsd-arm-cgo), const VMIN ideal-int
-pkg syscall (freebsd-arm-cgo), const VQUIT ideal-int
-pkg syscall (freebsd-arm-cgo), const VREPRINT ideal-int
-pkg syscall (freebsd-arm-cgo), const VSTART ideal-int
-pkg syscall (freebsd-arm-cgo), const VSTATUS ideal-int
-pkg syscall (freebsd-arm-cgo), const VSTOP ideal-int
-pkg syscall (freebsd-arm-cgo), const VSUSP ideal-int
-pkg syscall (freebsd-arm-cgo), const VTIME ideal-int
-pkg syscall (freebsd-arm-cgo), const VWERASE ideal-int
-pkg syscall (freebsd-arm-cgo), const WCONTINUED ideal-int
-pkg syscall (freebsd-arm-cgo), const WCOREFLAG ideal-int
-pkg syscall (freebsd-arm-cgo), const WEXITED ideal-int
-pkg syscall (freebsd-arm-cgo), const WLINUXCLONE ideal-int
-pkg syscall (freebsd-arm-cgo), const WNOHANG ideal-int
-pkg syscall (freebsd-arm-cgo), const WNOWAIT ideal-int
-pkg syscall (freebsd-arm-cgo), const WSTOPPED ideal-int
-pkg syscall (freebsd-arm-cgo), const WTRAPPED ideal-int
-pkg syscall (freebsd-arm-cgo), const WUNTRACED ideal-int
-pkg syscall (freebsd-arm-cgo), func Accept(int) (int, Sockaddr, error)
-pkg syscall (freebsd-arm-cgo), func Access(string, uint32) error
-pkg syscall (freebsd-arm-cgo), func Adjtime(*Timeval, *Timeval) error
-pkg syscall (freebsd-arm-cgo), func Bind(int, Sockaddr) error
-pkg syscall (freebsd-arm-cgo), func BpfBuflen(int) (int, error)
-pkg syscall (freebsd-arm-cgo), func BpfDatalink(int) (int, error)
-pkg syscall (freebsd-arm-cgo), func BpfHeadercmpl(int) (int, error)
-pkg syscall (freebsd-arm-cgo), func BpfInterface(int, string) (string, error)
-pkg syscall (freebsd-arm-cgo), func BpfJump(int, int, int, int) *BpfInsn
-pkg syscall (freebsd-arm-cgo), func BpfStats(int) (*BpfStat, error)
-pkg syscall (freebsd-arm-cgo), func BpfStmt(int, int) *BpfInsn
-pkg syscall (freebsd-arm-cgo), func BpfTimeout(int) (*Timeval, error)
-pkg syscall (freebsd-arm-cgo), func CheckBpfVersion(int) error
-pkg syscall (freebsd-arm-cgo), func Chflags(string, int) error
-pkg syscall (freebsd-arm-cgo), func Chroot(string) error
-pkg syscall (freebsd-arm-cgo), func Close(int) error
-pkg syscall (freebsd-arm-cgo), func CloseOnExec(int)
-pkg syscall (freebsd-arm-cgo), func CmsgLen(int) int
-pkg syscall (freebsd-arm-cgo), func CmsgSpace(int) int
-pkg syscall (freebsd-arm-cgo), func Connect(int, Sockaddr) error
-pkg syscall (freebsd-arm-cgo), func Dup(int) (int, error)
-pkg syscall (freebsd-arm-cgo), func Dup2(int, int) error
-pkg syscall (freebsd-arm-cgo), func Fchdir(int) error
-pkg syscall (freebsd-arm-cgo), func Fchflags(string, int) error
-pkg syscall (freebsd-arm-cgo), func Fchmod(int, uint32) error
-pkg syscall (freebsd-arm-cgo), func Fchown(int, int, int) error
-pkg syscall (freebsd-arm-cgo), func Flock(int, int) error
-pkg syscall (freebsd-arm-cgo), func FlushBpf(int) error
-pkg syscall (freebsd-arm-cgo), func ForkExec(string, []string, *ProcAttr) (int, error)
-pkg syscall (freebsd-arm-cgo), func Fpathconf(int, int) (int, error)
-pkg syscall (freebsd-arm-cgo), func Fstat(int, *Stat_t) error
-pkg syscall (freebsd-arm-cgo), func Fstatfs(int, *Statfs_t) error
-pkg syscall (freebsd-arm-cgo), func Fsync(int) error
-pkg syscall (freebsd-arm-cgo), func Ftruncate(int, int64) error
-pkg syscall (freebsd-arm-cgo), func Futimes(int, []Timeval) error
-pkg syscall (freebsd-arm-cgo), func Getdirentries(int, []uint8, *uintptr) (int, error)
-pkg syscall (freebsd-arm-cgo), func Getdtablesize() int
-pkg syscall (freebsd-arm-cgo), func Getfsstat([]Statfs_t, int) (int, error)
-pkg syscall (freebsd-arm-cgo), func Getpeername(int) (Sockaddr, error)
-pkg syscall (freebsd-arm-cgo), func Getpgid(int) (int, error)
-pkg syscall (freebsd-arm-cgo), func Getpgrp() int
-pkg syscall (freebsd-arm-cgo), func Getpriority(int, int) (int, error)
-pkg syscall (freebsd-arm-cgo), func Getrlimit(int, *Rlimit) error
-pkg syscall (freebsd-arm-cgo), func Getrusage(int, *Rusage) error
-pkg syscall (freebsd-arm-cgo), func Getsid(int) (int, error)
-pkg syscall (freebsd-arm-cgo), func Getsockname(int) (Sockaddr, error)
-pkg syscall (freebsd-arm-cgo), func GetsockoptByte(int, int, int) (uint8, error)
-pkg syscall (freebsd-arm-cgo), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
-pkg syscall (freebsd-arm-cgo), func GetsockoptIPMreq(int, int, int) (*IPMreq, error)
-pkg syscall (freebsd-arm-cgo), func GetsockoptIPMreqn(int, int, int) (*IPMreqn, error)
-pkg syscall (freebsd-arm-cgo), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
-pkg syscall (freebsd-arm-cgo), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error)
-pkg syscall (freebsd-arm-cgo), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error)
-pkg syscall (freebsd-arm-cgo), func GetsockoptInt(int, int, int) (int, error)
-pkg syscall (freebsd-arm-cgo), func Issetugid() bool
-pkg syscall (freebsd-arm-cgo), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error)
-pkg syscall (freebsd-arm-cgo), func Kill(int, Signal) error
-pkg syscall (freebsd-arm-cgo), func Kqueue() (int, error)
-pkg syscall (freebsd-arm-cgo), func Listen(int, int) error
-pkg syscall (freebsd-arm-cgo), func Lstat(string, *Stat_t) error
-pkg syscall (freebsd-arm-cgo), func Mkfifo(string, uint32) error
-pkg syscall (freebsd-arm-cgo), func Mknod(string, uint32, int) error
-pkg syscall (freebsd-arm-cgo), func Mmap(int, int64, int, int, int) ([]uint8, error)
-pkg syscall (freebsd-arm-cgo), func Munmap([]uint8) error
-pkg syscall (freebsd-arm-cgo), func Nanosleep(*Timespec, *Timespec) error
-pkg syscall (freebsd-arm-cgo), func Open(string, int, uint32) (int, error)
-pkg syscall (freebsd-arm-cgo), func ParseDirent([]uint8, int, []string) (int, int, []string)
-pkg syscall (freebsd-arm-cgo), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error)
-pkg syscall (freebsd-arm-cgo), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error)
-pkg syscall (freebsd-arm-cgo), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error)
-pkg syscall (freebsd-arm-cgo), func ParseUnixRights(*SocketControlMessage) ([]int, error)
-pkg syscall (freebsd-arm-cgo), func Pathconf(string, int) (int, error)
-pkg syscall (freebsd-arm-cgo), func Pipe([]int) error
-pkg syscall (freebsd-arm-cgo), func Pread(int, []uint8, int64) (int, error)
-pkg syscall (freebsd-arm-cgo), func Pwrite(int, []uint8, int64) (int, error)
-pkg syscall (freebsd-arm-cgo), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (freebsd-arm-cgo), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (freebsd-arm-cgo), func Read(int, []uint8) (int, error)
-pkg syscall (freebsd-arm-cgo), func ReadDirent(int, []uint8) (int, error)
-pkg syscall (freebsd-arm-cgo), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
-pkg syscall (freebsd-arm-cgo), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
-pkg syscall (freebsd-arm-cgo), func Revoke(string) error
-pkg syscall (freebsd-arm-cgo), func RouteRIB(int, int) ([]uint8, error)
-pkg syscall (freebsd-arm-cgo), func Seek(int, int64, int) (int64, error)
-pkg syscall (freebsd-arm-cgo), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error
-pkg syscall (freebsd-arm-cgo), func Sendfile(int, int, *int64, int) (int, error)
-pkg syscall (freebsd-arm-cgo), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
-pkg syscall (freebsd-arm-cgo), func Sendto(int, []uint8, int, Sockaddr) error
-pkg syscall (freebsd-arm-cgo), func SetBpf(int, []BpfInsn) error
-pkg syscall (freebsd-arm-cgo), func SetBpfBuflen(int, int) (int, error)
-pkg syscall (freebsd-arm-cgo), func SetBpfDatalink(int, int) (int, error)
-pkg syscall (freebsd-arm-cgo), func SetBpfHeadercmpl(int, int) error
-pkg syscall (freebsd-arm-cgo), func SetBpfImmediate(int, int) error
-pkg syscall (freebsd-arm-cgo), func SetBpfInterface(int, string) error
-pkg syscall (freebsd-arm-cgo), func SetBpfPromisc(int, int) error
-pkg syscall (freebsd-arm-cgo), func SetBpfTimeout(int, *Timeval) error
-pkg syscall (freebsd-arm-cgo), func SetKevent(*Kevent_t, int, int, int)
-pkg syscall (freebsd-arm-cgo), func SetNonblock(int, bool) error
-pkg syscall (freebsd-arm-cgo), func Setegid(int) error
-pkg syscall (freebsd-arm-cgo), func Seteuid(int) error
-pkg syscall (freebsd-arm-cgo), func Setgid(int) error
-pkg syscall (freebsd-arm-cgo), func Setgroups([]int) error
-pkg syscall (freebsd-arm-cgo), func Setlogin(string) error
-pkg syscall (freebsd-arm-cgo), func Setpgid(int, int) error
-pkg syscall (freebsd-arm-cgo), func Setpriority(int, int, int) error
-pkg syscall (freebsd-arm-cgo), func Setregid(int, int) error
-pkg syscall (freebsd-arm-cgo), func Setreuid(int, int) error
-pkg syscall (freebsd-arm-cgo), func Setrlimit(int, *Rlimit) error
-pkg syscall (freebsd-arm-cgo), func Setsid() (int, error)
-pkg syscall (freebsd-arm-cgo), func SetsockoptByte(int, int, int, uint8) error
-pkg syscall (freebsd-arm-cgo), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
-pkg syscall (freebsd-arm-cgo), func SetsockoptIPMreq(int, int, int, *IPMreq) error
-pkg syscall (freebsd-arm-cgo), func SetsockoptIPMreqn(int, int, int, *IPMreqn) error
-pkg syscall (freebsd-arm-cgo), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error
-pkg syscall (freebsd-arm-cgo), func SetsockoptInet4Addr(int, int, int, [4]uint8) error
-pkg syscall (freebsd-arm-cgo), func SetsockoptInt(int, int, int, int) error
-pkg syscall (freebsd-arm-cgo), func SetsockoptLinger(int, int, int, *Linger) error
-pkg syscall (freebsd-arm-cgo), func SetsockoptString(int, int, int, string) error
-pkg syscall (freebsd-arm-cgo), func SetsockoptTimeval(int, int, int, *Timeval) error
-pkg syscall (freebsd-arm-cgo), func Settimeofday(*Timeval) error
-pkg syscall (freebsd-arm-cgo), func Setuid(int) error
-pkg syscall (freebsd-arm-cgo), func Shutdown(int, int) error
-pkg syscall (freebsd-arm-cgo), func SlicePtrFromStrings([]string) ([]*uint8, error)
-pkg syscall (freebsd-arm-cgo), func Socket(int, int, int) (int, error)
-pkg syscall (freebsd-arm-cgo), func Socketpair(int, int, int) ([2]int, error)
-pkg syscall (freebsd-arm-cgo), func Stat(string, *Stat_t) error
-pkg syscall (freebsd-arm-cgo), func Statfs(string, *Statfs_t) error
-pkg syscall (freebsd-arm-cgo), func StringSlicePtr([]string) []*uint8
-pkg syscall (freebsd-arm-cgo), func Sync() error
-pkg syscall (freebsd-arm-cgo), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (freebsd-arm-cgo), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (freebsd-arm-cgo), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (freebsd-arm-cgo), func Sysctl(string) (string, error)
-pkg syscall (freebsd-arm-cgo), func SysctlUint32(string) (uint32, error)
-pkg syscall (freebsd-arm-cgo), func TimevalToNsec(Timeval) int64
-pkg syscall (freebsd-arm-cgo), func Truncate(string, int64) error
-pkg syscall (freebsd-arm-cgo), func Umask(int) int
-pkg syscall (freebsd-arm-cgo), func Undelete(string) error
-pkg syscall (freebsd-arm-cgo), func UnixRights(...int) []uint8
-pkg syscall (freebsd-arm-cgo), func Unmount(string, int) error
-pkg syscall (freebsd-arm-cgo), func Wait4(int, *WaitStatus, int, *Rusage) (int, error)
-pkg syscall (freebsd-arm-cgo), func Write(int, []uint8) (int, error)
-pkg syscall (freebsd-arm-cgo), method (*Cmsghdr) SetLen(int)
-pkg syscall (freebsd-arm-cgo), method (*Iovec) SetLen(int)
-pkg syscall (freebsd-arm-cgo), method (*Msghdr) SetControllen(int)
-pkg syscall (freebsd-arm-cgo), type BpfHdr struct
-pkg syscall (freebsd-arm-cgo), type BpfHdr struct, Caplen uint32
-pkg syscall (freebsd-arm-cgo), type BpfHdr struct, Datalen uint32
-pkg syscall (freebsd-arm-cgo), type BpfHdr struct, Hdrlen uint16
-pkg syscall (freebsd-arm-cgo), type BpfHdr struct, Pad_cgo_0 [2]uint8
-pkg syscall (freebsd-arm-cgo), type BpfHdr struct, Tstamp Timeval
-pkg syscall (freebsd-arm-cgo), type BpfInsn struct
-pkg syscall (freebsd-arm-cgo), type BpfInsn struct, Code uint16
-pkg syscall (freebsd-arm-cgo), type BpfInsn struct, Jf uint8
-pkg syscall (freebsd-arm-cgo), type BpfInsn struct, Jt uint8
-pkg syscall (freebsd-arm-cgo), type BpfInsn struct, K uint32
-pkg syscall (freebsd-arm-cgo), type BpfProgram struct
-pkg syscall (freebsd-arm-cgo), type BpfProgram struct, Insns *BpfInsn
-pkg syscall (freebsd-arm-cgo), type BpfProgram struct, Len uint32
-pkg syscall (freebsd-arm-cgo), type BpfStat struct
-pkg syscall (freebsd-arm-cgo), type BpfStat struct, Drop uint32
-pkg syscall (freebsd-arm-cgo), type BpfStat struct, Recv uint32
-pkg syscall (freebsd-arm-cgo), type BpfVersion struct
-pkg syscall (freebsd-arm-cgo), type BpfVersion struct, Major uint16
-pkg syscall (freebsd-arm-cgo), type BpfVersion struct, Minor uint16
-pkg syscall (freebsd-arm-cgo), type BpfZbuf struct
-pkg syscall (freebsd-arm-cgo), type BpfZbuf struct, Bufa *uint8
-pkg syscall (freebsd-arm-cgo), type BpfZbuf struct, Bufb *uint8
-pkg syscall (freebsd-arm-cgo), type BpfZbuf struct, Buflen uint32
-pkg syscall (freebsd-arm-cgo), type BpfZbufHeader struct
-pkg syscall (freebsd-arm-cgo), type BpfZbufHeader struct, Kernel_gen uint32
-pkg syscall (freebsd-arm-cgo), type BpfZbufHeader struct, Kernel_len uint32
-pkg syscall (freebsd-arm-cgo), type BpfZbufHeader struct, User_gen uint32
-pkg syscall (freebsd-arm-cgo), type BpfZbufHeader struct, X_bzh_pad [5]uint32
-pkg syscall (freebsd-arm-cgo), type Cmsghdr struct
-pkg syscall (freebsd-arm-cgo), type Cmsghdr struct, Len uint32
-pkg syscall (freebsd-arm-cgo), type Cmsghdr struct, Level int32
-pkg syscall (freebsd-arm-cgo), type Cmsghdr struct, Type int32
-pkg syscall (freebsd-arm-cgo), type Credential struct
-pkg syscall (freebsd-arm-cgo), type Credential struct, Gid uint32
-pkg syscall (freebsd-arm-cgo), type Credential struct, Groups []uint32
-pkg syscall (freebsd-arm-cgo), type Credential struct, Uid uint32
-pkg syscall (freebsd-arm-cgo), type Dirent struct
-pkg syscall (freebsd-arm-cgo), type Dirent struct, Fileno uint32
-pkg syscall (freebsd-arm-cgo), type Dirent struct, Name [256]int8
-pkg syscall (freebsd-arm-cgo), type Dirent struct, Namlen uint8
-pkg syscall (freebsd-arm-cgo), type Dirent struct, Reclen uint16
-pkg syscall (freebsd-arm-cgo), type Dirent struct, Type uint8
-pkg syscall (freebsd-arm-cgo), type FdSet struct
-pkg syscall (freebsd-arm-cgo), type FdSet struct, X__fds_bits [32]uint32
-pkg syscall (freebsd-arm-cgo), type Flock_t struct
-pkg syscall (freebsd-arm-cgo), type Flock_t struct, Len int64
-pkg syscall (freebsd-arm-cgo), type Flock_t struct, Pid int32
-pkg syscall (freebsd-arm-cgo), type Flock_t struct, Start int64
-pkg syscall (freebsd-arm-cgo), type Flock_t struct, Sysid int32
-pkg syscall (freebsd-arm-cgo), type Flock_t struct, Type int16
-pkg syscall (freebsd-arm-cgo), type Flock_t struct, Whence int16
-pkg syscall (freebsd-arm-cgo), type Fsid struct
-pkg syscall (freebsd-arm-cgo), type Fsid struct, Val [2]int32
-pkg syscall (freebsd-arm-cgo), type ICMPv6Filter struct
-pkg syscall (freebsd-arm-cgo), type ICMPv6Filter struct, Filt [8]uint32
-pkg syscall (freebsd-arm-cgo), type IPMreqn struct
-pkg syscall (freebsd-arm-cgo), type IPMreqn struct, Address [4]uint8
-pkg syscall (freebsd-arm-cgo), type IPMreqn struct, Ifindex int32
-pkg syscall (freebsd-arm-cgo), type IPMreqn struct, Multiaddr [4]uint8
-pkg syscall (freebsd-arm-cgo), type IPv6MTUInfo struct
-pkg syscall (freebsd-arm-cgo), type IPv6MTUInfo struct, Addr RawSockaddrInet6
-pkg syscall (freebsd-arm-cgo), type IPv6MTUInfo struct, Mtu uint32
-pkg syscall (freebsd-arm-cgo), type IfAnnounceMsghdr struct
-pkg syscall (freebsd-arm-cgo), type IfAnnounceMsghdr struct, Index uint16
-pkg syscall (freebsd-arm-cgo), type IfAnnounceMsghdr struct, Msglen uint16
-pkg syscall (freebsd-arm-cgo), type IfAnnounceMsghdr struct, Name [16]int8
-pkg syscall (freebsd-arm-cgo), type IfAnnounceMsghdr struct, Type uint8
-pkg syscall (freebsd-arm-cgo), type IfAnnounceMsghdr struct, Version uint8
-pkg syscall (freebsd-arm-cgo), type IfAnnounceMsghdr struct, What uint16
-pkg syscall (freebsd-arm-cgo), type IfData struct
-pkg syscall (freebsd-arm-cgo), type IfData struct, Addrlen uint8
-pkg syscall (freebsd-arm-cgo), type IfData struct, Baudrate uint32
-pkg syscall (freebsd-arm-cgo), type IfData struct, Collisions uint32
-pkg syscall (freebsd-arm-cgo), type IfData struct, Datalen uint8
-pkg syscall (freebsd-arm-cgo), type IfData struct, Epoch int64
-pkg syscall (freebsd-arm-cgo), type IfData struct, Hdrlen uint8
-pkg syscall (freebsd-arm-cgo), type IfData struct, Hwassist uint32
-pkg syscall (freebsd-arm-cgo), type IfData struct, Ibytes uint32
-pkg syscall (freebsd-arm-cgo), type IfData struct, Ierrors uint32
-pkg syscall (freebsd-arm-cgo), type IfData struct, Imcasts uint32
-pkg syscall (freebsd-arm-cgo), type IfData struct, Ipackets uint32
-pkg syscall (freebsd-arm-cgo), type IfData struct, Iqdrops uint32
-pkg syscall (freebsd-arm-cgo), type IfData struct, Lastchange Timeval
-pkg syscall (freebsd-arm-cgo), type IfData struct, Link_state uint8
-pkg syscall (freebsd-arm-cgo), type IfData struct, Metric uint32
-pkg syscall (freebsd-arm-cgo), type IfData struct, Mtu uint32
-pkg syscall (freebsd-arm-cgo), type IfData struct, Noproto uint32
-pkg syscall (freebsd-arm-cgo), type IfData struct, Obytes uint32
-pkg syscall (freebsd-arm-cgo), type IfData struct, Oerrors uint32
-pkg syscall (freebsd-arm-cgo), type IfData struct, Omcasts uint32
-pkg syscall (freebsd-arm-cgo), type IfData struct, Opackets uint32
-pkg syscall (freebsd-arm-cgo), type IfData struct, Physical uint8
-pkg syscall (freebsd-arm-cgo), type IfData struct, Spare_char1 uint8
-pkg syscall (freebsd-arm-cgo), type IfData struct, Spare_char2 uint8
-pkg syscall (freebsd-arm-cgo), type IfData struct, Type uint8
-pkg syscall (freebsd-arm-cgo), type IfMsghdr struct
-pkg syscall (freebsd-arm-cgo), type IfMsghdr struct, Addrs int32
-pkg syscall (freebsd-arm-cgo), type IfMsghdr struct, Data IfData
-pkg syscall (freebsd-arm-cgo), type IfMsghdr struct, Flags int32
-pkg syscall (freebsd-arm-cgo), type IfMsghdr struct, Index uint16
-pkg syscall (freebsd-arm-cgo), type IfMsghdr struct, Msglen uint16
-pkg syscall (freebsd-arm-cgo), type IfMsghdr struct, Pad_cgo_0 [2]uint8
-pkg syscall (freebsd-arm-cgo), type IfMsghdr struct, Type uint8
-pkg syscall (freebsd-arm-cgo), type IfMsghdr struct, Version uint8
-pkg syscall (freebsd-arm-cgo), type IfaMsghdr struct
-pkg syscall (freebsd-arm-cgo), type IfaMsghdr struct, Addrs int32
-pkg syscall (freebsd-arm-cgo), type IfaMsghdr struct, Flags int32
-pkg syscall (freebsd-arm-cgo), type IfaMsghdr struct, Index uint16
-pkg syscall (freebsd-arm-cgo), type IfaMsghdr struct, Metric int32
-pkg syscall (freebsd-arm-cgo), type IfaMsghdr struct, Msglen uint16
-pkg syscall (freebsd-arm-cgo), type IfaMsghdr struct, Pad_cgo_0 [2]uint8
-pkg syscall (freebsd-arm-cgo), type IfaMsghdr struct, Type uint8
-pkg syscall (freebsd-arm-cgo), type IfaMsghdr struct, Version uint8
-pkg syscall (freebsd-arm-cgo), type IfmaMsghdr struct
-pkg syscall (freebsd-arm-cgo), type IfmaMsghdr struct, Addrs int32
-pkg syscall (freebsd-arm-cgo), type IfmaMsghdr struct, Flags int32
-pkg syscall (freebsd-arm-cgo), type IfmaMsghdr struct, Index uint16
-pkg syscall (freebsd-arm-cgo), type IfmaMsghdr struct, Msglen uint16
-pkg syscall (freebsd-arm-cgo), type IfmaMsghdr struct, Pad_cgo_0 [2]uint8
-pkg syscall (freebsd-arm-cgo), type IfmaMsghdr struct, Type uint8
-pkg syscall (freebsd-arm-cgo), type IfmaMsghdr struct, Version uint8
-pkg syscall (freebsd-arm-cgo), type Inet6Pktinfo struct
-pkg syscall (freebsd-arm-cgo), type Inet6Pktinfo struct, Addr [16]uint8
-pkg syscall (freebsd-arm-cgo), type Inet6Pktinfo struct, Ifindex uint32
-pkg syscall (freebsd-arm-cgo), type InterfaceAddrMessage struct
-pkg syscall (freebsd-arm-cgo), type InterfaceAddrMessage struct, Data []uint8
-pkg syscall (freebsd-arm-cgo), type InterfaceAddrMessage struct, Header IfaMsghdr
-pkg syscall (freebsd-arm-cgo), type InterfaceAnnounceMessage struct
-pkg syscall (freebsd-arm-cgo), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr
-pkg syscall (freebsd-arm-cgo), type InterfaceMessage struct
-pkg syscall (freebsd-arm-cgo), type InterfaceMessage struct, Data []uint8
-pkg syscall (freebsd-arm-cgo), type InterfaceMessage struct, Header IfMsghdr
-pkg syscall (freebsd-arm-cgo), type InterfaceMulticastAddrMessage struct
-pkg syscall (freebsd-arm-cgo), type InterfaceMulticastAddrMessage struct, Data []uint8
-pkg syscall (freebsd-arm-cgo), type InterfaceMulticastAddrMessage struct, Header IfmaMsghdr
-pkg syscall (freebsd-arm-cgo), type Iovec struct
-pkg syscall (freebsd-arm-cgo), type Iovec struct, Base *uint8
-pkg syscall (freebsd-arm-cgo), type Iovec struct, Len uint32
-pkg syscall (freebsd-arm-cgo), type Kevent_t struct
-pkg syscall (freebsd-arm-cgo), type Kevent_t struct, Data int32
-pkg syscall (freebsd-arm-cgo), type Kevent_t struct, Fflags uint32
-pkg syscall (freebsd-arm-cgo), type Kevent_t struct, Filter int16
-pkg syscall (freebsd-arm-cgo), type Kevent_t struct, Flags uint16
-pkg syscall (freebsd-arm-cgo), type Kevent_t struct, Ident uint32
-pkg syscall (freebsd-arm-cgo), type Kevent_t struct, Udata *uint8
-pkg syscall (freebsd-arm-cgo), type Msghdr struct
-pkg syscall (freebsd-arm-cgo), type Msghdr struct, Control *uint8
-pkg syscall (freebsd-arm-cgo), type Msghdr struct, Controllen uint32
-pkg syscall (freebsd-arm-cgo), type Msghdr struct, Flags int32
-pkg syscall (freebsd-arm-cgo), type Msghdr struct, Iov *Iovec
-pkg syscall (freebsd-arm-cgo), type Msghdr struct, Iovlen int32
-pkg syscall (freebsd-arm-cgo), type Msghdr struct, Name *uint8
-pkg syscall (freebsd-arm-cgo), type Msghdr struct, Namelen uint32
-pkg syscall (freebsd-arm-cgo), type RawSockaddr struct, Data [14]int8
-pkg syscall (freebsd-arm-cgo), type RawSockaddr struct, Family uint8
-pkg syscall (freebsd-arm-cgo), type RawSockaddr struct, Len uint8
-pkg syscall (freebsd-arm-cgo), type RawSockaddrAny struct, Pad [92]int8
-pkg syscall (freebsd-arm-cgo), type RawSockaddrDatalink struct
-pkg syscall (freebsd-arm-cgo), type RawSockaddrDatalink struct, Alen uint8
-pkg syscall (freebsd-arm-cgo), type RawSockaddrDatalink struct, Data [46]int8
-pkg syscall (freebsd-arm-cgo), type RawSockaddrDatalink struct, Family uint8
-pkg syscall (freebsd-arm-cgo), type RawSockaddrDatalink struct, Index uint16
-pkg syscall (freebsd-arm-cgo), type RawSockaddrDatalink struct, Len uint8
-pkg syscall (freebsd-arm-cgo), type RawSockaddrDatalink struct, Nlen uint8
-pkg syscall (freebsd-arm-cgo), type RawSockaddrDatalink struct, Pad_cgo_0 [2]uint8
-pkg syscall (freebsd-arm-cgo), type RawSockaddrDatalink struct, Slen uint8
-pkg syscall (freebsd-arm-cgo), type RawSockaddrDatalink struct, Type uint8
-pkg syscall (freebsd-arm-cgo), type RawSockaddrInet4 struct, Family uint8
-pkg syscall (freebsd-arm-cgo), type RawSockaddrInet4 struct, Len uint8
-pkg syscall (freebsd-arm-cgo), type RawSockaddrInet4 struct, Zero [8]int8
-pkg syscall (freebsd-arm-cgo), type RawSockaddrInet6 struct, Family uint8
-pkg syscall (freebsd-arm-cgo), type RawSockaddrInet6 struct, Len uint8
-pkg syscall (freebsd-arm-cgo), type RawSockaddrUnix struct
-pkg syscall (freebsd-arm-cgo), type RawSockaddrUnix struct, Family uint8
-pkg syscall (freebsd-arm-cgo), type RawSockaddrUnix struct, Len uint8
-pkg syscall (freebsd-arm-cgo), type RawSockaddrUnix struct, Pad_cgo_0 [2]uint8
-pkg syscall (freebsd-arm-cgo), type RawSockaddrUnix struct, Path [104]int8
-pkg syscall (freebsd-arm-cgo), type Rlimit struct
-pkg syscall (freebsd-arm-cgo), type Rlimit struct, Cur int64
-pkg syscall (freebsd-arm-cgo), type Rlimit struct, Max int64
-pkg syscall (freebsd-arm-cgo), type RouteMessage struct
-pkg syscall (freebsd-arm-cgo), type RouteMessage struct, Data []uint8
-pkg syscall (freebsd-arm-cgo), type RouteMessage struct, Header RtMsghdr
-pkg syscall (freebsd-arm-cgo), type RoutingMessage interface, unexported methods
-pkg syscall (freebsd-arm-cgo), type RtMetrics struct
-pkg syscall (freebsd-arm-cgo), type RtMetrics struct, Expire uint32
-pkg syscall (freebsd-arm-cgo), type RtMetrics struct, Filler [3]uint32
-pkg syscall (freebsd-arm-cgo), type RtMetrics struct, Hopcount uint32
-pkg syscall (freebsd-arm-cgo), type RtMetrics struct, Locks uint32
-pkg syscall (freebsd-arm-cgo), type RtMetrics struct, Mtu uint32
-pkg syscall (freebsd-arm-cgo), type RtMetrics struct, Pksent uint32
-pkg syscall (freebsd-arm-cgo), type RtMetrics struct, Recvpipe uint32
-pkg syscall (freebsd-arm-cgo), type RtMetrics struct, Rtt uint32
-pkg syscall (freebsd-arm-cgo), type RtMetrics struct, Rttvar uint32
-pkg syscall (freebsd-arm-cgo), type RtMetrics struct, Sendpipe uint32
-pkg syscall (freebsd-arm-cgo), type RtMetrics struct, Ssthresh uint32
-pkg syscall (freebsd-arm-cgo), type RtMetrics struct, Weight uint32
-pkg syscall (freebsd-arm-cgo), type RtMsghdr struct
-pkg syscall (freebsd-arm-cgo), type RtMsghdr struct, Addrs int32
-pkg syscall (freebsd-arm-cgo), type RtMsghdr struct, Errno int32
-pkg syscall (freebsd-arm-cgo), type RtMsghdr struct, Flags int32
-pkg syscall (freebsd-arm-cgo), type RtMsghdr struct, Fmask int32
-pkg syscall (freebsd-arm-cgo), type RtMsghdr struct, Index uint16
-pkg syscall (freebsd-arm-cgo), type RtMsghdr struct, Inits uint32
-pkg syscall (freebsd-arm-cgo), type RtMsghdr struct, Msglen uint16
-pkg syscall (freebsd-arm-cgo), type RtMsghdr struct, Pad_cgo_0 [2]uint8
-pkg syscall (freebsd-arm-cgo), type RtMsghdr struct, Pid int32
-pkg syscall (freebsd-arm-cgo), type RtMsghdr struct, Rmx RtMetrics
-pkg syscall (freebsd-arm-cgo), type RtMsghdr struct, Seq int32
-pkg syscall (freebsd-arm-cgo), type RtMsghdr struct, Type uint8
-pkg syscall (freebsd-arm-cgo), type RtMsghdr struct, Version uint8
-pkg syscall (freebsd-arm-cgo), type Rusage struct, Idrss int32
-pkg syscall (freebsd-arm-cgo), type Rusage struct, Inblock int32
-pkg syscall (freebsd-arm-cgo), type Rusage struct, Isrss int32
-pkg syscall (freebsd-arm-cgo), type Rusage struct, Ixrss int32
-pkg syscall (freebsd-arm-cgo), type Rusage struct, Majflt int32
-pkg syscall (freebsd-arm-cgo), type Rusage struct, Maxrss int32
-pkg syscall (freebsd-arm-cgo), type Rusage struct, Minflt int32
-pkg syscall (freebsd-arm-cgo), type Rusage struct, Msgrcv int32
-pkg syscall (freebsd-arm-cgo), type Rusage struct, Msgsnd int32
-pkg syscall (freebsd-arm-cgo), type Rusage struct, Nivcsw int32
-pkg syscall (freebsd-arm-cgo), type Rusage struct, Nsignals int32
-pkg syscall (freebsd-arm-cgo), type Rusage struct, Nswap int32
-pkg syscall (freebsd-arm-cgo), type Rusage struct, Nvcsw int32
-pkg syscall (freebsd-arm-cgo), type Rusage struct, Oublock int32
-pkg syscall (freebsd-arm-cgo), type Rusage struct, Stime Timeval
-pkg syscall (freebsd-arm-cgo), type Rusage struct, Utime Timeval
-pkg syscall (freebsd-arm-cgo), type SockaddrDatalink struct
-pkg syscall (freebsd-arm-cgo), type SockaddrDatalink struct, Alen uint8
-pkg syscall (freebsd-arm-cgo), type SockaddrDatalink struct, Data [46]int8
-pkg syscall (freebsd-arm-cgo), type SockaddrDatalink struct, Family uint8
-pkg syscall (freebsd-arm-cgo), type SockaddrDatalink struct, Index uint16
-pkg syscall (freebsd-arm-cgo), type SockaddrDatalink struct, Len uint8
-pkg syscall (freebsd-arm-cgo), type SockaddrDatalink struct, Nlen uint8
-pkg syscall (freebsd-arm-cgo), type SockaddrDatalink struct, Slen uint8
-pkg syscall (freebsd-arm-cgo), type SockaddrDatalink struct, Type uint8
-pkg syscall (freebsd-arm-cgo), type SocketControlMessage struct
-pkg syscall (freebsd-arm-cgo), type SocketControlMessage struct, Data []uint8
-pkg syscall (freebsd-arm-cgo), type SocketControlMessage struct, Header Cmsghdr
-pkg syscall (freebsd-arm-cgo), type Stat_t struct
-pkg syscall (freebsd-arm-cgo), type Stat_t struct, Atimespec Timespec
-pkg syscall (freebsd-arm-cgo), type Stat_t struct, Birthtimespec Timespec
-pkg syscall (freebsd-arm-cgo), type Stat_t struct, Blksize uint32
-pkg syscall (freebsd-arm-cgo), type Stat_t struct, Blocks int64
-pkg syscall (freebsd-arm-cgo), type Stat_t struct, Ctimespec Timespec
-pkg syscall (freebsd-arm-cgo), type Stat_t struct, Dev uint32
-pkg syscall (freebsd-arm-cgo), type Stat_t struct, Flags uint32
-pkg syscall (freebsd-arm-cgo), type Stat_t struct, Gen uint32
-pkg syscall (freebsd-arm-cgo), type Stat_t struct, Gid uint32
-pkg syscall (freebsd-arm-cgo), type Stat_t struct, Ino uint32
-pkg syscall (freebsd-arm-cgo), type Stat_t struct, Lspare int32
-pkg syscall (freebsd-arm-cgo), type Stat_t struct, Mode uint16
-pkg syscall (freebsd-arm-cgo), type Stat_t struct, Mtimespec Timespec
-pkg syscall (freebsd-arm-cgo), type Stat_t struct, Nlink uint16
-pkg syscall (freebsd-arm-cgo), type Stat_t struct, Pad_cgo_0 [4]uint8
-pkg syscall (freebsd-arm-cgo), type Stat_t struct, Rdev uint32
-pkg syscall (freebsd-arm-cgo), type Stat_t struct, Size int64
-pkg syscall (freebsd-arm-cgo), type Stat_t struct, Uid uint32
-pkg syscall (freebsd-arm-cgo), type Statfs_t struct
-pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Asyncreads uint64
-pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Asyncwrites uint64
-pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Bavail int64
-pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Bfree uint64
-pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Blocks uint64
-pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Bsize uint64
-pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Charspare [80]int8
-pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Ffree int64
-pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Files uint64
-pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Flags uint64
-pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Fsid Fsid
-pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Fstypename [16]int8
-pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Iosize uint64
-pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Mntfromname [88]int8
-pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Mntonname [88]int8
-pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Namemax uint32
-pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Owner uint32
-pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Spare [10]uint64
-pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Syncreads uint64
-pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Syncwrites uint64
-pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Type uint32
-pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Version uint32
-pkg syscall (freebsd-arm-cgo), type SysProcAttr struct, Chroot string
-pkg syscall (freebsd-arm-cgo), type SysProcAttr struct, Credential *Credential
-pkg syscall (freebsd-arm-cgo), type SysProcAttr struct, Noctty bool
-pkg syscall (freebsd-arm-cgo), type SysProcAttr struct, Ptrace bool
-pkg syscall (freebsd-arm-cgo), type SysProcAttr struct, Setctty bool
-pkg syscall (freebsd-arm-cgo), type SysProcAttr struct, Setpgid bool
-pkg syscall (freebsd-arm-cgo), type SysProcAttr struct, Setsid bool
-pkg syscall (freebsd-arm-cgo), type Timespec struct, Nsec int32
-pkg syscall (freebsd-arm-cgo), type Timespec struct, Sec int64
-pkg syscall (freebsd-arm-cgo), type Timeval struct, Sec int64
-pkg syscall (freebsd-arm-cgo), type Timeval struct, Usec int32
-pkg syscall (freebsd-arm-cgo), type WaitStatus uint32
-pkg syscall (freebsd-arm-cgo), var Stderr int
-pkg syscall (freebsd-arm-cgo), var Stdin int
-pkg syscall (freebsd-arm-cgo), var Stdout int
-pkg syscall (linux-386), const CLONE_CHILD_CLEARTID = 2097152
-pkg syscall (linux-386), const CLONE_CHILD_CLEARTID ideal-int
-pkg syscall (linux-386), const CLONE_CHILD_SETTID = 16777216
-pkg syscall (linux-386), const CLONE_CHILD_SETTID ideal-int
-pkg syscall (linux-386), const CLONE_DETACHED = 4194304
-pkg syscall (linux-386), const CLONE_DETACHED ideal-int
-pkg syscall (linux-386), const CLONE_FILES = 1024
-pkg syscall (linux-386), const CLONE_FILES ideal-int
-pkg syscall (linux-386), const CLONE_FS = 512
-pkg syscall (linux-386), const CLONE_FS ideal-int
-pkg syscall (linux-386), const CLONE_IO = 2147483648
-pkg syscall (linux-386), const CLONE_IO ideal-int
-pkg syscall (linux-386), const CLONE_NEWIPC = 134217728
-pkg syscall (linux-386), const CLONE_NEWIPC ideal-int
-pkg syscall (linux-386), const CLONE_NEWNET = 1073741824
-pkg syscall (linux-386), const CLONE_NEWNET ideal-int
-pkg syscall (linux-386), const CLONE_NEWNS = 131072
-pkg syscall (linux-386), const CLONE_NEWNS ideal-int
-pkg syscall (linux-386), const CLONE_NEWPID = 536870912
-pkg syscall (linux-386), const CLONE_NEWPID ideal-int
-pkg syscall (linux-386), const CLONE_NEWUSER = 268435456
-pkg syscall (linux-386), const CLONE_NEWUSER ideal-int
-pkg syscall (linux-386), const CLONE_NEWUTS = 67108864
-pkg syscall (linux-386), const CLONE_NEWUTS ideal-int
-pkg syscall (linux-386), const CLONE_PARENT = 32768
-pkg syscall (linux-386), const CLONE_PARENT ideal-int
-pkg syscall (linux-386), const CLONE_PARENT_SETTID = 1048576
-pkg syscall (linux-386), const CLONE_PARENT_SETTID ideal-int
-pkg syscall (linux-386), const CLONE_PTRACE = 8192
-pkg syscall (linux-386), const CLONE_PTRACE ideal-int
-pkg syscall (linux-386), const CLONE_SETTLS = 524288
-pkg syscall (linux-386), const CLONE_SETTLS ideal-int
-pkg syscall (linux-386), const CLONE_SIGHAND = 2048
-pkg syscall (linux-386), const CLONE_SIGHAND ideal-int
-pkg syscall (linux-386), const CLONE_SYSVSEM = 262144
-pkg syscall (linux-386), const CLONE_SYSVSEM ideal-int
-pkg syscall (linux-386), const CLONE_THREAD = 65536
-pkg syscall (linux-386), const CLONE_THREAD ideal-int
-pkg syscall (linux-386), const CLONE_UNTRACED = 8388608
-pkg syscall (linux-386), const CLONE_UNTRACED ideal-int
-pkg syscall (linux-386), const CLONE_VFORK = 16384
-pkg syscall (linux-386), const CLONE_VFORK ideal-int
-pkg syscall (linux-386), const CLONE_VM = 256
-pkg syscall (linux-386), const CLONE_VM ideal-int
-pkg syscall (linux-386), const ICMPV6_FILTER = 1
-pkg syscall (linux-386), const ICMPV6_FILTER ideal-int
-pkg syscall (linux-386), const PRIO_PGRP = 1
-pkg syscall (linux-386), const PRIO_PGRP ideal-int
-pkg syscall (linux-386), const PRIO_PROCESS = 0
-pkg syscall (linux-386), const PRIO_PROCESS ideal-int
-pkg syscall (linux-386), const PRIO_USER = 2
-pkg syscall (linux-386), const PRIO_USER ideal-int
-pkg syscall (linux-386), const SizeofICMPv6Filter = 32
-pkg syscall (linux-386), const SizeofICMPv6Filter ideal-int
-pkg syscall (linux-386), const SizeofIPv6MTUInfo = 32
-pkg syscall (linux-386), const SizeofIPv6MTUInfo ideal-int
-pkg syscall (linux-386), const TCIFLUSH = 0
-pkg syscall (linux-386), const TCIFLUSH ideal-int
-pkg syscall (linux-386), const TCIOFLUSH = 2
-pkg syscall (linux-386), const TCIOFLUSH ideal-int
-pkg syscall (linux-386), const TCOFLUSH = 1
-pkg syscall (linux-386), const TCOFLUSH ideal-int
-pkg syscall (linux-386), func Dup3(int, int, int) error
-pkg syscall (linux-386), func Getpriority(int, int) (int, error)
-pkg syscall (linux-386), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
-pkg syscall (linux-386), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
-pkg syscall (linux-386), func Setpriority(int, int, int) error
-pkg syscall (linux-386), func SetsockoptByte(int, int, int, uint8) error
-pkg syscall (linux-386), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
-pkg syscall (linux-386), type ICMPv6Filter struct
-pkg syscall (linux-386), type ICMPv6Filter struct, Data [8]uint32
-pkg syscall (linux-386), type IPv6MTUInfo struct
-pkg syscall (linux-386), type IPv6MTUInfo struct, Addr RawSockaddrInet6
-pkg syscall (linux-386), type IPv6MTUInfo struct, Mtu uint32
-pkg syscall (linux-386), type SysProcAttr struct, Cloneflags uintptr
-pkg syscall (linux-386-cgo), const CLONE_CHILD_CLEARTID = 2097152
-pkg syscall (linux-386-cgo), const CLONE_CHILD_CLEARTID ideal-int
-pkg syscall (linux-386-cgo), const CLONE_CHILD_SETTID = 16777216
-pkg syscall (linux-386-cgo), const CLONE_CHILD_SETTID ideal-int
-pkg syscall (linux-386-cgo), const CLONE_DETACHED = 4194304
-pkg syscall (linux-386-cgo), const CLONE_DETACHED ideal-int
-pkg syscall (linux-386-cgo), const CLONE_FILES = 1024
-pkg syscall (linux-386-cgo), const CLONE_FILES ideal-int
-pkg syscall (linux-386-cgo), const CLONE_FS = 512
-pkg syscall (linux-386-cgo), const CLONE_FS ideal-int
-pkg syscall (linux-386-cgo), const CLONE_IO = 2147483648
-pkg syscall (linux-386-cgo), const CLONE_IO ideal-int
-pkg syscall (linux-386-cgo), const CLONE_NEWIPC = 134217728
-pkg syscall (linux-386-cgo), const CLONE_NEWIPC ideal-int
-pkg syscall (linux-386-cgo), const CLONE_NEWNET = 1073741824
-pkg syscall (linux-386-cgo), const CLONE_NEWNET ideal-int
-pkg syscall (linux-386-cgo), const CLONE_NEWNS = 131072
-pkg syscall (linux-386-cgo), const CLONE_NEWNS ideal-int
-pkg syscall (linux-386-cgo), const CLONE_NEWPID = 536870912
-pkg syscall (linux-386-cgo), const CLONE_NEWPID ideal-int
-pkg syscall (linux-386-cgo), const CLONE_NEWUSER = 268435456
-pkg syscall (linux-386-cgo), const CLONE_NEWUSER ideal-int
-pkg syscall (linux-386-cgo), const CLONE_NEWUTS = 67108864
-pkg syscall (linux-386-cgo), const CLONE_NEWUTS ideal-int
-pkg syscall (linux-386-cgo), const CLONE_PARENT = 32768
-pkg syscall (linux-386-cgo), const CLONE_PARENT ideal-int
-pkg syscall (linux-386-cgo), const CLONE_PARENT_SETTID = 1048576
-pkg syscall (linux-386-cgo), const CLONE_PARENT_SETTID ideal-int
-pkg syscall (linux-386-cgo), const CLONE_PTRACE = 8192
-pkg syscall (linux-386-cgo), const CLONE_PTRACE ideal-int
-pkg syscall (linux-386-cgo), const CLONE_SETTLS = 524288
-pkg syscall (linux-386-cgo), const CLONE_SETTLS ideal-int
-pkg syscall (linux-386-cgo), const CLONE_SIGHAND = 2048
-pkg syscall (linux-386-cgo), const CLONE_SIGHAND ideal-int
-pkg syscall (linux-386-cgo), const CLONE_SYSVSEM = 262144
-pkg syscall (linux-386-cgo), const CLONE_SYSVSEM ideal-int
-pkg syscall (linux-386-cgo), const CLONE_THREAD = 65536
-pkg syscall (linux-386-cgo), const CLONE_THREAD ideal-int
-pkg syscall (linux-386-cgo), const CLONE_UNTRACED = 8388608
-pkg syscall (linux-386-cgo), const CLONE_UNTRACED ideal-int
-pkg syscall (linux-386-cgo), const CLONE_VFORK = 16384
-pkg syscall (linux-386-cgo), const CLONE_VFORK ideal-int
-pkg syscall (linux-386-cgo), const CLONE_VM = 256
-pkg syscall (linux-386-cgo), const CLONE_VM ideal-int
-pkg syscall (linux-386-cgo), const ICMPV6_FILTER = 1
-pkg syscall (linux-386-cgo), const ICMPV6_FILTER ideal-int
-pkg syscall (linux-386-cgo), const PRIO_PGRP = 1
-pkg syscall (linux-386-cgo), const PRIO_PGRP ideal-int
-pkg syscall (linux-386-cgo), const PRIO_PROCESS = 0
-pkg syscall (linux-386-cgo), const PRIO_PROCESS ideal-int
-pkg syscall (linux-386-cgo), const PRIO_USER = 2
-pkg syscall (linux-386-cgo), const PRIO_USER ideal-int
-pkg syscall (linux-386-cgo), const SizeofICMPv6Filter = 32
-pkg syscall (linux-386-cgo), const SizeofICMPv6Filter ideal-int
-pkg syscall (linux-386-cgo), const SizeofIPv6MTUInfo = 32
-pkg syscall (linux-386-cgo), const SizeofIPv6MTUInfo ideal-int
-pkg syscall (linux-386-cgo), const TCIFLUSH = 0
-pkg syscall (linux-386-cgo), const TCIFLUSH ideal-int
-pkg syscall (linux-386-cgo), const TCIOFLUSH = 2
-pkg syscall (linux-386-cgo), const TCIOFLUSH ideal-int
-pkg syscall (linux-386-cgo), const TCOFLUSH = 1
-pkg syscall (linux-386-cgo), const TCOFLUSH ideal-int
-pkg syscall (linux-386-cgo), func Dup3(int, int, int) error
-pkg syscall (linux-386-cgo), func Getpriority(int, int) (int, error)
-pkg syscall (linux-386-cgo), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
-pkg syscall (linux-386-cgo), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
-pkg syscall (linux-386-cgo), func Setpriority(int, int, int) error
-pkg syscall (linux-386-cgo), func SetsockoptByte(int, int, int, uint8) error
-pkg syscall (linux-386-cgo), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
-pkg syscall (linux-386-cgo), type ICMPv6Filter struct
-pkg syscall (linux-386-cgo), type ICMPv6Filter struct, Data [8]uint32
-pkg syscall (linux-386-cgo), type IPv6MTUInfo struct
-pkg syscall (linux-386-cgo), type IPv6MTUInfo struct, Addr RawSockaddrInet6
-pkg syscall (linux-386-cgo), type IPv6MTUInfo struct, Mtu uint32
-pkg syscall (linux-386-cgo), type SysProcAttr struct, Cloneflags uintptr
-pkg syscall (linux-amd64), const CLONE_CHILD_CLEARTID = 2097152
-pkg syscall (linux-amd64), const CLONE_CHILD_CLEARTID ideal-int
-pkg syscall (linux-amd64), const CLONE_CHILD_SETTID = 16777216
-pkg syscall (linux-amd64), const CLONE_CHILD_SETTID ideal-int
-pkg syscall (linux-amd64), const CLONE_DETACHED = 4194304
-pkg syscall (linux-amd64), const CLONE_DETACHED ideal-int
-pkg syscall (linux-amd64), const CLONE_FILES = 1024
-pkg syscall (linux-amd64), const CLONE_FILES ideal-int
-pkg syscall (linux-amd64), const CLONE_FS = 512
-pkg syscall (linux-amd64), const CLONE_FS ideal-int
-pkg syscall (linux-amd64), const CLONE_IO = 2147483648
-pkg syscall (linux-amd64), const CLONE_IO ideal-int
-pkg syscall (linux-amd64), const CLONE_NEWIPC = 134217728
-pkg syscall (linux-amd64), const CLONE_NEWIPC ideal-int
-pkg syscall (linux-amd64), const CLONE_NEWNET = 1073741824
-pkg syscall (linux-amd64), const CLONE_NEWNET ideal-int
-pkg syscall (linux-amd64), const CLONE_NEWNS = 131072
-pkg syscall (linux-amd64), const CLONE_NEWNS ideal-int
-pkg syscall (linux-amd64), const CLONE_NEWPID = 536870912
-pkg syscall (linux-amd64), const CLONE_NEWPID ideal-int
-pkg syscall (linux-amd64), const CLONE_NEWUSER = 268435456
-pkg syscall (linux-amd64), const CLONE_NEWUSER ideal-int
-pkg syscall (linux-amd64), const CLONE_NEWUTS = 67108864
-pkg syscall (linux-amd64), const CLONE_NEWUTS ideal-int
-pkg syscall (linux-amd64), const CLONE_PARENT = 32768
-pkg syscall (linux-amd64), const CLONE_PARENT ideal-int
-pkg syscall (linux-amd64), const CLONE_PARENT_SETTID = 1048576
-pkg syscall (linux-amd64), const CLONE_PARENT_SETTID ideal-int
-pkg syscall (linux-amd64), const CLONE_PTRACE = 8192
-pkg syscall (linux-amd64), const CLONE_PTRACE ideal-int
-pkg syscall (linux-amd64), const CLONE_SETTLS = 524288
-pkg syscall (linux-amd64), const CLONE_SETTLS ideal-int
-pkg syscall (linux-amd64), const CLONE_SIGHAND = 2048
-pkg syscall (linux-amd64), const CLONE_SIGHAND ideal-int
-pkg syscall (linux-amd64), const CLONE_SYSVSEM = 262144
-pkg syscall (linux-amd64), const CLONE_SYSVSEM ideal-int
-pkg syscall (linux-amd64), const CLONE_THREAD = 65536
-pkg syscall (linux-amd64), const CLONE_THREAD ideal-int
-pkg syscall (linux-amd64), const CLONE_UNTRACED = 8388608
-pkg syscall (linux-amd64), const CLONE_UNTRACED ideal-int
-pkg syscall (linux-amd64), const CLONE_VFORK = 16384
-pkg syscall (linux-amd64), const CLONE_VFORK ideal-int
-pkg syscall (linux-amd64), const CLONE_VM = 256
-pkg syscall (linux-amd64), const CLONE_VM ideal-int
-pkg syscall (linux-amd64), const ICMPV6_FILTER = 1
-pkg syscall (linux-amd64), const ICMPV6_FILTER ideal-int
-pkg syscall (linux-amd64), const PRIO_PGRP = 1
-pkg syscall (linux-amd64), const PRIO_PGRP ideal-int
-pkg syscall (linux-amd64), const PRIO_PROCESS = 0
-pkg syscall (linux-amd64), const PRIO_PROCESS ideal-int
-pkg syscall (linux-amd64), const PRIO_USER = 2
-pkg syscall (linux-amd64), const PRIO_USER ideal-int
-pkg syscall (linux-amd64), const SizeofICMPv6Filter = 32
-pkg syscall (linux-amd64), const SizeofICMPv6Filter ideal-int
-pkg syscall (linux-amd64), const SizeofIPv6MTUInfo = 32
-pkg syscall (linux-amd64), const SizeofIPv6MTUInfo ideal-int
-pkg syscall (linux-amd64), const TCIFLUSH = 0
-pkg syscall (linux-amd64), const TCIFLUSH ideal-int
-pkg syscall (linux-amd64), const TCIOFLUSH = 2
-pkg syscall (linux-amd64), const TCIOFLUSH ideal-int
-pkg syscall (linux-amd64), const TCOFLUSH = 1
-pkg syscall (linux-amd64), const TCOFLUSH ideal-int
-pkg syscall (linux-amd64), func Dup3(int, int, int) error
-pkg syscall (linux-amd64), func Getpriority(int, int) (int, error)
-pkg syscall (linux-amd64), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
-pkg syscall (linux-amd64), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
-pkg syscall (linux-amd64), func Setpriority(int, int, int) error
-pkg syscall (linux-amd64), func SetsockoptByte(int, int, int, uint8) error
-pkg syscall (linux-amd64), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
-pkg syscall (linux-amd64), type ICMPv6Filter struct
-pkg syscall (linux-amd64), type ICMPv6Filter struct, Data [8]uint32
-pkg syscall (linux-amd64), type IPv6MTUInfo struct
-pkg syscall (linux-amd64), type IPv6MTUInfo struct, Addr RawSockaddrInet6
-pkg syscall (linux-amd64), type IPv6MTUInfo struct, Mtu uint32
-pkg syscall (linux-amd64), type SysProcAttr struct, Cloneflags uintptr
-pkg syscall (linux-amd64-cgo), const CLONE_CHILD_CLEARTID = 2097152
-pkg syscall (linux-amd64-cgo), const CLONE_CHILD_CLEARTID ideal-int
-pkg syscall (linux-amd64-cgo), const CLONE_CHILD_SETTID = 16777216
-pkg syscall (linux-amd64-cgo), const CLONE_CHILD_SETTID ideal-int
-pkg syscall (linux-amd64-cgo), const CLONE_DETACHED = 4194304
-pkg syscall (linux-amd64-cgo), const CLONE_DETACHED ideal-int
-pkg syscall (linux-amd64-cgo), const CLONE_FILES = 1024
-pkg syscall (linux-amd64-cgo), const CLONE_FILES ideal-int
-pkg syscall (linux-amd64-cgo), const CLONE_FS = 512
-pkg syscall (linux-amd64-cgo), const CLONE_FS ideal-int
-pkg syscall (linux-amd64-cgo), const CLONE_IO = 2147483648
-pkg syscall (linux-amd64-cgo), const CLONE_IO ideal-int
-pkg syscall (linux-amd64-cgo), const CLONE_NEWIPC = 134217728
-pkg syscall (linux-amd64-cgo), const CLONE_NEWIPC ideal-int
-pkg syscall (linux-amd64-cgo), const CLONE_NEWNET = 1073741824
-pkg syscall (linux-amd64-cgo), const CLONE_NEWNET ideal-int
-pkg syscall (linux-amd64-cgo), const CLONE_NEWNS = 131072
-pkg syscall (linux-amd64-cgo), const CLONE_NEWNS ideal-int
-pkg syscall (linux-amd64-cgo), const CLONE_NEWPID = 536870912
-pkg syscall (linux-amd64-cgo), const CLONE_NEWPID ideal-int
-pkg syscall (linux-amd64-cgo), const CLONE_NEWUSER = 268435456
-pkg syscall (linux-amd64-cgo), const CLONE_NEWUSER ideal-int
-pkg syscall (linux-amd64-cgo), const CLONE_NEWUTS = 67108864
-pkg syscall (linux-amd64-cgo), const CLONE_NEWUTS ideal-int
-pkg syscall (linux-amd64-cgo), const CLONE_PARENT = 32768
-pkg syscall (linux-amd64-cgo), const CLONE_PARENT ideal-int
-pkg syscall (linux-amd64-cgo), const CLONE_PARENT_SETTID = 1048576
-pkg syscall (linux-amd64-cgo), const CLONE_PARENT_SETTID ideal-int
-pkg syscall (linux-amd64-cgo), const CLONE_PTRACE = 8192
-pkg syscall (linux-amd64-cgo), const CLONE_PTRACE ideal-int
-pkg syscall (linux-amd64-cgo), const CLONE_SETTLS = 524288
-pkg syscall (linux-amd64-cgo), const CLONE_SETTLS ideal-int
-pkg syscall (linux-amd64-cgo), const CLONE_SIGHAND = 2048
-pkg syscall (linux-amd64-cgo), const CLONE_SIGHAND ideal-int
-pkg syscall (linux-amd64-cgo), const CLONE_SYSVSEM = 262144
-pkg syscall (linux-amd64-cgo), const CLONE_SYSVSEM ideal-int
-pkg syscall (linux-amd64-cgo), const CLONE_THREAD = 65536
-pkg syscall (linux-amd64-cgo), const CLONE_THREAD ideal-int
-pkg syscall (linux-amd64-cgo), const CLONE_UNTRACED = 8388608
-pkg syscall (linux-amd64-cgo), const CLONE_UNTRACED ideal-int
-pkg syscall (linux-amd64-cgo), const CLONE_VFORK = 16384
-pkg syscall (linux-amd64-cgo), const CLONE_VFORK ideal-int
-pkg syscall (linux-amd64-cgo), const CLONE_VM = 256
-pkg syscall (linux-amd64-cgo), const CLONE_VM ideal-int
-pkg syscall (linux-amd64-cgo), const ICMPV6_FILTER = 1
-pkg syscall (linux-amd64-cgo), const ICMPV6_FILTER ideal-int
-pkg syscall (linux-amd64-cgo), const PRIO_PGRP = 1
-pkg syscall (linux-amd64-cgo), const PRIO_PGRP ideal-int
-pkg syscall (linux-amd64-cgo), const PRIO_PROCESS = 0
-pkg syscall (linux-amd64-cgo), const PRIO_PROCESS ideal-int
-pkg syscall (linux-amd64-cgo), const PRIO_USER = 2
-pkg syscall (linux-amd64-cgo), const PRIO_USER ideal-int
-pkg syscall (linux-amd64-cgo), const SizeofICMPv6Filter = 32
-pkg syscall (linux-amd64-cgo), const SizeofICMPv6Filter ideal-int
-pkg syscall (linux-amd64-cgo), const SizeofIPv6MTUInfo = 32
-pkg syscall (linux-amd64-cgo), const SizeofIPv6MTUInfo ideal-int
-pkg syscall (linux-amd64-cgo), const TCIFLUSH = 0
-pkg syscall (linux-amd64-cgo), const TCIFLUSH ideal-int
-pkg syscall (linux-amd64-cgo), const TCIOFLUSH = 2
-pkg syscall (linux-amd64-cgo), const TCIOFLUSH ideal-int
-pkg syscall (linux-amd64-cgo), const TCOFLUSH = 1
-pkg syscall (linux-amd64-cgo), const TCOFLUSH ideal-int
-pkg syscall (linux-amd64-cgo), func Dup3(int, int, int) error
-pkg syscall (linux-amd64-cgo), func Getpriority(int, int) (int, error)
-pkg syscall (linux-amd64-cgo), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
-pkg syscall (linux-amd64-cgo), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
-pkg syscall (linux-amd64-cgo), func Setpriority(int, int, int) error
-pkg syscall (linux-amd64-cgo), func SetsockoptByte(int, int, int, uint8) error
-pkg syscall (linux-amd64-cgo), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
-pkg syscall (linux-amd64-cgo), type ICMPv6Filter struct
-pkg syscall (linux-amd64-cgo), type ICMPv6Filter struct, Data [8]uint32
-pkg syscall (linux-amd64-cgo), type IPv6MTUInfo struct
-pkg syscall (linux-amd64-cgo), type IPv6MTUInfo struct, Addr RawSockaddrInet6
-pkg syscall (linux-amd64-cgo), type IPv6MTUInfo struct, Mtu uint32
-pkg syscall (linux-amd64-cgo), type SysProcAttr struct, Cloneflags uintptr
-pkg syscall (linux-arm), const CLONE_CHILD_CLEARTID = 2097152
-pkg syscall (linux-arm), const CLONE_CHILD_CLEARTID ideal-int
-pkg syscall (linux-arm), const CLONE_CHILD_SETTID = 16777216
-pkg syscall (linux-arm), const CLONE_CHILD_SETTID ideal-int
-pkg syscall (linux-arm), const CLONE_DETACHED = 4194304
-pkg syscall (linux-arm), const CLONE_DETACHED ideal-int
-pkg syscall (linux-arm), const CLONE_FILES = 1024
-pkg syscall (linux-arm), const CLONE_FILES ideal-int
-pkg syscall (linux-arm), const CLONE_FS = 512
-pkg syscall (linux-arm), const CLONE_FS ideal-int
-pkg syscall (linux-arm), const CLONE_IO = 2147483648
-pkg syscall (linux-arm), const CLONE_IO ideal-int
-pkg syscall (linux-arm), const CLONE_NEWIPC = 134217728
-pkg syscall (linux-arm), const CLONE_NEWIPC ideal-int
-pkg syscall (linux-arm), const CLONE_NEWNET = 1073741824
-pkg syscall (linux-arm), const CLONE_NEWNET ideal-int
-pkg syscall (linux-arm), const CLONE_NEWNS = 131072
-pkg syscall (linux-arm), const CLONE_NEWNS ideal-int
-pkg syscall (linux-arm), const CLONE_NEWPID = 536870912
-pkg syscall (linux-arm), const CLONE_NEWPID ideal-int
-pkg syscall (linux-arm), const CLONE_NEWUSER = 268435456
-pkg syscall (linux-arm), const CLONE_NEWUSER ideal-int
-pkg syscall (linux-arm), const CLONE_NEWUTS = 67108864
-pkg syscall (linux-arm), const CLONE_NEWUTS ideal-int
-pkg syscall (linux-arm), const CLONE_PARENT = 32768
-pkg syscall (linux-arm), const CLONE_PARENT ideal-int
-pkg syscall (linux-arm), const CLONE_PARENT_SETTID = 1048576
-pkg syscall (linux-arm), const CLONE_PARENT_SETTID ideal-int
-pkg syscall (linux-arm), const CLONE_PTRACE = 8192
-pkg syscall (linux-arm), const CLONE_PTRACE ideal-int
-pkg syscall (linux-arm), const CLONE_SETTLS = 524288
-pkg syscall (linux-arm), const CLONE_SETTLS ideal-int
-pkg syscall (linux-arm), const CLONE_SIGHAND = 2048
-pkg syscall (linux-arm), const CLONE_SIGHAND ideal-int
-pkg syscall (linux-arm), const CLONE_SYSVSEM = 262144
-pkg syscall (linux-arm), const CLONE_SYSVSEM ideal-int
-pkg syscall (linux-arm), const CLONE_THREAD = 65536
-pkg syscall (linux-arm), const CLONE_THREAD ideal-int
-pkg syscall (linux-arm), const CLONE_UNTRACED = 8388608
-pkg syscall (linux-arm), const CLONE_UNTRACED ideal-int
-pkg syscall (linux-arm), const CLONE_VFORK = 16384
-pkg syscall (linux-arm), const CLONE_VFORK ideal-int
-pkg syscall (linux-arm), const CLONE_VM = 256
-pkg syscall (linux-arm), const CLONE_VM ideal-int
-pkg syscall (linux-arm), const ICMPV6_FILTER = 1
-pkg syscall (linux-arm), const ICMPV6_FILTER ideal-int
-pkg syscall (linux-arm), const PRIO_PGRP = 1
-pkg syscall (linux-arm), const PRIO_PGRP ideal-int
-pkg syscall (linux-arm), const PRIO_PROCESS = 0
-pkg syscall (linux-arm), const PRIO_PROCESS ideal-int
-pkg syscall (linux-arm), const PRIO_USER = 2
-pkg syscall (linux-arm), const PRIO_USER ideal-int
-pkg syscall (linux-arm), const SizeofICMPv6Filter = 32
-pkg syscall (linux-arm), const SizeofICMPv6Filter ideal-int
-pkg syscall (linux-arm), const SizeofIPv6MTUInfo = 32
-pkg syscall (linux-arm), const SizeofIPv6MTUInfo ideal-int
-pkg syscall (linux-arm), const TCIFLUSH = 0
-pkg syscall (linux-arm), const TCIFLUSH ideal-int
-pkg syscall (linux-arm), const TCIOFLUSH = 2
-pkg syscall (linux-arm), const TCIOFLUSH ideal-int
-pkg syscall (linux-arm), const TCOFLUSH = 1
-pkg syscall (linux-arm), const TCOFLUSH ideal-int
-pkg syscall (linux-arm), func Dup3(int, int, int) error
-pkg syscall (linux-arm), func Getpriority(int, int) (int, error)
-pkg syscall (linux-arm), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
-pkg syscall (linux-arm), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
-pkg syscall (linux-arm), func Setpriority(int, int, int) error
-pkg syscall (linux-arm), func SetsockoptByte(int, int, int, uint8) error
-pkg syscall (linux-arm), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
-pkg syscall (linux-arm), type ICMPv6Filter struct
-pkg syscall (linux-arm), type ICMPv6Filter struct, Data [8]uint32
-pkg syscall (linux-arm), type IPv6MTUInfo struct
-pkg syscall (linux-arm), type IPv6MTUInfo struct, Addr RawSockaddrInet6
-pkg syscall (linux-arm), type IPv6MTUInfo struct, Mtu uint32
-pkg syscall (linux-arm), type SysProcAttr struct, Cloneflags uintptr
-pkg syscall (linux-arm-cgo), const AF_ALG ideal-int
-pkg syscall (linux-arm-cgo), const AF_APPLETALK ideal-int
-pkg syscall (linux-arm-cgo), const AF_ASH ideal-int
-pkg syscall (linux-arm-cgo), const AF_ATMPVC ideal-int
-pkg syscall (linux-arm-cgo), const AF_ATMSVC ideal-int
-pkg syscall (linux-arm-cgo), const AF_AX25 ideal-int
-pkg syscall (linux-arm-cgo), const AF_BLUETOOTH ideal-int
-pkg syscall (linux-arm-cgo), const AF_BRIDGE ideal-int
-pkg syscall (linux-arm-cgo), const AF_CAIF ideal-int
-pkg syscall (linux-arm-cgo), const AF_CAN ideal-int
-pkg syscall (linux-arm-cgo), const AF_DECnet ideal-int
-pkg syscall (linux-arm-cgo), const AF_ECONET ideal-int
-pkg syscall (linux-arm-cgo), const AF_FILE ideal-int
-pkg syscall (linux-arm-cgo), const AF_IEEE802154 ideal-int
-pkg syscall (linux-arm-cgo), const AF_IPX ideal-int
-pkg syscall (linux-arm-cgo), const AF_IRDA ideal-int
-pkg syscall (linux-arm-cgo), const AF_ISDN ideal-int
-pkg syscall (linux-arm-cgo), const AF_IUCV ideal-int
-pkg syscall (linux-arm-cgo), const AF_KEY ideal-int
-pkg syscall (linux-arm-cgo), const AF_LLC ideal-int
-pkg syscall (linux-arm-cgo), const AF_LOCAL ideal-int
-pkg syscall (linux-arm-cgo), const AF_MAX ideal-int
-pkg syscall (linux-arm-cgo), const AF_NETBEUI ideal-int
-pkg syscall (linux-arm-cgo), const AF_NETLINK ideal-int
-pkg syscall (linux-arm-cgo), const AF_NETROM ideal-int
-pkg syscall (linux-arm-cgo), const AF_PACKET ideal-int
-pkg syscall (linux-arm-cgo), const AF_PHONET ideal-int
-pkg syscall (linux-arm-cgo), const AF_PPPOX ideal-int
-pkg syscall (linux-arm-cgo), const AF_RDS ideal-int
-pkg syscall (linux-arm-cgo), const AF_ROSE ideal-int
-pkg syscall (linux-arm-cgo), const AF_ROUTE ideal-int
-pkg syscall (linux-arm-cgo), const AF_RXRPC ideal-int
-pkg syscall (linux-arm-cgo), const AF_SECURITY ideal-int
-pkg syscall (linux-arm-cgo), const AF_SNA ideal-int
-pkg syscall (linux-arm-cgo), const AF_TIPC ideal-int
-pkg syscall (linux-arm-cgo), const AF_WANPIPE ideal-int
-pkg syscall (linux-arm-cgo), const AF_X25 ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_ADAPT ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_APPLETLK ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_ARCNET ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_ASH ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_ATM ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_AX25 ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_BIF ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_CHAOS ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_CISCO ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_CSLIP ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_CSLIP6 ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_DDCMP ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_DLCI ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_ECONET ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_EETHER ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_ETHER ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_EUI64 ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_FCAL ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_FCFABRIC ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_FCPL ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_FCPP ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_FDDI ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_FRAD ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_HDLC ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_HIPPI ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_HWX25 ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_IEEE1394 ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_IEEE802 ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_IEEE80211 ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_IEEE80211_PRISM ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_IEEE80211_RADIOTAP ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_IEEE802154 ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_IEEE802154_PHY ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_IEEE802_TR ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_INFINIBAND ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_IPDDP ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_IPGRE ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_IRDA ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_LAPB ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_LOCALTLK ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_LOOPBACK ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_METRICOM ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_NETROM ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_NONE ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_PIMREG ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_PPP ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_PRONET ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_RAWHDLC ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_ROSE ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_RSRVD ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_SIT ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_SKIP ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_SLIP ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_SLIP6 ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_TUNNEL ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_TUNNEL6 ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_VOID ideal-int
-pkg syscall (linux-arm-cgo), const ARPHRD_X25 ideal-int
-pkg syscall (linux-arm-cgo), const B0 ideal-int
-pkg syscall (linux-arm-cgo), const B1000000 ideal-int
-pkg syscall (linux-arm-cgo), const B110 ideal-int
-pkg syscall (linux-arm-cgo), const B115200 ideal-int
-pkg syscall (linux-arm-cgo), const B1152000 ideal-int
-pkg syscall (linux-arm-cgo), const B1200 ideal-int
-pkg syscall (linux-arm-cgo), const B134 ideal-int
-pkg syscall (linux-arm-cgo), const B150 ideal-int
-pkg syscall (linux-arm-cgo), const B1500000 ideal-int
-pkg syscall (linux-arm-cgo), const B1800 ideal-int
-pkg syscall (linux-arm-cgo), const B19200 ideal-int
-pkg syscall (linux-arm-cgo), const B200 ideal-int
-pkg syscall (linux-arm-cgo), const B2000000 ideal-int
-pkg syscall (linux-arm-cgo), const B230400 ideal-int
-pkg syscall (linux-arm-cgo), const B2400 ideal-int
-pkg syscall (linux-arm-cgo), const B2500000 ideal-int
-pkg syscall (linux-arm-cgo), const B300 ideal-int
-pkg syscall (linux-arm-cgo), const B3000000 ideal-int
-pkg syscall (linux-arm-cgo), const B3500000 ideal-int
-pkg syscall (linux-arm-cgo), const B38400 ideal-int
-pkg syscall (linux-arm-cgo), const B4000000 ideal-int
-pkg syscall (linux-arm-cgo), const B460800 ideal-int
-pkg syscall (linux-arm-cgo), const B4800 ideal-int
-pkg syscall (linux-arm-cgo), const B50 ideal-int
-pkg syscall (linux-arm-cgo), const B500000 ideal-int
-pkg syscall (linux-arm-cgo), const B57600 ideal-int
-pkg syscall (linux-arm-cgo), const B576000 ideal-int
-pkg syscall (linux-arm-cgo), const B600 ideal-int
-pkg syscall (linux-arm-cgo), const B75 ideal-int
-pkg syscall (linux-arm-cgo), const B921600 ideal-int
-pkg syscall (linux-arm-cgo), const B9600 ideal-int
-pkg syscall (linux-arm-cgo), const BPF_A ideal-int
-pkg syscall (linux-arm-cgo), const BPF_ABS ideal-int
-pkg syscall (linux-arm-cgo), const BPF_ADD ideal-int
-pkg syscall (linux-arm-cgo), const BPF_ALU ideal-int
-pkg syscall (linux-arm-cgo), const BPF_AND ideal-int
-pkg syscall (linux-arm-cgo), const BPF_B ideal-int
-pkg syscall (linux-arm-cgo), const BPF_DIV ideal-int
-pkg syscall (linux-arm-cgo), const BPF_H ideal-int
-pkg syscall (linux-arm-cgo), const BPF_IMM ideal-int
-pkg syscall (linux-arm-cgo), const BPF_IND ideal-int
-pkg syscall (linux-arm-cgo), const BPF_JA ideal-int
-pkg syscall (linux-arm-cgo), const BPF_JEQ ideal-int
-pkg syscall (linux-arm-cgo), const BPF_JGE ideal-int
-pkg syscall (linux-arm-cgo), const BPF_JGT ideal-int
-pkg syscall (linux-arm-cgo), const BPF_JMP ideal-int
-pkg syscall (linux-arm-cgo), const BPF_JSET ideal-int
-pkg syscall (linux-arm-cgo), const BPF_K ideal-int
-pkg syscall (linux-arm-cgo), const BPF_LD ideal-int
-pkg syscall (linux-arm-cgo), const BPF_LDX ideal-int
-pkg syscall (linux-arm-cgo), const BPF_LEN ideal-int
-pkg syscall (linux-arm-cgo), const BPF_LSH ideal-int
-pkg syscall (linux-arm-cgo), const BPF_MAJOR_VERSION ideal-int
-pkg syscall (linux-arm-cgo), const BPF_MAXINSNS ideal-int
-pkg syscall (linux-arm-cgo), const BPF_MEM ideal-int
-pkg syscall (linux-arm-cgo), const BPF_MEMWORDS ideal-int
-pkg syscall (linux-arm-cgo), const BPF_MINOR_VERSION ideal-int
-pkg syscall (linux-arm-cgo), const BPF_MISC ideal-int
-pkg syscall (linux-arm-cgo), const BPF_MSH ideal-int
-pkg syscall (linux-arm-cgo), const BPF_MUL ideal-int
-pkg syscall (linux-arm-cgo), const BPF_NEG ideal-int
-pkg syscall (linux-arm-cgo), const BPF_OR ideal-int
-pkg syscall (linux-arm-cgo), const BPF_RET ideal-int
-pkg syscall (linux-arm-cgo), const BPF_RSH ideal-int
-pkg syscall (linux-arm-cgo), const BPF_ST ideal-int
-pkg syscall (linux-arm-cgo), const BPF_STX ideal-int
-pkg syscall (linux-arm-cgo), const BPF_SUB ideal-int
-pkg syscall (linux-arm-cgo), const BPF_TAX ideal-int
-pkg syscall (linux-arm-cgo), const BPF_TXA ideal-int
-pkg syscall (linux-arm-cgo), const BPF_W ideal-int
-pkg syscall (linux-arm-cgo), const BPF_X ideal-int
-pkg syscall (linux-arm-cgo), const BRKINT ideal-int
-pkg syscall (linux-arm-cgo), const CLOCAL ideal-int
-pkg syscall (linux-arm-cgo), const CLONE_CHILD_CLEARTID = 2097152
-pkg syscall (linux-arm-cgo), const CLONE_CHILD_CLEARTID ideal-int
-pkg syscall (linux-arm-cgo), const CLONE_CHILD_SETTID = 16777216
-pkg syscall (linux-arm-cgo), const CLONE_CHILD_SETTID ideal-int
-pkg syscall (linux-arm-cgo), const CLONE_DETACHED = 4194304
-pkg syscall (linux-arm-cgo), const CLONE_DETACHED ideal-int
-pkg syscall (linux-arm-cgo), const CLONE_FILES = 1024
-pkg syscall (linux-arm-cgo), const CLONE_FILES ideal-int
-pkg syscall (linux-arm-cgo), const CLONE_FS = 512
-pkg syscall (linux-arm-cgo), const CLONE_FS ideal-int
-pkg syscall (linux-arm-cgo), const CLONE_IO = 2147483648
-pkg syscall (linux-arm-cgo), const CLONE_IO ideal-int
-pkg syscall (linux-arm-cgo), const CLONE_NEWIPC = 134217728
-pkg syscall (linux-arm-cgo), const CLONE_NEWIPC ideal-int
-pkg syscall (linux-arm-cgo), const CLONE_NEWNET = 1073741824
-pkg syscall (linux-arm-cgo), const CLONE_NEWNET ideal-int
-pkg syscall (linux-arm-cgo), const CLONE_NEWNS = 131072
-pkg syscall (linux-arm-cgo), const CLONE_NEWNS ideal-int
-pkg syscall (linux-arm-cgo), const CLONE_NEWPID = 536870912
-pkg syscall (linux-arm-cgo), const CLONE_NEWPID ideal-int
-pkg syscall (linux-arm-cgo), const CLONE_NEWUSER = 268435456
-pkg syscall (linux-arm-cgo), const CLONE_NEWUSER ideal-int
-pkg syscall (linux-arm-cgo), const CLONE_NEWUTS = 67108864
-pkg syscall (linux-arm-cgo), const CLONE_NEWUTS ideal-int
-pkg syscall (linux-arm-cgo), const CLONE_PARENT = 32768
-pkg syscall (linux-arm-cgo), const CLONE_PARENT ideal-int
-pkg syscall (linux-arm-cgo), const CLONE_PARENT_SETTID = 1048576
-pkg syscall (linux-arm-cgo), const CLONE_PARENT_SETTID ideal-int
-pkg syscall (linux-arm-cgo), const CLONE_PTRACE = 8192
-pkg syscall (linux-arm-cgo), const CLONE_PTRACE ideal-int
-pkg syscall (linux-arm-cgo), const CLONE_SETTLS = 524288
-pkg syscall (linux-arm-cgo), const CLONE_SETTLS ideal-int
-pkg syscall (linux-arm-cgo), const CLONE_SIGHAND = 2048
-pkg syscall (linux-arm-cgo), const CLONE_SIGHAND ideal-int
-pkg syscall (linux-arm-cgo), const CLONE_SYSVSEM = 262144
-pkg syscall (linux-arm-cgo), const CLONE_SYSVSEM ideal-int
-pkg syscall (linux-arm-cgo), const CLONE_THREAD = 65536
-pkg syscall (linux-arm-cgo), const CLONE_THREAD ideal-int
-pkg syscall (linux-arm-cgo), const CLONE_UNTRACED = 8388608
-pkg syscall (linux-arm-cgo), const CLONE_UNTRACED ideal-int
-pkg syscall (linux-arm-cgo), const CLONE_VFORK = 16384
-pkg syscall (linux-arm-cgo), const CLONE_VFORK ideal-int
-pkg syscall (linux-arm-cgo), const CLONE_VM = 256
-pkg syscall (linux-arm-cgo), const CLONE_VM ideal-int
-pkg syscall (linux-arm-cgo), const CREAD ideal-int
-pkg syscall (linux-arm-cgo), const CS5 ideal-int
-pkg syscall (linux-arm-cgo), const CS6 ideal-int
-pkg syscall (linux-arm-cgo), const CS7 ideal-int
-pkg syscall (linux-arm-cgo), const CS8 ideal-int
-pkg syscall (linux-arm-cgo), const CSIZE ideal-int
-pkg syscall (linux-arm-cgo), const CSTOPB ideal-int
-pkg syscall (linux-arm-cgo), const DT_BLK ideal-int
-pkg syscall (linux-arm-cgo), const DT_CHR ideal-int
-pkg syscall (linux-arm-cgo), const DT_DIR ideal-int
-pkg syscall (linux-arm-cgo), const DT_FIFO ideal-int
-pkg syscall (linux-arm-cgo), const DT_LNK ideal-int
-pkg syscall (linux-arm-cgo), const DT_REG ideal-int
-pkg syscall (linux-arm-cgo), const DT_SOCK ideal-int
-pkg syscall (linux-arm-cgo), const DT_UNKNOWN ideal-int
-pkg syscall (linux-arm-cgo), const DT_WHT ideal-int
-pkg syscall (linux-arm-cgo), const EADV Errno
-pkg syscall (linux-arm-cgo), const EBADE Errno
-pkg syscall (linux-arm-cgo), const EBADFD Errno
-pkg syscall (linux-arm-cgo), const EBADMSG Errno
-pkg syscall (linux-arm-cgo), const EBADR Errno
-pkg syscall (linux-arm-cgo), const EBADRQC Errno
-pkg syscall (linux-arm-cgo), const EBADSLT Errno
-pkg syscall (linux-arm-cgo), const EBFONT Errno
-pkg syscall (linux-arm-cgo), const ECHO ideal-int
-pkg syscall (linux-arm-cgo), const ECHOCTL ideal-int
-pkg syscall (linux-arm-cgo), const ECHOE ideal-int
-pkg syscall (linux-arm-cgo), const ECHOK ideal-int
-pkg syscall (linux-arm-cgo), const ECHOKE ideal-int
-pkg syscall (linux-arm-cgo), const ECHONL ideal-int
-pkg syscall (linux-arm-cgo), const ECHOPRT ideal-int
-pkg syscall (linux-arm-cgo), const ECHRNG Errno
-pkg syscall (linux-arm-cgo), const ECOMM Errno
-pkg syscall (linux-arm-cgo), const EDEADLOCK Errno
-pkg syscall (linux-arm-cgo), const EDOTDOT Errno
-pkg syscall (linux-arm-cgo), const EHWPOISON Errno
-pkg syscall (linux-arm-cgo), const EISNAM Errno
-pkg syscall (linux-arm-cgo), const EKEYEXPIRED Errno
-pkg syscall (linux-arm-cgo), const EKEYREJECTED Errno
-pkg syscall (linux-arm-cgo), const EKEYREVOKED Errno
-pkg syscall (linux-arm-cgo), const EL2HLT Errno
-pkg syscall (linux-arm-cgo), const EL2NSYNC Errno
-pkg syscall (linux-arm-cgo), const EL3HLT Errno
-pkg syscall (linux-arm-cgo), const EL3RST Errno
-pkg syscall (linux-arm-cgo), const ELF_NGREG ideal-int
-pkg syscall (linux-arm-cgo), const ELF_PRARGSZ ideal-int
-pkg syscall (linux-arm-cgo), const ELIBACC Errno
-pkg syscall (linux-arm-cgo), const ELIBBAD Errno
-pkg syscall (linux-arm-cgo), const ELIBEXEC Errno
-pkg syscall (linux-arm-cgo), const ELIBMAX Errno
-pkg syscall (linux-arm-cgo), const ELIBSCN Errno
-pkg syscall (linux-arm-cgo), const ELNRNG Errno
-pkg syscall (linux-arm-cgo), const EMEDIUMTYPE Errno
-pkg syscall (linux-arm-cgo), const EMULTIHOP Errno
-pkg syscall (linux-arm-cgo), const ENAVAIL Errno
-pkg syscall (linux-arm-cgo), const ENOANO Errno
-pkg syscall (linux-arm-cgo), const ENOCSI Errno
-pkg syscall (linux-arm-cgo), const ENODATA Errno
-pkg syscall (linux-arm-cgo), const ENOKEY Errno
-pkg syscall (linux-arm-cgo), const ENOLINK Errno
-pkg syscall (linux-arm-cgo), const ENOMEDIUM Errno
-pkg syscall (linux-arm-cgo), const ENONET Errno
-pkg syscall (linux-arm-cgo), const ENOPKG Errno
-pkg syscall (linux-arm-cgo), const ENOSR Errno
-pkg syscall (linux-arm-cgo), const ENOSTR Errno
-pkg syscall (linux-arm-cgo), const ENOTNAM Errno
-pkg syscall (linux-arm-cgo), const ENOTRECOVERABLE Errno
-pkg syscall (linux-arm-cgo), const ENOTUNIQ Errno
-pkg syscall (linux-arm-cgo), const EOWNERDEAD Errno
-pkg syscall (linux-arm-cgo), const EPOLLERR ideal-int
-pkg syscall (linux-arm-cgo), const EPOLLET ideal-int
-pkg syscall (linux-arm-cgo), const EPOLLHUP ideal-int
-pkg syscall (linux-arm-cgo), const EPOLLIN ideal-int
-pkg syscall (linux-arm-cgo), const EPOLLMSG ideal-int
-pkg syscall (linux-arm-cgo), const EPOLLONESHOT ideal-int
-pkg syscall (linux-arm-cgo), const EPOLLOUT ideal-int
-pkg syscall (linux-arm-cgo), const EPOLLPRI ideal-int
-pkg syscall (linux-arm-cgo), const EPOLLRDBAND ideal-int
-pkg syscall (linux-arm-cgo), const EPOLLRDHUP ideal-int
-pkg syscall (linux-arm-cgo), const EPOLLRDNORM ideal-int
-pkg syscall (linux-arm-cgo), const EPOLLWRBAND ideal-int
-pkg syscall (linux-arm-cgo), const EPOLLWRNORM ideal-int
-pkg syscall (linux-arm-cgo), const EPOLL_CLOEXEC ideal-int
-pkg syscall (linux-arm-cgo), const EPOLL_CTL_ADD ideal-int
-pkg syscall (linux-arm-cgo), const EPOLL_CTL_DEL ideal-int
-pkg syscall (linux-arm-cgo), const EPOLL_CTL_MOD ideal-int
-pkg syscall (linux-arm-cgo), const EPOLL_NONBLOCK ideal-int
-pkg syscall (linux-arm-cgo), const EPROTO Errno
-pkg syscall (linux-arm-cgo), const EREMCHG Errno
-pkg syscall (linux-arm-cgo), const EREMOTEIO Errno
-pkg syscall (linux-arm-cgo), const ERESTART Errno
-pkg syscall (linux-arm-cgo), const ERFKILL Errno
-pkg syscall (linux-arm-cgo), const ESRMNT Errno
-pkg syscall (linux-arm-cgo), const ESTRPIPE Errno
-pkg syscall (linux-arm-cgo), const ETH_P_1588 ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_8021Q ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_802_2 ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_802_3 ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_AARP ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_ALL ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_AOE ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_ARCNET ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_ARP ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_ATALK ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_ATMFATE ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_ATMMPOA ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_AX25 ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_BPQ ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_CAIF ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_CAN ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_CONTROL ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_CUST ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_DDCMP ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_DEC ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_DIAG ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_DNA_DL ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_DNA_RC ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_DNA_RT ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_DSA ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_ECONET ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_EDSA ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_FCOE ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_FIP ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_HDLC ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_IEEE802154 ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_IEEEPUP ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_IEEEPUPAT ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_IP ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_IPV6 ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_IPX ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_IRDA ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_LAT ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_LINK_CTL ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_LOCALTALK ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_LOOP ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_MOBITEX ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_MPLS_MC ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_MPLS_UC ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_PAE ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_PAUSE ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_PHONET ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_PPPTALK ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_PPP_DISC ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_PPP_MP ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_PPP_SES ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_PUP ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_PUPAT ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_RARP ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_SCA ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_SLOW ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_SNAP ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_TEB ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_TIPC ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_TRAILER ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_TR_802_2 ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_WAN_PPP ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_WCCP ideal-int
-pkg syscall (linux-arm-cgo), const ETH_P_X25 ideal-int
-pkg syscall (linux-arm-cgo), const ETIME Errno
-pkg syscall (linux-arm-cgo), const EUCLEAN Errno
-pkg syscall (linux-arm-cgo), const EUNATCH Errno
-pkg syscall (linux-arm-cgo), const EXFULL Errno
-pkg syscall (linux-arm-cgo), const FD_CLOEXEC ideal-int
-pkg syscall (linux-arm-cgo), const FD_SETSIZE ideal-int
-pkg syscall (linux-arm-cgo), const FLUSHO ideal-int
-pkg syscall (linux-arm-cgo), const F_DUPFD ideal-int
-pkg syscall (linux-arm-cgo), const F_DUPFD_CLOEXEC ideal-int
-pkg syscall (linux-arm-cgo), const F_EXLCK ideal-int
-pkg syscall (linux-arm-cgo), const F_GETFD ideal-int
-pkg syscall (linux-arm-cgo), const F_GETFL ideal-int
-pkg syscall (linux-arm-cgo), const F_GETLEASE ideal-int
-pkg syscall (linux-arm-cgo), const F_GETLK ideal-int
-pkg syscall (linux-arm-cgo), const F_GETLK64 ideal-int
-pkg syscall (linux-arm-cgo), const F_GETOWN ideal-int
-pkg syscall (linux-arm-cgo), const F_GETOWN_EX ideal-int
-pkg syscall (linux-arm-cgo), const F_GETPIPE_SZ ideal-int
-pkg syscall (linux-arm-cgo), const F_GETSIG ideal-int
-pkg syscall (linux-arm-cgo), const F_LOCK ideal-int
-pkg syscall (linux-arm-cgo), const F_NOTIFY ideal-int
-pkg syscall (linux-arm-cgo), const F_OK ideal-int
-pkg syscall (linux-arm-cgo), const F_RDLCK ideal-int
-pkg syscall (linux-arm-cgo), const F_SETFD ideal-int
-pkg syscall (linux-arm-cgo), const F_SETFL ideal-int
-pkg syscall (linux-arm-cgo), const F_SETLEASE ideal-int
-pkg syscall (linux-arm-cgo), const F_SETLK ideal-int
-pkg syscall (linux-arm-cgo), const F_SETLK64 ideal-int
-pkg syscall (linux-arm-cgo), const F_SETLKW ideal-int
-pkg syscall (linux-arm-cgo), const F_SETLKW64 ideal-int
-pkg syscall (linux-arm-cgo), const F_SETOWN ideal-int
-pkg syscall (linux-arm-cgo), const F_SETOWN_EX ideal-int
-pkg syscall (linux-arm-cgo), const F_SETPIPE_SZ ideal-int
-pkg syscall (linux-arm-cgo), const F_SETSIG ideal-int
-pkg syscall (linux-arm-cgo), const F_SHLCK ideal-int
-pkg syscall (linux-arm-cgo), const F_TEST ideal-int
-pkg syscall (linux-arm-cgo), const F_TLOCK ideal-int
-pkg syscall (linux-arm-cgo), const F_ULOCK ideal-int
-pkg syscall (linux-arm-cgo), const F_UNLCK ideal-int
-pkg syscall (linux-arm-cgo), const F_WRLCK ideal-int
-pkg syscall (linux-arm-cgo), const HUPCL ideal-int
-pkg syscall (linux-arm-cgo), const ICANON ideal-int
-pkg syscall (linux-arm-cgo), const ICMPV6_FILTER = 1
-pkg syscall (linux-arm-cgo), const ICMPV6_FILTER ideal-int
-pkg syscall (linux-arm-cgo), const ICRNL ideal-int
-pkg syscall (linux-arm-cgo), const IEXTEN ideal-int
-pkg syscall (linux-arm-cgo), const IFA_ADDRESS ideal-int
-pkg syscall (linux-arm-cgo), const IFA_ANYCAST ideal-int
-pkg syscall (linux-arm-cgo), const IFA_BROADCAST ideal-int
-pkg syscall (linux-arm-cgo), const IFA_CACHEINFO ideal-int
-pkg syscall (linux-arm-cgo), const IFA_F_DADFAILED ideal-int
-pkg syscall (linux-arm-cgo), const IFA_F_DEPRECATED ideal-int
-pkg syscall (linux-arm-cgo), const IFA_F_HOMEADDRESS ideal-int
-pkg syscall (linux-arm-cgo), const IFA_F_NODAD ideal-int
-pkg syscall (linux-arm-cgo), const IFA_F_OPTIMISTIC ideal-int
-pkg syscall (linux-arm-cgo), const IFA_F_PERMANENT ideal-int
-pkg syscall (linux-arm-cgo), const IFA_F_SECONDARY ideal-int
-pkg syscall (linux-arm-cgo), const IFA_F_TEMPORARY ideal-int
-pkg syscall (linux-arm-cgo), const IFA_F_TENTATIVE ideal-int
-pkg syscall (linux-arm-cgo), const IFA_LABEL ideal-int
-pkg syscall (linux-arm-cgo), const IFA_LOCAL ideal-int
-pkg syscall (linux-arm-cgo), const IFA_MAX ideal-int
-pkg syscall (linux-arm-cgo), const IFA_MULTICAST ideal-int
-pkg syscall (linux-arm-cgo), const IFA_UNSPEC ideal-int
-pkg syscall (linux-arm-cgo), const IFF_ALLMULTI ideal-int
-pkg syscall (linux-arm-cgo), const IFF_AUTOMEDIA ideal-int
-pkg syscall (linux-arm-cgo), const IFF_DEBUG ideal-int
-pkg syscall (linux-arm-cgo), const IFF_DYNAMIC ideal-int
-pkg syscall (linux-arm-cgo), const IFF_MASTER ideal-int
-pkg syscall (linux-arm-cgo), const IFF_NOARP ideal-int
-pkg syscall (linux-arm-cgo), const IFF_NOTRAILERS ideal-int
-pkg syscall (linux-arm-cgo), const IFF_NO_PI ideal-int
-pkg syscall (linux-arm-cgo), const IFF_ONE_QUEUE ideal-int
-pkg syscall (linux-arm-cgo), const IFF_POINTOPOINT ideal-int
-pkg syscall (linux-arm-cgo), const IFF_PORTSEL ideal-int
-pkg syscall (linux-arm-cgo), const IFF_PROMISC ideal-int
-pkg syscall (linux-arm-cgo), const IFF_RUNNING ideal-int
-pkg syscall (linux-arm-cgo), const IFF_SLAVE ideal-int
-pkg syscall (linux-arm-cgo), const IFF_TAP ideal-int
-pkg syscall (linux-arm-cgo), const IFF_TUN ideal-int
-pkg syscall (linux-arm-cgo), const IFF_TUN_EXCL ideal-int
-pkg syscall (linux-arm-cgo), const IFF_VNET_HDR ideal-int
-pkg syscall (linux-arm-cgo), const IFLA_ADDRESS ideal-int
-pkg syscall (linux-arm-cgo), const IFLA_BROADCAST ideal-int
-pkg syscall (linux-arm-cgo), const IFLA_COST ideal-int
-pkg syscall (linux-arm-cgo), const IFLA_IFALIAS ideal-int
-pkg syscall (linux-arm-cgo), const IFLA_IFNAME ideal-int
-pkg syscall (linux-arm-cgo), const IFLA_LINK ideal-int
-pkg syscall (linux-arm-cgo), const IFLA_LINKINFO ideal-int
-pkg syscall (linux-arm-cgo), const IFLA_LINKMODE ideal-int
-pkg syscall (linux-arm-cgo), const IFLA_MAP ideal-int
-pkg syscall (linux-arm-cgo), const IFLA_MASTER ideal-int
-pkg syscall (linux-arm-cgo), const IFLA_MAX ideal-int
-pkg syscall (linux-arm-cgo), const IFLA_MTU ideal-int
-pkg syscall (linux-arm-cgo), const IFLA_NET_NS_PID ideal-int
-pkg syscall (linux-arm-cgo), const IFLA_OPERSTATE ideal-int
-pkg syscall (linux-arm-cgo), const IFLA_PRIORITY ideal-int
-pkg syscall (linux-arm-cgo), const IFLA_PROTINFO ideal-int
-pkg syscall (linux-arm-cgo), const IFLA_QDISC ideal-int
-pkg syscall (linux-arm-cgo), const IFLA_STATS ideal-int
-pkg syscall (linux-arm-cgo), const IFLA_TXQLEN ideal-int
-pkg syscall (linux-arm-cgo), const IFLA_UNSPEC ideal-int
-pkg syscall (linux-arm-cgo), const IFLA_WEIGHT ideal-int
-pkg syscall (linux-arm-cgo), const IFLA_WIRELESS ideal-int
-pkg syscall (linux-arm-cgo), const IFNAMSIZ ideal-int
-pkg syscall (linux-arm-cgo), const IGNBRK ideal-int
-pkg syscall (linux-arm-cgo), const IGNCR ideal-int
-pkg syscall (linux-arm-cgo), const IGNPAR ideal-int
-pkg syscall (linux-arm-cgo), const IMAXBEL ideal-int
-pkg syscall (linux-arm-cgo), const INLCR ideal-int
-pkg syscall (linux-arm-cgo), const INPCK ideal-int
-pkg syscall (linux-arm-cgo), const IN_ACCESS ideal-int
-pkg syscall (linux-arm-cgo), const IN_ALL_EVENTS ideal-int
-pkg syscall (linux-arm-cgo), const IN_ATTRIB ideal-int
-pkg syscall (linux-arm-cgo), const IN_CLASSA_HOST ideal-int
-pkg syscall (linux-arm-cgo), const IN_CLASSA_MAX ideal-int
-pkg syscall (linux-arm-cgo), const IN_CLASSA_NET ideal-int
-pkg syscall (linux-arm-cgo), const IN_CLASSA_NSHIFT ideal-int
-pkg syscall (linux-arm-cgo), const IN_CLASSB_HOST ideal-int
-pkg syscall (linux-arm-cgo), const IN_CLASSB_MAX ideal-int
-pkg syscall (linux-arm-cgo), const IN_CLASSB_NET ideal-int
-pkg syscall (linux-arm-cgo), const IN_CLASSB_NSHIFT ideal-int
-pkg syscall (linux-arm-cgo), const IN_CLASSC_HOST ideal-int
-pkg syscall (linux-arm-cgo), const IN_CLASSC_NET ideal-int
-pkg syscall (linux-arm-cgo), const IN_CLASSC_NSHIFT ideal-int
-pkg syscall (linux-arm-cgo), const IN_CLOEXEC ideal-int
-pkg syscall (linux-arm-cgo), const IN_CLOSE ideal-int
-pkg syscall (linux-arm-cgo), const IN_CLOSE_NOWRITE ideal-int
-pkg syscall (linux-arm-cgo), const IN_CLOSE_WRITE ideal-int
-pkg syscall (linux-arm-cgo), const IN_CREATE ideal-int
-pkg syscall (linux-arm-cgo), const IN_DELETE ideal-int
-pkg syscall (linux-arm-cgo), const IN_DELETE_SELF ideal-int
-pkg syscall (linux-arm-cgo), const IN_DONT_FOLLOW ideal-int
-pkg syscall (linux-arm-cgo), const IN_EXCL_UNLINK ideal-int
-pkg syscall (linux-arm-cgo), const IN_IGNORED ideal-int
-pkg syscall (linux-arm-cgo), const IN_ISDIR ideal-int
-pkg syscall (linux-arm-cgo), const IN_LOOPBACKNET ideal-int
-pkg syscall (linux-arm-cgo), const IN_MASK_ADD ideal-int
-pkg syscall (linux-arm-cgo), const IN_MODIFY ideal-int
-pkg syscall (linux-arm-cgo), const IN_MOVE ideal-int
-pkg syscall (linux-arm-cgo), const IN_MOVED_FROM ideal-int
-pkg syscall (linux-arm-cgo), const IN_MOVED_TO ideal-int
-pkg syscall (linux-arm-cgo), const IN_MOVE_SELF ideal-int
-pkg syscall (linux-arm-cgo), const IN_NONBLOCK ideal-int
-pkg syscall (linux-arm-cgo), const IN_ONESHOT ideal-int
-pkg syscall (linux-arm-cgo), const IN_ONLYDIR ideal-int
-pkg syscall (linux-arm-cgo), const IN_OPEN ideal-int
-pkg syscall (linux-arm-cgo), const IN_Q_OVERFLOW ideal-int
-pkg syscall (linux-arm-cgo), const IN_UNMOUNT ideal-int
-pkg syscall (linux-arm-cgo), const IPPROTO_AH ideal-int
-pkg syscall (linux-arm-cgo), const IPPROTO_COMP ideal-int
-pkg syscall (linux-arm-cgo), const IPPROTO_DCCP ideal-int
-pkg syscall (linux-arm-cgo), const IPPROTO_DSTOPTS ideal-int
-pkg syscall (linux-arm-cgo), const IPPROTO_EGP ideal-int
-pkg syscall (linux-arm-cgo), const IPPROTO_ENCAP ideal-int
-pkg syscall (linux-arm-cgo), const IPPROTO_ESP ideal-int
-pkg syscall (linux-arm-cgo), const IPPROTO_FRAGMENT ideal-int
-pkg syscall (linux-arm-cgo), const IPPROTO_GRE ideal-int
-pkg syscall (linux-arm-cgo), const IPPROTO_HOPOPTS ideal-int
-pkg syscall (linux-arm-cgo), const IPPROTO_ICMP ideal-int
-pkg syscall (linux-arm-cgo), const IPPROTO_ICMPV6 ideal-int
-pkg syscall (linux-arm-cgo), const IPPROTO_IDP ideal-int
-pkg syscall (linux-arm-cgo), const IPPROTO_IGMP ideal-int
-pkg syscall (linux-arm-cgo), const IPPROTO_IPIP ideal-int
-pkg syscall (linux-arm-cgo), const IPPROTO_MTP ideal-int
-pkg syscall (linux-arm-cgo), const IPPROTO_NONE ideal-int
-pkg syscall (linux-arm-cgo), const IPPROTO_PIM ideal-int
-pkg syscall (linux-arm-cgo), const IPPROTO_PUP ideal-int
-pkg syscall (linux-arm-cgo), const IPPROTO_RAW ideal-int
-pkg syscall (linux-arm-cgo), const IPPROTO_ROUTING ideal-int
-pkg syscall (linux-arm-cgo), const IPPROTO_RSVP ideal-int
-pkg syscall (linux-arm-cgo), const IPPROTO_SCTP ideal-int
-pkg syscall (linux-arm-cgo), const IPPROTO_TP ideal-int
-pkg syscall (linux-arm-cgo), const IPPROTO_UDPLITE ideal-int
-pkg syscall (linux-arm-cgo), const IPV6_2292DSTOPTS ideal-int
-pkg syscall (linux-arm-cgo), const IPV6_2292HOPLIMIT ideal-int
-pkg syscall (linux-arm-cgo), const IPV6_2292HOPOPTS ideal-int
-pkg syscall (linux-arm-cgo), const IPV6_2292PKTINFO ideal-int
-pkg syscall (linux-arm-cgo), const IPV6_2292PKTOPTIONS ideal-int
-pkg syscall (linux-arm-cgo), const IPV6_2292RTHDR ideal-int
-pkg syscall (linux-arm-cgo), const IPV6_ADDRFORM ideal-int
-pkg syscall (linux-arm-cgo), const IPV6_ADD_MEMBERSHIP ideal-int
-pkg syscall (linux-arm-cgo), const IPV6_AUTHHDR ideal-int
-pkg syscall (linux-arm-cgo), const IPV6_CHECKSUM ideal-int
-pkg syscall (linux-arm-cgo), const IPV6_DROP_MEMBERSHIP ideal-int
-pkg syscall (linux-arm-cgo), const IPV6_DSTOPTS ideal-int
-pkg syscall (linux-arm-cgo), const IPV6_HOPLIMIT ideal-int
-pkg syscall (linux-arm-cgo), const IPV6_HOPOPTS ideal-int
-pkg syscall (linux-arm-cgo), const IPV6_IPSEC_POLICY ideal-int
-pkg syscall (linux-arm-cgo), const IPV6_JOIN_ANYCAST ideal-int
-pkg syscall (linux-arm-cgo), const IPV6_LEAVE_ANYCAST ideal-int
-pkg syscall (linux-arm-cgo), const IPV6_MTU ideal-int
-pkg syscall (linux-arm-cgo), const IPV6_MTU_DISCOVER ideal-int
-pkg syscall (linux-arm-cgo), const IPV6_NEXTHOP ideal-int
-pkg syscall (linux-arm-cgo), const IPV6_PKTINFO ideal-int
-pkg syscall (linux-arm-cgo), const IPV6_PMTUDISC_DO ideal-int
-pkg syscall (linux-arm-cgo), const IPV6_PMTUDISC_DONT ideal-int
-pkg syscall (linux-arm-cgo), const IPV6_PMTUDISC_PROBE ideal-int
-pkg syscall (linux-arm-cgo), const IPV6_PMTUDISC_WANT ideal-int
-pkg syscall (linux-arm-cgo), const IPV6_RECVDSTOPTS ideal-int
-pkg syscall (linux-arm-cgo), const IPV6_RECVERR ideal-int
-pkg syscall (linux-arm-cgo), const IPV6_RECVHOPLIMIT ideal-int
-pkg syscall (linux-arm-cgo), const IPV6_RECVHOPOPTS ideal-int
-pkg syscall (linux-arm-cgo), const IPV6_RECVPKTINFO ideal-int
-pkg syscall (linux-arm-cgo), const IPV6_RECVRTHDR ideal-int
-pkg syscall (linux-arm-cgo), const IPV6_RECVTCLASS ideal-int
-pkg syscall (linux-arm-cgo), const IPV6_ROUTER_ALERT ideal-int
-pkg syscall (linux-arm-cgo), const IPV6_RTHDR ideal-int
-pkg syscall (linux-arm-cgo), const IPV6_RTHDRDSTOPTS ideal-int
-pkg syscall (linux-arm-cgo), const IPV6_RTHDR_LOOSE ideal-int
-pkg syscall (linux-arm-cgo), const IPV6_RTHDR_STRICT ideal-int
-pkg syscall (linux-arm-cgo), const IPV6_RTHDR_TYPE_0 ideal-int
-pkg syscall (linux-arm-cgo), const IPV6_RXDSTOPTS ideal-int
-pkg syscall (linux-arm-cgo), const IPV6_RXHOPOPTS ideal-int
-pkg syscall (linux-arm-cgo), const IPV6_TCLASS ideal-int
-pkg syscall (linux-arm-cgo), const IPV6_XFRM_POLICY ideal-int
-pkg syscall (linux-arm-cgo), const IP_ADD_SOURCE_MEMBERSHIP ideal-int
-pkg syscall (linux-arm-cgo), const IP_BLOCK_SOURCE ideal-int
-pkg syscall (linux-arm-cgo), const IP_DEFAULT_MULTICAST_LOOP ideal-int
-pkg syscall (linux-arm-cgo), const IP_DEFAULT_MULTICAST_TTL ideal-int
-pkg syscall (linux-arm-cgo), const IP_DF ideal-int
-pkg syscall (linux-arm-cgo), const IP_DROP_SOURCE_MEMBERSHIP ideal-int
-pkg syscall (linux-arm-cgo), const IP_FREEBIND ideal-int
-pkg syscall (linux-arm-cgo), const IP_HDRINCL ideal-int
-pkg syscall (linux-arm-cgo), const IP_IPSEC_POLICY ideal-int
-pkg syscall (linux-arm-cgo), const IP_MAXPACKET ideal-int
-pkg syscall (linux-arm-cgo), const IP_MAX_MEMBERSHIPS ideal-int
-pkg syscall (linux-arm-cgo), const IP_MF ideal-int
-pkg syscall (linux-arm-cgo), const IP_MINTTL ideal-int
-pkg syscall (linux-arm-cgo), const IP_MSFILTER ideal-int
-pkg syscall (linux-arm-cgo), const IP_MSS ideal-int
-pkg syscall (linux-arm-cgo), const IP_MTU ideal-int
-pkg syscall (linux-arm-cgo), const IP_MTU_DISCOVER ideal-int
-pkg syscall (linux-arm-cgo), const IP_OFFMASK ideal-int
-pkg syscall (linux-arm-cgo), const IP_OPTIONS ideal-int
-pkg syscall (linux-arm-cgo), const IP_ORIGDSTADDR ideal-int
-pkg syscall (linux-arm-cgo), const IP_PASSSEC ideal-int
-pkg syscall (linux-arm-cgo), const IP_PKTINFO ideal-int
-pkg syscall (linux-arm-cgo), const IP_PKTOPTIONS ideal-int
-pkg syscall (linux-arm-cgo), const IP_PMTUDISC ideal-int
-pkg syscall (linux-arm-cgo), const IP_PMTUDISC_DO ideal-int
-pkg syscall (linux-arm-cgo), const IP_PMTUDISC_DONT ideal-int
-pkg syscall (linux-arm-cgo), const IP_PMTUDISC_PROBE ideal-int
-pkg syscall (linux-arm-cgo), const IP_PMTUDISC_WANT ideal-int
-pkg syscall (linux-arm-cgo), const IP_RECVERR ideal-int
-pkg syscall (linux-arm-cgo), const IP_RECVOPTS ideal-int
-pkg syscall (linux-arm-cgo), const IP_RECVORIGDSTADDR ideal-int
-pkg syscall (linux-arm-cgo), const IP_RECVRETOPTS ideal-int
-pkg syscall (linux-arm-cgo), const IP_RECVTOS ideal-int
-pkg syscall (linux-arm-cgo), const IP_RECVTTL ideal-int
-pkg syscall (linux-arm-cgo), const IP_RETOPTS ideal-int
-pkg syscall (linux-arm-cgo), const IP_RF ideal-int
-pkg syscall (linux-arm-cgo), const IP_ROUTER_ALERT ideal-int
-pkg syscall (linux-arm-cgo), const IP_TRANSPARENT ideal-int
-pkg syscall (linux-arm-cgo), const IP_UNBLOCK_SOURCE ideal-int
-pkg syscall (linux-arm-cgo), const IP_XFRM_POLICY ideal-int
-pkg syscall (linux-arm-cgo), const ISIG ideal-int
-pkg syscall (linux-arm-cgo), const ISTRIP ideal-int
-pkg syscall (linux-arm-cgo), const IUCLC ideal-int
-pkg syscall (linux-arm-cgo), const IUTF8 ideal-int
-pkg syscall (linux-arm-cgo), const IXANY ideal-int
-pkg syscall (linux-arm-cgo), const IXOFF ideal-int
-pkg syscall (linux-arm-cgo), const IXON ideal-int
-pkg syscall (linux-arm-cgo), const LINUX_REBOOT_CMD_CAD_OFF ideal-int
-pkg syscall (linux-arm-cgo), const LINUX_REBOOT_CMD_CAD_ON ideal-int
-pkg syscall (linux-arm-cgo), const LINUX_REBOOT_CMD_HALT ideal-int
-pkg syscall (linux-arm-cgo), const LINUX_REBOOT_CMD_KEXEC ideal-int
-pkg syscall (linux-arm-cgo), const LINUX_REBOOT_CMD_POWER_OFF ideal-int
-pkg syscall (linux-arm-cgo), const LINUX_REBOOT_CMD_RESTART ideal-int
-pkg syscall (linux-arm-cgo), const LINUX_REBOOT_CMD_RESTART2 ideal-int
-pkg syscall (linux-arm-cgo), const LINUX_REBOOT_CMD_SW_SUSPEND ideal-int
-pkg syscall (linux-arm-cgo), const LINUX_REBOOT_MAGIC1 ideal-int
-pkg syscall (linux-arm-cgo), const LINUX_REBOOT_MAGIC2 ideal-int
-pkg syscall (linux-arm-cgo), const LOCK_EX ideal-int
-pkg syscall (linux-arm-cgo), const LOCK_NB ideal-int
-pkg syscall (linux-arm-cgo), const LOCK_SH ideal-int
-pkg syscall (linux-arm-cgo), const LOCK_UN ideal-int
-pkg syscall (linux-arm-cgo), const MADV_DOFORK ideal-int
-pkg syscall (linux-arm-cgo), const MADV_DONTFORK ideal-int
-pkg syscall (linux-arm-cgo), const MADV_DONTNEED ideal-int
-pkg syscall (linux-arm-cgo), const MADV_HUGEPAGE ideal-int
-pkg syscall (linux-arm-cgo), const MADV_HWPOISON ideal-int
-pkg syscall (linux-arm-cgo), const MADV_MERGEABLE ideal-int
-pkg syscall (linux-arm-cgo), const MADV_NOHUGEPAGE ideal-int
-pkg syscall (linux-arm-cgo), const MADV_NORMAL ideal-int
-pkg syscall (linux-arm-cgo), const MADV_RANDOM ideal-int
-pkg syscall (linux-arm-cgo), const MADV_REMOVE ideal-int
-pkg syscall (linux-arm-cgo), const MADV_SEQUENTIAL ideal-int
-pkg syscall (linux-arm-cgo), const MADV_UNMERGEABLE ideal-int
-pkg syscall (linux-arm-cgo), const MADV_WILLNEED ideal-int
-pkg syscall (linux-arm-cgo), const MAP_ANON ideal-int
-pkg syscall (linux-arm-cgo), const MAP_ANONYMOUS ideal-int
-pkg syscall (linux-arm-cgo), const MAP_DENYWRITE ideal-int
-pkg syscall (linux-arm-cgo), const MAP_EXECUTABLE ideal-int
-pkg syscall (linux-arm-cgo), const MAP_FILE ideal-int
-pkg syscall (linux-arm-cgo), const MAP_FIXED ideal-int
-pkg syscall (linux-arm-cgo), const MAP_GROWSDOWN ideal-int
-pkg syscall (linux-arm-cgo), const MAP_LOCKED ideal-int
-pkg syscall (linux-arm-cgo), const MAP_NONBLOCK ideal-int
-pkg syscall (linux-arm-cgo), const MAP_NORESERVE ideal-int
-pkg syscall (linux-arm-cgo), const MAP_POPULATE ideal-int
-pkg syscall (linux-arm-cgo), const MAP_PRIVATE ideal-int
-pkg syscall (linux-arm-cgo), const MAP_SHARED ideal-int
-pkg syscall (linux-arm-cgo), const MAP_TYPE ideal-int
-pkg syscall (linux-arm-cgo), const MCL_CURRENT ideal-int
-pkg syscall (linux-arm-cgo), const MCL_FUTURE ideal-int
-pkg syscall (linux-arm-cgo), const MNT_DETACH ideal-int
-pkg syscall (linux-arm-cgo), const MNT_EXPIRE ideal-int
-pkg syscall (linux-arm-cgo), const MNT_FORCE ideal-int
-pkg syscall (linux-arm-cgo), const MSG_CMSG_CLOEXEC ideal-int
-pkg syscall (linux-arm-cgo), const MSG_CONFIRM ideal-int
-pkg syscall (linux-arm-cgo), const MSG_CTRUNC ideal-int
-pkg syscall (linux-arm-cgo), const MSG_DONTROUTE ideal-int
-pkg syscall (linux-arm-cgo), const MSG_DONTWAIT ideal-int
-pkg syscall (linux-arm-cgo), const MSG_EOR ideal-int
-pkg syscall (linux-arm-cgo), const MSG_ERRQUEUE ideal-int
-pkg syscall (linux-arm-cgo), const MSG_FASTOPEN ideal-int
-pkg syscall (linux-arm-cgo), const MSG_FIN ideal-int
-pkg syscall (linux-arm-cgo), const MSG_MORE ideal-int
-pkg syscall (linux-arm-cgo), const MSG_NOSIGNAL ideal-int
-pkg syscall (linux-arm-cgo), const MSG_OOB ideal-int
-pkg syscall (linux-arm-cgo), const MSG_PEEK ideal-int
-pkg syscall (linux-arm-cgo), const MSG_PROXY ideal-int
-pkg syscall (linux-arm-cgo), const MSG_RST ideal-int
-pkg syscall (linux-arm-cgo), const MSG_SYN ideal-int
-pkg syscall (linux-arm-cgo), const MSG_TRUNC ideal-int
-pkg syscall (linux-arm-cgo), const MSG_TRYHARD ideal-int
-pkg syscall (linux-arm-cgo), const MSG_WAITALL ideal-int
-pkg syscall (linux-arm-cgo), const MSG_WAITFORONE ideal-int
-pkg syscall (linux-arm-cgo), const MS_ACTIVE ideal-int
-pkg syscall (linux-arm-cgo), const MS_ASYNC ideal-int
-pkg syscall (linux-arm-cgo), const MS_BIND ideal-int
-pkg syscall (linux-arm-cgo), const MS_DIRSYNC ideal-int
-pkg syscall (linux-arm-cgo), const MS_INVALIDATE ideal-int
-pkg syscall (linux-arm-cgo), const MS_I_VERSION ideal-int
-pkg syscall (linux-arm-cgo), const MS_KERNMOUNT ideal-int
-pkg syscall (linux-arm-cgo), const MS_MANDLOCK ideal-int
-pkg syscall (linux-arm-cgo), const MS_MGC_MSK ideal-int
-pkg syscall (linux-arm-cgo), const MS_MGC_VAL ideal-int
-pkg syscall (linux-arm-cgo), const MS_MOVE ideal-int
-pkg syscall (linux-arm-cgo), const MS_NOATIME ideal-int
-pkg syscall (linux-arm-cgo), const MS_NODEV ideal-int
-pkg syscall (linux-arm-cgo), const MS_NODIRATIME ideal-int
-pkg syscall (linux-arm-cgo), const MS_NOEXEC ideal-int
-pkg syscall (linux-arm-cgo), const MS_NOSUID ideal-int
-pkg syscall (linux-arm-cgo), const MS_NOUSER ideal-int
-pkg syscall (linux-arm-cgo), const MS_POSIXACL ideal-int
-pkg syscall (linux-arm-cgo), const MS_PRIVATE ideal-int
-pkg syscall (linux-arm-cgo), const MS_RDONLY ideal-int
-pkg syscall (linux-arm-cgo), const MS_REC ideal-int
-pkg syscall (linux-arm-cgo), const MS_RELATIME ideal-int
-pkg syscall (linux-arm-cgo), const MS_REMOUNT ideal-int
-pkg syscall (linux-arm-cgo), const MS_RMT_MASK ideal-int
-pkg syscall (linux-arm-cgo), const MS_SHARED ideal-int
-pkg syscall (linux-arm-cgo), const MS_SILENT ideal-int
-pkg syscall (linux-arm-cgo), const MS_SLAVE ideal-int
-pkg syscall (linux-arm-cgo), const MS_STRICTATIME ideal-int
-pkg syscall (linux-arm-cgo), const MS_SYNC ideal-int
-pkg syscall (linux-arm-cgo), const MS_SYNCHRONOUS ideal-int
-pkg syscall (linux-arm-cgo), const MS_UNBINDABLE ideal-int
-pkg syscall (linux-arm-cgo), const NAME_MAX ideal-int
-pkg syscall (linux-arm-cgo), const NETLINK_ADD_MEMBERSHIP ideal-int
-pkg syscall (linux-arm-cgo), const NETLINK_AUDIT ideal-int
-pkg syscall (linux-arm-cgo), const NETLINK_BROADCAST_ERROR ideal-int
-pkg syscall (linux-arm-cgo), const NETLINK_CONNECTOR ideal-int
-pkg syscall (linux-arm-cgo), const NETLINK_DNRTMSG ideal-int
-pkg syscall (linux-arm-cgo), const NETLINK_DROP_MEMBERSHIP ideal-int
-pkg syscall (linux-arm-cgo), const NETLINK_ECRYPTFS ideal-int
-pkg syscall (linux-arm-cgo), const NETLINK_FIB_LOOKUP ideal-int
-pkg syscall (linux-arm-cgo), const NETLINK_FIREWALL ideal-int
-pkg syscall (linux-arm-cgo), const NETLINK_GENERIC ideal-int
-pkg syscall (linux-arm-cgo), const NETLINK_INET_DIAG ideal-int
-pkg syscall (linux-arm-cgo), const NETLINK_IP6_FW ideal-int
-pkg syscall (linux-arm-cgo), const NETLINK_ISCSI ideal-int
-pkg syscall (linux-arm-cgo), const NETLINK_KOBJECT_UEVENT ideal-int
-pkg syscall (linux-arm-cgo), const NETLINK_NETFILTER ideal-int
-pkg syscall (linux-arm-cgo), const NETLINK_NFLOG ideal-int
-pkg syscall (linux-arm-cgo), const NETLINK_NO_ENOBUFS ideal-int
-pkg syscall (linux-arm-cgo), const NETLINK_PKTINFO ideal-int
-pkg syscall (linux-arm-cgo), const NETLINK_RDMA ideal-int
-pkg syscall (linux-arm-cgo), const NETLINK_ROUTE ideal-int
-pkg syscall (linux-arm-cgo), const NETLINK_SCSITRANSPORT ideal-int
-pkg syscall (linux-arm-cgo), const NETLINK_SELINUX ideal-int
-pkg syscall (linux-arm-cgo), const NETLINK_UNUSED ideal-int
-pkg syscall (linux-arm-cgo), const NETLINK_USERSOCK ideal-int
-pkg syscall (linux-arm-cgo), const NETLINK_XFRM ideal-int
-pkg syscall (linux-arm-cgo), const NLA_ALIGNTO ideal-int
-pkg syscall (linux-arm-cgo), const NLA_F_NESTED ideal-int
-pkg syscall (linux-arm-cgo), const NLA_F_NET_BYTEORDER ideal-int
-pkg syscall (linux-arm-cgo), const NLA_HDRLEN ideal-int
-pkg syscall (linux-arm-cgo), const NLMSG_ALIGNTO ideal-int
-pkg syscall (linux-arm-cgo), const NLMSG_DONE ideal-int
-pkg syscall (linux-arm-cgo), const NLMSG_ERROR ideal-int
-pkg syscall (linux-arm-cgo), const NLMSG_HDRLEN ideal-int
-pkg syscall (linux-arm-cgo), const NLMSG_MIN_TYPE ideal-int
-pkg syscall (linux-arm-cgo), const NLMSG_NOOP ideal-int
-pkg syscall (linux-arm-cgo), const NLMSG_OVERRUN ideal-int
-pkg syscall (linux-arm-cgo), const NLM_F_ACK ideal-int
-pkg syscall (linux-arm-cgo), const NLM_F_APPEND ideal-int
-pkg syscall (linux-arm-cgo), const NLM_F_ATOMIC ideal-int
-pkg syscall (linux-arm-cgo), const NLM_F_CREATE ideal-int
-pkg syscall (linux-arm-cgo), const NLM_F_DUMP ideal-int
-pkg syscall (linux-arm-cgo), const NLM_F_ECHO ideal-int
-pkg syscall (linux-arm-cgo), const NLM_F_EXCL ideal-int
-pkg syscall (linux-arm-cgo), const NLM_F_MATCH ideal-int
-pkg syscall (linux-arm-cgo), const NLM_F_MULTI ideal-int
-pkg syscall (linux-arm-cgo), const NLM_F_REPLACE ideal-int
-pkg syscall (linux-arm-cgo), const NLM_F_REQUEST ideal-int
-pkg syscall (linux-arm-cgo), const NLM_F_ROOT ideal-int
-pkg syscall (linux-arm-cgo), const NOFLSH ideal-int
-pkg syscall (linux-arm-cgo), const OCRNL ideal-int
-pkg syscall (linux-arm-cgo), const OFDEL ideal-int
-pkg syscall (linux-arm-cgo), const OFILL ideal-int
-pkg syscall (linux-arm-cgo), const OLCUC ideal-int
-pkg syscall (linux-arm-cgo), const ONLCR ideal-int
-pkg syscall (linux-arm-cgo), const ONLRET ideal-int
-pkg syscall (linux-arm-cgo), const ONOCR ideal-int
-pkg syscall (linux-arm-cgo), const OPOST ideal-int
-pkg syscall (linux-arm-cgo), const O_ACCMODE ideal-int
-pkg syscall (linux-arm-cgo), const O_DIRECT ideal-int
-pkg syscall (linux-arm-cgo), const O_DIRECTORY ideal-int
-pkg syscall (linux-arm-cgo), const O_DSYNC ideal-int
-pkg syscall (linux-arm-cgo), const O_FSYNC ideal-int
-pkg syscall (linux-arm-cgo), const O_LARGEFILE ideal-int
-pkg syscall (linux-arm-cgo), const O_NDELAY ideal-int
-pkg syscall (linux-arm-cgo), const O_NOATIME ideal-int
-pkg syscall (linux-arm-cgo), const O_NOFOLLOW ideal-int
-pkg syscall (linux-arm-cgo), const O_RSYNC ideal-int
-pkg syscall (linux-arm-cgo), const PACKET_ADD_MEMBERSHIP ideal-int
-pkg syscall (linux-arm-cgo), const PACKET_BROADCAST ideal-int
-pkg syscall (linux-arm-cgo), const PACKET_DROP_MEMBERSHIP ideal-int
-pkg syscall (linux-arm-cgo), const PACKET_FASTROUTE ideal-int
-pkg syscall (linux-arm-cgo), const PACKET_HOST ideal-int
-pkg syscall (linux-arm-cgo), const PACKET_LOOPBACK ideal-int
-pkg syscall (linux-arm-cgo), const PACKET_MR_ALLMULTI ideal-int
-pkg syscall (linux-arm-cgo), const PACKET_MR_MULTICAST ideal-int
-pkg syscall (linux-arm-cgo), const PACKET_MR_PROMISC ideal-int
-pkg syscall (linux-arm-cgo), const PACKET_MULTICAST ideal-int
-pkg syscall (linux-arm-cgo), const PACKET_OTHERHOST ideal-int
-pkg syscall (linux-arm-cgo), const PACKET_OUTGOING ideal-int
-pkg syscall (linux-arm-cgo), const PACKET_RECV_OUTPUT ideal-int
-pkg syscall (linux-arm-cgo), const PACKET_RX_RING ideal-int
-pkg syscall (linux-arm-cgo), const PACKET_STATISTICS ideal-int
-pkg syscall (linux-arm-cgo), const PARENB ideal-int
-pkg syscall (linux-arm-cgo), const PARMRK ideal-int
-pkg syscall (linux-arm-cgo), const PARODD ideal-int
-pkg syscall (linux-arm-cgo), const PENDIN ideal-int
-pkg syscall (linux-arm-cgo), const PRIO_PGRP = 1
-pkg syscall (linux-arm-cgo), const PRIO_PGRP ideal-int
-pkg syscall (linux-arm-cgo), const PRIO_PROCESS = 0
-pkg syscall (linux-arm-cgo), const PRIO_PROCESS ideal-int
-pkg syscall (linux-arm-cgo), const PRIO_USER = 2
-pkg syscall (linux-arm-cgo), const PRIO_USER ideal-int
-pkg syscall (linux-arm-cgo), const PROT_EXEC ideal-int
-pkg syscall (linux-arm-cgo), const PROT_GROWSDOWN ideal-int
-pkg syscall (linux-arm-cgo), const PROT_GROWSUP ideal-int
-pkg syscall (linux-arm-cgo), const PROT_NONE ideal-int
-pkg syscall (linux-arm-cgo), const PROT_READ ideal-int
-pkg syscall (linux-arm-cgo), const PROT_WRITE ideal-int
-pkg syscall (linux-arm-cgo), const PR_CAPBSET_DROP ideal-int
-pkg syscall (linux-arm-cgo), const PR_CAPBSET_READ ideal-int
-pkg syscall (linux-arm-cgo), const PR_CLEAR_SECCOMP_FILTER ideal-int
-pkg syscall (linux-arm-cgo), const PR_ENDIAN_BIG ideal-int
-pkg syscall (linux-arm-cgo), const PR_ENDIAN_LITTLE ideal-int
-pkg syscall (linux-arm-cgo), const PR_ENDIAN_PPC_LITTLE ideal-int
-pkg syscall (linux-arm-cgo), const PR_FPEMU_NOPRINT ideal-int
-pkg syscall (linux-arm-cgo), const PR_FPEMU_SIGFPE ideal-int
-pkg syscall (linux-arm-cgo), const PR_FP_EXC_ASYNC ideal-int
-pkg syscall (linux-arm-cgo), const PR_FP_EXC_DISABLED ideal-int
-pkg syscall (linux-arm-cgo), const PR_FP_EXC_DIV ideal-int
-pkg syscall (linux-arm-cgo), const PR_FP_EXC_INV ideal-int
-pkg syscall (linux-arm-cgo), const PR_FP_EXC_NONRECOV ideal-int
-pkg syscall (linux-arm-cgo), const PR_FP_EXC_OVF ideal-int
-pkg syscall (linux-arm-cgo), const PR_FP_EXC_PRECISE ideal-int
-pkg syscall (linux-arm-cgo), const PR_FP_EXC_RES ideal-int
-pkg syscall (linux-arm-cgo), const PR_FP_EXC_SW_ENABLE ideal-int
-pkg syscall (linux-arm-cgo), const PR_FP_EXC_UND ideal-int
-pkg syscall (linux-arm-cgo), const PR_GET_DUMPABLE ideal-int
-pkg syscall (linux-arm-cgo), const PR_GET_ENDIAN ideal-int
-pkg syscall (linux-arm-cgo), const PR_GET_FPEMU ideal-int
-pkg syscall (linux-arm-cgo), const PR_GET_FPEXC ideal-int
-pkg syscall (linux-arm-cgo), const PR_GET_KEEPCAPS ideal-int
-pkg syscall (linux-arm-cgo), const PR_GET_NAME ideal-int
-pkg syscall (linux-arm-cgo), const PR_GET_PDEATHSIG ideal-int
-pkg syscall (linux-arm-cgo), const PR_GET_SECCOMP ideal-int
-pkg syscall (linux-arm-cgo), const PR_GET_SECCOMP_FILTER ideal-int
-pkg syscall (linux-arm-cgo), const PR_GET_SECUREBITS ideal-int
-pkg syscall (linux-arm-cgo), const PR_GET_TIMERSLACK ideal-int
-pkg syscall (linux-arm-cgo), const PR_GET_TIMING ideal-int
-pkg syscall (linux-arm-cgo), const PR_GET_TSC ideal-int
-pkg syscall (linux-arm-cgo), const PR_GET_UNALIGN ideal-int
-pkg syscall (linux-arm-cgo), const PR_MCE_KILL ideal-int
-pkg syscall (linux-arm-cgo), const PR_MCE_KILL_CLEAR ideal-int
-pkg syscall (linux-arm-cgo), const PR_MCE_KILL_DEFAULT ideal-int
-pkg syscall (linux-arm-cgo), const PR_MCE_KILL_EARLY ideal-int
-pkg syscall (linux-arm-cgo), const PR_MCE_KILL_GET ideal-int
-pkg syscall (linux-arm-cgo), const PR_MCE_KILL_LATE ideal-int
-pkg syscall (linux-arm-cgo), const PR_MCE_KILL_SET ideal-int
-pkg syscall (linux-arm-cgo), const PR_SECCOMP_FILTER_EVENT ideal-int
-pkg syscall (linux-arm-cgo), const PR_SECCOMP_FILTER_SYSCALL ideal-int
-pkg syscall (linux-arm-cgo), const PR_SET_DUMPABLE ideal-int
-pkg syscall (linux-arm-cgo), const PR_SET_ENDIAN ideal-int
-pkg syscall (linux-arm-cgo), const PR_SET_FPEMU ideal-int
-pkg syscall (linux-arm-cgo), const PR_SET_FPEXC ideal-int
-pkg syscall (linux-arm-cgo), const PR_SET_KEEPCAPS ideal-int
-pkg syscall (linux-arm-cgo), const PR_SET_NAME ideal-int
-pkg syscall (linux-arm-cgo), const PR_SET_PDEATHSIG ideal-int
-pkg syscall (linux-arm-cgo), const PR_SET_PTRACER ideal-int
-pkg syscall (linux-arm-cgo), const PR_SET_SECCOMP ideal-int
-pkg syscall (linux-arm-cgo), const PR_SET_SECCOMP_FILTER ideal-int
-pkg syscall (linux-arm-cgo), const PR_SET_SECUREBITS ideal-int
-pkg syscall (linux-arm-cgo), const PR_SET_TIMERSLACK ideal-int
-pkg syscall (linux-arm-cgo), const PR_SET_TIMING ideal-int
-pkg syscall (linux-arm-cgo), const PR_SET_TSC ideal-int
-pkg syscall (linux-arm-cgo), const PR_SET_UNALIGN ideal-int
-pkg syscall (linux-arm-cgo), const PR_TASK_PERF_EVENTS_DISABLE ideal-int
-pkg syscall (linux-arm-cgo), const PR_TASK_PERF_EVENTS_ENABLE ideal-int
-pkg syscall (linux-arm-cgo), const PR_TIMING_STATISTICAL ideal-int
-pkg syscall (linux-arm-cgo), const PR_TIMING_TIMESTAMP ideal-int
-pkg syscall (linux-arm-cgo), const PR_TSC_ENABLE ideal-int
-pkg syscall (linux-arm-cgo), const PR_TSC_SIGSEGV ideal-int
-pkg syscall (linux-arm-cgo), const PR_UNALIGN_NOPRINT ideal-int
-pkg syscall (linux-arm-cgo), const PR_UNALIGN_SIGBUS ideal-int
-pkg syscall (linux-arm-cgo), const PTRACE_ATTACH ideal-int
-pkg syscall (linux-arm-cgo), const PTRACE_CONT ideal-int
-pkg syscall (linux-arm-cgo), const PTRACE_DETACH ideal-int
-pkg syscall (linux-arm-cgo), const PTRACE_EVENT_CLONE ideal-int
-pkg syscall (linux-arm-cgo), const PTRACE_EVENT_EXEC ideal-int
-pkg syscall (linux-arm-cgo), const PTRACE_EVENT_EXIT ideal-int
-pkg syscall (linux-arm-cgo), const PTRACE_EVENT_FORK ideal-int
-pkg syscall (linux-arm-cgo), const PTRACE_EVENT_VFORK ideal-int
-pkg syscall (linux-arm-cgo), const PTRACE_EVENT_VFORK_DONE ideal-int
-pkg syscall (linux-arm-cgo), const PTRACE_GETCRUNCHREGS ideal-int
-pkg syscall (linux-arm-cgo), const PTRACE_GETEVENTMSG ideal-int
-pkg syscall (linux-arm-cgo), const PTRACE_GETFPREGS ideal-int
-pkg syscall (linux-arm-cgo), const PTRACE_GETHBPREGS ideal-int
-pkg syscall (linux-arm-cgo), const PTRACE_GETREGS ideal-int
-pkg syscall (linux-arm-cgo), const PTRACE_GETREGSET ideal-int
-pkg syscall (linux-arm-cgo), const PTRACE_GETSIGINFO ideal-int
-pkg syscall (linux-arm-cgo), const PTRACE_GETVFPREGS ideal-int
-pkg syscall (linux-arm-cgo), const PTRACE_GETWMMXREGS ideal-int
-pkg syscall (linux-arm-cgo), const PTRACE_GET_THREAD_AREA ideal-int
-pkg syscall (linux-arm-cgo), const PTRACE_KILL ideal-int
-pkg syscall (linux-arm-cgo), const PTRACE_OLDSETOPTIONS ideal-int
-pkg syscall (linux-arm-cgo), const PTRACE_O_MASK ideal-int
-pkg syscall (linux-arm-cgo), const PTRACE_O_TRACECLONE ideal-int
-pkg syscall (linux-arm-cgo), const PTRACE_O_TRACEEXEC ideal-int
-pkg syscall (linux-arm-cgo), const PTRACE_O_TRACEEXIT ideal-int
-pkg syscall (linux-arm-cgo), const PTRACE_O_TRACEFORK ideal-int
-pkg syscall (linux-arm-cgo), const PTRACE_O_TRACESYSGOOD ideal-int
-pkg syscall (linux-arm-cgo), const PTRACE_O_TRACEVFORK ideal-int
-pkg syscall (linux-arm-cgo), const PTRACE_O_TRACEVFORKDONE ideal-int
-pkg syscall (linux-arm-cgo), const PTRACE_PEEKDATA ideal-int
-pkg syscall (linux-arm-cgo), const PTRACE_PEEKTEXT ideal-int
-pkg syscall (linux-arm-cgo), const PTRACE_PEEKUSR ideal-int
-pkg syscall (linux-arm-cgo), const PTRACE_POKEDATA ideal-int
-pkg syscall (linux-arm-cgo), const PTRACE_POKETEXT ideal-int
-pkg syscall (linux-arm-cgo), const PTRACE_POKEUSR ideal-int
-pkg syscall (linux-arm-cgo), const PTRACE_SETCRUNCHREGS ideal-int
-pkg syscall (linux-arm-cgo), const PTRACE_SETFPREGS ideal-int
-pkg syscall (linux-arm-cgo), const PTRACE_SETHBPREGS ideal-int
-pkg syscall (linux-arm-cgo), const PTRACE_SETOPTIONS ideal-int
-pkg syscall (linux-arm-cgo), const PTRACE_SETREGS ideal-int
-pkg syscall (linux-arm-cgo), const PTRACE_SETREGSET ideal-int
-pkg syscall (linux-arm-cgo), const PTRACE_SETSIGINFO ideal-int
-pkg syscall (linux-arm-cgo), const PTRACE_SETVFPREGS ideal-int
-pkg syscall (linux-arm-cgo), const PTRACE_SETWMMXREGS ideal-int
-pkg syscall (linux-arm-cgo), const PTRACE_SET_SYSCALL ideal-int
-pkg syscall (linux-arm-cgo), const PTRACE_SINGLESTEP ideal-int
-pkg syscall (linux-arm-cgo), const PTRACE_SYSCALL ideal-int
-pkg syscall (linux-arm-cgo), const PTRACE_TRACEME ideal-int
-pkg syscall (linux-arm-cgo), const PT_DATA_ADDR ideal-int
-pkg syscall (linux-arm-cgo), const PT_TEXT_ADDR ideal-int
-pkg syscall (linux-arm-cgo), const PT_TEXT_END_ADDR ideal-int
-pkg syscall (linux-arm-cgo), const PathMax ideal-int
-pkg syscall (linux-arm-cgo), const RLIMIT_AS ideal-int
-pkg syscall (linux-arm-cgo), const RLIMIT_CORE ideal-int
-pkg syscall (linux-arm-cgo), const RLIMIT_CPU ideal-int
-pkg syscall (linux-arm-cgo), const RLIMIT_DATA ideal-int
-pkg syscall (linux-arm-cgo), const RLIMIT_FSIZE ideal-int
-pkg syscall (linux-arm-cgo), const RLIMIT_NOFILE ideal-int
-pkg syscall (linux-arm-cgo), const RLIMIT_STACK ideal-int
-pkg syscall (linux-arm-cgo), const RLIM_INFINITY ideal-int
-pkg syscall (linux-arm-cgo), const RTAX_ADVMSS ideal-int
-pkg syscall (linux-arm-cgo), const RTAX_CWND ideal-int
-pkg syscall (linux-arm-cgo), const RTAX_FEATURES ideal-int
-pkg syscall (linux-arm-cgo), const RTAX_FEATURE_ALLFRAG ideal-int
-pkg syscall (linux-arm-cgo), const RTAX_FEATURE_ECN ideal-int
-pkg syscall (linux-arm-cgo), const RTAX_FEATURE_SACK ideal-int
-pkg syscall (linux-arm-cgo), const RTAX_FEATURE_TIMESTAMP ideal-int
-pkg syscall (linux-arm-cgo), const RTAX_HOPLIMIT ideal-int
-pkg syscall (linux-arm-cgo), const RTAX_INITCWND ideal-int
-pkg syscall (linux-arm-cgo), const RTAX_INITRWND ideal-int
-pkg syscall (linux-arm-cgo), const RTAX_LOCK ideal-int
-pkg syscall (linux-arm-cgo), const RTAX_MAX ideal-int
-pkg syscall (linux-arm-cgo), const RTAX_MTU ideal-int
-pkg syscall (linux-arm-cgo), const RTAX_REORDERING ideal-int
-pkg syscall (linux-arm-cgo), const RTAX_RTO_MIN ideal-int
-pkg syscall (linux-arm-cgo), const RTAX_RTT ideal-int
-pkg syscall (linux-arm-cgo), const RTAX_RTTVAR ideal-int
-pkg syscall (linux-arm-cgo), const RTAX_SSTHRESH ideal-int
-pkg syscall (linux-arm-cgo), const RTAX_UNSPEC ideal-int
-pkg syscall (linux-arm-cgo), const RTAX_WINDOW ideal-int
-pkg syscall (linux-arm-cgo), const RTA_ALIGNTO ideal-int
-pkg syscall (linux-arm-cgo), const RTA_CACHEINFO ideal-int
-pkg syscall (linux-arm-cgo), const RTA_DST ideal-int
-pkg syscall (linux-arm-cgo), const RTA_FLOW ideal-int
-pkg syscall (linux-arm-cgo), const RTA_GATEWAY ideal-int
-pkg syscall (linux-arm-cgo), const RTA_IIF ideal-int
-pkg syscall (linux-arm-cgo), const RTA_MAX ideal-int
-pkg syscall (linux-arm-cgo), const RTA_METRICS ideal-int
-pkg syscall (linux-arm-cgo), const RTA_MULTIPATH ideal-int
-pkg syscall (linux-arm-cgo), const RTA_OIF ideal-int
-pkg syscall (linux-arm-cgo), const RTA_PREFSRC ideal-int
-pkg syscall (linux-arm-cgo), const RTA_PRIORITY ideal-int
-pkg syscall (linux-arm-cgo), const RTA_SRC ideal-int
-pkg syscall (linux-arm-cgo), const RTA_TABLE ideal-int
-pkg syscall (linux-arm-cgo), const RTA_UNSPEC ideal-int
-pkg syscall (linux-arm-cgo), const RTCF_DIRECTSRC ideal-int
-pkg syscall (linux-arm-cgo), const RTCF_DOREDIRECT ideal-int
-pkg syscall (linux-arm-cgo), const RTCF_LOG ideal-int
-pkg syscall (linux-arm-cgo), const RTCF_MASQ ideal-int
-pkg syscall (linux-arm-cgo), const RTCF_NAT ideal-int
-pkg syscall (linux-arm-cgo), const RTCF_VALVE ideal-int
-pkg syscall (linux-arm-cgo), const RTF_ADDRCLASSMASK ideal-int
-pkg syscall (linux-arm-cgo), const RTF_ADDRCONF ideal-int
-pkg syscall (linux-arm-cgo), const RTF_ALLONLINK ideal-int
-pkg syscall (linux-arm-cgo), const RTF_BROADCAST ideal-int
-pkg syscall (linux-arm-cgo), const RTF_CACHE ideal-int
-pkg syscall (linux-arm-cgo), const RTF_DEFAULT ideal-int
-pkg syscall (linux-arm-cgo), const RTF_DYNAMIC ideal-int
-pkg syscall (linux-arm-cgo), const RTF_FLOW ideal-int
-pkg syscall (linux-arm-cgo), const RTF_GATEWAY ideal-int
-pkg syscall (linux-arm-cgo), const RTF_HOST ideal-int
-pkg syscall (linux-arm-cgo), const RTF_INTERFACE ideal-int
-pkg syscall (linux-arm-cgo), const RTF_IRTT ideal-int
-pkg syscall (linux-arm-cgo), const RTF_LINKRT ideal-int
-pkg syscall (linux-arm-cgo), const RTF_LOCAL ideal-int
-pkg syscall (linux-arm-cgo), const RTF_MODIFIED ideal-int
-pkg syscall (linux-arm-cgo), const RTF_MSS ideal-int
-pkg syscall (linux-arm-cgo), const RTF_MTU ideal-int
-pkg syscall (linux-arm-cgo), const RTF_MULTICAST ideal-int
-pkg syscall (linux-arm-cgo), const RTF_NAT ideal-int
-pkg syscall (linux-arm-cgo), const RTF_NOFORWARD ideal-int
-pkg syscall (linux-arm-cgo), const RTF_NONEXTHOP ideal-int
-pkg syscall (linux-arm-cgo), const RTF_NOPMTUDISC ideal-int
-pkg syscall (linux-arm-cgo), const RTF_POLICY ideal-int
-pkg syscall (linux-arm-cgo), const RTF_REINSTATE ideal-int
-pkg syscall (linux-arm-cgo), const RTF_REJECT ideal-int
-pkg syscall (linux-arm-cgo), const RTF_STATIC ideal-int
-pkg syscall (linux-arm-cgo), const RTF_THROW ideal-int
-pkg syscall (linux-arm-cgo), const RTF_UP ideal-int
-pkg syscall (linux-arm-cgo), const RTF_WINDOW ideal-int
-pkg syscall (linux-arm-cgo), const RTF_XRESOLVE ideal-int
-pkg syscall (linux-arm-cgo), const RTM_BASE ideal-int
-pkg syscall (linux-arm-cgo), const RTM_DELACTION ideal-int
-pkg syscall (linux-arm-cgo), const RTM_DELADDR ideal-int
-pkg syscall (linux-arm-cgo), const RTM_DELADDRLABEL ideal-int
-pkg syscall (linux-arm-cgo), const RTM_DELLINK ideal-int
-pkg syscall (linux-arm-cgo), const RTM_DELNEIGH ideal-int
-pkg syscall (linux-arm-cgo), const RTM_DELQDISC ideal-int
-pkg syscall (linux-arm-cgo), const RTM_DELROUTE ideal-int
-pkg syscall (linux-arm-cgo), const RTM_DELRULE ideal-int
-pkg syscall (linux-arm-cgo), const RTM_DELTCLASS ideal-int
-pkg syscall (linux-arm-cgo), const RTM_DELTFILTER ideal-int
-pkg syscall (linux-arm-cgo), const RTM_F_CLONED ideal-int
-pkg syscall (linux-arm-cgo), const RTM_F_EQUALIZE ideal-int
-pkg syscall (linux-arm-cgo), const RTM_F_NOTIFY ideal-int
-pkg syscall (linux-arm-cgo), const RTM_F_PREFIX ideal-int
-pkg syscall (linux-arm-cgo), const RTM_GETACTION ideal-int
-pkg syscall (linux-arm-cgo), const RTM_GETADDR ideal-int
-pkg syscall (linux-arm-cgo), const RTM_GETADDRLABEL ideal-int
-pkg syscall (linux-arm-cgo), const RTM_GETANYCAST ideal-int
-pkg syscall (linux-arm-cgo), const RTM_GETDCB ideal-int
-pkg syscall (linux-arm-cgo), const RTM_GETLINK ideal-int
-pkg syscall (linux-arm-cgo), const RTM_GETMULTICAST ideal-int
-pkg syscall (linux-arm-cgo), const RTM_GETNEIGH ideal-int
-pkg syscall (linux-arm-cgo), const RTM_GETNEIGHTBL ideal-int
-pkg syscall (linux-arm-cgo), const RTM_GETQDISC ideal-int
-pkg syscall (linux-arm-cgo), const RTM_GETROUTE ideal-int
-pkg syscall (linux-arm-cgo), const RTM_GETRULE ideal-int
-pkg syscall (linux-arm-cgo), const RTM_GETTCLASS ideal-int
-pkg syscall (linux-arm-cgo), const RTM_GETTFILTER ideal-int
-pkg syscall (linux-arm-cgo), const RTM_MAX ideal-int
-pkg syscall (linux-arm-cgo), const RTM_NEWACTION ideal-int
-pkg syscall (linux-arm-cgo), const RTM_NEWADDR ideal-int
-pkg syscall (linux-arm-cgo), const RTM_NEWADDRLABEL ideal-int
-pkg syscall (linux-arm-cgo), const RTM_NEWLINK ideal-int
-pkg syscall (linux-arm-cgo), const RTM_NEWNDUSEROPT ideal-int
-pkg syscall (linux-arm-cgo), const RTM_NEWNEIGH ideal-int
-pkg syscall (linux-arm-cgo), const RTM_NEWNEIGHTBL ideal-int
-pkg syscall (linux-arm-cgo), const RTM_NEWPREFIX ideal-int
-pkg syscall (linux-arm-cgo), const RTM_NEWQDISC ideal-int
-pkg syscall (linux-arm-cgo), const RTM_NEWROUTE ideal-int
-pkg syscall (linux-arm-cgo), const RTM_NEWRULE ideal-int
-pkg syscall (linux-arm-cgo), const RTM_NEWTCLASS ideal-int
-pkg syscall (linux-arm-cgo), const RTM_NEWTFILTER ideal-int
-pkg syscall (linux-arm-cgo), const RTM_NR_FAMILIES ideal-int
-pkg syscall (linux-arm-cgo), const RTM_NR_MSGTYPES ideal-int
-pkg syscall (linux-arm-cgo), const RTM_SETDCB ideal-int
-pkg syscall (linux-arm-cgo), const RTM_SETLINK ideal-int
-pkg syscall (linux-arm-cgo), const RTM_SETNEIGHTBL ideal-int
-pkg syscall (linux-arm-cgo), const RTNH_ALIGNTO ideal-int
-pkg syscall (linux-arm-cgo), const RTNH_F_DEAD ideal-int
-pkg syscall (linux-arm-cgo), const RTNH_F_ONLINK ideal-int
-pkg syscall (linux-arm-cgo), const RTNH_F_PERVASIVE ideal-int
-pkg syscall (linux-arm-cgo), const RTNLGRP_IPV4_IFADDR ideal-int
-pkg syscall (linux-arm-cgo), const RTNLGRP_IPV4_MROUTE ideal-int
-pkg syscall (linux-arm-cgo), const RTNLGRP_IPV4_ROUTE ideal-int
-pkg syscall (linux-arm-cgo), const RTNLGRP_IPV4_RULE ideal-int
-pkg syscall (linux-arm-cgo), const RTNLGRP_IPV6_IFADDR ideal-int
-pkg syscall (linux-arm-cgo), const RTNLGRP_IPV6_IFINFO ideal-int
-pkg syscall (linux-arm-cgo), const RTNLGRP_IPV6_MROUTE ideal-int
-pkg syscall (linux-arm-cgo), const RTNLGRP_IPV6_PREFIX ideal-int
-pkg syscall (linux-arm-cgo), const RTNLGRP_IPV6_ROUTE ideal-int
-pkg syscall (linux-arm-cgo), const RTNLGRP_IPV6_RULE ideal-int
-pkg syscall (linux-arm-cgo), const RTNLGRP_LINK ideal-int
-pkg syscall (linux-arm-cgo), const RTNLGRP_ND_USEROPT ideal-int
-pkg syscall (linux-arm-cgo), const RTNLGRP_NEIGH ideal-int
-pkg syscall (linux-arm-cgo), const RTNLGRP_NONE ideal-int
-pkg syscall (linux-arm-cgo), const RTNLGRP_NOTIFY ideal-int
-pkg syscall (linux-arm-cgo), const RTNLGRP_TC ideal-int
-pkg syscall (linux-arm-cgo), const RTN_ANYCAST ideal-int
-pkg syscall (linux-arm-cgo), const RTN_BLACKHOLE ideal-int
-pkg syscall (linux-arm-cgo), const RTN_BROADCAST ideal-int
-pkg syscall (linux-arm-cgo), const RTN_LOCAL ideal-int
-pkg syscall (linux-arm-cgo), const RTN_MAX ideal-int
-pkg syscall (linux-arm-cgo), const RTN_MULTICAST ideal-int
-pkg syscall (linux-arm-cgo), const RTN_NAT ideal-int
-pkg syscall (linux-arm-cgo), const RTN_PROHIBIT ideal-int
-pkg syscall (linux-arm-cgo), const RTN_THROW ideal-int
-pkg syscall (linux-arm-cgo), const RTN_UNICAST ideal-int
-pkg syscall (linux-arm-cgo), const RTN_UNREACHABLE ideal-int
-pkg syscall (linux-arm-cgo), const RTN_UNSPEC ideal-int
-pkg syscall (linux-arm-cgo), const RTN_XRESOLVE ideal-int
-pkg syscall (linux-arm-cgo), const RTPROT_BIRD ideal-int
-pkg syscall (linux-arm-cgo), const RTPROT_BOOT ideal-int
-pkg syscall (linux-arm-cgo), const RTPROT_DHCP ideal-int
-pkg syscall (linux-arm-cgo), const RTPROT_DNROUTED ideal-int
-pkg syscall (linux-arm-cgo), const RTPROT_GATED ideal-int
-pkg syscall (linux-arm-cgo), const RTPROT_KERNEL ideal-int
-pkg syscall (linux-arm-cgo), const RTPROT_MRT ideal-int
-pkg syscall (linux-arm-cgo), const RTPROT_NTK ideal-int
-pkg syscall (linux-arm-cgo), const RTPROT_RA ideal-int
-pkg syscall (linux-arm-cgo), const RTPROT_REDIRECT ideal-int
-pkg syscall (linux-arm-cgo), const RTPROT_STATIC ideal-int
-pkg syscall (linux-arm-cgo), const RTPROT_UNSPEC ideal-int
-pkg syscall (linux-arm-cgo), const RTPROT_XORP ideal-int
-pkg syscall (linux-arm-cgo), const RTPROT_ZEBRA ideal-int
-pkg syscall (linux-arm-cgo), const RT_CLASS_DEFAULT ideal-int
-pkg syscall (linux-arm-cgo), const RT_CLASS_LOCAL ideal-int
-pkg syscall (linux-arm-cgo), const RT_CLASS_MAIN ideal-int
-pkg syscall (linux-arm-cgo), const RT_CLASS_MAX ideal-int
-pkg syscall (linux-arm-cgo), const RT_CLASS_UNSPEC ideal-int
-pkg syscall (linux-arm-cgo), const RT_SCOPE_HOST ideal-int
-pkg syscall (linux-arm-cgo), const RT_SCOPE_LINK ideal-int
-pkg syscall (linux-arm-cgo), const RT_SCOPE_NOWHERE ideal-int
-pkg syscall (linux-arm-cgo), const RT_SCOPE_SITE ideal-int
-pkg syscall (linux-arm-cgo), const RT_SCOPE_UNIVERSE ideal-int
-pkg syscall (linux-arm-cgo), const RT_TABLE_COMPAT ideal-int
-pkg syscall (linux-arm-cgo), const RT_TABLE_DEFAULT ideal-int
-pkg syscall (linux-arm-cgo), const RT_TABLE_LOCAL ideal-int
-pkg syscall (linux-arm-cgo), const RT_TABLE_MAIN ideal-int
-pkg syscall (linux-arm-cgo), const RT_TABLE_MAX ideal-int
-pkg syscall (linux-arm-cgo), const RT_TABLE_UNSPEC ideal-int
-pkg syscall (linux-arm-cgo), const RUSAGE_CHILDREN ideal-int
-pkg syscall (linux-arm-cgo), const RUSAGE_SELF ideal-int
-pkg syscall (linux-arm-cgo), const RUSAGE_THREAD ideal-int
-pkg syscall (linux-arm-cgo), const SCM_CREDENTIALS ideal-int
-pkg syscall (linux-arm-cgo), const SCM_RIGHTS ideal-int
-pkg syscall (linux-arm-cgo), const SCM_TIMESTAMP ideal-int
-pkg syscall (linux-arm-cgo), const SCM_TIMESTAMPING ideal-int
-pkg syscall (linux-arm-cgo), const SCM_TIMESTAMPNS ideal-int
-pkg syscall (linux-arm-cgo), const SIGCHLD Signal
-pkg syscall (linux-arm-cgo), const SIGCLD Signal
-pkg syscall (linux-arm-cgo), const SIGCONT Signal
-pkg syscall (linux-arm-cgo), const SIGIO Signal
-pkg syscall (linux-arm-cgo), const SIGIOT Signal
-pkg syscall (linux-arm-cgo), const SIGPOLL Signal
-pkg syscall (linux-arm-cgo), const SIGPROF Signal
-pkg syscall (linux-arm-cgo), const SIGPWR Signal
-pkg syscall (linux-arm-cgo), const SIGSTKFLT Signal
-pkg syscall (linux-arm-cgo), const SIGSTOP Signal
-pkg syscall (linux-arm-cgo), const SIGSYS Signal
-pkg syscall (linux-arm-cgo), const SIGTSTP Signal
-pkg syscall (linux-arm-cgo), const SIGTTIN Signal
-pkg syscall (linux-arm-cgo), const SIGTTOU Signal
-pkg syscall (linux-arm-cgo), const SIGUNUSED Signal
-pkg syscall (linux-arm-cgo), const SIGURG Signal
-pkg syscall (linux-arm-cgo), const SIGUSR1 Signal
-pkg syscall (linux-arm-cgo), const SIGUSR2 Signal
-pkg syscall (linux-arm-cgo), const SIGVTALRM Signal
-pkg syscall (linux-arm-cgo), const SIGWINCH Signal
-pkg syscall (linux-arm-cgo), const SIGXCPU Signal
-pkg syscall (linux-arm-cgo), const SIGXFSZ Signal
-pkg syscall (linux-arm-cgo), const SIOCADDDLCI ideal-int
-pkg syscall (linux-arm-cgo), const SIOCADDMULTI ideal-int
-pkg syscall (linux-arm-cgo), const SIOCADDRT ideal-int
-pkg syscall (linux-arm-cgo), const SIOCATMARK ideal-int
-pkg syscall (linux-arm-cgo), const SIOCDARP ideal-int
-pkg syscall (linux-arm-cgo), const SIOCDELDLCI ideal-int
-pkg syscall (linux-arm-cgo), const SIOCDELMULTI ideal-int
-pkg syscall (linux-arm-cgo), const SIOCDELRT ideal-int
-pkg syscall (linux-arm-cgo), const SIOCDEVPRIVATE ideal-int
-pkg syscall (linux-arm-cgo), const SIOCDIFADDR ideal-int
-pkg syscall (linux-arm-cgo), const SIOCDRARP ideal-int
-pkg syscall (linux-arm-cgo), const SIOCGARP ideal-int
-pkg syscall (linux-arm-cgo), const SIOCGIFADDR ideal-int
-pkg syscall (linux-arm-cgo), const SIOCGIFBR ideal-int
-pkg syscall (linux-arm-cgo), const SIOCGIFBRDADDR ideal-int
-pkg syscall (linux-arm-cgo), const SIOCGIFCONF ideal-int
-pkg syscall (linux-arm-cgo), const SIOCGIFCOUNT ideal-int
-pkg syscall (linux-arm-cgo), const SIOCGIFDSTADDR ideal-int
-pkg syscall (linux-arm-cgo), const SIOCGIFENCAP ideal-int
-pkg syscall (linux-arm-cgo), const SIOCGIFFLAGS ideal-int
-pkg syscall (linux-arm-cgo), const SIOCGIFHWADDR ideal-int
-pkg syscall (linux-arm-cgo), const SIOCGIFINDEX ideal-int
-pkg syscall (linux-arm-cgo), const SIOCGIFMAP ideal-int
-pkg syscall (linux-arm-cgo), const SIOCGIFMEM ideal-int
-pkg syscall (linux-arm-cgo), const SIOCGIFMETRIC ideal-int
-pkg syscall (linux-arm-cgo), const SIOCGIFMTU ideal-int
-pkg syscall (linux-arm-cgo), const SIOCGIFNAME ideal-int
-pkg syscall (linux-arm-cgo), const SIOCGIFNETMASK ideal-int
-pkg syscall (linux-arm-cgo), const SIOCGIFPFLAGS ideal-int
-pkg syscall (linux-arm-cgo), const SIOCGIFSLAVE ideal-int
-pkg syscall (linux-arm-cgo), const SIOCGIFTXQLEN ideal-int
-pkg syscall (linux-arm-cgo), const SIOCGPGRP ideal-int
-pkg syscall (linux-arm-cgo), const SIOCGRARP ideal-int
-pkg syscall (linux-arm-cgo), const SIOCGSTAMP ideal-int
-pkg syscall (linux-arm-cgo), const SIOCGSTAMPNS ideal-int
-pkg syscall (linux-arm-cgo), const SIOCPROTOPRIVATE ideal-int
-pkg syscall (linux-arm-cgo), const SIOCRTMSG ideal-int
-pkg syscall (linux-arm-cgo), const SIOCSARP ideal-int
-pkg syscall (linux-arm-cgo), const SIOCSIFADDR ideal-int
-pkg syscall (linux-arm-cgo), const SIOCSIFBR ideal-int
-pkg syscall (linux-arm-cgo), const SIOCSIFBRDADDR ideal-int
-pkg syscall (linux-arm-cgo), const SIOCSIFDSTADDR ideal-int
-pkg syscall (linux-arm-cgo), const SIOCSIFENCAP ideal-int
-pkg syscall (linux-arm-cgo), const SIOCSIFFLAGS ideal-int
-pkg syscall (linux-arm-cgo), const SIOCSIFHWADDR ideal-int
-pkg syscall (linux-arm-cgo), const SIOCSIFHWBROADCAST ideal-int
-pkg syscall (linux-arm-cgo), const SIOCSIFLINK ideal-int
-pkg syscall (linux-arm-cgo), const SIOCSIFMAP ideal-int
-pkg syscall (linux-arm-cgo), const SIOCSIFMEM ideal-int
-pkg syscall (linux-arm-cgo), const SIOCSIFMETRIC ideal-int
-pkg syscall (linux-arm-cgo), const SIOCSIFMTU ideal-int
-pkg syscall (linux-arm-cgo), const SIOCSIFNAME ideal-int
-pkg syscall (linux-arm-cgo), const SIOCSIFNETMASK ideal-int
-pkg syscall (linux-arm-cgo), const SIOCSIFPFLAGS ideal-int
-pkg syscall (linux-arm-cgo), const SIOCSIFSLAVE ideal-int
-pkg syscall (linux-arm-cgo), const SIOCSIFTXQLEN ideal-int
-pkg syscall (linux-arm-cgo), const SIOCSPGRP ideal-int
-pkg syscall (linux-arm-cgo), const SIOCSRARP ideal-int
-pkg syscall (linux-arm-cgo), const SOCK_CLOEXEC ideal-int
-pkg syscall (linux-arm-cgo), const SOCK_DCCP ideal-int
-pkg syscall (linux-arm-cgo), const SOCK_NONBLOCK ideal-int
-pkg syscall (linux-arm-cgo), const SOCK_PACKET ideal-int
-pkg syscall (linux-arm-cgo), const SOCK_RDM ideal-int
-pkg syscall (linux-arm-cgo), const SOL_AAL ideal-int
-pkg syscall (linux-arm-cgo), const SOL_ATM ideal-int
-pkg syscall (linux-arm-cgo), const SOL_DECNET ideal-int
-pkg syscall (linux-arm-cgo), const SOL_ICMPV6 ideal-int
-pkg syscall (linux-arm-cgo), const SOL_IP ideal-int
-pkg syscall (linux-arm-cgo), const SOL_IPV6 ideal-int
-pkg syscall (linux-arm-cgo), const SOL_IRDA ideal-int
-pkg syscall (linux-arm-cgo), const SOL_PACKET ideal-int
-pkg syscall (linux-arm-cgo), const SOL_RAW ideal-int
-pkg syscall (linux-arm-cgo), const SOL_TCP ideal-int
-pkg syscall (linux-arm-cgo), const SOL_X25 ideal-int
-pkg syscall (linux-arm-cgo), const SO_ACCEPTCONN ideal-int
-pkg syscall (linux-arm-cgo), const SO_ATTACH_FILTER ideal-int
-pkg syscall (linux-arm-cgo), const SO_BINDTODEVICE ideal-int
-pkg syscall (linux-arm-cgo), const SO_BSDCOMPAT ideal-int
-pkg syscall (linux-arm-cgo), const SO_DEBUG ideal-int
-pkg syscall (linux-arm-cgo), const SO_DETACH_FILTER ideal-int
-pkg syscall (linux-arm-cgo), const SO_DOMAIN ideal-int
-pkg syscall (linux-arm-cgo), const SO_ERROR ideal-int
-pkg syscall (linux-arm-cgo), const SO_MARK ideal-int
-pkg syscall (linux-arm-cgo), const SO_NO_CHECK ideal-int
-pkg syscall (linux-arm-cgo), const SO_OOBINLINE ideal-int
-pkg syscall (linux-arm-cgo), const SO_PASSCRED ideal-int
-pkg syscall (linux-arm-cgo), const SO_PASSSEC ideal-int
-pkg syscall (linux-arm-cgo), const SO_PEERCRED ideal-int
-pkg syscall (linux-arm-cgo), const SO_PEERNAME ideal-int
-pkg syscall (linux-arm-cgo), const SO_PEERSEC ideal-int
-pkg syscall (linux-arm-cgo), const SO_PRIORITY ideal-int
-pkg syscall (linux-arm-cgo), const SO_PROTOCOL ideal-int
-pkg syscall (linux-arm-cgo), const SO_RCVBUFFORCE ideal-int
-pkg syscall (linux-arm-cgo), const SO_RCVLOWAT ideal-int
-pkg syscall (linux-arm-cgo), const SO_RCVTIMEO ideal-int
-pkg syscall (linux-arm-cgo), const SO_RXQ_OVFL ideal-int
-pkg syscall (linux-arm-cgo), const SO_SECURITY_AUTHENTICATION ideal-int
-pkg syscall (linux-arm-cgo), const SO_SECURITY_ENCRYPTION_NETWORK ideal-int
-pkg syscall (linux-arm-cgo), const SO_SECURITY_ENCRYPTION_TRANSPORT ideal-int
-pkg syscall (linux-arm-cgo), const SO_SNDBUFFORCE ideal-int
-pkg syscall (linux-arm-cgo), const SO_SNDLOWAT ideal-int
-pkg syscall (linux-arm-cgo), const SO_SNDTIMEO ideal-int
-pkg syscall (linux-arm-cgo), const SO_TIMESTAMP ideal-int
-pkg syscall (linux-arm-cgo), const SO_TIMESTAMPING ideal-int
-pkg syscall (linux-arm-cgo), const SO_TIMESTAMPNS ideal-int
-pkg syscall (linux-arm-cgo), const SO_TYPE ideal-int
-pkg syscall (linux-arm-cgo), const SYS_ACCEPT ideal-int
-pkg syscall (linux-arm-cgo), const SYS_ACCEPT4 ideal-int
-pkg syscall (linux-arm-cgo), const SYS_ACCESS ideal-int
-pkg syscall (linux-arm-cgo), const SYS_ACCT ideal-int
-pkg syscall (linux-arm-cgo), const SYS_ADD_KEY ideal-int
-pkg syscall (linux-arm-cgo), const SYS_ADJTIMEX ideal-int
-pkg syscall (linux-arm-cgo), const SYS_ALARM ideal-int
-pkg syscall (linux-arm-cgo), const SYS_ARM_FADVISE64_64 ideal-int
-pkg syscall (linux-arm-cgo), const SYS_ARM_SYNC_FILE_RANGE ideal-int
-pkg syscall (linux-arm-cgo), const SYS_BDFLUSH ideal-int
-pkg syscall (linux-arm-cgo), const SYS_BIND ideal-int
-pkg syscall (linux-arm-cgo), const SYS_BRK ideal-int
-pkg syscall (linux-arm-cgo), const SYS_CAPGET ideal-int
-pkg syscall (linux-arm-cgo), const SYS_CAPSET ideal-int
-pkg syscall (linux-arm-cgo), const SYS_CHDIR ideal-int
-pkg syscall (linux-arm-cgo), const SYS_CHMOD ideal-int
-pkg syscall (linux-arm-cgo), const SYS_CHOWN ideal-int
-pkg syscall (linux-arm-cgo), const SYS_CHOWN32 ideal-int
-pkg syscall (linux-arm-cgo), const SYS_CHROOT ideal-int
-pkg syscall (linux-arm-cgo), const SYS_CLOCK_ADJTIME ideal-int
-pkg syscall (linux-arm-cgo), const SYS_CLOCK_GETRES ideal-int
-pkg syscall (linux-arm-cgo), const SYS_CLOCK_GETTIME ideal-int
-pkg syscall (linux-arm-cgo), const SYS_CLOCK_NANOSLEEP ideal-int
-pkg syscall (linux-arm-cgo), const SYS_CLOCK_SETTIME ideal-int
-pkg syscall (linux-arm-cgo), const SYS_CLONE ideal-int
-pkg syscall (linux-arm-cgo), const SYS_CLOSE ideal-int
-pkg syscall (linux-arm-cgo), const SYS_CONNECT ideal-int
-pkg syscall (linux-arm-cgo), const SYS_CREAT ideal-int
-pkg syscall (linux-arm-cgo), const SYS_DELETE_MODULE ideal-int
-pkg syscall (linux-arm-cgo), const SYS_DUP ideal-int
-pkg syscall (linux-arm-cgo), const SYS_DUP2 ideal-int
-pkg syscall (linux-arm-cgo), const SYS_DUP3 ideal-int
-pkg syscall (linux-arm-cgo), const SYS_EPOLL_CREATE ideal-int
-pkg syscall (linux-arm-cgo), const SYS_EPOLL_CREATE1 ideal-int
-pkg syscall (linux-arm-cgo), const SYS_EPOLL_CTL ideal-int
-pkg syscall (linux-arm-cgo), const SYS_EPOLL_PWAIT ideal-int
-pkg syscall (linux-arm-cgo), const SYS_EPOLL_WAIT ideal-int
-pkg syscall (linux-arm-cgo), const SYS_EVENTFD ideal-int
-pkg syscall (linux-arm-cgo), const SYS_EVENTFD2 ideal-int
-pkg syscall (linux-arm-cgo), const SYS_EXECVE ideal-int
-pkg syscall (linux-arm-cgo), const SYS_EXIT ideal-int
-pkg syscall (linux-arm-cgo), const SYS_EXIT_GROUP ideal-int
-pkg syscall (linux-arm-cgo), const SYS_FACCESSAT ideal-int
-pkg syscall (linux-arm-cgo), const SYS_FALLOCATE ideal-int
-pkg syscall (linux-arm-cgo), const SYS_FANOTIFY_INIT ideal-int
-pkg syscall (linux-arm-cgo), const SYS_FANOTIFY_MARK ideal-int
-pkg syscall (linux-arm-cgo), const SYS_FCHDIR ideal-int
-pkg syscall (linux-arm-cgo), const SYS_FCHMOD ideal-int
-pkg syscall (linux-arm-cgo), const SYS_FCHMODAT ideal-int
-pkg syscall (linux-arm-cgo), const SYS_FCHOWN ideal-int
-pkg syscall (linux-arm-cgo), const SYS_FCHOWN32 ideal-int
-pkg syscall (linux-arm-cgo), const SYS_FCHOWNAT ideal-int
-pkg syscall (linux-arm-cgo), const SYS_FCNTL ideal-int
-pkg syscall (linux-arm-cgo), const SYS_FCNTL64 ideal-int
-pkg syscall (linux-arm-cgo), const SYS_FDATASYNC ideal-int
-pkg syscall (linux-arm-cgo), const SYS_FGETXATTR ideal-int
-pkg syscall (linux-arm-cgo), const SYS_FLISTXATTR ideal-int
-pkg syscall (linux-arm-cgo), const SYS_FLOCK ideal-int
-pkg syscall (linux-arm-cgo), const SYS_FORK ideal-int
-pkg syscall (linux-arm-cgo), const SYS_FREMOVEXATTR ideal-int
-pkg syscall (linux-arm-cgo), const SYS_FSETXATTR ideal-int
-pkg syscall (linux-arm-cgo), const SYS_FSTAT ideal-int
-pkg syscall (linux-arm-cgo), const SYS_FSTAT64 ideal-int
-pkg syscall (linux-arm-cgo), const SYS_FSTATAT64 ideal-int
-pkg syscall (linux-arm-cgo), const SYS_FSTATFS ideal-int
-pkg syscall (linux-arm-cgo), const SYS_FSTATFS64 ideal-int
-pkg syscall (linux-arm-cgo), const SYS_FSYNC ideal-int
-pkg syscall (linux-arm-cgo), const SYS_FTRUNCATE ideal-int
-pkg syscall (linux-arm-cgo), const SYS_FTRUNCATE64 ideal-int
-pkg syscall (linux-arm-cgo), const SYS_FUTEX ideal-int
-pkg syscall (linux-arm-cgo), const SYS_FUTIMESAT ideal-int
-pkg syscall (linux-arm-cgo), const SYS_GETCPU ideal-int
-pkg syscall (linux-arm-cgo), const SYS_GETCWD ideal-int
-pkg syscall (linux-arm-cgo), const SYS_GETDENTS ideal-int
-pkg syscall (linux-arm-cgo), const SYS_GETDENTS64 ideal-int
-pkg syscall (linux-arm-cgo), const SYS_GETEGID ideal-int
-pkg syscall (linux-arm-cgo), const SYS_GETEGID32 ideal-int
-pkg syscall (linux-arm-cgo), const SYS_GETEUID ideal-int
-pkg syscall (linux-arm-cgo), const SYS_GETEUID32 ideal-int
-pkg syscall (linux-arm-cgo), const SYS_GETGID ideal-int
-pkg syscall (linux-arm-cgo), const SYS_GETGID32 ideal-int
-pkg syscall (linux-arm-cgo), const SYS_GETGROUPS ideal-int
-pkg syscall (linux-arm-cgo), const SYS_GETGROUPS32 ideal-int
-pkg syscall (linux-arm-cgo), const SYS_GETITIMER ideal-int
-pkg syscall (linux-arm-cgo), const SYS_GETPEERNAME ideal-int
-pkg syscall (linux-arm-cgo), const SYS_GETPGID ideal-int
-pkg syscall (linux-arm-cgo), const SYS_GETPGRP ideal-int
-pkg syscall (linux-arm-cgo), const SYS_GETPID ideal-int
-pkg syscall (linux-arm-cgo), const SYS_GETPPID ideal-int
-pkg syscall (linux-arm-cgo), const SYS_GETPRIORITY ideal-int
-pkg syscall (linux-arm-cgo), const SYS_GETRESGID ideal-int
-pkg syscall (linux-arm-cgo), const SYS_GETRESGID32 ideal-int
-pkg syscall (linux-arm-cgo), const SYS_GETRESUID ideal-int
-pkg syscall (linux-arm-cgo), const SYS_GETRESUID32 ideal-int
-pkg syscall (linux-arm-cgo), const SYS_GETRLIMIT ideal-int
-pkg syscall (linux-arm-cgo), const SYS_GETRUSAGE ideal-int
-pkg syscall (linux-arm-cgo), const SYS_GETSID ideal-int
-pkg syscall (linux-arm-cgo), const SYS_GETSOCKNAME ideal-int
-pkg syscall (linux-arm-cgo), const SYS_GETSOCKOPT ideal-int
-pkg syscall (linux-arm-cgo), const SYS_GETTID ideal-int
-pkg syscall (linux-arm-cgo), const SYS_GETTIMEOFDAY ideal-int
-pkg syscall (linux-arm-cgo), const SYS_GETUID ideal-int
-pkg syscall (linux-arm-cgo), const SYS_GETUID32 ideal-int
-pkg syscall (linux-arm-cgo), const SYS_GETXATTR ideal-int
-pkg syscall (linux-arm-cgo), const SYS_GET_MEMPOLICY ideal-int
-pkg syscall (linux-arm-cgo), const SYS_GET_ROBUST_LIST ideal-int
-pkg syscall (linux-arm-cgo), const SYS_INIT_MODULE ideal-int
-pkg syscall (linux-arm-cgo), const SYS_INOTIFY_ADD_WATCH ideal-int
-pkg syscall (linux-arm-cgo), const SYS_INOTIFY_INIT ideal-int
-pkg syscall (linux-arm-cgo), const SYS_INOTIFY_INIT1 ideal-int
-pkg syscall (linux-arm-cgo), const SYS_INOTIFY_RM_WATCH ideal-int
-pkg syscall (linux-arm-cgo), const SYS_IOCTL ideal-int
-pkg syscall (linux-arm-cgo), const SYS_IOPRIO_GET ideal-int
-pkg syscall (linux-arm-cgo), const SYS_IOPRIO_SET ideal-int
-pkg syscall (linux-arm-cgo), const SYS_IO_CANCEL ideal-int
-pkg syscall (linux-arm-cgo), const SYS_IO_DESTROY ideal-int
-pkg syscall (linux-arm-cgo), const SYS_IO_GETEVENTS ideal-int
-pkg syscall (linux-arm-cgo), const SYS_IO_SETUP ideal-int
-pkg syscall (linux-arm-cgo), const SYS_IO_SUBMIT ideal-int
-pkg syscall (linux-arm-cgo), const SYS_IPC ideal-int
-pkg syscall (linux-arm-cgo), const SYS_KEXEC_LOAD ideal-int
-pkg syscall (linux-arm-cgo), const SYS_KEYCTL ideal-int
-pkg syscall (linux-arm-cgo), const SYS_KILL ideal-int
-pkg syscall (linux-arm-cgo), const SYS_LCHOWN ideal-int
-pkg syscall (linux-arm-cgo), const SYS_LCHOWN32 ideal-int
-pkg syscall (linux-arm-cgo), const SYS_LGETXATTR ideal-int
-pkg syscall (linux-arm-cgo), const SYS_LINK ideal-int
-pkg syscall (linux-arm-cgo), const SYS_LINKAT ideal-int
-pkg syscall (linux-arm-cgo), const SYS_LISTEN ideal-int
-pkg syscall (linux-arm-cgo), const SYS_LISTXATTR ideal-int
-pkg syscall (linux-arm-cgo), const SYS_LLISTXATTR ideal-int
-pkg syscall (linux-arm-cgo), const SYS_LOOKUP_DCOOKIE ideal-int
-pkg syscall (linux-arm-cgo), const SYS_LREMOVEXATTR ideal-int
-pkg syscall (linux-arm-cgo), const SYS_LSEEK ideal-int
-pkg syscall (linux-arm-cgo), const SYS_LSETXATTR ideal-int
-pkg syscall (linux-arm-cgo), const SYS_LSTAT ideal-int
-pkg syscall (linux-arm-cgo), const SYS_LSTAT64 ideal-int
-pkg syscall (linux-arm-cgo), const SYS_MADVISE ideal-int
-pkg syscall (linux-arm-cgo), const SYS_MBIND ideal-int
-pkg syscall (linux-arm-cgo), const SYS_MINCORE ideal-int
-pkg syscall (linux-arm-cgo), const SYS_MKDIR ideal-int
-pkg syscall (linux-arm-cgo), const SYS_MKDIRAT ideal-int
-pkg syscall (linux-arm-cgo), const SYS_MKNOD ideal-int
-pkg syscall (linux-arm-cgo), const SYS_MKNODAT ideal-int
-pkg syscall (linux-arm-cgo), const SYS_MLOCK ideal-int
-pkg syscall (linux-arm-cgo), const SYS_MLOCKALL ideal-int
-pkg syscall (linux-arm-cgo), const SYS_MMAP ideal-int
-pkg syscall (linux-arm-cgo), const SYS_MMAP2 ideal-int
-pkg syscall (linux-arm-cgo), const SYS_MOUNT ideal-int
-pkg syscall (linux-arm-cgo), const SYS_MOVE_PAGES ideal-int
-pkg syscall (linux-arm-cgo), const SYS_MPROTECT ideal-int
-pkg syscall (linux-arm-cgo), const SYS_MQ_GETSETATTR ideal-int
-pkg syscall (linux-arm-cgo), const SYS_MQ_NOTIFY ideal-int
-pkg syscall (linux-arm-cgo), const SYS_MQ_OPEN ideal-int
-pkg syscall (linux-arm-cgo), const SYS_MQ_TIMEDRECEIVE ideal-int
-pkg syscall (linux-arm-cgo), const SYS_MQ_TIMEDSEND ideal-int
-pkg syscall (linux-arm-cgo), const SYS_MQ_UNLINK ideal-int
-pkg syscall (linux-arm-cgo), const SYS_MREMAP ideal-int
-pkg syscall (linux-arm-cgo), const SYS_MSGCTL ideal-int
-pkg syscall (linux-arm-cgo), const SYS_MSGGET ideal-int
-pkg syscall (linux-arm-cgo), const SYS_MSGRCV ideal-int
-pkg syscall (linux-arm-cgo), const SYS_MSGSND ideal-int
-pkg syscall (linux-arm-cgo), const SYS_MSYNC ideal-int
-pkg syscall (linux-arm-cgo), const SYS_MUNLOCK ideal-int
-pkg syscall (linux-arm-cgo), const SYS_MUNLOCKALL ideal-int
-pkg syscall (linux-arm-cgo), const SYS_MUNMAP ideal-int
-pkg syscall (linux-arm-cgo), const SYS_NAME_TO_HANDLE_AT ideal-int
-pkg syscall (linux-arm-cgo), const SYS_NANOSLEEP ideal-int
-pkg syscall (linux-arm-cgo), const SYS_NFSSERVCTL ideal-int
-pkg syscall (linux-arm-cgo), const SYS_NICE ideal-int
-pkg syscall (linux-arm-cgo), const SYS_OABI_SYSCALL_BASE ideal-int
-pkg syscall (linux-arm-cgo), const SYS_OPEN ideal-int
-pkg syscall (linux-arm-cgo), const SYS_OPENAT ideal-int
-pkg syscall (linux-arm-cgo), const SYS_OPEN_BY_HANDLE_AT ideal-int
-pkg syscall (linux-arm-cgo), const SYS_PAUSE ideal-int
-pkg syscall (linux-arm-cgo), const SYS_PCICONFIG_IOBASE ideal-int
-pkg syscall (linux-arm-cgo), const SYS_PCICONFIG_READ ideal-int
-pkg syscall (linux-arm-cgo), const SYS_PCICONFIG_WRITE ideal-int
-pkg syscall (linux-arm-cgo), const SYS_PERF_EVENT_OPEN ideal-int
-pkg syscall (linux-arm-cgo), const SYS_PERSONALITY ideal-int
-pkg syscall (linux-arm-cgo), const SYS_PIPE ideal-int
-pkg syscall (linux-arm-cgo), const SYS_PIPE2 ideal-int
-pkg syscall (linux-arm-cgo), const SYS_PIVOT_ROOT ideal-int
-pkg syscall (linux-arm-cgo), const SYS_POLL ideal-int
-pkg syscall (linux-arm-cgo), const SYS_PPOLL ideal-int
-pkg syscall (linux-arm-cgo), const SYS_PRCTL ideal-int
-pkg syscall (linux-arm-cgo), const SYS_PREAD64 ideal-int
-pkg syscall (linux-arm-cgo), const SYS_PREADV ideal-int
-pkg syscall (linux-arm-cgo), const SYS_PRLIMIT64 ideal-int
-pkg syscall (linux-arm-cgo), const SYS_PROCESS_VM_READV ideal-int
-pkg syscall (linux-arm-cgo), const SYS_PROCESS_VM_WRITEV ideal-int
-pkg syscall (linux-arm-cgo), const SYS_PSELECT6 ideal-int
-pkg syscall (linux-arm-cgo), const SYS_PTRACE ideal-int
-pkg syscall (linux-arm-cgo), const SYS_PWRITE64 ideal-int
-pkg syscall (linux-arm-cgo), const SYS_PWRITEV ideal-int
-pkg syscall (linux-arm-cgo), const SYS_QUOTACTL ideal-int
-pkg syscall (linux-arm-cgo), const SYS_READ ideal-int
-pkg syscall (linux-arm-cgo), const SYS_READAHEAD ideal-int
-pkg syscall (linux-arm-cgo), const SYS_READDIR ideal-int
-pkg syscall (linux-arm-cgo), const SYS_READLINK ideal-int
-pkg syscall (linux-arm-cgo), const SYS_READLINKAT ideal-int
-pkg syscall (linux-arm-cgo), const SYS_READV ideal-int
-pkg syscall (linux-arm-cgo), const SYS_REBOOT ideal-int
-pkg syscall (linux-arm-cgo), const SYS_RECV ideal-int
-pkg syscall (linux-arm-cgo), const SYS_RECVFROM ideal-int
-pkg syscall (linux-arm-cgo), const SYS_RECVMMSG ideal-int
-pkg syscall (linux-arm-cgo), const SYS_RECVMSG ideal-int
-pkg syscall (linux-arm-cgo), const SYS_REMAP_FILE_PAGES ideal-int
-pkg syscall (linux-arm-cgo), const SYS_REMOVEXATTR ideal-int
-pkg syscall (linux-arm-cgo), const SYS_RENAME ideal-int
-pkg syscall (linux-arm-cgo), const SYS_RENAMEAT ideal-int
-pkg syscall (linux-arm-cgo), const SYS_REQUEST_KEY ideal-int
-pkg syscall (linux-arm-cgo), const SYS_RESTART_SYSCALL ideal-int
-pkg syscall (linux-arm-cgo), const SYS_RMDIR ideal-int
-pkg syscall (linux-arm-cgo), const SYS_RT_SIGACTION ideal-int
-pkg syscall (linux-arm-cgo), const SYS_RT_SIGPENDING ideal-int
-pkg syscall (linux-arm-cgo), const SYS_RT_SIGPROCMASK ideal-int
-pkg syscall (linux-arm-cgo), const SYS_RT_SIGQUEUEINFO ideal-int
-pkg syscall (linux-arm-cgo), const SYS_RT_SIGRETURN ideal-int
-pkg syscall (linux-arm-cgo), const SYS_RT_SIGSUSPEND ideal-int
-pkg syscall (linux-arm-cgo), const SYS_RT_SIGTIMEDWAIT ideal-int
-pkg syscall (linux-arm-cgo), const SYS_RT_TGSIGQUEUEINFO ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SCHED_GETAFFINITY ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SCHED_GETPARAM ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SCHED_GETSCHEDULER ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SCHED_GET_PRIORITY_MAX ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SCHED_GET_PRIORITY_MIN ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SCHED_RR_GET_INTERVAL ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SCHED_SETAFFINITY ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SCHED_SETPARAM ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SCHED_SETSCHEDULER ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SCHED_YIELD ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SELECT ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SEMCTL ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SEMGET ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SEMOP ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SEMTIMEDOP ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SEND ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SENDFILE ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SENDFILE64 ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SENDMMSG ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SENDMSG ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SENDTO ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SETDOMAINNAME ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SETFSGID ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SETFSGID32 ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SETFSUID ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SETFSUID32 ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SETGID ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SETGID32 ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SETGROUPS ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SETGROUPS32 ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SETHOSTNAME ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SETITIMER ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SETNS ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SETPGID ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SETPRIORITY ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SETREGID ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SETREGID32 ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SETRESGID ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SETRESGID32 ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SETRESUID ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SETRESUID32 ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SETREUID ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SETREUID32 ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SETRLIMIT ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SETSID ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SETSOCKOPT ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SETTIMEOFDAY ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SETUID ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SETUID32 ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SETXATTR ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SET_MEMPOLICY ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SET_ROBUST_LIST ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SET_TID_ADDRESS ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SHMAT ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SHMCTL ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SHMDT ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SHMGET ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SHUTDOWN ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SIGACTION ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SIGALTSTACK ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SIGNALFD ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SIGNALFD4 ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SIGPENDING ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SIGPROCMASK ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SIGRETURN ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SIGSUSPEND ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SOCKET ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SOCKETCALL ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SOCKETPAIR ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SPLICE ideal-int
-pkg syscall (linux-arm-cgo), const SYS_STAT ideal-int
-pkg syscall (linux-arm-cgo), const SYS_STAT64 ideal-int
-pkg syscall (linux-arm-cgo), const SYS_STATFS ideal-int
-pkg syscall (linux-arm-cgo), const SYS_STATFS64 ideal-int
-pkg syscall (linux-arm-cgo), const SYS_STIME ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SWAPOFF ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SWAPON ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SYMLINK ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SYMLINKAT ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SYNC ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SYNCFS ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SYSCALL ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SYSCALL_BASE ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SYSFS ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SYSINFO ideal-int
-pkg syscall (linux-arm-cgo), const SYS_SYSLOG ideal-int
-pkg syscall (linux-arm-cgo), const SYS_TEE ideal-int
-pkg syscall (linux-arm-cgo), const SYS_TGKILL ideal-int
-pkg syscall (linux-arm-cgo), const SYS_TIME ideal-int
-pkg syscall (linux-arm-cgo), const SYS_TIMERFD_CREATE ideal-int
-pkg syscall (linux-arm-cgo), const SYS_TIMERFD_GETTIME ideal-int
-pkg syscall (linux-arm-cgo), const SYS_TIMERFD_SETTIME ideal-int
-pkg syscall (linux-arm-cgo), const SYS_TIMER_CREATE ideal-int
-pkg syscall (linux-arm-cgo), const SYS_TIMER_DELETE ideal-int
-pkg syscall (linux-arm-cgo), const SYS_TIMER_GETOVERRUN ideal-int
-pkg syscall (linux-arm-cgo), const SYS_TIMER_GETTIME ideal-int
-pkg syscall (linux-arm-cgo), const SYS_TIMER_SETTIME ideal-int
-pkg syscall (linux-arm-cgo), const SYS_TIMES ideal-int
-pkg syscall (linux-arm-cgo), const SYS_TKILL ideal-int
-pkg syscall (linux-arm-cgo), const SYS_TRUNCATE ideal-int
-pkg syscall (linux-arm-cgo), const SYS_TRUNCATE64 ideal-int
-pkg syscall (linux-arm-cgo), const SYS_UGETRLIMIT ideal-int
-pkg syscall (linux-arm-cgo), const SYS_UMASK ideal-int
-pkg syscall (linux-arm-cgo), const SYS_UMOUNT ideal-int
-pkg syscall (linux-arm-cgo), const SYS_UMOUNT2 ideal-int
-pkg syscall (linux-arm-cgo), const SYS_UNAME ideal-int
-pkg syscall (linux-arm-cgo), const SYS_UNLINK ideal-int
-pkg syscall (linux-arm-cgo), const SYS_UNLINKAT ideal-int
-pkg syscall (linux-arm-cgo), const SYS_UNSHARE ideal-int
-pkg syscall (linux-arm-cgo), const SYS_USELIB ideal-int
-pkg syscall (linux-arm-cgo), const SYS_USTAT ideal-int
-pkg syscall (linux-arm-cgo), const SYS_UTIME ideal-int
-pkg syscall (linux-arm-cgo), const SYS_UTIMENSAT ideal-int
-pkg syscall (linux-arm-cgo), const SYS_UTIMES ideal-int
-pkg syscall (linux-arm-cgo), const SYS_VFORK ideal-int
-pkg syscall (linux-arm-cgo), const SYS_VHANGUP ideal-int
-pkg syscall (linux-arm-cgo), const SYS_VMSPLICE ideal-int
-pkg syscall (linux-arm-cgo), const SYS_VSERVER ideal-int
-pkg syscall (linux-arm-cgo), const SYS_WAIT4 ideal-int
-pkg syscall (linux-arm-cgo), const SYS_WAITID ideal-int
-pkg syscall (linux-arm-cgo), const SYS_WRITE ideal-int
-pkg syscall (linux-arm-cgo), const SYS_WRITEV ideal-int
-pkg syscall (linux-arm-cgo), const SYS__LLSEEK ideal-int
-pkg syscall (linux-arm-cgo), const SYS__NEWSELECT ideal-int
-pkg syscall (linux-arm-cgo), const SYS__SYSCTL ideal-int
-pkg syscall (linux-arm-cgo), const S_BLKSIZE ideal-int
-pkg syscall (linux-arm-cgo), const S_IEXEC ideal-int
-pkg syscall (linux-arm-cgo), const S_IREAD ideal-int
-pkg syscall (linux-arm-cgo), const S_IRGRP ideal-int
-pkg syscall (linux-arm-cgo), const S_IROTH ideal-int
-pkg syscall (linux-arm-cgo), const S_IRWXG ideal-int
-pkg syscall (linux-arm-cgo), const S_IRWXO ideal-int
-pkg syscall (linux-arm-cgo), const S_IRWXU ideal-int
-pkg syscall (linux-arm-cgo), const S_IWGRP ideal-int
-pkg syscall (linux-arm-cgo), const S_IWOTH ideal-int
-pkg syscall (linux-arm-cgo), const S_IWRITE ideal-int
-pkg syscall (linux-arm-cgo), const S_IXGRP ideal-int
-pkg syscall (linux-arm-cgo), const S_IXOTH ideal-int
-pkg syscall (linux-arm-cgo), const SizeofCmsghdr ideal-int
-pkg syscall (linux-arm-cgo), const SizeofICMPv6Filter = 32
-pkg syscall (linux-arm-cgo), const SizeofICMPv6Filter ideal-int
-pkg syscall (linux-arm-cgo), const SizeofIPMreq ideal-int
-pkg syscall (linux-arm-cgo), const SizeofIPMreqn ideal-int
-pkg syscall (linux-arm-cgo), const SizeofIPv6MTUInfo = 32
-pkg syscall (linux-arm-cgo), const SizeofIPv6MTUInfo ideal-int
-pkg syscall (linux-arm-cgo), const SizeofIPv6Mreq ideal-int
-pkg syscall (linux-arm-cgo), const SizeofIfAddrmsg ideal-int
-pkg syscall (linux-arm-cgo), const SizeofIfInfomsg ideal-int
-pkg syscall (linux-arm-cgo), const SizeofInet4Pktinfo ideal-int
-pkg syscall (linux-arm-cgo), const SizeofInet6Pktinfo ideal-int
-pkg syscall (linux-arm-cgo), const SizeofInotifyEvent ideal-int
-pkg syscall (linux-arm-cgo), const SizeofLinger ideal-int
-pkg syscall (linux-arm-cgo), const SizeofMsghdr ideal-int
-pkg syscall (linux-arm-cgo), const SizeofNlAttr ideal-int
-pkg syscall (linux-arm-cgo), const SizeofNlMsgerr ideal-int
-pkg syscall (linux-arm-cgo), const SizeofNlMsghdr ideal-int
-pkg syscall (linux-arm-cgo), const SizeofRtAttr ideal-int
-pkg syscall (linux-arm-cgo), const SizeofRtGenmsg ideal-int
-pkg syscall (linux-arm-cgo), const SizeofRtMsg ideal-int
-pkg syscall (linux-arm-cgo), const SizeofRtNexthop ideal-int
-pkg syscall (linux-arm-cgo), const SizeofSockFilter ideal-int
-pkg syscall (linux-arm-cgo), const SizeofSockFprog ideal-int
-pkg syscall (linux-arm-cgo), const SizeofSockaddrAny ideal-int
-pkg syscall (linux-arm-cgo), const SizeofSockaddrInet4 ideal-int
-pkg syscall (linux-arm-cgo), const SizeofSockaddrInet6 ideal-int
-pkg syscall (linux-arm-cgo), const SizeofSockaddrLinklayer ideal-int
-pkg syscall (linux-arm-cgo), const SizeofSockaddrNetlink ideal-int
-pkg syscall (linux-arm-cgo), const SizeofSockaddrUnix ideal-int
-pkg syscall (linux-arm-cgo), const SizeofTCPInfo ideal-int
-pkg syscall (linux-arm-cgo), const SizeofUcred ideal-int
-pkg syscall (linux-arm-cgo), const TCGETS ideal-int
-pkg syscall (linux-arm-cgo), const TCIFLUSH = 0
-pkg syscall (linux-arm-cgo), const TCIFLUSH ideal-int
-pkg syscall (linux-arm-cgo), const TCIOFLUSH = 2
-pkg syscall (linux-arm-cgo), const TCIOFLUSH ideal-int
-pkg syscall (linux-arm-cgo), const TCOFLUSH = 1
-pkg syscall (linux-arm-cgo), const TCOFLUSH ideal-int
-pkg syscall (linux-arm-cgo), const TCP_CONGESTION ideal-int
-pkg syscall (linux-arm-cgo), const TCP_CORK ideal-int
-pkg syscall (linux-arm-cgo), const TCP_DEFER_ACCEPT ideal-int
-pkg syscall (linux-arm-cgo), const TCP_INFO ideal-int
-pkg syscall (linux-arm-cgo), const TCP_KEEPCNT ideal-int
-pkg syscall (linux-arm-cgo), const TCP_KEEPIDLE ideal-int
-pkg syscall (linux-arm-cgo), const TCP_KEEPINTVL ideal-int
-pkg syscall (linux-arm-cgo), const TCP_LINGER2 ideal-int
-pkg syscall (linux-arm-cgo), const TCP_MAXSEG ideal-int
-pkg syscall (linux-arm-cgo), const TCP_MAXWIN ideal-int
-pkg syscall (linux-arm-cgo), const TCP_MAX_WINSHIFT ideal-int
-pkg syscall (linux-arm-cgo), const TCP_MD5SIG ideal-int
-pkg syscall (linux-arm-cgo), const TCP_MD5SIG_MAXKEYLEN ideal-int
-pkg syscall (linux-arm-cgo), const TCP_MSS ideal-int
-pkg syscall (linux-arm-cgo), const TCP_QUICKACK ideal-int
-pkg syscall (linux-arm-cgo), const TCP_SYNCNT ideal-int
-pkg syscall (linux-arm-cgo), const TCP_WINDOW_CLAMP ideal-int
-pkg syscall (linux-arm-cgo), const TCSETS ideal-int
-pkg syscall (linux-arm-cgo), const TIOCCBRK ideal-int
-pkg syscall (linux-arm-cgo), const TIOCCONS ideal-int
-pkg syscall (linux-arm-cgo), const TIOCEXCL ideal-int
-pkg syscall (linux-arm-cgo), const TIOCGDEV ideal-int
-pkg syscall (linux-arm-cgo), const TIOCGETD ideal-int
-pkg syscall (linux-arm-cgo), const TIOCGICOUNT ideal-int
-pkg syscall (linux-arm-cgo), const TIOCGLCKTRMIOS ideal-int
-pkg syscall (linux-arm-cgo), const TIOCGPGRP ideal-int
-pkg syscall (linux-arm-cgo), const TIOCGPTN ideal-int
-pkg syscall (linux-arm-cgo), const TIOCGRS485 ideal-int
-pkg syscall (linux-arm-cgo), const TIOCGSERIAL ideal-int
-pkg syscall (linux-arm-cgo), const TIOCGSID ideal-int
-pkg syscall (linux-arm-cgo), const TIOCGSOFTCAR ideal-int
-pkg syscall (linux-arm-cgo), const TIOCGWINSZ ideal-int
-pkg syscall (linux-arm-cgo), const TIOCINQ ideal-int
-pkg syscall (linux-arm-cgo), const TIOCLINUX ideal-int
-pkg syscall (linux-arm-cgo), const TIOCMBIC ideal-int
-pkg syscall (linux-arm-cgo), const TIOCMBIS ideal-int
-pkg syscall (linux-arm-cgo), const TIOCMGET ideal-int
-pkg syscall (linux-arm-cgo), const TIOCMIWAIT ideal-int
-pkg syscall (linux-arm-cgo), const TIOCMSET ideal-int
-pkg syscall (linux-arm-cgo), const TIOCM_CAR ideal-int
-pkg syscall (linux-arm-cgo), const TIOCM_CD ideal-int
-pkg syscall (linux-arm-cgo), const TIOCM_CTS ideal-int
-pkg syscall (linux-arm-cgo), const TIOCM_DSR ideal-int
-pkg syscall (linux-arm-cgo), const TIOCM_DTR ideal-int
-pkg syscall (linux-arm-cgo), const TIOCM_LE ideal-int
-pkg syscall (linux-arm-cgo), const TIOCM_RI ideal-int
-pkg syscall (linux-arm-cgo), const TIOCM_RNG ideal-int
-pkg syscall (linux-arm-cgo), const TIOCM_RTS ideal-int
-pkg syscall (linux-arm-cgo), const TIOCM_SR ideal-int
-pkg syscall (linux-arm-cgo), const TIOCM_ST ideal-int
-pkg syscall (linux-arm-cgo), const TIOCNOTTY ideal-int
-pkg syscall (linux-arm-cgo), const TIOCNXCL ideal-int
-pkg syscall (linux-arm-cgo), const TIOCOUTQ ideal-int
-pkg syscall (linux-arm-cgo), const TIOCPKT ideal-int
-pkg syscall (linux-arm-cgo), const TIOCPKT_DATA ideal-int
-pkg syscall (linux-arm-cgo), const TIOCPKT_DOSTOP ideal-int
-pkg syscall (linux-arm-cgo), const TIOCPKT_FLUSHREAD ideal-int
-pkg syscall (linux-arm-cgo), const TIOCPKT_FLUSHWRITE ideal-int
-pkg syscall (linux-arm-cgo), const TIOCPKT_IOCTL ideal-int
-pkg syscall (linux-arm-cgo), const TIOCPKT_NOSTOP ideal-int
-pkg syscall (linux-arm-cgo), const TIOCPKT_START ideal-int
-pkg syscall (linux-arm-cgo), const TIOCPKT_STOP ideal-int
-pkg syscall (linux-arm-cgo), const TIOCSBRK ideal-int
-pkg syscall (linux-arm-cgo), const TIOCSCTTY ideal-int
-pkg syscall (linux-arm-cgo), const TIOCSERCONFIG ideal-int
-pkg syscall (linux-arm-cgo), const TIOCSERGETLSR ideal-int
-pkg syscall (linux-arm-cgo), const TIOCSERGETMULTI ideal-int
-pkg syscall (linux-arm-cgo), const TIOCSERGSTRUCT ideal-int
-pkg syscall (linux-arm-cgo), const TIOCSERGWILD ideal-int
-pkg syscall (linux-arm-cgo), const TIOCSERSETMULTI ideal-int
-pkg syscall (linux-arm-cgo), const TIOCSERSWILD ideal-int
-pkg syscall (linux-arm-cgo), const TIOCSER_TEMT ideal-int
-pkg syscall (linux-arm-cgo), const TIOCSETD ideal-int
-pkg syscall (linux-arm-cgo), const TIOCSIG ideal-int
-pkg syscall (linux-arm-cgo), const TIOCSLCKTRMIOS ideal-int
-pkg syscall (linux-arm-cgo), const TIOCSPGRP ideal-int
-pkg syscall (linux-arm-cgo), const TIOCSPTLCK ideal-int
-pkg syscall (linux-arm-cgo), const TIOCSRS485 ideal-int
-pkg syscall (linux-arm-cgo), const TIOCSSERIAL ideal-int
-pkg syscall (linux-arm-cgo), const TIOCSSOFTCAR ideal-int
-pkg syscall (linux-arm-cgo), const TIOCSTI ideal-int
-pkg syscall (linux-arm-cgo), const TIOCSWINSZ ideal-int
-pkg syscall (linux-arm-cgo), const TIOCVHANGUP ideal-int
-pkg syscall (linux-arm-cgo), const TOSTOP ideal-int
-pkg syscall (linux-arm-cgo), const TUNATTACHFILTER ideal-int
-pkg syscall (linux-arm-cgo), const TUNDETACHFILTER ideal-int
-pkg syscall (linux-arm-cgo), const TUNGETFEATURES ideal-int
-pkg syscall (linux-arm-cgo), const TUNGETIFF ideal-int
-pkg syscall (linux-arm-cgo), const TUNGETSNDBUF ideal-int
-pkg syscall (linux-arm-cgo), const TUNGETVNETHDRSZ ideal-int
-pkg syscall (linux-arm-cgo), const TUNSETDEBUG ideal-int
-pkg syscall (linux-arm-cgo), const TUNSETGROUP ideal-int
-pkg syscall (linux-arm-cgo), const TUNSETIFF ideal-int
-pkg syscall (linux-arm-cgo), const TUNSETLINK ideal-int
-pkg syscall (linux-arm-cgo), const TUNSETNOCSUM ideal-int
-pkg syscall (linux-arm-cgo), const TUNSETOFFLOAD ideal-int
-pkg syscall (linux-arm-cgo), const TUNSETOWNER ideal-int
-pkg syscall (linux-arm-cgo), const TUNSETPERSIST ideal-int
-pkg syscall (linux-arm-cgo), const TUNSETSNDBUF ideal-int
-pkg syscall (linux-arm-cgo), const TUNSETTXFILTER ideal-int
-pkg syscall (linux-arm-cgo), const TUNSETVNETHDRSZ ideal-int
-pkg syscall (linux-arm-cgo), const VDISCARD ideal-int
-pkg syscall (linux-arm-cgo), const VEOF ideal-int
-pkg syscall (linux-arm-cgo), const VEOL ideal-int
-pkg syscall (linux-arm-cgo), const VEOL2 ideal-int
-pkg syscall (linux-arm-cgo), const VERASE ideal-int
-pkg syscall (linux-arm-cgo), const VINTR ideal-int
-pkg syscall (linux-arm-cgo), const VKILL ideal-int
-pkg syscall (linux-arm-cgo), const VLNEXT ideal-int
-pkg syscall (linux-arm-cgo), const VMIN ideal-int
-pkg syscall (linux-arm-cgo), const VQUIT ideal-int
-pkg syscall (linux-arm-cgo), const VREPRINT ideal-int
-pkg syscall (linux-arm-cgo), const VSTART ideal-int
-pkg syscall (linux-arm-cgo), const VSTOP ideal-int
-pkg syscall (linux-arm-cgo), const VSUSP ideal-int
-pkg syscall (linux-arm-cgo), const VSWTC ideal-int
-pkg syscall (linux-arm-cgo), const VTIME ideal-int
-pkg syscall (linux-arm-cgo), const VWERASE ideal-int
-pkg syscall (linux-arm-cgo), const WALL ideal-int
-pkg syscall (linux-arm-cgo), const WCLONE ideal-int
-pkg syscall (linux-arm-cgo), const WCONTINUED ideal-int
-pkg syscall (linux-arm-cgo), const WEXITED ideal-int
-pkg syscall (linux-arm-cgo), const WNOHANG ideal-int
-pkg syscall (linux-arm-cgo), const WNOTHREAD ideal-int
-pkg syscall (linux-arm-cgo), const WNOWAIT ideal-int
-pkg syscall (linux-arm-cgo), const WORDSIZE ideal-int
-pkg syscall (linux-arm-cgo), const WSTOPPED ideal-int
-pkg syscall (linux-arm-cgo), const WUNTRACED ideal-int
-pkg syscall (linux-arm-cgo), const XCASE ideal-int
-pkg syscall (linux-arm-cgo), func Accept(int) (int, Sockaddr, error)
-pkg syscall (linux-arm-cgo), func Accept4(int, int) (int, Sockaddr, error)
-pkg syscall (linux-arm-cgo), func Access(string, uint32) error
-pkg syscall (linux-arm-cgo), func Acct(string) error
-pkg syscall (linux-arm-cgo), func Adjtimex(*Timex) (int, error)
-pkg syscall (linux-arm-cgo), func AttachLsf(int, []SockFilter) error
-pkg syscall (linux-arm-cgo), func Bind(int, Sockaddr) error
-pkg syscall (linux-arm-cgo), func BindToDevice(int, string) error
-pkg syscall (linux-arm-cgo), func Chroot(string) error
-pkg syscall (linux-arm-cgo), func Close(int) error
-pkg syscall (linux-arm-cgo), func CloseOnExec(int)
-pkg syscall (linux-arm-cgo), func CmsgLen(int) int
-pkg syscall (linux-arm-cgo), func CmsgSpace(int) int
-pkg syscall (linux-arm-cgo), func Connect(int, Sockaddr) error
-pkg syscall (linux-arm-cgo), func Creat(string, uint32) (int, error)
-pkg syscall (linux-arm-cgo), func DetachLsf(int) error
-pkg syscall (linux-arm-cgo), func Dup(int) (int, error)
-pkg syscall (linux-arm-cgo), func Dup2(int, int) error
-pkg syscall (linux-arm-cgo), func Dup3(int, int, int) error
-pkg syscall (linux-arm-cgo), func EpollCreate(int) (int, error)
-pkg syscall (linux-arm-cgo), func EpollCreate1(int) (int, error)
-pkg syscall (linux-arm-cgo), func EpollCtl(int, int, int, *EpollEvent) error
-pkg syscall (linux-arm-cgo), func EpollWait(int, []EpollEvent, int) (int, error)
-pkg syscall (linux-arm-cgo), func Faccessat(int, string, uint32, int) error
-pkg syscall (linux-arm-cgo), func Fallocate(int, uint32, int64, int64) error
-pkg syscall (linux-arm-cgo), func Fchdir(int) error
-pkg syscall (linux-arm-cgo), func Fchmod(int, uint32) error
-pkg syscall (linux-arm-cgo), func Fchmodat(int, string, uint32, int) error
-pkg syscall (linux-arm-cgo), func Fchown(int, int, int) error
-pkg syscall (linux-arm-cgo), func Fchownat(int, string, int, int, int) error
-pkg syscall (linux-arm-cgo), func Fdatasync(int) error
-pkg syscall (linux-arm-cgo), func Flock(int, int) error
-pkg syscall (linux-arm-cgo), func ForkExec(string, []string, *ProcAttr) (int, error)
-pkg syscall (linux-arm-cgo), func Fstat(int, *Stat_t) error
-pkg syscall (linux-arm-cgo), func Fstatfs(int, *Statfs_t) error
-pkg syscall (linux-arm-cgo), func Fsync(int) error
-pkg syscall (linux-arm-cgo), func Ftruncate(int, int64) error
-pkg syscall (linux-arm-cgo), func Futimes(int, []Timeval) error
-pkg syscall (linux-arm-cgo), func Futimesat(int, string, []Timeval) error
-pkg syscall (linux-arm-cgo), func Getcwd([]uint8) (int, error)
-pkg syscall (linux-arm-cgo), func Getdents(int, []uint8) (int, error)
-pkg syscall (linux-arm-cgo), func Getpeername(int) (Sockaddr, error)
-pkg syscall (linux-arm-cgo), func Getpgid(int) (int, error)
-pkg syscall (linux-arm-cgo), func Getpgrp() int
-pkg syscall (linux-arm-cgo), func Getpriority(int, int) (int, error)
-pkg syscall (linux-arm-cgo), func Getrlimit(int, *Rlimit) error
-pkg syscall (linux-arm-cgo), func Getrusage(int, *Rusage) error
-pkg syscall (linux-arm-cgo), func Getsockname(int) (Sockaddr, error)
-pkg syscall (linux-arm-cgo), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
-pkg syscall (linux-arm-cgo), func GetsockoptIPMreq(int, int, int) (*IPMreq, error)
-pkg syscall (linux-arm-cgo), func GetsockoptIPMreqn(int, int, int) (*IPMreqn, error)
-pkg syscall (linux-arm-cgo), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
-pkg syscall (linux-arm-cgo), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error)
-pkg syscall (linux-arm-cgo), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error)
-pkg syscall (linux-arm-cgo), func GetsockoptInt(int, int, int) (int, error)
-pkg syscall (linux-arm-cgo), func GetsockoptUcred(int, int, int) (*Ucred, error)
-pkg syscall (linux-arm-cgo), func Gettid() int
-pkg syscall (linux-arm-cgo), func Getxattr(string, string, []uint8) (int, error)
-pkg syscall (linux-arm-cgo), func InotifyAddWatch(int, string, uint32) (int, error)
-pkg syscall (linux-arm-cgo), func InotifyInit() (int, error)
-pkg syscall (linux-arm-cgo), func InotifyInit1(int) (int, error)
-pkg syscall (linux-arm-cgo), func InotifyRmWatch(int, uint32) (int, error)
-pkg syscall (linux-arm-cgo), func Kill(int, Signal) error
-pkg syscall (linux-arm-cgo), func Klogctl(int, []uint8) (int, error)
-pkg syscall (linux-arm-cgo), func Listen(int, int) error
-pkg syscall (linux-arm-cgo), func Listxattr(string, []uint8) (int, error)
-pkg syscall (linux-arm-cgo), func LsfJump(int, int, int, int) *SockFilter
-pkg syscall (linux-arm-cgo), func LsfSocket(int, int) (int, error)
-pkg syscall (linux-arm-cgo), func LsfStmt(int, int) *SockFilter
-pkg syscall (linux-arm-cgo), func Lstat(string, *Stat_t) error
-pkg syscall (linux-arm-cgo), func Madvise([]uint8, int) error
-pkg syscall (linux-arm-cgo), func Mkdirat(int, string, uint32) error
-pkg syscall (linux-arm-cgo), func Mkfifo(string, uint32) error
-pkg syscall (linux-arm-cgo), func Mknod(string, uint32, int) error
-pkg syscall (linux-arm-cgo), func Mknodat(int, string, uint32, int) error
-pkg syscall (linux-arm-cgo), func Mlock([]uint8) error
-pkg syscall (linux-arm-cgo), func Mlockall(int) error
-pkg syscall (linux-arm-cgo), func Mmap(int, int64, int, int, int) ([]uint8, error)
-pkg syscall (linux-arm-cgo), func Mount(string, string, string, uintptr, string) error
-pkg syscall (linux-arm-cgo), func Mprotect([]uint8, int) error
-pkg syscall (linux-arm-cgo), func Munlock([]uint8) error
-pkg syscall (linux-arm-cgo), func Munlockall() error
-pkg syscall (linux-arm-cgo), func Munmap([]uint8) error
-pkg syscall (linux-arm-cgo), func Nanosleep(*Timespec, *Timespec) error
-pkg syscall (linux-arm-cgo), func NetlinkRIB(int, int) ([]uint8, error)
-pkg syscall (linux-arm-cgo), func Open(string, int, uint32) (int, error)
-pkg syscall (linux-arm-cgo), func Openat(int, string, int, uint32) (int, error)
-pkg syscall (linux-arm-cgo), func ParseDirent([]uint8, int, []string) (int, int, []string)
-pkg syscall (linux-arm-cgo), func ParseNetlinkMessage([]uint8) ([]NetlinkMessage, error)
-pkg syscall (linux-arm-cgo), func ParseNetlinkRouteAttr(*NetlinkMessage) ([]NetlinkRouteAttr, error)
-pkg syscall (linux-arm-cgo), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error)
-pkg syscall (linux-arm-cgo), func ParseUnixCredentials(*SocketControlMessage) (*Ucred, error)
-pkg syscall (linux-arm-cgo), func ParseUnixRights(*SocketControlMessage) ([]int, error)
-pkg syscall (linux-arm-cgo), func Pause() error
-pkg syscall (linux-arm-cgo), func Pipe([]int) error
-pkg syscall (linux-arm-cgo), func Pipe2([]int, int) error
-pkg syscall (linux-arm-cgo), func PivotRoot(string, string) error
-pkg syscall (linux-arm-cgo), func Pread(int, []uint8, int64) (int, error)
-pkg syscall (linux-arm-cgo), func PtraceAttach(int) error
-pkg syscall (linux-arm-cgo), func PtraceCont(int, int) error
-pkg syscall (linux-arm-cgo), func PtraceDetach(int) error
-pkg syscall (linux-arm-cgo), func PtraceGetEventMsg(int) (uint, error)
-pkg syscall (linux-arm-cgo), func PtraceGetRegs(int, *PtraceRegs) error
-pkg syscall (linux-arm-cgo), func PtracePeekData(int, uintptr, []uint8) (int, error)
-pkg syscall (linux-arm-cgo), func PtracePeekText(int, uintptr, []uint8) (int, error)
-pkg syscall (linux-arm-cgo), func PtracePokeData(int, uintptr, []uint8) (int, error)
-pkg syscall (linux-arm-cgo), func PtracePokeText(int, uintptr, []uint8) (int, error)
-pkg syscall (linux-arm-cgo), func PtraceSetOptions(int, int) error
-pkg syscall (linux-arm-cgo), func PtraceSetRegs(int, *PtraceRegs) error
-pkg syscall (linux-arm-cgo), func PtraceSingleStep(int) error
-pkg syscall (linux-arm-cgo), func PtraceSyscall(int, int) error
-pkg syscall (linux-arm-cgo), func Pwrite(int, []uint8, int64) (int, error)
-pkg syscall (linux-arm-cgo), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (linux-arm-cgo), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (linux-arm-cgo), func Read(int, []uint8) (int, error)
-pkg syscall (linux-arm-cgo), func ReadDirent(int, []uint8) (int, error)
-pkg syscall (linux-arm-cgo), func Reboot(int) error
-pkg syscall (linux-arm-cgo), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
-pkg syscall (linux-arm-cgo), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
-pkg syscall (linux-arm-cgo), func Removexattr(string, string) error
-pkg syscall (linux-arm-cgo), func Renameat(int, string, int, string) error
-pkg syscall (linux-arm-cgo), func Seek(int, int64, int) (int64, error)
-pkg syscall (linux-arm-cgo), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) (int, error)
-pkg syscall (linux-arm-cgo), func Sendfile(int, int, *int64, int) (int, error)
-pkg syscall (linux-arm-cgo), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
-pkg syscall (linux-arm-cgo), func Sendto(int, []uint8, int, Sockaddr) error
-pkg syscall (linux-arm-cgo), func SetLsfPromisc(string, bool) error
-pkg syscall (linux-arm-cgo), func SetNonblock(int, bool) error
-pkg syscall (linux-arm-cgo), func Setdomainname([]uint8) error
-pkg syscall (linux-arm-cgo), func Setfsgid(int) error
-pkg syscall (linux-arm-cgo), func Setfsuid(int) error
-pkg syscall (linux-arm-cgo), func Setgid(int) error
-pkg syscall (linux-arm-cgo), func Setgroups([]int) error
-pkg syscall (linux-arm-cgo), func Sethostname([]uint8) error
-pkg syscall (linux-arm-cgo), func Setpgid(int, int) error
-pkg syscall (linux-arm-cgo), func Setpriority(int, int, int) error
-pkg syscall (linux-arm-cgo), func Setregid(int, int) error
-pkg syscall (linux-arm-cgo), func Setresgid(int, int, int) error
-pkg syscall (linux-arm-cgo), func Setresuid(int, int, int) error
-pkg syscall (linux-arm-cgo), func Setreuid(int, int) error
-pkg syscall (linux-arm-cgo), func Setrlimit(int, *Rlimit) error
-pkg syscall (linux-arm-cgo), func Setsid() (int, error)
-pkg syscall (linux-arm-cgo), func SetsockoptByte(int, int, int, uint8) error
-pkg syscall (linux-arm-cgo), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
-pkg syscall (linux-arm-cgo), func SetsockoptIPMreq(int, int, int, *IPMreq) error
-pkg syscall (linux-arm-cgo), func SetsockoptIPMreqn(int, int, int, *IPMreqn) error
-pkg syscall (linux-arm-cgo), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error
-pkg syscall (linux-arm-cgo), func SetsockoptInet4Addr(int, int, int, [4]uint8) error
-pkg syscall (linux-arm-cgo), func SetsockoptInt(int, int, int, int) error
-pkg syscall (linux-arm-cgo), func SetsockoptLinger(int, int, int, *Linger) error
-pkg syscall (linux-arm-cgo), func SetsockoptString(int, int, int, string) error
-pkg syscall (linux-arm-cgo), func SetsockoptTimeval(int, int, int, *Timeval) error
-pkg syscall (linux-arm-cgo), func Settimeofday(*Timeval) error
-pkg syscall (linux-arm-cgo), func Setuid(int) error
-pkg syscall (linux-arm-cgo), func Setxattr(string, string, []uint8, int) error
-pkg syscall (linux-arm-cgo), func Shutdown(int, int) error
-pkg syscall (linux-arm-cgo), func SlicePtrFromStrings([]string) ([]*uint8, error)
-pkg syscall (linux-arm-cgo), func Socket(int, int, int) (int, error)
-pkg syscall (linux-arm-cgo), func Socketpair(int, int, int) ([2]int, error)
-pkg syscall (linux-arm-cgo), func Splice(int, *int64, int, *int64, int, int) (int, error)
-pkg syscall (linux-arm-cgo), func Stat(string, *Stat_t) error
-pkg syscall (linux-arm-cgo), func Statfs(string, *Statfs_t) error
-pkg syscall (linux-arm-cgo), func StringSlicePtr([]string) []*uint8
-pkg syscall (linux-arm-cgo), func Sync()
-pkg syscall (linux-arm-cgo), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (linux-arm-cgo), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (linux-arm-cgo), func Sysinfo(*Sysinfo_t) error
-pkg syscall (linux-arm-cgo), func Tee(int, int, int, int) (int64, error)
-pkg syscall (linux-arm-cgo), func Tgkill(int, int, Signal) error
-pkg syscall (linux-arm-cgo), func Time(*Time_t) (Time_t, error)
-pkg syscall (linux-arm-cgo), func Times(*Tms) (uintptr, error)
-pkg syscall (linux-arm-cgo), func Truncate(string, int64) error
-pkg syscall (linux-arm-cgo), func Umask(int) int
-pkg syscall (linux-arm-cgo), func Uname(*Utsname) error
-pkg syscall (linux-arm-cgo), func UnixCredentials(*Ucred) []uint8
-pkg syscall (linux-arm-cgo), func UnixRights(...int) []uint8
-pkg syscall (linux-arm-cgo), func Unlinkat(int, string) error
-pkg syscall (linux-arm-cgo), func Unmount(string, int) error
-pkg syscall (linux-arm-cgo), func Unshare(int) error
-pkg syscall (linux-arm-cgo), func Ustat(int, *Ustat_t) error
-pkg syscall (linux-arm-cgo), func Utime(string, *Utimbuf) error
-pkg syscall (linux-arm-cgo), func Wait4(int, *WaitStatus, int, *Rusage) (int, error)
-pkg syscall (linux-arm-cgo), func Write(int, []uint8) (int, error)
-pkg syscall (linux-arm-cgo), method (*Cmsghdr) SetLen(int)
-pkg syscall (linux-arm-cgo), method (*Iovec) SetLen(int)
-pkg syscall (linux-arm-cgo), method (*Msghdr) SetControllen(int)
-pkg syscall (linux-arm-cgo), method (*PtraceRegs) PC() uint64
-pkg syscall (linux-arm-cgo), method (*PtraceRegs) SetPC(uint64)
-pkg syscall (linux-arm-cgo), type Cmsghdr struct
-pkg syscall (linux-arm-cgo), type Cmsghdr struct, Len uint32
-pkg syscall (linux-arm-cgo), type Cmsghdr struct, Level int32
-pkg syscall (linux-arm-cgo), type Cmsghdr struct, Type int32
-pkg syscall (linux-arm-cgo), type Cmsghdr struct, X__cmsg_data [0]uint8
-pkg syscall (linux-arm-cgo), type Credential struct
-pkg syscall (linux-arm-cgo), type Credential struct, Gid uint32
-pkg syscall (linux-arm-cgo), type Credential struct, Groups []uint32
-pkg syscall (linux-arm-cgo), type Credential struct, Uid uint32
-pkg syscall (linux-arm-cgo), type Dirent struct
-pkg syscall (linux-arm-cgo), type Dirent struct, Ino uint64
-pkg syscall (linux-arm-cgo), type Dirent struct, Name [256]uint8
-pkg syscall (linux-arm-cgo), type Dirent struct, Off int64
-pkg syscall (linux-arm-cgo), type Dirent struct, Pad_cgo_0 [5]uint8
-pkg syscall (linux-arm-cgo), type Dirent struct, Reclen uint16
-pkg syscall (linux-arm-cgo), type Dirent struct, Type uint8
-pkg syscall (linux-arm-cgo), type EpollEvent struct
-pkg syscall (linux-arm-cgo), type EpollEvent struct, Events uint32
-pkg syscall (linux-arm-cgo), type EpollEvent struct, Fd int32
-pkg syscall (linux-arm-cgo), type EpollEvent struct, Pad int32
-pkg syscall (linux-arm-cgo), type EpollEvent struct, PadFd int32
-pkg syscall (linux-arm-cgo), type FdSet struct
-pkg syscall (linux-arm-cgo), type FdSet struct, Bits [32]int32
-pkg syscall (linux-arm-cgo), type Fsid struct
-pkg syscall (linux-arm-cgo), type Fsid struct, X__val [2]int32
-pkg syscall (linux-arm-cgo), type ICMPv6Filter struct
-pkg syscall (linux-arm-cgo), type ICMPv6Filter struct, Data [8]uint32
-pkg syscall (linux-arm-cgo), type IPMreqn struct
-pkg syscall (linux-arm-cgo), type IPMreqn struct, Address [4]uint8
-pkg syscall (linux-arm-cgo), type IPMreqn struct, Ifindex int32
-pkg syscall (linux-arm-cgo), type IPMreqn struct, Multiaddr [4]uint8
-pkg syscall (linux-arm-cgo), type IPv6MTUInfo struct
-pkg syscall (linux-arm-cgo), type IPv6MTUInfo struct, Addr RawSockaddrInet6
-pkg syscall (linux-arm-cgo), type IPv6MTUInfo struct, Mtu uint32
-pkg syscall (linux-arm-cgo), type IfAddrmsg struct
-pkg syscall (linux-arm-cgo), type IfAddrmsg struct, Family uint8
-pkg syscall (linux-arm-cgo), type IfAddrmsg struct, Flags uint8
-pkg syscall (linux-arm-cgo), type IfAddrmsg struct, Index uint32
-pkg syscall (linux-arm-cgo), type IfAddrmsg struct, Prefixlen uint8
-pkg syscall (linux-arm-cgo), type IfAddrmsg struct, Scope uint8
-pkg syscall (linux-arm-cgo), type IfInfomsg struct
-pkg syscall (linux-arm-cgo), type IfInfomsg struct, Change uint32
-pkg syscall (linux-arm-cgo), type IfInfomsg struct, Family uint8
-pkg syscall (linux-arm-cgo), type IfInfomsg struct, Flags uint32
-pkg syscall (linux-arm-cgo), type IfInfomsg struct, Index int32
-pkg syscall (linux-arm-cgo), type IfInfomsg struct, Type uint16
-pkg syscall (linux-arm-cgo), type IfInfomsg struct, X__ifi_pad uint8
-pkg syscall (linux-arm-cgo), type Inet4Pktinfo struct
-pkg syscall (linux-arm-cgo), type Inet4Pktinfo struct, Addr [4]uint8
-pkg syscall (linux-arm-cgo), type Inet4Pktinfo struct, Ifindex int32
-pkg syscall (linux-arm-cgo), type Inet4Pktinfo struct, Spec_dst [4]uint8
-pkg syscall (linux-arm-cgo), type Inet6Pktinfo struct
-pkg syscall (linux-arm-cgo), type Inet6Pktinfo struct, Addr [16]uint8
-pkg syscall (linux-arm-cgo), type Inet6Pktinfo struct, Ifindex uint32
-pkg syscall (linux-arm-cgo), type InotifyEvent struct
-pkg syscall (linux-arm-cgo), type InotifyEvent struct, Cookie uint32
-pkg syscall (linux-arm-cgo), type InotifyEvent struct, Len uint32
-pkg syscall (linux-arm-cgo), type InotifyEvent struct, Mask uint32
-pkg syscall (linux-arm-cgo), type InotifyEvent struct, Name [0]uint8
-pkg syscall (linux-arm-cgo), type InotifyEvent struct, Wd int32
-pkg syscall (linux-arm-cgo), type Iovec struct
-pkg syscall (linux-arm-cgo), type Iovec struct, Base *uint8
-pkg syscall (linux-arm-cgo), type Iovec struct, Len uint32
-pkg syscall (linux-arm-cgo), type Msghdr struct
-pkg syscall (linux-arm-cgo), type Msghdr struct, Control *uint8
-pkg syscall (linux-arm-cgo), type Msghdr struct, Controllen uint32
-pkg syscall (linux-arm-cgo), type Msghdr struct, Flags int32
-pkg syscall (linux-arm-cgo), type Msghdr struct, Iov *Iovec
-pkg syscall (linux-arm-cgo), type Msghdr struct, Iovlen uint32
-pkg syscall (linux-arm-cgo), type Msghdr struct, Name *uint8
-pkg syscall (linux-arm-cgo), type Msghdr struct, Namelen uint32
-pkg syscall (linux-arm-cgo), type NetlinkMessage struct
-pkg syscall (linux-arm-cgo), type NetlinkMessage struct, Data []uint8
-pkg syscall (linux-arm-cgo), type NetlinkMessage struct, Header NlMsghdr
-pkg syscall (linux-arm-cgo), type NetlinkRouteAttr struct
-pkg syscall (linux-arm-cgo), type NetlinkRouteAttr struct, Attr RtAttr
-pkg syscall (linux-arm-cgo), type NetlinkRouteAttr struct, Value []uint8
-pkg syscall (linux-arm-cgo), type NetlinkRouteRequest struct
-pkg syscall (linux-arm-cgo), type NetlinkRouteRequest struct, Data RtGenmsg
-pkg syscall (linux-arm-cgo), type NetlinkRouteRequest struct, Header NlMsghdr
-pkg syscall (linux-arm-cgo), type NlAttr struct
-pkg syscall (linux-arm-cgo), type NlAttr struct, Len uint16
-pkg syscall (linux-arm-cgo), type NlAttr struct, Type uint16
-pkg syscall (linux-arm-cgo), type NlMsgerr struct
-pkg syscall (linux-arm-cgo), type NlMsgerr struct, Error int32
-pkg syscall (linux-arm-cgo), type NlMsgerr struct, Msg NlMsghdr
-pkg syscall (linux-arm-cgo), type NlMsghdr struct
-pkg syscall (linux-arm-cgo), type NlMsghdr struct, Flags uint16
-pkg syscall (linux-arm-cgo), type NlMsghdr struct, Len uint32
-pkg syscall (linux-arm-cgo), type NlMsghdr struct, Pid uint32
-pkg syscall (linux-arm-cgo), type NlMsghdr struct, Seq uint32
-pkg syscall (linux-arm-cgo), type NlMsghdr struct, Type uint16
-pkg syscall (linux-arm-cgo), type PtraceRegs struct
-pkg syscall (linux-arm-cgo), type PtraceRegs struct, Uregs [18]uint32
-pkg syscall (linux-arm-cgo), type RawSockaddr struct, Data [14]uint8
-pkg syscall (linux-arm-cgo), type RawSockaddr struct, Family uint16
-pkg syscall (linux-arm-cgo), type RawSockaddrAny struct, Pad [96]uint8
-pkg syscall (linux-arm-cgo), type RawSockaddrInet4 struct, Family uint16
-pkg syscall (linux-arm-cgo), type RawSockaddrInet4 struct, Zero [8]uint8
-pkg syscall (linux-arm-cgo), type RawSockaddrInet6 struct, Family uint16
-pkg syscall (linux-arm-cgo), type RawSockaddrLinklayer struct
-pkg syscall (linux-arm-cgo), type RawSockaddrLinklayer struct, Addr [8]uint8
-pkg syscall (linux-arm-cgo), type RawSockaddrLinklayer struct, Family uint16
-pkg syscall (linux-arm-cgo), type RawSockaddrLinklayer struct, Halen uint8
-pkg syscall (linux-arm-cgo), type RawSockaddrLinklayer struct, Hatype uint16
-pkg syscall (linux-arm-cgo), type RawSockaddrLinklayer struct, Ifindex int32
-pkg syscall (linux-arm-cgo), type RawSockaddrLinklayer struct, Pkttype uint8
-pkg syscall (linux-arm-cgo), type RawSockaddrLinklayer struct, Protocol uint16
-pkg syscall (linux-arm-cgo), type RawSockaddrNetlink struct
-pkg syscall (linux-arm-cgo), type RawSockaddrNetlink struct, Family uint16
-pkg syscall (linux-arm-cgo), type RawSockaddrNetlink struct, Groups uint32
-pkg syscall (linux-arm-cgo), type RawSockaddrNetlink struct, Pad uint16
-pkg syscall (linux-arm-cgo), type RawSockaddrNetlink struct, Pid uint32
-pkg syscall (linux-arm-cgo), type RawSockaddrUnix struct
-pkg syscall (linux-arm-cgo), type RawSockaddrUnix struct, Family uint16
-pkg syscall (linux-arm-cgo), type RawSockaddrUnix struct, Path [108]int8
-pkg syscall (linux-arm-cgo), type Rlimit struct
-pkg syscall (linux-arm-cgo), type Rlimit struct, Cur uint64
-pkg syscall (linux-arm-cgo), type Rlimit struct, Max uint64
-pkg syscall (linux-arm-cgo), type RtAttr struct
-pkg syscall (linux-arm-cgo), type RtAttr struct, Len uint16
-pkg syscall (linux-arm-cgo), type RtAttr struct, Type uint16
-pkg syscall (linux-arm-cgo), type RtGenmsg struct
-pkg syscall (linux-arm-cgo), type RtGenmsg struct, Family uint8
-pkg syscall (linux-arm-cgo), type RtMsg struct
-pkg syscall (linux-arm-cgo), type RtMsg struct, Dst_len uint8
-pkg syscall (linux-arm-cgo), type RtMsg struct, Family uint8
-pkg syscall (linux-arm-cgo), type RtMsg struct, Flags uint32
-pkg syscall (linux-arm-cgo), type RtMsg struct, Protocol uint8
-pkg syscall (linux-arm-cgo), type RtMsg struct, Scope uint8
-pkg syscall (linux-arm-cgo), type RtMsg struct, Src_len uint8
-pkg syscall (linux-arm-cgo), type RtMsg struct, Table uint8
-pkg syscall (linux-arm-cgo), type RtMsg struct, Tos uint8
-pkg syscall (linux-arm-cgo), type RtMsg struct, Type uint8
-pkg syscall (linux-arm-cgo), type RtNexthop struct
-pkg syscall (linux-arm-cgo), type RtNexthop struct, Flags uint8
-pkg syscall (linux-arm-cgo), type RtNexthop struct, Hops uint8
-pkg syscall (linux-arm-cgo), type RtNexthop struct, Ifindex int32
-pkg syscall (linux-arm-cgo), type RtNexthop struct, Len uint16
-pkg syscall (linux-arm-cgo), type Rusage struct, Idrss int32
-pkg syscall (linux-arm-cgo), type Rusage struct, Inblock int32
-pkg syscall (linux-arm-cgo), type Rusage struct, Isrss int32
-pkg syscall (linux-arm-cgo), type Rusage struct, Ixrss int32
-pkg syscall (linux-arm-cgo), type Rusage struct, Majflt int32
-pkg syscall (linux-arm-cgo), type Rusage struct, Maxrss int32
-pkg syscall (linux-arm-cgo), type Rusage struct, Minflt int32
-pkg syscall (linux-arm-cgo), type Rusage struct, Msgrcv int32
-pkg syscall (linux-arm-cgo), type Rusage struct, Msgsnd int32
-pkg syscall (linux-arm-cgo), type Rusage struct, Nivcsw int32
-pkg syscall (linux-arm-cgo), type Rusage struct, Nsignals int32
-pkg syscall (linux-arm-cgo), type Rusage struct, Nswap int32
-pkg syscall (linux-arm-cgo), type Rusage struct, Nvcsw int32
-pkg syscall (linux-arm-cgo), type Rusage struct, Oublock int32
-pkg syscall (linux-arm-cgo), type Rusage struct, Stime Timeval
-pkg syscall (linux-arm-cgo), type Rusage struct, Utime Timeval
-pkg syscall (linux-arm-cgo), type SockFilter struct
-pkg syscall (linux-arm-cgo), type SockFilter struct, Code uint16
-pkg syscall (linux-arm-cgo), type SockFilter struct, Jf uint8
-pkg syscall (linux-arm-cgo), type SockFilter struct, Jt uint8
-pkg syscall (linux-arm-cgo), type SockFilter struct, K uint32
-pkg syscall (linux-arm-cgo), type SockFprog struct
-pkg syscall (linux-arm-cgo), type SockFprog struct, Filter *SockFilter
-pkg syscall (linux-arm-cgo), type SockFprog struct, Len uint16
-pkg syscall (linux-arm-cgo), type SockFprog struct, Pad_cgo_0 [2]uint8
-pkg syscall (linux-arm-cgo), type SockaddrLinklayer struct
-pkg syscall (linux-arm-cgo), type SockaddrLinklayer struct, Addr [8]uint8
-pkg syscall (linux-arm-cgo), type SockaddrLinklayer struct, Halen uint8
-pkg syscall (linux-arm-cgo), type SockaddrLinklayer struct, Hatype uint16
-pkg syscall (linux-arm-cgo), type SockaddrLinklayer struct, Ifindex int
-pkg syscall (linux-arm-cgo), type SockaddrLinklayer struct, Pkttype uint8
-pkg syscall (linux-arm-cgo), type SockaddrLinklayer struct, Protocol uint16
-pkg syscall (linux-arm-cgo), type SockaddrNetlink struct
-pkg syscall (linux-arm-cgo), type SockaddrNetlink struct, Family uint16
-pkg syscall (linux-arm-cgo), type SockaddrNetlink struct, Groups uint32
-pkg syscall (linux-arm-cgo), type SockaddrNetlink struct, Pad uint16
-pkg syscall (linux-arm-cgo), type SockaddrNetlink struct, Pid uint32
-pkg syscall (linux-arm-cgo), type SocketControlMessage struct
-pkg syscall (linux-arm-cgo), type SocketControlMessage struct, Data []uint8
-pkg syscall (linux-arm-cgo), type SocketControlMessage struct, Header Cmsghdr
-pkg syscall (linux-arm-cgo), type Stat_t struct
-pkg syscall (linux-arm-cgo), type Stat_t struct, Atim Timespec
-pkg syscall (linux-arm-cgo), type Stat_t struct, Blksize int32
-pkg syscall (linux-arm-cgo), type Stat_t struct, Blocks int64
-pkg syscall (linux-arm-cgo), type Stat_t struct, Ctim Timespec
-pkg syscall (linux-arm-cgo), type Stat_t struct, Dev uint64
-pkg syscall (linux-arm-cgo), type Stat_t struct, Gid uint32
-pkg syscall (linux-arm-cgo), type Stat_t struct, Ino uint64
-pkg syscall (linux-arm-cgo), type Stat_t struct, Mode uint32
-pkg syscall (linux-arm-cgo), type Stat_t struct, Mtim Timespec
-pkg syscall (linux-arm-cgo), type Stat_t struct, Nlink uint32
-pkg syscall (linux-arm-cgo), type Stat_t struct, Pad_cgo_0 [2]uint8
-pkg syscall (linux-arm-cgo), type Stat_t struct, Pad_cgo_1 [6]uint8
-pkg syscall (linux-arm-cgo), type Stat_t struct, Pad_cgo_2 [4]uint8
-pkg syscall (linux-arm-cgo), type Stat_t struct, Rdev uint64
-pkg syscall (linux-arm-cgo), type Stat_t struct, Size int64
-pkg syscall (linux-arm-cgo), type Stat_t struct, Uid uint32
-pkg syscall (linux-arm-cgo), type Stat_t struct, X__pad1 uint16
-pkg syscall (linux-arm-cgo), type Stat_t struct, X__pad2 uint16
-pkg syscall (linux-arm-cgo), type Stat_t struct, X__st_ino uint32
-pkg syscall (linux-arm-cgo), type Statfs_t struct
-pkg syscall (linux-arm-cgo), type Statfs_t struct, Bavail uint64
-pkg syscall (linux-arm-cgo), type Statfs_t struct, Bfree uint64
-pkg syscall (linux-arm-cgo), type Statfs_t struct, Blocks uint64
-pkg syscall (linux-arm-cgo), type Statfs_t struct, Bsize int32
-pkg syscall (linux-arm-cgo), type Statfs_t struct, Ffree uint64
-pkg syscall (linux-arm-cgo), type Statfs_t struct, Files uint64
-pkg syscall (linux-arm-cgo), type Statfs_t struct, Flags int32
-pkg syscall (linux-arm-cgo), type Statfs_t struct, Frsize int32
-pkg syscall (linux-arm-cgo), type Statfs_t struct, Fsid Fsid
-pkg syscall (linux-arm-cgo), type Statfs_t struct, Namelen int32
-pkg syscall (linux-arm-cgo), type Statfs_t struct, Pad_cgo_0 [4]uint8
-pkg syscall (linux-arm-cgo), type Statfs_t struct, Spare [4]int32
-pkg syscall (linux-arm-cgo), type Statfs_t struct, Type int32
-pkg syscall (linux-arm-cgo), type SysProcAttr struct, Chroot string
-pkg syscall (linux-arm-cgo), type SysProcAttr struct, Cloneflags uintptr
-pkg syscall (linux-arm-cgo), type SysProcAttr struct, Credential *Credential
-pkg syscall (linux-arm-cgo), type SysProcAttr struct, Ctty int
-pkg syscall (linux-arm-cgo), type SysProcAttr struct, Noctty bool
-pkg syscall (linux-arm-cgo), type SysProcAttr struct, Pdeathsig Signal
-pkg syscall (linux-arm-cgo), type SysProcAttr struct, Ptrace bool
-pkg syscall (linux-arm-cgo), type SysProcAttr struct, Setctty bool
-pkg syscall (linux-arm-cgo), type SysProcAttr struct, Setpgid bool
-pkg syscall (linux-arm-cgo), type SysProcAttr struct, Setsid bool
-pkg syscall (linux-arm-cgo), type Sysinfo_t struct
-pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Bufferram uint32
-pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Freehigh uint32
-pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Freeram uint32
-pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Freeswap uint32
-pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Loads [3]uint32
-pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Pad uint16
-pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Procs uint16
-pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Sharedram uint32
-pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Totalhigh uint32
-pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Totalram uint32
-pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Totalswap uint32
-pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Unit uint32
-pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Uptime int32
-pkg syscall (linux-arm-cgo), type Sysinfo_t struct, X_f [8]uint8
-pkg syscall (linux-arm-cgo), type TCPInfo struct
-pkg syscall (linux-arm-cgo), type TCPInfo struct, Advmss uint32
-pkg syscall (linux-arm-cgo), type TCPInfo struct, Ato uint32
-pkg syscall (linux-arm-cgo), type TCPInfo struct, Backoff uint8
-pkg syscall (linux-arm-cgo), type TCPInfo struct, Ca_state uint8
-pkg syscall (linux-arm-cgo), type TCPInfo struct, Fackets uint32
-pkg syscall (linux-arm-cgo), type TCPInfo struct, Last_ack_recv uint32
-pkg syscall (linux-arm-cgo), type TCPInfo struct, Last_ack_sent uint32
-pkg syscall (linux-arm-cgo), type TCPInfo struct, Last_data_recv uint32
-pkg syscall (linux-arm-cgo), type TCPInfo struct, Last_data_sent uint32
-pkg syscall (linux-arm-cgo), type TCPInfo struct, Lost uint32
-pkg syscall (linux-arm-cgo), type TCPInfo struct, Options uint8
-pkg syscall (linux-arm-cgo), type TCPInfo struct, Pad_cgo_0 [2]uint8
-pkg syscall (linux-arm-cgo), type TCPInfo struct, Pmtu uint32
-pkg syscall (linux-arm-cgo), type TCPInfo struct, Probes uint8
-pkg syscall (linux-arm-cgo), type TCPInfo struct, Rcv_mss uint32
-pkg syscall (linux-arm-cgo), type TCPInfo struct, Rcv_rtt uint32
-pkg syscall (linux-arm-cgo), type TCPInfo struct, Rcv_space uint32
-pkg syscall (linux-arm-cgo), type TCPInfo struct, Rcv_ssthresh uint32
-pkg syscall (linux-arm-cgo), type TCPInfo struct, Reordering uint32
-pkg syscall (linux-arm-cgo), type TCPInfo struct, Retrans uint32
-pkg syscall (linux-arm-cgo), type TCPInfo struct, Retransmits uint8
-pkg syscall (linux-arm-cgo), type TCPInfo struct, Rto uint32
-pkg syscall (linux-arm-cgo), type TCPInfo struct, Rtt uint32
-pkg syscall (linux-arm-cgo), type TCPInfo struct, Rttvar uint32
-pkg syscall (linux-arm-cgo), type TCPInfo struct, Sacked uint32
-pkg syscall (linux-arm-cgo), type TCPInfo struct, Snd_cwnd uint32
-pkg syscall (linux-arm-cgo), type TCPInfo struct, Snd_mss uint32
-pkg syscall (linux-arm-cgo), type TCPInfo struct, Snd_ssthresh uint32
-pkg syscall (linux-arm-cgo), type TCPInfo struct, State uint8
-pkg syscall (linux-arm-cgo), type TCPInfo struct, Total_retrans uint32
-pkg syscall (linux-arm-cgo), type TCPInfo struct, Unacked uint32
-pkg syscall (linux-arm-cgo), type Termios struct
-pkg syscall (linux-arm-cgo), type Termios struct, Cc [32]uint8
-pkg syscall (linux-arm-cgo), type Termios struct, Cflag uint32
-pkg syscall (linux-arm-cgo), type Termios struct, Iflag uint32
-pkg syscall (linux-arm-cgo), type Termios struct, Ispeed uint32
-pkg syscall (linux-arm-cgo), type Termios struct, Lflag uint32
-pkg syscall (linux-arm-cgo), type Termios struct, Line uint8
-pkg syscall (linux-arm-cgo), type Termios struct, Oflag uint32
-pkg syscall (linux-arm-cgo), type Termios struct, Ospeed uint32
-pkg syscall (linux-arm-cgo), type Termios struct, Pad_cgo_0 [3]uint8
-pkg syscall (linux-arm-cgo), type Time_t int32
-pkg syscall (linux-arm-cgo), type Timespec struct, Nsec int32
-pkg syscall (linux-arm-cgo), type Timespec struct, Sec int32
-pkg syscall (linux-arm-cgo), type Timeval struct, Sec int32
-pkg syscall (linux-arm-cgo), type Timeval struct, Usec int32
-pkg syscall (linux-arm-cgo), type Timex struct
-pkg syscall (linux-arm-cgo), type Timex struct, Calcnt int32
-pkg syscall (linux-arm-cgo), type Timex struct, Constant int32
-pkg syscall (linux-arm-cgo), type Timex struct, Errcnt int32
-pkg syscall (linux-arm-cgo), type Timex struct, Esterror int32
-pkg syscall (linux-arm-cgo), type Timex struct, Freq int32
-pkg syscall (linux-arm-cgo), type Timex struct, Jitcnt int32
-pkg syscall (linux-arm-cgo), type Timex struct, Jitter int32
-pkg syscall (linux-arm-cgo), type Timex struct, Maxerror int32
-pkg syscall (linux-arm-cgo), type Timex struct, Modes uint32
-pkg syscall (linux-arm-cgo), type Timex struct, Offset int32
-pkg syscall (linux-arm-cgo), type Timex struct, Pad_cgo_0 [44]uint8
-pkg syscall (linux-arm-cgo), type Timex struct, Ppsfreq int32
-pkg syscall (linux-arm-cgo), type Timex struct, Precision int32
-pkg syscall (linux-arm-cgo), type Timex struct, Shift int32
-pkg syscall (linux-arm-cgo), type Timex struct, Stabil int32
-pkg syscall (linux-arm-cgo), type Timex struct, Status int32
-pkg syscall (linux-arm-cgo), type Timex struct, Stbcnt int32
-pkg syscall (linux-arm-cgo), type Timex struct, Tai int32
-pkg syscall (linux-arm-cgo), type Timex struct, Tick int32
-pkg syscall (linux-arm-cgo), type Timex struct, Time Timeval
-pkg syscall (linux-arm-cgo), type Timex struct, Tolerance int32
-pkg syscall (linux-arm-cgo), type Tms struct
-pkg syscall (linux-arm-cgo), type Tms struct, Cstime int32
-pkg syscall (linux-arm-cgo), type Tms struct, Cutime int32
-pkg syscall (linux-arm-cgo), type Tms struct, Stime int32
-pkg syscall (linux-arm-cgo), type Tms struct, Utime int32
-pkg syscall (linux-arm-cgo), type Ucred struct
-pkg syscall (linux-arm-cgo), type Ucred struct, Gid uint32
-pkg syscall (linux-arm-cgo), type Ucred struct, Pid int32
-pkg syscall (linux-arm-cgo), type Ucred struct, Uid uint32
-pkg syscall (linux-arm-cgo), type Ustat_t struct
-pkg syscall (linux-arm-cgo), type Ustat_t struct, Fname [6]uint8
-pkg syscall (linux-arm-cgo), type Ustat_t struct, Fpack [6]uint8
-pkg syscall (linux-arm-cgo), type Ustat_t struct, Tfree int32
-pkg syscall (linux-arm-cgo), type Ustat_t struct, Tinode uint32
-pkg syscall (linux-arm-cgo), type Utimbuf struct
-pkg syscall (linux-arm-cgo), type Utimbuf struct, Actime int32
-pkg syscall (linux-arm-cgo), type Utimbuf struct, Modtime int32
-pkg syscall (linux-arm-cgo), type Utsname struct
-pkg syscall (linux-arm-cgo), type Utsname struct, Domainname [65]uint8
-pkg syscall (linux-arm-cgo), type Utsname struct, Machine [65]uint8
-pkg syscall (linux-arm-cgo), type Utsname struct, Nodename [65]uint8
-pkg syscall (linux-arm-cgo), type Utsname struct, Release [65]uint8
-pkg syscall (linux-arm-cgo), type Utsname struct, Sysname [65]uint8
-pkg syscall (linux-arm-cgo), type Utsname struct, Version [65]uint8
-pkg syscall (linux-arm-cgo), type WaitStatus uint32
-pkg syscall (linux-arm-cgo), var Stderr int
-pkg syscall (linux-arm-cgo), var Stdin int
-pkg syscall (linux-arm-cgo), var Stdout int
-pkg syscall (netbsd-386), const AF_APPLETALK ideal-int
-pkg syscall (netbsd-386), const AF_ARP ideal-int
-pkg syscall (netbsd-386), const AF_BLUETOOTH ideal-int
-pkg syscall (netbsd-386), const AF_CCITT ideal-int
-pkg syscall (netbsd-386), const AF_CHAOS ideal-int
-pkg syscall (netbsd-386), const AF_CNT ideal-int
-pkg syscall (netbsd-386), const AF_COIP ideal-int
-pkg syscall (netbsd-386), const AF_DATAKIT ideal-int
-pkg syscall (netbsd-386), const AF_DECnet ideal-int
-pkg syscall (netbsd-386), const AF_DLI ideal-int
-pkg syscall (netbsd-386), const AF_E164 ideal-int
-pkg syscall (netbsd-386), const AF_ECMA ideal-int
-pkg syscall (netbsd-386), const AF_HYLINK ideal-int
-pkg syscall (netbsd-386), const AF_IEEE80211 ideal-int
-pkg syscall (netbsd-386), const AF_IMPLINK ideal-int
-pkg syscall (netbsd-386), const AF_IPX ideal-int
-pkg syscall (netbsd-386), const AF_ISDN ideal-int
-pkg syscall (netbsd-386), const AF_ISO ideal-int
-pkg syscall (netbsd-386), const AF_LAT ideal-int
-pkg syscall (netbsd-386), const AF_LINK ideal-int
-pkg syscall (netbsd-386), const AF_LOCAL ideal-int
-pkg syscall (netbsd-386), const AF_MAX ideal-int
-pkg syscall (netbsd-386), const AF_MPLS ideal-int
-pkg syscall (netbsd-386), const AF_NATM ideal-int
-pkg syscall (netbsd-386), const AF_NS ideal-int
-pkg syscall (netbsd-386), const AF_OROUTE ideal-int
-pkg syscall (netbsd-386), const AF_OSI ideal-int
-pkg syscall (netbsd-386), const AF_PUP ideal-int
-pkg syscall (netbsd-386), const AF_ROUTE ideal-int
-pkg syscall (netbsd-386), const AF_SNA ideal-int
-pkg syscall (netbsd-386), const ARPHRD_ARCNET ideal-int
-pkg syscall (netbsd-386), const ARPHRD_ETHER ideal-int
-pkg syscall (netbsd-386), const ARPHRD_FRELAY ideal-int
-pkg syscall (netbsd-386), const ARPHRD_IEEE1394 ideal-int
-pkg syscall (netbsd-386), const ARPHRD_IEEE802 ideal-int
-pkg syscall (netbsd-386), const ARPHRD_STRIP ideal-int
-pkg syscall (netbsd-386), const B0 ideal-int
-pkg syscall (netbsd-386), const B110 ideal-int
-pkg syscall (netbsd-386), const B115200 ideal-int
-pkg syscall (netbsd-386), const B1200 ideal-int
-pkg syscall (netbsd-386), const B134 ideal-int
-pkg syscall (netbsd-386), const B14400 ideal-int
-pkg syscall (netbsd-386), const B150 ideal-int
-pkg syscall (netbsd-386), const B1800 ideal-int
-pkg syscall (netbsd-386), const B19200 ideal-int
-pkg syscall (netbsd-386), const B200 ideal-int
-pkg syscall (netbsd-386), const B230400 ideal-int
-pkg syscall (netbsd-386), const B2400 ideal-int
-pkg syscall (netbsd-386), const B28800 ideal-int
-pkg syscall (netbsd-386), const B300 ideal-int
-pkg syscall (netbsd-386), const B38400 ideal-int
-pkg syscall (netbsd-386), const B460800 ideal-int
-pkg syscall (netbsd-386), const B4800 ideal-int
-pkg syscall (netbsd-386), const B50 ideal-int
-pkg syscall (netbsd-386), const B57600 ideal-int
-pkg syscall (netbsd-386), const B600 ideal-int
-pkg syscall (netbsd-386), const B7200 ideal-int
-pkg syscall (netbsd-386), const B75 ideal-int
-pkg syscall (netbsd-386), const B76800 ideal-int
-pkg syscall (netbsd-386), const B921600 ideal-int
-pkg syscall (netbsd-386), const B9600 ideal-int
-pkg syscall (netbsd-386), const BIOCFEEDBACK ideal-int
-pkg syscall (netbsd-386), const BIOCFLUSH ideal-int
-pkg syscall (netbsd-386), const BIOCGBLEN ideal-int
-pkg syscall (netbsd-386), const BIOCGDLT ideal-int
-pkg syscall (netbsd-386), const BIOCGDLTLIST ideal-int
-pkg syscall (netbsd-386), const BIOCGETIF ideal-int
-pkg syscall (netbsd-386), const BIOCGFEEDBACK ideal-int
-pkg syscall (netbsd-386), const BIOCGHDRCMPLT ideal-int
-pkg syscall (netbsd-386), const BIOCGRTIMEOUT ideal-int
-pkg syscall (netbsd-386), const BIOCGSEESENT ideal-int
-pkg syscall (netbsd-386), const BIOCGSTATS ideal-int
-pkg syscall (netbsd-386), const BIOCGSTATSOLD ideal-int
-pkg syscall (netbsd-386), const BIOCIMMEDIATE ideal-int
-pkg syscall (netbsd-386), const BIOCPROMISC ideal-int
-pkg syscall (netbsd-386), const BIOCSBLEN ideal-int
-pkg syscall (netbsd-386), const BIOCSDLT ideal-int
-pkg syscall (netbsd-386), const BIOCSETF ideal-int
-pkg syscall (netbsd-386), const BIOCSETIF ideal-int
-pkg syscall (netbsd-386), const BIOCSFEEDBACK ideal-int
-pkg syscall (netbsd-386), const BIOCSHDRCMPLT ideal-int
-pkg syscall (netbsd-386), const BIOCSRTIMEOUT ideal-int
-pkg syscall (netbsd-386), const BIOCSSEESENT ideal-int
-pkg syscall (netbsd-386), const BIOCSTCPF ideal-int
-pkg syscall (netbsd-386), const BIOCSUDPF ideal-int
-pkg syscall (netbsd-386), const BIOCVERSION ideal-int
-pkg syscall (netbsd-386), const BPF_A ideal-int
-pkg syscall (netbsd-386), const BPF_ABS ideal-int
-pkg syscall (netbsd-386), const BPF_ADD ideal-int
-pkg syscall (netbsd-386), const BPF_ALIGNMENT ideal-int
-pkg syscall (netbsd-386), const BPF_ALIGNMENT32 ideal-int
-pkg syscall (netbsd-386), const BPF_ALU ideal-int
-pkg syscall (netbsd-386), const BPF_AND ideal-int
-pkg syscall (netbsd-386), const BPF_B ideal-int
-pkg syscall (netbsd-386), const BPF_DFLTBUFSIZE ideal-int
-pkg syscall (netbsd-386), const BPF_DIV ideal-int
-pkg syscall (netbsd-386), const BPF_H ideal-int
-pkg syscall (netbsd-386), const BPF_IMM ideal-int
-pkg syscall (netbsd-386), const BPF_IND ideal-int
-pkg syscall (netbsd-386), const BPF_JA ideal-int
-pkg syscall (netbsd-386), const BPF_JEQ ideal-int
-pkg syscall (netbsd-386), const BPF_JGE ideal-int
-pkg syscall (netbsd-386), const BPF_JGT ideal-int
-pkg syscall (netbsd-386), const BPF_JMP ideal-int
-pkg syscall (netbsd-386), const BPF_JSET ideal-int
-pkg syscall (netbsd-386), const BPF_K ideal-int
-pkg syscall (netbsd-386), const BPF_LD ideal-int
-pkg syscall (netbsd-386), const BPF_LDX ideal-int
-pkg syscall (netbsd-386), const BPF_LEN ideal-int
-pkg syscall (netbsd-386), const BPF_LSH ideal-int
-pkg syscall (netbsd-386), const BPF_MAJOR_VERSION ideal-int
-pkg syscall (netbsd-386), const BPF_MAXBUFSIZE ideal-int
-pkg syscall (netbsd-386), const BPF_MAXINSNS ideal-int
-pkg syscall (netbsd-386), const BPF_MEM ideal-int
-pkg syscall (netbsd-386), const BPF_MEMWORDS ideal-int
-pkg syscall (netbsd-386), const BPF_MINBUFSIZE ideal-int
-pkg syscall (netbsd-386), const BPF_MINOR_VERSION ideal-int
-pkg syscall (netbsd-386), const BPF_MISC ideal-int
-pkg syscall (netbsd-386), const BPF_MSH ideal-int
-pkg syscall (netbsd-386), const BPF_MUL ideal-int
-pkg syscall (netbsd-386), const BPF_NEG ideal-int
-pkg syscall (netbsd-386), const BPF_OR ideal-int
-pkg syscall (netbsd-386), const BPF_RELEASE ideal-int
-pkg syscall (netbsd-386), const BPF_RET ideal-int
-pkg syscall (netbsd-386), const BPF_RSH ideal-int
-pkg syscall (netbsd-386), const BPF_ST ideal-int
-pkg syscall (netbsd-386), const BPF_STX ideal-int
-pkg syscall (netbsd-386), const BPF_SUB ideal-int
-pkg syscall (netbsd-386), const BPF_TAX ideal-int
-pkg syscall (netbsd-386), const BPF_TXA ideal-int
-pkg syscall (netbsd-386), const BPF_W ideal-int
-pkg syscall (netbsd-386), const BPF_X ideal-int
-pkg syscall (netbsd-386), const BRKINT ideal-int
-pkg syscall (netbsd-386), const CFLUSH ideal-int
-pkg syscall (netbsd-386), const CLOCAL ideal-int
-pkg syscall (netbsd-386), const CREAD ideal-int
-pkg syscall (netbsd-386), const CS5 ideal-int
-pkg syscall (netbsd-386), const CS6 ideal-int
-pkg syscall (netbsd-386), const CS7 ideal-int
-pkg syscall (netbsd-386), const CS8 ideal-int
-pkg syscall (netbsd-386), const CSIZE ideal-int
-pkg syscall (netbsd-386), const CSTART ideal-int
-pkg syscall (netbsd-386), const CSTATUS ideal-int
-pkg syscall (netbsd-386), const CSTOP ideal-int
-pkg syscall (netbsd-386), const CSTOPB ideal-int
-pkg syscall (netbsd-386), const CSUSP ideal-int
-pkg syscall (netbsd-386), const CTL_MAXNAME ideal-int
-pkg syscall (netbsd-386), const CTL_NET ideal-int
-pkg syscall (netbsd-386), const CTL_QUERY ideal-int
-pkg syscall (netbsd-386), const DIOCBSFLUSH ideal-int
-pkg syscall (netbsd-386), const DLT_A429 ideal-int
-pkg syscall (netbsd-386), const DLT_A653_ICM ideal-int
-pkg syscall (netbsd-386), const DLT_AIRONET_HEADER ideal-int
-pkg syscall (netbsd-386), const DLT_AOS ideal-int
-pkg syscall (netbsd-386), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int
-pkg syscall (netbsd-386), const DLT_ARCNET ideal-int
-pkg syscall (netbsd-386), const DLT_ARCNET_LINUX ideal-int
-pkg syscall (netbsd-386), const DLT_ATM_CLIP ideal-int
-pkg syscall (netbsd-386), const DLT_ATM_RFC1483 ideal-int
-pkg syscall (netbsd-386), const DLT_AURORA ideal-int
-pkg syscall (netbsd-386), const DLT_AX25 ideal-int
-pkg syscall (netbsd-386), const DLT_AX25_KISS ideal-int
-pkg syscall (netbsd-386), const DLT_BACNET_MS_TP ideal-int
-pkg syscall (netbsd-386), const DLT_BLUETOOTH_HCI_H4 ideal-int
-pkg syscall (netbsd-386), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR ideal-int
-pkg syscall (netbsd-386), const DLT_CAN20B ideal-int
-pkg syscall (netbsd-386), const DLT_CAN_SOCKETCAN ideal-int
-pkg syscall (netbsd-386), const DLT_CHAOS ideal-int
-pkg syscall (netbsd-386), const DLT_CISCO_IOS ideal-int
-pkg syscall (netbsd-386), const DLT_C_HDLC ideal-int
-pkg syscall (netbsd-386), const DLT_C_HDLC_WITH_DIR ideal-int
-pkg syscall (netbsd-386), const DLT_DECT ideal-int
-pkg syscall (netbsd-386), const DLT_DOCSIS ideal-int
-pkg syscall (netbsd-386), const DLT_ECONET ideal-int
-pkg syscall (netbsd-386), const DLT_EN10MB ideal-int
-pkg syscall (netbsd-386), const DLT_EN3MB ideal-int
-pkg syscall (netbsd-386), const DLT_ENC ideal-int
-pkg syscall (netbsd-386), const DLT_ERF ideal-int
-pkg syscall (netbsd-386), const DLT_ERF_ETH ideal-int
-pkg syscall (netbsd-386), const DLT_ERF_POS ideal-int
-pkg syscall (netbsd-386), const DLT_FC_2 ideal-int
-pkg syscall (netbsd-386), const DLT_FC_2_WITH_FRAME_DELIMS ideal-int
-pkg syscall (netbsd-386), const DLT_FDDI ideal-int
-pkg syscall (netbsd-386), const DLT_FLEXRAY ideal-int
-pkg syscall (netbsd-386), const DLT_FRELAY ideal-int
-pkg syscall (netbsd-386), const DLT_FRELAY_WITH_DIR ideal-int
-pkg syscall (netbsd-386), const DLT_GCOM_SERIAL ideal-int
-pkg syscall (netbsd-386), const DLT_GCOM_T1E1 ideal-int
-pkg syscall (netbsd-386), const DLT_GPF_F ideal-int
-pkg syscall (netbsd-386), const DLT_GPF_T ideal-int
-pkg syscall (netbsd-386), const DLT_GPRS_LLC ideal-int
-pkg syscall (netbsd-386), const DLT_GSMTAP_ABIS ideal-int
-pkg syscall (netbsd-386), const DLT_GSMTAP_UM ideal-int
-pkg syscall (netbsd-386), const DLT_HDLC ideal-int
-pkg syscall (netbsd-386), const DLT_HHDLC ideal-int
-pkg syscall (netbsd-386), const DLT_HIPPI ideal-int
-pkg syscall (netbsd-386), const DLT_IBM_SN ideal-int
-pkg syscall (netbsd-386), const DLT_IBM_SP ideal-int
-pkg syscall (netbsd-386), const DLT_IEEE802 ideal-int
-pkg syscall (netbsd-386), const DLT_IEEE802_11 ideal-int
-pkg syscall (netbsd-386), const DLT_IEEE802_11_RADIO ideal-int
-pkg syscall (netbsd-386), const DLT_IEEE802_11_RADIO_AVS ideal-int
-pkg syscall (netbsd-386), const DLT_IEEE802_15_4 ideal-int
-pkg syscall (netbsd-386), const DLT_IEEE802_15_4_LINUX ideal-int
-pkg syscall (netbsd-386), const DLT_IEEE802_15_4_NONASK_PHY ideal-int
-pkg syscall (netbsd-386), const DLT_IEEE802_16_MAC_CPS ideal-int
-pkg syscall (netbsd-386), const DLT_IEEE802_16_MAC_CPS_RADIO ideal-int
-pkg syscall (netbsd-386), const DLT_IPMB ideal-int
-pkg syscall (netbsd-386), const DLT_IPMB_LINUX ideal-int
-pkg syscall (netbsd-386), const DLT_IPNET ideal-int
-pkg syscall (netbsd-386), const DLT_IPV4 ideal-int
-pkg syscall (netbsd-386), const DLT_IPV6 ideal-int
-pkg syscall (netbsd-386), const DLT_IP_OVER_FC ideal-int
-pkg syscall (netbsd-386), const DLT_JUNIPER_ATM1 ideal-int
-pkg syscall (netbsd-386), const DLT_JUNIPER_ATM2 ideal-int
-pkg syscall (netbsd-386), const DLT_JUNIPER_CHDLC ideal-int
-pkg syscall (netbsd-386), const DLT_JUNIPER_ES ideal-int
-pkg syscall (netbsd-386), const DLT_JUNIPER_ETHER ideal-int
-pkg syscall (netbsd-386), const DLT_JUNIPER_FRELAY ideal-int
-pkg syscall (netbsd-386), const DLT_JUNIPER_GGSN ideal-int
-pkg syscall (netbsd-386), const DLT_JUNIPER_ISM ideal-int
-pkg syscall (netbsd-386), const DLT_JUNIPER_MFR ideal-int
-pkg syscall (netbsd-386), const DLT_JUNIPER_MLFR ideal-int
-pkg syscall (netbsd-386), const DLT_JUNIPER_MLPPP ideal-int
-pkg syscall (netbsd-386), const DLT_JUNIPER_MONITOR ideal-int
-pkg syscall (netbsd-386), const DLT_JUNIPER_PIC_PEER ideal-int
-pkg syscall (netbsd-386), const DLT_JUNIPER_PPP ideal-int
-pkg syscall (netbsd-386), const DLT_JUNIPER_PPPOE ideal-int
-pkg syscall (netbsd-386), const DLT_JUNIPER_PPPOE_ATM ideal-int
-pkg syscall (netbsd-386), const DLT_JUNIPER_SERVICES ideal-int
-pkg syscall (netbsd-386), const DLT_JUNIPER_ST ideal-int
-pkg syscall (netbsd-386), const DLT_JUNIPER_VP ideal-int
-pkg syscall (netbsd-386), const DLT_LAPB_WITH_DIR ideal-int
-pkg syscall (netbsd-386), const DLT_LAPD ideal-int
-pkg syscall (netbsd-386), const DLT_LIN ideal-int
-pkg syscall (netbsd-386), const DLT_LINUX_EVDEV ideal-int
-pkg syscall (netbsd-386), const DLT_LINUX_IRDA ideal-int
-pkg syscall (netbsd-386), const DLT_LINUX_LAPD ideal-int
-pkg syscall (netbsd-386), const DLT_LINUX_SLL ideal-int
-pkg syscall (netbsd-386), const DLT_LOOP ideal-int
-pkg syscall (netbsd-386), const DLT_LTALK ideal-int
-pkg syscall (netbsd-386), const DLT_MFR ideal-int
-pkg syscall (netbsd-386), const DLT_MOST ideal-int
-pkg syscall (netbsd-386), const DLT_MPLS ideal-int
-pkg syscall (netbsd-386), const DLT_MTP2 ideal-int
-pkg syscall (netbsd-386), const DLT_MTP2_WITH_PHDR ideal-int
-pkg syscall (netbsd-386), const DLT_MTP3 ideal-int
-pkg syscall (netbsd-386), const DLT_NULL ideal-int
-pkg syscall (netbsd-386), const DLT_PCI_EXP ideal-int
-pkg syscall (netbsd-386), const DLT_PFLOG ideal-int
-pkg syscall (netbsd-386), const DLT_PFSYNC ideal-int
-pkg syscall (netbsd-386), const DLT_PPI ideal-int
-pkg syscall (netbsd-386), const DLT_PPP ideal-int
-pkg syscall (netbsd-386), const DLT_PPP_BSDOS ideal-int
-pkg syscall (netbsd-386), const DLT_PPP_ETHER ideal-int
-pkg syscall (netbsd-386), const DLT_PPP_PPPD ideal-int
-pkg syscall (netbsd-386), const DLT_PPP_SERIAL ideal-int
-pkg syscall (netbsd-386), const DLT_PPP_WITH_DIR ideal-int
-pkg syscall (netbsd-386), const DLT_PRISM_HEADER ideal-int
-pkg syscall (netbsd-386), const DLT_PRONET ideal-int
-pkg syscall (netbsd-386), const DLT_RAIF1 ideal-int
-pkg syscall (netbsd-386), const DLT_RAW ideal-int
-pkg syscall (netbsd-386), const DLT_RAWAF_MASK ideal-int
-pkg syscall (netbsd-386), const DLT_RIO ideal-int
-pkg syscall (netbsd-386), const DLT_SCCP ideal-int
-pkg syscall (netbsd-386), const DLT_SITA ideal-int
-pkg syscall (netbsd-386), const DLT_SLIP ideal-int
-pkg syscall (netbsd-386), const DLT_SLIP_BSDOS ideal-int
-pkg syscall (netbsd-386), const DLT_SUNATM ideal-int
-pkg syscall (netbsd-386), const DLT_SYMANTEC_FIREWALL ideal-int
-pkg syscall (netbsd-386), const DLT_TZSP ideal-int
-pkg syscall (netbsd-386), const DLT_USB ideal-int
-pkg syscall (netbsd-386), const DLT_USB_LINUX ideal-int
-pkg syscall (netbsd-386), const DLT_USB_LINUX_MMAPPED ideal-int
-pkg syscall (netbsd-386), const DLT_WIHART ideal-int
-pkg syscall (netbsd-386), const DLT_X2E_SERIAL ideal-int
-pkg syscall (netbsd-386), const DLT_X2E_XORAYA ideal-int
-pkg syscall (netbsd-386), const DT_BLK ideal-int
-pkg syscall (netbsd-386), const DT_CHR ideal-int
-pkg syscall (netbsd-386), const DT_DIR ideal-int
-pkg syscall (netbsd-386), const DT_FIFO ideal-int
-pkg syscall (netbsd-386), const DT_LNK ideal-int
-pkg syscall (netbsd-386), const DT_REG ideal-int
-pkg syscall (netbsd-386), const DT_SOCK ideal-int
-pkg syscall (netbsd-386), const DT_UNKNOWN ideal-int
-pkg syscall (netbsd-386), const DT_WHT ideal-int
-pkg syscall (netbsd-386), const EAUTH Errno
-pkg syscall (netbsd-386), const EBADMSG Errno
-pkg syscall (netbsd-386), const EBADRPC Errno
-pkg syscall (netbsd-386), const ECHO ideal-int
-pkg syscall (netbsd-386), const ECHOCTL ideal-int
-pkg syscall (netbsd-386), const ECHOE ideal-int
-pkg syscall (netbsd-386), const ECHOK ideal-int
-pkg syscall (netbsd-386), const ECHOKE ideal-int
-pkg syscall (netbsd-386), const ECHONL ideal-int
-pkg syscall (netbsd-386), const ECHOPRT ideal-int
-pkg syscall (netbsd-386), const EFTYPE Errno
-pkg syscall (netbsd-386), const ELAST Errno
-pkg syscall (netbsd-386), const EMULTIHOP Errno
-pkg syscall (netbsd-386), const EMUL_LINUX ideal-int
-pkg syscall (netbsd-386), const EMUL_LINUX32 ideal-int
-pkg syscall (netbsd-386), const EMUL_MAXID ideal-int
-pkg syscall (netbsd-386), const ENEEDAUTH Errno
-pkg syscall (netbsd-386), const ENOATTR Errno
-pkg syscall (netbsd-386), const ENODATA Errno
-pkg syscall (netbsd-386), const ENOLINK Errno
-pkg syscall (netbsd-386), const ENOSR Errno
-pkg syscall (netbsd-386), const ENOSTR Errno
-pkg syscall (netbsd-386), const EN_SW_CTL_INF ideal-int
-pkg syscall (netbsd-386), const EN_SW_CTL_PREC ideal-int
-pkg syscall (netbsd-386), const EN_SW_CTL_ROUND ideal-int
-pkg syscall (netbsd-386), const EN_SW_DATACHAIN ideal-int
-pkg syscall (netbsd-386), const EN_SW_DENORM ideal-int
-pkg syscall (netbsd-386), const EN_SW_INVOP ideal-int
-pkg syscall (netbsd-386), const EN_SW_OVERFLOW ideal-int
-pkg syscall (netbsd-386), const EN_SW_PRECLOSS ideal-int
-pkg syscall (netbsd-386), const EN_SW_UNDERFLOW ideal-int
-pkg syscall (netbsd-386), const EN_SW_ZERODIV ideal-int
-pkg syscall (netbsd-386), const EPROCLIM Errno
-pkg syscall (netbsd-386), const EPROCUNAVAIL Errno
-pkg syscall (netbsd-386), const EPROGMISMATCH Errno
-pkg syscall (netbsd-386), const EPROGUNAVAIL Errno
-pkg syscall (netbsd-386), const EPROTO Errno
-pkg syscall (netbsd-386), const ERPCMISMATCH Errno
-pkg syscall (netbsd-386), const ETHERCAP_JUMBO_MTU ideal-int
-pkg syscall (netbsd-386), const ETHERCAP_VLAN_HWTAGGING ideal-int
-pkg syscall (netbsd-386), const ETHERCAP_VLAN_MTU ideal-int
-pkg syscall (netbsd-386), const ETHERMIN ideal-int
-pkg syscall (netbsd-386), const ETHERMTU ideal-int
-pkg syscall (netbsd-386), const ETHERMTU_JUMBO ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_8023 ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_AARP ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_ACCTON ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_AEONIC ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_ALPHA ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_AMBER ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_AMOEBA ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_APOLLO ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_APOLLODOMAIN ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_APPLETALK ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_APPLITEK ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_ARGONAUT ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_ARP ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_AT ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_ATALK ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_ATOMIC ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_ATT ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_ATTSTANFORD ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_AUTOPHON ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_AXIS ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_BCLOOP ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_BOFL ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_CABLETRON ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_CHAOS ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_COMDESIGN ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_COMPUGRAPHIC ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_COUNTERPOINT ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_CRONUS ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_CRONUSVLN ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_DCA ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_DDE ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_DEBNI ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_DECAM ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_DECCUST ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_DECDIAG ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_DECDNS ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_DECDTS ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_DECEXPER ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_DECLAST ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_DECLTM ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_DECMUMPS ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_DECNETBIOS ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_DELTACON ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_DIDDLE ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_DLOG1 ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_DLOG2 ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_DN ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_DOGFIGHT ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_DSMD ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_ECMA ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_ENCRYPT ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_ES ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_EXCELAN ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_EXPERDATA ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_FLIP ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_FLOWCONTROL ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_FRARP ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_GENDYN ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_HAYES ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_HIPPI_FP ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_HITACHI ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_HP ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_IEEEPUP ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_IEEEPUPAT ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_IMLBL ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_IMLBLDIAG ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_IP ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_IPAS ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_IPV6 ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_IPX ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_IPXNEW ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_KALPANA ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_LANBRIDGE ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_LANPROBE ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_LAT ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_LBACK ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_LITTLE ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_LOGICRAFT ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_LOOPBACK ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_MATRA ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_MAX ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_MERIT ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_MICP ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_MOPDL ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_MOPRC ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_MOTOROLA ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_MPLS ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_MPLS_MCAST ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_MUMPS ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_NBPCC ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_NBPCLAIM ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_NBPCLREQ ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_NBPCLRSP ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_NBPCREQ ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_NBPCRSP ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_NBPDG ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_NBPDGB ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_NBPDLTE ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_NBPRAR ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_NBPRAS ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_NBPRST ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_NBPSCD ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_NBPVCD ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_NBS ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_NCD ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_NESTAR ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_NETBEUI ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_NOVELL ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_NS ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_NSAT ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_NSCOMPAT ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_NTRAILER ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_OS9 ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_OS9NET ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_PACER ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_PAE ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_PCS ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_PLANNING ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_PPP ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_PPPOE ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_PPPOEDISC ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_PRIMENTS ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_PUP ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_PUPAT ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_RACAL ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_RATIONAL ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_RAWFR ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_RCL ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_RDP ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_RETIX ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_REVARP ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_SCA ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_SECTRA ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_SECUREDATA ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_SGITW ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_SG_BOUNCE ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_SG_DIAG ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_SG_NETGAMES ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_SG_RESV ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_SIMNET ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_SLOWPROTOCOLS ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_SNA ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_SNMP ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_SONIX ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_SPIDER ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_SPRITE ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_STP ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_TALARIS ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_TALARISMC ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_TCPCOMP ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_TCPSM ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_TEC ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_TIGAN ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_TRAIL ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_TRANSETHER ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_TYMSHARE ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_UBBST ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_UBDEBUG ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_UBDIAGLOOP ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_UBDL ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_UBNIU ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_UBNMC ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_VALID ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_VARIAN ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_VAXELN ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_VEECO ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_VEXP ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_VGLAB ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_VINES ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_VINESECHO ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_VINESLOOP ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_VITAL ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_VLAN ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_VLTLMAN ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_VPROD ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_VURESERVED ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_WATERLOO ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_WELLFLEET ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_X25 ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_X75 ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_XNSSM ideal-int
-pkg syscall (netbsd-386), const ETHERTYPE_XTP ideal-int
-pkg syscall (netbsd-386), const ETHER_ADDR_LEN ideal-int
-pkg syscall (netbsd-386), const ETHER_CRC_LEN ideal-int
-pkg syscall (netbsd-386), const ETHER_CRC_POLY_BE ideal-int
-pkg syscall (netbsd-386), const ETHER_CRC_POLY_LE ideal-int
-pkg syscall (netbsd-386), const ETHER_HDR_LEN ideal-int
-pkg syscall (netbsd-386), const ETHER_MAX_LEN ideal-int
-pkg syscall (netbsd-386), const ETHER_MAX_LEN_JUMBO ideal-int
-pkg syscall (netbsd-386), const ETHER_MIN_LEN ideal-int
-pkg syscall (netbsd-386), const ETHER_PPPOE_ENCAP_LEN ideal-int
-pkg syscall (netbsd-386), const ETHER_TYPE_LEN ideal-int
-pkg syscall (netbsd-386), const ETHER_VLAN_ENCAP_LEN ideal-int
-pkg syscall (netbsd-386), const ETIME Errno
-pkg syscall (netbsd-386), const EVFILT_AIO ideal-int
-pkg syscall (netbsd-386), const EVFILT_PROC ideal-int
-pkg syscall (netbsd-386), const EVFILT_READ ideal-int
-pkg syscall (netbsd-386), const EVFILT_SIGNAL ideal-int
-pkg syscall (netbsd-386), const EVFILT_SYSCOUNT ideal-int
-pkg syscall (netbsd-386), const EVFILT_TIMER ideal-int
-pkg syscall (netbsd-386), const EVFILT_VNODE ideal-int
-pkg syscall (netbsd-386), const EVFILT_WRITE ideal-int
-pkg syscall (netbsd-386), const EV_ADD ideal-int
-pkg syscall (netbsd-386), const EV_CLEAR ideal-int
-pkg syscall (netbsd-386), const EV_DELETE ideal-int
-pkg syscall (netbsd-386), const EV_DISABLE ideal-int
-pkg syscall (netbsd-386), const EV_ENABLE ideal-int
-pkg syscall (netbsd-386), const EV_EOF ideal-int
-pkg syscall (netbsd-386), const EV_ERROR ideal-int
-pkg syscall (netbsd-386), const EV_FLAG1 ideal-int
-pkg syscall (netbsd-386), const EV_ONESHOT ideal-int
-pkg syscall (netbsd-386), const EV_SYSFLAGS ideal-int
-pkg syscall (netbsd-386), const EXTA ideal-int
-pkg syscall (netbsd-386), const EXTB ideal-int
-pkg syscall (netbsd-386), const EXTPROC ideal-int
-pkg syscall (netbsd-386), const FD_CLOEXEC ideal-int
-pkg syscall (netbsd-386), const FD_SETSIZE ideal-int
-pkg syscall (netbsd-386), const FLUSHO ideal-int
-pkg syscall (netbsd-386), const F_CLOSEM ideal-int
-pkg syscall (netbsd-386), const F_DUPFD ideal-int
-pkg syscall (netbsd-386), const F_DUPFD_CLOEXEC ideal-int
-pkg syscall (netbsd-386), const F_FSCTL ideal-int
-pkg syscall (netbsd-386), const F_FSDIRMASK ideal-int
-pkg syscall (netbsd-386), const F_FSIN ideal-int
-pkg syscall (netbsd-386), const F_FSINOUT ideal-int
-pkg syscall (netbsd-386), const F_FSOUT ideal-int
-pkg syscall (netbsd-386), const F_FSPRIV ideal-int
-pkg syscall (netbsd-386), const F_FSVOID ideal-int
-pkg syscall (netbsd-386), const F_GETFD ideal-int
-pkg syscall (netbsd-386), const F_GETFL ideal-int
-pkg syscall (netbsd-386), const F_GETLK ideal-int
-pkg syscall (netbsd-386), const F_GETNOSIGPIPE ideal-int
-pkg syscall (netbsd-386), const F_GETOWN ideal-int
-pkg syscall (netbsd-386), const F_MAXFD ideal-int
-pkg syscall (netbsd-386), const F_OK ideal-int
-pkg syscall (netbsd-386), const F_PARAM_MASK ideal-int
-pkg syscall (netbsd-386), const F_PARAM_MAX ideal-int
-pkg syscall (netbsd-386), const F_RDLCK ideal-int
-pkg syscall (netbsd-386), const F_SETFD ideal-int
-pkg syscall (netbsd-386), const F_SETFL ideal-int
-pkg syscall (netbsd-386), const F_SETLK ideal-int
-pkg syscall (netbsd-386), const F_SETLKW ideal-int
-pkg syscall (netbsd-386), const F_SETNOSIGPIPE ideal-int
-pkg syscall (netbsd-386), const F_SETOWN ideal-int
-pkg syscall (netbsd-386), const F_UNLCK ideal-int
-pkg syscall (netbsd-386), const F_WRLCK ideal-int
-pkg syscall (netbsd-386), const HUPCL ideal-int
-pkg syscall (netbsd-386), const ICANON ideal-int
-pkg syscall (netbsd-386), const ICMP6_FILTER = 18
-pkg syscall (netbsd-386), const ICMP6_FILTER ideal-int
-pkg syscall (netbsd-386), const ICRNL ideal-int
-pkg syscall (netbsd-386), const IEXTEN ideal-int
-pkg syscall (netbsd-386), const IFAN_ARRIVAL ideal-int
-pkg syscall (netbsd-386), const IFAN_DEPARTURE ideal-int
-pkg syscall (netbsd-386), const IFA_ROUTE ideal-int
-pkg syscall (netbsd-386), const IFF_ALLMULTI ideal-int
-pkg syscall (netbsd-386), const IFF_CANTCHANGE ideal-int
-pkg syscall (netbsd-386), const IFF_DEBUG ideal-int
-pkg syscall (netbsd-386), const IFF_LINK0 ideal-int
-pkg syscall (netbsd-386), const IFF_LINK1 ideal-int
-pkg syscall (netbsd-386), const IFF_LINK2 ideal-int
-pkg syscall (netbsd-386), const IFF_NOARP ideal-int
-pkg syscall (netbsd-386), const IFF_NOTRAILERS ideal-int
-pkg syscall (netbsd-386), const IFF_OACTIVE ideal-int
-pkg syscall (netbsd-386), const IFF_POINTOPOINT ideal-int
-pkg syscall (netbsd-386), const IFF_PROMISC ideal-int
-pkg syscall (netbsd-386), const IFF_RUNNING ideal-int
-pkg syscall (netbsd-386), const IFF_SIMPLEX ideal-int
-pkg syscall (netbsd-386), const IFNAMSIZ ideal-int
-pkg syscall (netbsd-386), const IFT_1822 ideal-int
-pkg syscall (netbsd-386), const IFT_A12MPPSWITCH ideal-int
-pkg syscall (netbsd-386), const IFT_AAL2 ideal-int
-pkg syscall (netbsd-386), const IFT_AAL5 ideal-int
-pkg syscall (netbsd-386), const IFT_ADSL ideal-int
-pkg syscall (netbsd-386), const IFT_AFLANE8023 ideal-int
-pkg syscall (netbsd-386), const IFT_AFLANE8025 ideal-int
-pkg syscall (netbsd-386), const IFT_ARAP ideal-int
-pkg syscall (netbsd-386), const IFT_ARCNET ideal-int
-pkg syscall (netbsd-386), const IFT_ARCNETPLUS ideal-int
-pkg syscall (netbsd-386), const IFT_ASYNC ideal-int
-pkg syscall (netbsd-386), const IFT_ATM ideal-int
-pkg syscall (netbsd-386), const IFT_ATMDXI ideal-int
-pkg syscall (netbsd-386), const IFT_ATMFUNI ideal-int
-pkg syscall (netbsd-386), const IFT_ATMIMA ideal-int
-pkg syscall (netbsd-386), const IFT_ATMLOGICAL ideal-int
-pkg syscall (netbsd-386), const IFT_ATMRADIO ideal-int
-pkg syscall (netbsd-386), const IFT_ATMSUBINTERFACE ideal-int
-pkg syscall (netbsd-386), const IFT_ATMVCIENDPT ideal-int
-pkg syscall (netbsd-386), const IFT_ATMVIRTUAL ideal-int
-pkg syscall (netbsd-386), const IFT_BGPPOLICYACCOUNTING ideal-int
-pkg syscall (netbsd-386), const IFT_BRIDGE ideal-int
-pkg syscall (netbsd-386), const IFT_BSC ideal-int
-pkg syscall (netbsd-386), const IFT_CARP ideal-int
-pkg syscall (netbsd-386), const IFT_CCTEMUL ideal-int
-pkg syscall (netbsd-386), const IFT_CEPT ideal-int
-pkg syscall (netbsd-386), const IFT_CES ideal-int
-pkg syscall (netbsd-386), const IFT_CHANNEL ideal-int
-pkg syscall (netbsd-386), const IFT_CNR ideal-int
-pkg syscall (netbsd-386), const IFT_COFFEE ideal-int
-pkg syscall (netbsd-386), const IFT_COMPOSITELINK ideal-int
-pkg syscall (netbsd-386), const IFT_DCN ideal-int
-pkg syscall (netbsd-386), const IFT_DIGITALPOWERLINE ideal-int
-pkg syscall (netbsd-386), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int
-pkg syscall (netbsd-386), const IFT_DLSW ideal-int
-pkg syscall (netbsd-386), const IFT_DOCSCABLEDOWNSTREAM ideal-int
-pkg syscall (netbsd-386), const IFT_DOCSCABLEMACLAYER ideal-int
-pkg syscall (netbsd-386), const IFT_DOCSCABLEUPSTREAM ideal-int
-pkg syscall (netbsd-386), const IFT_DOCSCABLEUPSTREAMCHANNEL ideal-int
-pkg syscall (netbsd-386), const IFT_DS0 ideal-int
-pkg syscall (netbsd-386), const IFT_DS0BUNDLE ideal-int
-pkg syscall (netbsd-386), const IFT_DS1FDL ideal-int
-pkg syscall (netbsd-386), const IFT_DS3 ideal-int
-pkg syscall (netbsd-386), const IFT_DTM ideal-int
-pkg syscall (netbsd-386), const IFT_DVBASILN ideal-int
-pkg syscall (netbsd-386), const IFT_DVBASIOUT ideal-int
-pkg syscall (netbsd-386), const IFT_DVBRCCDOWNSTREAM ideal-int
-pkg syscall (netbsd-386), const IFT_DVBRCCMACLAYER ideal-int
-pkg syscall (netbsd-386), const IFT_DVBRCCUPSTREAM ideal-int
-pkg syscall (netbsd-386), const IFT_ECONET ideal-int
-pkg syscall (netbsd-386), const IFT_EON ideal-int
-pkg syscall (netbsd-386), const IFT_EPLRS ideal-int
-pkg syscall (netbsd-386), const IFT_ESCON ideal-int
-pkg syscall (netbsd-386), const IFT_ETHER ideal-int
-pkg syscall (netbsd-386), const IFT_FAITH ideal-int
-pkg syscall (netbsd-386), const IFT_FAST ideal-int
-pkg syscall (netbsd-386), const IFT_FASTETHER ideal-int
-pkg syscall (netbsd-386), const IFT_FASTETHERFX ideal-int
-pkg syscall (netbsd-386), const IFT_FDDI ideal-int
-pkg syscall (netbsd-386), const IFT_FIBRECHANNEL ideal-int
-pkg syscall (netbsd-386), const IFT_FRAMERELAYINTERCONNECT ideal-int
-pkg syscall (netbsd-386), const IFT_FRAMERELAYMPI ideal-int
-pkg syscall (netbsd-386), const IFT_FRDLCIENDPT ideal-int
-pkg syscall (netbsd-386), const IFT_FRELAY ideal-int
-pkg syscall (netbsd-386), const IFT_FRELAYDCE ideal-int
-pkg syscall (netbsd-386), const IFT_FRF16MFRBUNDLE ideal-int
-pkg syscall (netbsd-386), const IFT_FRFORWARD ideal-int
-pkg syscall (netbsd-386), const IFT_G703AT2MB ideal-int
-pkg syscall (netbsd-386), const IFT_G703AT64K ideal-int
-pkg syscall (netbsd-386), const IFT_GIF ideal-int
-pkg syscall (netbsd-386), const IFT_GIGABITETHERNET ideal-int
-pkg syscall (netbsd-386), const IFT_GR303IDT ideal-int
-pkg syscall (netbsd-386), const IFT_GR303RDT ideal-int
-pkg syscall (netbsd-386), const IFT_H323GATEKEEPER ideal-int
-pkg syscall (netbsd-386), const IFT_H323PROXY ideal-int
-pkg syscall (netbsd-386), const IFT_HDH1822 ideal-int
-pkg syscall (netbsd-386), const IFT_HDLC ideal-int
-pkg syscall (netbsd-386), const IFT_HDSL2 ideal-int
-pkg syscall (netbsd-386), const IFT_HIPERLAN2 ideal-int
-pkg syscall (netbsd-386), const IFT_HIPPI ideal-int
-pkg syscall (netbsd-386), const IFT_HIPPIINTERFACE ideal-int
-pkg syscall (netbsd-386), const IFT_HOSTPAD ideal-int
-pkg syscall (netbsd-386), const IFT_HSSI ideal-int
-pkg syscall (netbsd-386), const IFT_HY ideal-int
-pkg syscall (netbsd-386), const IFT_IBM370PARCHAN ideal-int
-pkg syscall (netbsd-386), const IFT_IDSL ideal-int
-pkg syscall (netbsd-386), const IFT_IEEE1394 ideal-int
-pkg syscall (netbsd-386), const IFT_IEEE80211 ideal-int
-pkg syscall (netbsd-386), const IFT_IEEE80212 ideal-int
-pkg syscall (netbsd-386), const IFT_IEEE8023ADLAG ideal-int
-pkg syscall (netbsd-386), const IFT_IFGSN ideal-int
-pkg syscall (netbsd-386), const IFT_IMT ideal-int
-pkg syscall (netbsd-386), const IFT_INFINIBAND ideal-int
-pkg syscall (netbsd-386), const IFT_INTERLEAVE ideal-int
-pkg syscall (netbsd-386), const IFT_IP ideal-int
-pkg syscall (netbsd-386), const IFT_IPFORWARD ideal-int
-pkg syscall (netbsd-386), const IFT_IPOVERATM ideal-int
-pkg syscall (netbsd-386), const IFT_IPOVERCDLC ideal-int
-pkg syscall (netbsd-386), const IFT_IPOVERCLAW ideal-int
-pkg syscall (netbsd-386), const IFT_IPSWITCH ideal-int
-pkg syscall (netbsd-386), const IFT_ISDN ideal-int
-pkg syscall (netbsd-386), const IFT_ISDNBASIC ideal-int
-pkg syscall (netbsd-386), const IFT_ISDNPRIMARY ideal-int
-pkg syscall (netbsd-386), const IFT_ISDNS ideal-int
-pkg syscall (netbsd-386), const IFT_ISDNU ideal-int
-pkg syscall (netbsd-386), const IFT_ISO88022LLC ideal-int
-pkg syscall (netbsd-386), const IFT_ISO88023 ideal-int
-pkg syscall (netbsd-386), const IFT_ISO88024 ideal-int
-pkg syscall (netbsd-386), const IFT_ISO88025 ideal-int
-pkg syscall (netbsd-386), const IFT_ISO88025CRFPINT ideal-int
-pkg syscall (netbsd-386), const IFT_ISO88025DTR ideal-int
-pkg syscall (netbsd-386), const IFT_ISO88025FIBER ideal-int
-pkg syscall (netbsd-386), const IFT_ISO88026 ideal-int
-pkg syscall (netbsd-386), const IFT_ISUP ideal-int
-pkg syscall (netbsd-386), const IFT_L2VLAN ideal-int
-pkg syscall (netbsd-386), const IFT_L3IPVLAN ideal-int
-pkg syscall (netbsd-386), const IFT_L3IPXVLAN ideal-int
-pkg syscall (netbsd-386), const IFT_LAPB ideal-int
-pkg syscall (netbsd-386), const IFT_LAPD ideal-int
-pkg syscall (netbsd-386), const IFT_LAPF ideal-int
-pkg syscall (netbsd-386), const IFT_LINEGROUP ideal-int
-pkg syscall (netbsd-386), const IFT_LOCALTALK ideal-int
-pkg syscall (netbsd-386), const IFT_LOOP ideal-int
-pkg syscall (netbsd-386), const IFT_MEDIAMAILOVERIP ideal-int
-pkg syscall (netbsd-386), const IFT_MFSIGLINK ideal-int
-pkg syscall (netbsd-386), const IFT_MIOX25 ideal-int
-pkg syscall (netbsd-386), const IFT_MODEM ideal-int
-pkg syscall (netbsd-386), const IFT_MPC ideal-int
-pkg syscall (netbsd-386), const IFT_MPLS ideal-int
-pkg syscall (netbsd-386), const IFT_MPLSTUNNEL ideal-int
-pkg syscall (netbsd-386), const IFT_MSDSL ideal-int
-pkg syscall (netbsd-386), const IFT_MVL ideal-int
-pkg syscall (netbsd-386), const IFT_MYRINET ideal-int
-pkg syscall (netbsd-386), const IFT_NFAS ideal-int
-pkg syscall (netbsd-386), const IFT_NSIP ideal-int
-pkg syscall (netbsd-386), const IFT_OPTICALCHANNEL ideal-int
-pkg syscall (netbsd-386), const IFT_OPTICALTRANSPORT ideal-int
-pkg syscall (netbsd-386), const IFT_OTHER ideal-int
-pkg syscall (netbsd-386), const IFT_P10 ideal-int
-pkg syscall (netbsd-386), const IFT_P80 ideal-int
-pkg syscall (netbsd-386), const IFT_PARA ideal-int
-pkg syscall (netbsd-386), const IFT_PFLOG ideal-int
-pkg syscall (netbsd-386), const IFT_PFSYNC ideal-int
-pkg syscall (netbsd-386), const IFT_PLC ideal-int
-pkg syscall (netbsd-386), const IFT_PON155 ideal-int
-pkg syscall (netbsd-386), const IFT_PON622 ideal-int
-pkg syscall (netbsd-386), const IFT_POS ideal-int
-pkg syscall (netbsd-386), const IFT_PPP ideal-int
-pkg syscall (netbsd-386), const IFT_PPPMULTILINKBUNDLE ideal-int
-pkg syscall (netbsd-386), const IFT_PROPATM ideal-int
-pkg syscall (netbsd-386), const IFT_PROPBWAP2MP ideal-int
-pkg syscall (netbsd-386), const IFT_PROPCNLS ideal-int
-pkg syscall (netbsd-386), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int
-pkg syscall (netbsd-386), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int
-pkg syscall (netbsd-386), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int
-pkg syscall (netbsd-386), const IFT_PROPMUX ideal-int
-pkg syscall (netbsd-386), const IFT_PROPVIRTUAL ideal-int
-pkg syscall (netbsd-386), const IFT_PROPWIRELESSP2P ideal-int
-pkg syscall (netbsd-386), const IFT_PTPSERIAL ideal-int
-pkg syscall (netbsd-386), const IFT_PVC ideal-int
-pkg syscall (netbsd-386), const IFT_Q2931 ideal-int
-pkg syscall (netbsd-386), const IFT_QLLC ideal-int
-pkg syscall (netbsd-386), const IFT_RADIOMAC ideal-int
-pkg syscall (netbsd-386), const IFT_RADSL ideal-int
-pkg syscall (netbsd-386), const IFT_REACHDSL ideal-int
-pkg syscall (netbsd-386), const IFT_RFC1483 ideal-int
-pkg syscall (netbsd-386), const IFT_RS232 ideal-int
-pkg syscall (netbsd-386), const IFT_RSRB ideal-int
-pkg syscall (netbsd-386), const IFT_SDLC ideal-int
-pkg syscall (netbsd-386), const IFT_SDSL ideal-int
-pkg syscall (netbsd-386), const IFT_SHDSL ideal-int
-pkg syscall (netbsd-386), const IFT_SIP ideal-int
-pkg syscall (netbsd-386), const IFT_SIPSIG ideal-int
-pkg syscall (netbsd-386), const IFT_SIPTG ideal-int
-pkg syscall (netbsd-386), const IFT_SLIP ideal-int
-pkg syscall (netbsd-386), const IFT_SMDSDXI ideal-int
-pkg syscall (netbsd-386), const IFT_SMDSICIP ideal-int
-pkg syscall (netbsd-386), const IFT_SONET ideal-int
-pkg syscall (netbsd-386), const IFT_SONETOVERHEADCHANNEL ideal-int
-pkg syscall (netbsd-386), const IFT_SONETPATH ideal-int
-pkg syscall (netbsd-386), const IFT_SONETVT ideal-int
-pkg syscall (netbsd-386), const IFT_SRP ideal-int
-pkg syscall (netbsd-386), const IFT_SS7SIGLINK ideal-int
-pkg syscall (netbsd-386), const IFT_STACKTOSTACK ideal-int
-pkg syscall (netbsd-386), const IFT_STARLAN ideal-int
-pkg syscall (netbsd-386), const IFT_STF ideal-int
-pkg syscall (netbsd-386), const IFT_T1 ideal-int
-pkg syscall (netbsd-386), const IFT_TDLC ideal-int
-pkg syscall (netbsd-386), const IFT_TELINK ideal-int
-pkg syscall (netbsd-386), const IFT_TERMPAD ideal-int
-pkg syscall (netbsd-386), const IFT_TR008 ideal-int
-pkg syscall (netbsd-386), const IFT_TRANSPHDLC ideal-int
-pkg syscall (netbsd-386), const IFT_TUNNEL ideal-int
-pkg syscall (netbsd-386), const IFT_ULTRA ideal-int
-pkg syscall (netbsd-386), const IFT_USB ideal-int
-pkg syscall (netbsd-386), const IFT_V11 ideal-int
-pkg syscall (netbsd-386), const IFT_V35 ideal-int
-pkg syscall (netbsd-386), const IFT_V36 ideal-int
-pkg syscall (netbsd-386), const IFT_V37 ideal-int
-pkg syscall (netbsd-386), const IFT_VDSL ideal-int
-pkg syscall (netbsd-386), const IFT_VIRTUALIPADDRESS ideal-int
-pkg syscall (netbsd-386), const IFT_VIRTUALTG ideal-int
-pkg syscall (netbsd-386), const IFT_VOICEDID ideal-int
-pkg syscall (netbsd-386), const IFT_VOICEEM ideal-int
-pkg syscall (netbsd-386), const IFT_VOICEEMFGD ideal-int
-pkg syscall (netbsd-386), const IFT_VOICEENCAP ideal-int
-pkg syscall (netbsd-386), const IFT_VOICEFGDEANA ideal-int
-pkg syscall (netbsd-386), const IFT_VOICEFXO ideal-int
-pkg syscall (netbsd-386), const IFT_VOICEFXS ideal-int
-pkg syscall (netbsd-386), const IFT_VOICEOVERATM ideal-int
-pkg syscall (netbsd-386), const IFT_VOICEOVERCABLE ideal-int
-pkg syscall (netbsd-386), const IFT_VOICEOVERFRAMERELAY ideal-int
-pkg syscall (netbsd-386), const IFT_VOICEOVERIP ideal-int
-pkg syscall (netbsd-386), const IFT_X213 ideal-int
-pkg syscall (netbsd-386), const IFT_X25 ideal-int
-pkg syscall (netbsd-386), const IFT_X25DDN ideal-int
-pkg syscall (netbsd-386), const IFT_X25HUNTGROUP ideal-int
-pkg syscall (netbsd-386), const IFT_X25MLP ideal-int
-pkg syscall (netbsd-386), const IFT_X25PLE ideal-int
-pkg syscall (netbsd-386), const IFT_XETHER ideal-int
-pkg syscall (netbsd-386), const IGNBRK ideal-int
-pkg syscall (netbsd-386), const IGNCR ideal-int
-pkg syscall (netbsd-386), const IGNPAR ideal-int
-pkg syscall (netbsd-386), const IMAXBEL ideal-int
-pkg syscall (netbsd-386), const INLCR ideal-int
-pkg syscall (netbsd-386), const INPCK ideal-int
-pkg syscall (netbsd-386), const IN_CLASSA_HOST ideal-int
-pkg syscall (netbsd-386), const IN_CLASSA_MAX ideal-int
-pkg syscall (netbsd-386), const IN_CLASSA_NET ideal-int
-pkg syscall (netbsd-386), const IN_CLASSA_NSHIFT ideal-int
-pkg syscall (netbsd-386), const IN_CLASSB_HOST ideal-int
-pkg syscall (netbsd-386), const IN_CLASSB_MAX ideal-int
-pkg syscall (netbsd-386), const IN_CLASSB_NET ideal-int
-pkg syscall (netbsd-386), const IN_CLASSB_NSHIFT ideal-int
-pkg syscall (netbsd-386), const IN_CLASSC_HOST ideal-int
-pkg syscall (netbsd-386), const IN_CLASSC_NET ideal-int
-pkg syscall (netbsd-386), const IN_CLASSC_NSHIFT ideal-int
-pkg syscall (netbsd-386), const IN_CLASSD_HOST ideal-int
-pkg syscall (netbsd-386), const IN_CLASSD_NET ideal-int
-pkg syscall (netbsd-386), const IN_CLASSD_NSHIFT ideal-int
-pkg syscall (netbsd-386), const IN_LOOPBACKNET ideal-int
-pkg syscall (netbsd-386), const IPPROTO_AH ideal-int
-pkg syscall (netbsd-386), const IPPROTO_CARP ideal-int
-pkg syscall (netbsd-386), const IPPROTO_DONE ideal-int
-pkg syscall (netbsd-386), const IPPROTO_DSTOPTS ideal-int
-pkg syscall (netbsd-386), const IPPROTO_EGP ideal-int
-pkg syscall (netbsd-386), const IPPROTO_ENCAP ideal-int
-pkg syscall (netbsd-386), const IPPROTO_EON ideal-int
-pkg syscall (netbsd-386), const IPPROTO_ESP ideal-int
-pkg syscall (netbsd-386), const IPPROTO_ETHERIP ideal-int
-pkg syscall (netbsd-386), const IPPROTO_FRAGMENT ideal-int
-pkg syscall (netbsd-386), const IPPROTO_GGP ideal-int
-pkg syscall (netbsd-386), const IPPROTO_GRE ideal-int
-pkg syscall (netbsd-386), const IPPROTO_HOPOPTS ideal-int
-pkg syscall (netbsd-386), const IPPROTO_ICMP ideal-int
-pkg syscall (netbsd-386), const IPPROTO_ICMPV6 ideal-int
-pkg syscall (netbsd-386), const IPPROTO_IDP ideal-int
-pkg syscall (netbsd-386), const IPPROTO_IGMP ideal-int
-pkg syscall (netbsd-386), const IPPROTO_IPCOMP ideal-int
-pkg syscall (netbsd-386), const IPPROTO_IPIP ideal-int
-pkg syscall (netbsd-386), const IPPROTO_IPV4 ideal-int
-pkg syscall (netbsd-386), const IPPROTO_IPV6_ICMP ideal-int
-pkg syscall (netbsd-386), const IPPROTO_MAX ideal-int
-pkg syscall (netbsd-386), const IPPROTO_MAXID ideal-int
-pkg syscall (netbsd-386), const IPPROTO_MOBILE ideal-int
-pkg syscall (netbsd-386), const IPPROTO_NONE ideal-int
-pkg syscall (netbsd-386), const IPPROTO_PFSYNC ideal-int
-pkg syscall (netbsd-386), const IPPROTO_PIM ideal-int
-pkg syscall (netbsd-386), const IPPROTO_PUP ideal-int
-pkg syscall (netbsd-386), const IPPROTO_RAW ideal-int
-pkg syscall (netbsd-386), const IPPROTO_ROUTING ideal-int
-pkg syscall (netbsd-386), const IPPROTO_RSVP ideal-int
-pkg syscall (netbsd-386), const IPPROTO_TP ideal-int
-pkg syscall (netbsd-386), const IPPROTO_VRRP ideal-int
-pkg syscall (netbsd-386), const IPV6_CHECKSUM ideal-int
-pkg syscall (netbsd-386), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int
-pkg syscall (netbsd-386), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int
-pkg syscall (netbsd-386), const IPV6_DEFHLIM ideal-int
-pkg syscall (netbsd-386), const IPV6_DONTFRAG ideal-int
-pkg syscall (netbsd-386), const IPV6_DSTOPTS ideal-int
-pkg syscall (netbsd-386), const IPV6_FAITH ideal-int
-pkg syscall (netbsd-386), const IPV6_FLOWINFO_MASK ideal-int
-pkg syscall (netbsd-386), const IPV6_FLOWLABEL_MASK ideal-int
-pkg syscall (netbsd-386), const IPV6_FRAGTTL ideal-int
-pkg syscall (netbsd-386), const IPV6_HLIMDEC ideal-int
-pkg syscall (netbsd-386), const IPV6_HOPLIMIT ideal-int
-pkg syscall (netbsd-386), const IPV6_HOPOPTS ideal-int
-pkg syscall (netbsd-386), const IPV6_IPSEC_POLICY ideal-int
-pkg syscall (netbsd-386), const IPV6_MAXHLIM ideal-int
-pkg syscall (netbsd-386), const IPV6_MAXPACKET ideal-int
-pkg syscall (netbsd-386), const IPV6_MMTU ideal-int
-pkg syscall (netbsd-386), const IPV6_NEXTHOP ideal-int
-pkg syscall (netbsd-386), const IPV6_PATHMTU ideal-int
-pkg syscall (netbsd-386), const IPV6_PKTINFO ideal-int
-pkg syscall (netbsd-386), const IPV6_PORTRANGE ideal-int
-pkg syscall (netbsd-386), const IPV6_PORTRANGE_DEFAULT ideal-int
-pkg syscall (netbsd-386), const IPV6_PORTRANGE_HIGH ideal-int
-pkg syscall (netbsd-386), const IPV6_PORTRANGE_LOW ideal-int
-pkg syscall (netbsd-386), const IPV6_RECVDSTOPTS ideal-int
-pkg syscall (netbsd-386), const IPV6_RECVHOPLIMIT ideal-int
-pkg syscall (netbsd-386), const IPV6_RECVHOPOPTS ideal-int
-pkg syscall (netbsd-386), const IPV6_RECVPATHMTU ideal-int
-pkg syscall (netbsd-386), const IPV6_RECVPKTINFO ideal-int
-pkg syscall (netbsd-386), const IPV6_RECVRTHDR ideal-int
-pkg syscall (netbsd-386), const IPV6_RECVTCLASS ideal-int
-pkg syscall (netbsd-386), const IPV6_RTHDR ideal-int
-pkg syscall (netbsd-386), const IPV6_RTHDRDSTOPTS ideal-int
-pkg syscall (netbsd-386), const IPV6_RTHDR_LOOSE ideal-int
-pkg syscall (netbsd-386), const IPV6_RTHDR_STRICT ideal-int
-pkg syscall (netbsd-386), const IPV6_RTHDR_TYPE_0 ideal-int
-pkg syscall (netbsd-386), const IPV6_SOCKOPT_RESERVED1 ideal-int
-pkg syscall (netbsd-386), const IPV6_TCLASS ideal-int
-pkg syscall (netbsd-386), const IPV6_USE_MIN_MTU ideal-int
-pkg syscall (netbsd-386), const IPV6_VERSION ideal-int
-pkg syscall (netbsd-386), const IPV6_VERSION_MASK ideal-int
-pkg syscall (netbsd-386), const IP_DEFAULT_MULTICAST_LOOP ideal-int
-pkg syscall (netbsd-386), const IP_DEFAULT_MULTICAST_TTL ideal-int
-pkg syscall (netbsd-386), const IP_DF ideal-int
-pkg syscall (netbsd-386), const IP_EF ideal-int
-pkg syscall (netbsd-386), const IP_ERRORMTU ideal-int
-pkg syscall (netbsd-386), const IP_HDRINCL ideal-int
-pkg syscall (netbsd-386), const IP_IPSEC_POLICY ideal-int
-pkg syscall (netbsd-386), const IP_MAXPACKET ideal-int
-pkg syscall (netbsd-386), const IP_MAX_MEMBERSHIPS ideal-int
-pkg syscall (netbsd-386), const IP_MF ideal-int
-pkg syscall (netbsd-386), const IP_MINFRAGSIZE ideal-int
-pkg syscall (netbsd-386), const IP_MINTTL ideal-int
-pkg syscall (netbsd-386), const IP_MSS ideal-int
-pkg syscall (netbsd-386), const IP_OFFMASK ideal-int
-pkg syscall (netbsd-386), const IP_OPTIONS ideal-int
-pkg syscall (netbsd-386), const IP_PORTRANGE ideal-int
-pkg syscall (netbsd-386), const IP_PORTRANGE_DEFAULT ideal-int
-pkg syscall (netbsd-386), const IP_PORTRANGE_HIGH ideal-int
-pkg syscall (netbsd-386), const IP_PORTRANGE_LOW ideal-int
-pkg syscall (netbsd-386), const IP_RECVDSTADDR ideal-int
-pkg syscall (netbsd-386), const IP_RECVIF ideal-int
-pkg syscall (netbsd-386), const IP_RECVOPTS ideal-int
-pkg syscall (netbsd-386), const IP_RECVRETOPTS ideal-int
-pkg syscall (netbsd-386), const IP_RECVTTL ideal-int
-pkg syscall (netbsd-386), const IP_RETOPTS ideal-int
-pkg syscall (netbsd-386), const IP_RF ideal-int
-pkg syscall (netbsd-386), const ISIG ideal-int
-pkg syscall (netbsd-386), const ISTRIP ideal-int
-pkg syscall (netbsd-386), const IXANY ideal-int
-pkg syscall (netbsd-386), const IXOFF ideal-int
-pkg syscall (netbsd-386), const IXON ideal-int
-pkg syscall (netbsd-386), const LOCK_EX ideal-int
-pkg syscall (netbsd-386), const LOCK_NB ideal-int
-pkg syscall (netbsd-386), const LOCK_SH ideal-int
-pkg syscall (netbsd-386), const LOCK_UN ideal-int
-pkg syscall (netbsd-386), const MSG_BCAST ideal-int
-pkg syscall (netbsd-386), const MSG_CMSG_CLOEXEC ideal-int
-pkg syscall (netbsd-386), const MSG_CONTROLMBUF ideal-int
-pkg syscall (netbsd-386), const MSG_CTRUNC ideal-int
-pkg syscall (netbsd-386), const MSG_DONTROUTE ideal-int
-pkg syscall (netbsd-386), const MSG_DONTWAIT ideal-int
-pkg syscall (netbsd-386), const MSG_EOR ideal-int
-pkg syscall (netbsd-386), const MSG_IOVUSRSPACE ideal-int
-pkg syscall (netbsd-386), const MSG_LENUSRSPACE ideal-int
-pkg syscall (netbsd-386), const MSG_MCAST ideal-int
-pkg syscall (netbsd-386), const MSG_NAMEMBUF ideal-int
-pkg syscall (netbsd-386), const MSG_NBIO ideal-int
-pkg syscall (netbsd-386), const MSG_NOSIGNAL ideal-int
-pkg syscall (netbsd-386), const MSG_OOB ideal-int
-pkg syscall (netbsd-386), const MSG_PEEK ideal-int
-pkg syscall (netbsd-386), const MSG_TRUNC ideal-int
-pkg syscall (netbsd-386), const MSG_USERFLAGS ideal-int
-pkg syscall (netbsd-386), const MSG_WAITALL ideal-int
-pkg syscall (netbsd-386), const NAME_MAX ideal-int
-pkg syscall (netbsd-386), const NET_RT_DUMP ideal-int
-pkg syscall (netbsd-386), const NET_RT_FLAGS ideal-int
-pkg syscall (netbsd-386), const NET_RT_IFLIST ideal-int
-pkg syscall (netbsd-386), const NET_RT_MAXID ideal-int
-pkg syscall (netbsd-386), const NET_RT_OIFLIST ideal-int
-pkg syscall (netbsd-386), const NET_RT_OOIFLIST ideal-int
-pkg syscall (netbsd-386), const NOFLSH ideal-int
-pkg syscall (netbsd-386), const NOTE_ATTRIB ideal-int
-pkg syscall (netbsd-386), const NOTE_CHILD ideal-int
-pkg syscall (netbsd-386), const NOTE_DELETE ideal-int
-pkg syscall (netbsd-386), const NOTE_EXEC ideal-int
-pkg syscall (netbsd-386), const NOTE_EXIT ideal-int
-pkg syscall (netbsd-386), const NOTE_EXTEND ideal-int
-pkg syscall (netbsd-386), const NOTE_FORK ideal-int
-pkg syscall (netbsd-386), const NOTE_LINK ideal-int
-pkg syscall (netbsd-386), const NOTE_LOWAT ideal-int
-pkg syscall (netbsd-386), const NOTE_PCTRLMASK ideal-int
-pkg syscall (netbsd-386), const NOTE_PDATAMASK ideal-int
-pkg syscall (netbsd-386), const NOTE_RENAME ideal-int
-pkg syscall (netbsd-386), const NOTE_REVOKE ideal-int
-pkg syscall (netbsd-386), const NOTE_TRACK ideal-int
-pkg syscall (netbsd-386), const NOTE_TRACKERR ideal-int
-pkg syscall (netbsd-386), const NOTE_WRITE ideal-int
-pkg syscall (netbsd-386), const OCRNL ideal-int
-pkg syscall (netbsd-386), const OFIOGETBMAP ideal-int
-pkg syscall (netbsd-386), const ONLCR ideal-int
-pkg syscall (netbsd-386), const ONLRET ideal-int
-pkg syscall (netbsd-386), const ONOCR ideal-int
-pkg syscall (netbsd-386), const ONOEOT ideal-int
-pkg syscall (netbsd-386), const OPOST ideal-int
-pkg syscall (netbsd-386), const O_ACCMODE ideal-int
-pkg syscall (netbsd-386), const O_ALT_IO ideal-int
-pkg syscall (netbsd-386), const O_DIRECT ideal-int
-pkg syscall (netbsd-386), const O_DIRECTORY ideal-int
-pkg syscall (netbsd-386), const O_DSYNC ideal-int
-pkg syscall (netbsd-386), const O_EXLOCK ideal-int
-pkg syscall (netbsd-386), const O_FSYNC ideal-int
-pkg syscall (netbsd-386), const O_NDELAY ideal-int
-pkg syscall (netbsd-386), const O_NOFOLLOW ideal-int
-pkg syscall (netbsd-386), const O_NOSIGPIPE ideal-int
-pkg syscall (netbsd-386), const O_RSYNC ideal-int
-pkg syscall (netbsd-386), const O_SHLOCK ideal-int
-pkg syscall (netbsd-386), const PARENB ideal-int
-pkg syscall (netbsd-386), const PARMRK ideal-int
-pkg syscall (netbsd-386), const PARODD ideal-int
-pkg syscall (netbsd-386), const PENDIN ideal-int
-pkg syscall (netbsd-386), const PRIO_PGRP = 1
-pkg syscall (netbsd-386), const PRIO_PGRP ideal-int
-pkg syscall (netbsd-386), const PRIO_PROCESS = 0
-pkg syscall (netbsd-386), const PRIO_PROCESS ideal-int
-pkg syscall (netbsd-386), const PRIO_USER = 2
-pkg syscall (netbsd-386), const PRIO_USER ideal-int
-pkg syscall (netbsd-386), const PRI_IOFLUSH ideal-int
-pkg syscall (netbsd-386), const PTRACE_CONT ideal-int
-pkg syscall (netbsd-386), const PTRACE_KILL ideal-int
-pkg syscall (netbsd-386), const PTRACE_TRACEME ideal-int
-pkg syscall (netbsd-386), const RLIMIT_AS ideal-int
-pkg syscall (netbsd-386), const RLIMIT_CORE ideal-int
-pkg syscall (netbsd-386), const RLIMIT_CPU ideal-int
-pkg syscall (netbsd-386), const RLIMIT_DATA ideal-int
-pkg syscall (netbsd-386), const RLIMIT_FSIZE ideal-int
-pkg syscall (netbsd-386), const RLIMIT_NOFILE ideal-int
-pkg syscall (netbsd-386), const RLIMIT_STACK ideal-int
-pkg syscall (netbsd-386), const RLIM_INFINITY ideal-int
-pkg syscall (netbsd-386), const RTAX_AUTHOR ideal-int
-pkg syscall (netbsd-386), const RTAX_BRD ideal-int
-pkg syscall (netbsd-386), const RTAX_DST ideal-int
-pkg syscall (netbsd-386), const RTAX_GATEWAY ideal-int
-pkg syscall (netbsd-386), const RTAX_GENMASK ideal-int
-pkg syscall (netbsd-386), const RTAX_IFA ideal-int
-pkg syscall (netbsd-386), const RTAX_IFP ideal-int
-pkg syscall (netbsd-386), const RTAX_MAX ideal-int
-pkg syscall (netbsd-386), const RTAX_NETMASK ideal-int
-pkg syscall (netbsd-386), const RTAX_TAG ideal-int
-pkg syscall (netbsd-386), const RTA_AUTHOR ideal-int
-pkg syscall (netbsd-386), const RTA_BRD ideal-int
-pkg syscall (netbsd-386), const RTA_DST ideal-int
-pkg syscall (netbsd-386), const RTA_GATEWAY ideal-int
-pkg syscall (netbsd-386), const RTA_GENMASK ideal-int
-pkg syscall (netbsd-386), const RTA_IFA ideal-int
-pkg syscall (netbsd-386), const RTA_IFP ideal-int
-pkg syscall (netbsd-386), const RTA_NETMASK ideal-int
-pkg syscall (netbsd-386), const RTA_TAG ideal-int
-pkg syscall (netbsd-386), const RTF_ANNOUNCE ideal-int
-pkg syscall (netbsd-386), const RTF_BLACKHOLE ideal-int
-pkg syscall (netbsd-386), const RTF_CLONED ideal-int
-pkg syscall (netbsd-386), const RTF_CLONING ideal-int
-pkg syscall (netbsd-386), const RTF_DONE ideal-int
-pkg syscall (netbsd-386), const RTF_DYNAMIC ideal-int
-pkg syscall (netbsd-386), const RTF_GATEWAY ideal-int
-pkg syscall (netbsd-386), const RTF_HOST ideal-int
-pkg syscall (netbsd-386), const RTF_LLINFO ideal-int
-pkg syscall (netbsd-386), const RTF_MASK ideal-int
-pkg syscall (netbsd-386), const RTF_MODIFIED ideal-int
-pkg syscall (netbsd-386), const RTF_PROTO1 ideal-int
-pkg syscall (netbsd-386), const RTF_PROTO2 ideal-int
-pkg syscall (netbsd-386), const RTF_REJECT ideal-int
-pkg syscall (netbsd-386), const RTF_SRC ideal-int
-pkg syscall (netbsd-386), const RTF_STATIC ideal-int
-pkg syscall (netbsd-386), const RTF_UP ideal-int
-pkg syscall (netbsd-386), const RTF_XRESOLVE ideal-int
-pkg syscall (netbsd-386), const RTM_ADD ideal-int
-pkg syscall (netbsd-386), const RTM_CHANGE ideal-int
-pkg syscall (netbsd-386), const RTM_CHGADDR ideal-int
-pkg syscall (netbsd-386), const RTM_DELADDR ideal-int
-pkg syscall (netbsd-386), const RTM_DELETE ideal-int
-pkg syscall (netbsd-386), const RTM_GET ideal-int
-pkg syscall (netbsd-386), const RTM_IEEE80211 ideal-int
-pkg syscall (netbsd-386), const RTM_IFANNOUNCE ideal-int
-pkg syscall (netbsd-386), const RTM_IFINFO ideal-int
-pkg syscall (netbsd-386), const RTM_LLINFO_UPD ideal-int
-pkg syscall (netbsd-386), const RTM_LOCK ideal-int
-pkg syscall (netbsd-386), const RTM_LOSING ideal-int
-pkg syscall (netbsd-386), const RTM_MISS ideal-int
-pkg syscall (netbsd-386), const RTM_NEWADDR ideal-int
-pkg syscall (netbsd-386), const RTM_OIFINFO ideal-int
-pkg syscall (netbsd-386), const RTM_OLDADD ideal-int
-pkg syscall (netbsd-386), const RTM_OLDDEL ideal-int
-pkg syscall (netbsd-386), const RTM_OOIFINFO ideal-int
-pkg syscall (netbsd-386), const RTM_REDIRECT ideal-int
-pkg syscall (netbsd-386), const RTM_RESOLVE ideal-int
-pkg syscall (netbsd-386), const RTM_RTTUNIT ideal-int
-pkg syscall (netbsd-386), const RTM_SETGATE ideal-int
-pkg syscall (netbsd-386), const RTM_VERSION ideal-int
-pkg syscall (netbsd-386), const RTV_EXPIRE ideal-int
-pkg syscall (netbsd-386), const RTV_HOPCOUNT ideal-int
-pkg syscall (netbsd-386), const RTV_MTU ideal-int
-pkg syscall (netbsd-386), const RTV_RPIPE ideal-int
-pkg syscall (netbsd-386), const RTV_RTT ideal-int
-pkg syscall (netbsd-386), const RTV_RTTVAR ideal-int
-pkg syscall (netbsd-386), const RTV_SPIPE ideal-int
-pkg syscall (netbsd-386), const RTV_SSTHRESH ideal-int
-pkg syscall (netbsd-386), const RUSAGE_CHILDREN ideal-int
-pkg syscall (netbsd-386), const RUSAGE_SELF ideal-int
-pkg syscall (netbsd-386), const SCM_CREDS ideal-int
-pkg syscall (netbsd-386), const SCM_RIGHTS ideal-int
-pkg syscall (netbsd-386), const SCM_TIMESTAMP ideal-int
-pkg syscall (netbsd-386), const SIGCHLD Signal
-pkg syscall (netbsd-386), const SIGCONT Signal
-pkg syscall (netbsd-386), const SIGEMT Signal
-pkg syscall (netbsd-386), const SIGINFO Signal
-pkg syscall (netbsd-386), const SIGIO Signal
-pkg syscall (netbsd-386), const SIGIOT Signal
-pkg syscall (netbsd-386), const SIGPROF Signal
-pkg syscall (netbsd-386), const SIGPWR Signal
-pkg syscall (netbsd-386), const SIGSTOP Signal
-pkg syscall (netbsd-386), const SIGSYS Signal
-pkg syscall (netbsd-386), const SIGTSTP Signal
-pkg syscall (netbsd-386), const SIGTTIN Signal
-pkg syscall (netbsd-386), const SIGTTOU Signal
-pkg syscall (netbsd-386), const SIGURG Signal
-pkg syscall (netbsd-386), const SIGUSR1 Signal
-pkg syscall (netbsd-386), const SIGUSR2 Signal
-pkg syscall (netbsd-386), const SIGVTALRM Signal
-pkg syscall (netbsd-386), const SIGWINCH Signal
-pkg syscall (netbsd-386), const SIGXCPU Signal
-pkg syscall (netbsd-386), const SIGXFSZ Signal
-pkg syscall (netbsd-386), const SIOCADDMULTI ideal-int
-pkg syscall (netbsd-386), const SIOCADDRT ideal-int
-pkg syscall (netbsd-386), const SIOCAIFADDR ideal-int
-pkg syscall (netbsd-386), const SIOCALIFADDR ideal-int
-pkg syscall (netbsd-386), const SIOCATMARK ideal-int
-pkg syscall (netbsd-386), const SIOCDELMULTI ideal-int
-pkg syscall (netbsd-386), const SIOCDELRT ideal-int
-pkg syscall (netbsd-386), const SIOCDIFADDR ideal-int
-pkg syscall (netbsd-386), const SIOCDIFPHYADDR ideal-int
-pkg syscall (netbsd-386), const SIOCDLIFADDR ideal-int
-pkg syscall (netbsd-386), const SIOCGDRVSPEC ideal-int
-pkg syscall (netbsd-386), const SIOCGETPFSYNC ideal-int
-pkg syscall (netbsd-386), const SIOCGETSGCNT ideal-int
-pkg syscall (netbsd-386), const SIOCGETVIFCNT ideal-int
-pkg syscall (netbsd-386), const SIOCGHIWAT ideal-int
-pkg syscall (netbsd-386), const SIOCGIFADDR ideal-int
-pkg syscall (netbsd-386), const SIOCGIFADDRPREF ideal-int
-pkg syscall (netbsd-386), const SIOCGIFALIAS ideal-int
-pkg syscall (netbsd-386), const SIOCGIFBRDADDR ideal-int
-pkg syscall (netbsd-386), const SIOCGIFCAP ideal-int
-pkg syscall (netbsd-386), const SIOCGIFCONF ideal-int
-pkg syscall (netbsd-386), const SIOCGIFDATA ideal-int
-pkg syscall (netbsd-386), const SIOCGIFDLT ideal-int
-pkg syscall (netbsd-386), const SIOCGIFDSTADDR ideal-int
-pkg syscall (netbsd-386), const SIOCGIFFLAGS ideal-int
-pkg syscall (netbsd-386), const SIOCGIFGENERIC ideal-int
-pkg syscall (netbsd-386), const SIOCGIFMEDIA ideal-int
-pkg syscall (netbsd-386), const SIOCGIFMETRIC ideal-int
-pkg syscall (netbsd-386), const SIOCGIFMTU ideal-int
-pkg syscall (netbsd-386), const SIOCGIFNETMASK ideal-int
-pkg syscall (netbsd-386), const SIOCGIFPDSTADDR ideal-int
-pkg syscall (netbsd-386), const SIOCGIFPSRCADDR ideal-int
-pkg syscall (netbsd-386), const SIOCGLIFADDR ideal-int
-pkg syscall (netbsd-386), const SIOCGLIFPHYADDR ideal-int
-pkg syscall (netbsd-386), const SIOCGLINKSTR ideal-int
-pkg syscall (netbsd-386), const SIOCGLOWAT ideal-int
-pkg syscall (netbsd-386), const SIOCGPGRP ideal-int
-pkg syscall (netbsd-386), const SIOCGVH ideal-int
-pkg syscall (netbsd-386), const SIOCIFCREATE ideal-int
-pkg syscall (netbsd-386), const SIOCIFDESTROY ideal-int
-pkg syscall (netbsd-386), const SIOCIFGCLONERS ideal-int
-pkg syscall (netbsd-386), const SIOCINITIFADDR ideal-int
-pkg syscall (netbsd-386), const SIOCSDRVSPEC ideal-int
-pkg syscall (netbsd-386), const SIOCSETPFSYNC ideal-int
-pkg syscall (netbsd-386), const SIOCSHIWAT ideal-int
-pkg syscall (netbsd-386), const SIOCSIFADDR ideal-int
-pkg syscall (netbsd-386), const SIOCSIFADDRPREF ideal-int
-pkg syscall (netbsd-386), const SIOCSIFBRDADDR ideal-int
-pkg syscall (netbsd-386), const SIOCSIFCAP ideal-int
-pkg syscall (netbsd-386), const SIOCSIFDSTADDR ideal-int
-pkg syscall (netbsd-386), const SIOCSIFFLAGS ideal-int
-pkg syscall (netbsd-386), const SIOCSIFGENERIC ideal-int
-pkg syscall (netbsd-386), const SIOCSIFMEDIA ideal-int
-pkg syscall (netbsd-386), const SIOCSIFMETRIC ideal-int
-pkg syscall (netbsd-386), const SIOCSIFMTU ideal-int
-pkg syscall (netbsd-386), const SIOCSIFNETMASK ideal-int
-pkg syscall (netbsd-386), const SIOCSIFPHYADDR ideal-int
-pkg syscall (netbsd-386), const SIOCSLIFPHYADDR ideal-int
-pkg syscall (netbsd-386), const SIOCSLINKSTR ideal-int
-pkg syscall (netbsd-386), const SIOCSLOWAT ideal-int
-pkg syscall (netbsd-386), const SIOCSPGRP ideal-int
-pkg syscall (netbsd-386), const SIOCSVH ideal-int
-pkg syscall (netbsd-386), const SIOCZIFDATA ideal-int
-pkg syscall (netbsd-386), const SOCK_CLOEXEC ideal-int
-pkg syscall (netbsd-386), const SOCK_FLAGS_MASK ideal-int
-pkg syscall (netbsd-386), const SOCK_NONBLOCK ideal-int
-pkg syscall (netbsd-386), const SOCK_NOSIGPIPE ideal-int
-pkg syscall (netbsd-386), const SOCK_RDM ideal-int
-pkg syscall (netbsd-386), const SO_ACCEPTCONN ideal-int
-pkg syscall (netbsd-386), const SO_ACCEPTFILTER ideal-int
-pkg syscall (netbsd-386), const SO_DEBUG ideal-int
-pkg syscall (netbsd-386), const SO_ERROR ideal-int
-pkg syscall (netbsd-386), const SO_NOHEADER ideal-int
-pkg syscall (netbsd-386), const SO_NOSIGPIPE ideal-int
-pkg syscall (netbsd-386), const SO_OOBINLINE ideal-int
-pkg syscall (netbsd-386), const SO_OVERFLOWED ideal-int
-pkg syscall (netbsd-386), const SO_RCVLOWAT ideal-int
-pkg syscall (netbsd-386), const SO_RCVTIMEO ideal-int
-pkg syscall (netbsd-386), const SO_REUSEPORT ideal-int
-pkg syscall (netbsd-386), const SO_SNDLOWAT ideal-int
-pkg syscall (netbsd-386), const SO_SNDTIMEO ideal-int
-pkg syscall (netbsd-386), const SO_TIMESTAMP ideal-int
-pkg syscall (netbsd-386), const SO_TYPE ideal-int
-pkg syscall (netbsd-386), const SO_USELOOPBACK ideal-int
-pkg syscall (netbsd-386), const SYSCTL_VERSION ideal-int
-pkg syscall (netbsd-386), const SYSCTL_VERS_0 ideal-int
-pkg syscall (netbsd-386), const SYSCTL_VERS_1 ideal-int
-pkg syscall (netbsd-386), const SYSCTL_VERS_MASK ideal-int
-pkg syscall (netbsd-386), const SYS_ACCEPT ideal-int
-pkg syscall (netbsd-386), const SYS_ACCESS ideal-int
-pkg syscall (netbsd-386), const SYS_ACCT ideal-int
-pkg syscall (netbsd-386), const SYS_ADJTIME ideal-int
-pkg syscall (netbsd-386), const SYS_BIND ideal-int
-pkg syscall (netbsd-386), const SYS_BREAK ideal-int
-pkg syscall (netbsd-386), const SYS_CHDIR ideal-int
-pkg syscall (netbsd-386), const SYS_CHFLAGS ideal-int
-pkg syscall (netbsd-386), const SYS_CHMOD ideal-int
-pkg syscall (netbsd-386), const SYS_CHOWN ideal-int
-pkg syscall (netbsd-386), const SYS_CHROOT ideal-int
-pkg syscall (netbsd-386), const SYS_CLOCK_GETRES ideal-int
-pkg syscall (netbsd-386), const SYS_CLOCK_GETTIME ideal-int
-pkg syscall (netbsd-386), const SYS_CLOCK_SETTIME ideal-int
-pkg syscall (netbsd-386), const SYS_CLOSE ideal-int
-pkg syscall (netbsd-386), const SYS_CONNECT ideal-int
-pkg syscall (netbsd-386), const SYS_DUP ideal-int
-pkg syscall (netbsd-386), const SYS_DUP2 ideal-int
-pkg syscall (netbsd-386), const SYS_DUP3 ideal-int
-pkg syscall (netbsd-386), const SYS_EXECVE ideal-int
-pkg syscall (netbsd-386), const SYS_EXIT ideal-int
-pkg syscall (netbsd-386), const SYS_EXTATTRCTL ideal-int
-pkg syscall (netbsd-386), const SYS_EXTATTR_DELETE_FD ideal-int
-pkg syscall (netbsd-386), const SYS_EXTATTR_DELETE_FILE ideal-int
-pkg syscall (netbsd-386), const SYS_EXTATTR_DELETE_LINK ideal-int
-pkg syscall (netbsd-386), const SYS_EXTATTR_GET_FD ideal-int
-pkg syscall (netbsd-386), const SYS_EXTATTR_GET_FILE ideal-int
-pkg syscall (netbsd-386), const SYS_EXTATTR_GET_LINK ideal-int
-pkg syscall (netbsd-386), const SYS_EXTATTR_LIST_FD ideal-int
-pkg syscall (netbsd-386), const SYS_EXTATTR_LIST_FILE ideal-int
-pkg syscall (netbsd-386), const SYS_EXTATTR_LIST_LINK ideal-int
-pkg syscall (netbsd-386), const SYS_EXTATTR_SET_FD ideal-int
-pkg syscall (netbsd-386), const SYS_EXTATTR_SET_FILE ideal-int
-pkg syscall (netbsd-386), const SYS_EXTATTR_SET_LINK ideal-int
-pkg syscall (netbsd-386), const SYS_FACCESSAT ideal-int
-pkg syscall (netbsd-386), const SYS_FCHDIR ideal-int
-pkg syscall (netbsd-386), const SYS_FCHFLAGS ideal-int
-pkg syscall (netbsd-386), const SYS_FCHMOD ideal-int
-pkg syscall (netbsd-386), const SYS_FCHMODAT ideal-int
-pkg syscall (netbsd-386), const SYS_FCHOWN ideal-int
-pkg syscall (netbsd-386), const SYS_FCHOWNAT ideal-int
-pkg syscall (netbsd-386), const SYS_FCHROOT ideal-int
-pkg syscall (netbsd-386), const SYS_FCNTL ideal-int
-pkg syscall (netbsd-386), const SYS_FDATASYNC ideal-int
-pkg syscall (netbsd-386), const SYS_FEXECVE ideal-int
-pkg syscall (netbsd-386), const SYS_FGETXATTR ideal-int
-pkg syscall (netbsd-386), const SYS_FHSTAT ideal-int
-pkg syscall (netbsd-386), const SYS_FKTRACE ideal-int
-pkg syscall (netbsd-386), const SYS_FLISTXATTR ideal-int
-pkg syscall (netbsd-386), const SYS_FLOCK ideal-int
-pkg syscall (netbsd-386), const SYS_FORK ideal-int
-pkg syscall (netbsd-386), const SYS_FPATHCONF ideal-int
-pkg syscall (netbsd-386), const SYS_FREMOVEXATTR ideal-int
-pkg syscall (netbsd-386), const SYS_FSETXATTR ideal-int
-pkg syscall (netbsd-386), const SYS_FSTAT ideal-int
-pkg syscall (netbsd-386), const SYS_FSTATAT ideal-int
-pkg syscall (netbsd-386), const SYS_FSTATVFS1 ideal-int
-pkg syscall (netbsd-386), const SYS_FSYNC ideal-int
-pkg syscall (netbsd-386), const SYS_FSYNC_RANGE ideal-int
-pkg syscall (netbsd-386), const SYS_FTRUNCATE ideal-int
-pkg syscall (netbsd-386), const SYS_FUTIMENS ideal-int
-pkg syscall (netbsd-386), const SYS_FUTIMES ideal-int
-pkg syscall (netbsd-386), const SYS_GETCONTEXT ideal-int
-pkg syscall (netbsd-386), const SYS_GETDENTS ideal-int
-pkg syscall (netbsd-386), const SYS_GETEGID ideal-int
-pkg syscall (netbsd-386), const SYS_GETEUID ideal-int
-pkg syscall (netbsd-386), const SYS_GETFH ideal-int
-pkg syscall (netbsd-386), const SYS_GETGID ideal-int
-pkg syscall (netbsd-386), const SYS_GETGROUPS ideal-int
-pkg syscall (netbsd-386), const SYS_GETITIMER ideal-int
-pkg syscall (netbsd-386), const SYS_GETPEERNAME ideal-int
-pkg syscall (netbsd-386), const SYS_GETPGID ideal-int
-pkg syscall (netbsd-386), const SYS_GETPGRP ideal-int
-pkg syscall (netbsd-386), const SYS_GETPID ideal-int
-pkg syscall (netbsd-386), const SYS_GETPPID ideal-int
-pkg syscall (netbsd-386), const SYS_GETPRIORITY ideal-int
-pkg syscall (netbsd-386), const SYS_GETRLIMIT ideal-int
-pkg syscall (netbsd-386), const SYS_GETRUSAGE ideal-int
-pkg syscall (netbsd-386), const SYS_GETSID ideal-int
-pkg syscall (netbsd-386), const SYS_GETSOCKNAME ideal-int
-pkg syscall (netbsd-386), const SYS_GETSOCKOPT ideal-int
-pkg syscall (netbsd-386), const SYS_GETTIMEOFDAY ideal-int
-pkg syscall (netbsd-386), const SYS_GETUID ideal-int
-pkg syscall (netbsd-386), const SYS_GETVFSSTAT ideal-int
-pkg syscall (netbsd-386), const SYS_GETXATTR ideal-int
-pkg syscall (netbsd-386), const SYS_IOCTL ideal-int
-pkg syscall (netbsd-386), const SYS_ISSETUGID ideal-int
-pkg syscall (netbsd-386), const SYS_KEVENT ideal-int
-pkg syscall (netbsd-386), const SYS_KILL ideal-int
-pkg syscall (netbsd-386), const SYS_KQUEUE ideal-int
-pkg syscall (netbsd-386), const SYS_KQUEUE1 ideal-int
-pkg syscall (netbsd-386), const SYS_KTRACE ideal-int
-pkg syscall (netbsd-386), const SYS_LCHFLAGS ideal-int
-pkg syscall (netbsd-386), const SYS_LCHMOD ideal-int
-pkg syscall (netbsd-386), const SYS_LCHOWN ideal-int
-pkg syscall (netbsd-386), const SYS_LGETXATTR ideal-int
-pkg syscall (netbsd-386), const SYS_LINK ideal-int
-pkg syscall (netbsd-386), const SYS_LINKAT ideal-int
-pkg syscall (netbsd-386), const SYS_LISTEN ideal-int
-pkg syscall (netbsd-386), const SYS_LISTXATTR ideal-int
-pkg syscall (netbsd-386), const SYS_LLISTXATTR ideal-int
-pkg syscall (netbsd-386), const SYS_LREMOVEXATTR ideal-int
-pkg syscall (netbsd-386), const SYS_LSEEK ideal-int
-pkg syscall (netbsd-386), const SYS_LSETXATTR ideal-int
-pkg syscall (netbsd-386), const SYS_LSTAT ideal-int
-pkg syscall (netbsd-386), const SYS_LUTIMES ideal-int
-pkg syscall (netbsd-386), const SYS_MADVISE ideal-int
-pkg syscall (netbsd-386), const SYS_MINCORE ideal-int
-pkg syscall (netbsd-386), const SYS_MINHERIT ideal-int
-pkg syscall (netbsd-386), const SYS_MKDIR ideal-int
-pkg syscall (netbsd-386), const SYS_MKDIRAT ideal-int
-pkg syscall (netbsd-386), const SYS_MKFIFO ideal-int
-pkg syscall (netbsd-386), const SYS_MKFIFOAT ideal-int
-pkg syscall (netbsd-386), const SYS_MKNOD ideal-int
-pkg syscall (netbsd-386), const SYS_MKNODAT ideal-int
-pkg syscall (netbsd-386), const SYS_MLOCK ideal-int
-pkg syscall (netbsd-386), const SYS_MLOCKALL ideal-int
-pkg syscall (netbsd-386), const SYS_MMAP ideal-int
-pkg syscall (netbsd-386), const SYS_MODCTL ideal-int
-pkg syscall (netbsd-386), const SYS_MOUNT ideal-int
-pkg syscall (netbsd-386), const SYS_MPROTECT ideal-int
-pkg syscall (netbsd-386), const SYS_MREMAP ideal-int
-pkg syscall (netbsd-386), const SYS_MSGCTL ideal-int
-pkg syscall (netbsd-386), const SYS_MSGGET ideal-int
-pkg syscall (netbsd-386), const SYS_MSGRCV ideal-int
-pkg syscall (netbsd-386), const SYS_MSGSND ideal-int
-pkg syscall (netbsd-386), const SYS_MUNLOCK ideal-int
-pkg syscall (netbsd-386), const SYS_MUNLOCKALL ideal-int
-pkg syscall (netbsd-386), const SYS_MUNMAP ideal-int
-pkg syscall (netbsd-386), const SYS_NANOSLEEP ideal-int
-pkg syscall (netbsd-386), const SYS_NTP_ADJTIME ideal-int
-pkg syscall (netbsd-386), const SYS_NTP_GETTIME ideal-int
-pkg syscall (netbsd-386), const SYS_OPEN ideal-int
-pkg syscall (netbsd-386), const SYS_OPENAT ideal-int
-pkg syscall (netbsd-386), const SYS_PACCEPT ideal-int
-pkg syscall (netbsd-386), const SYS_PATHCONF ideal-int
-pkg syscall (netbsd-386), const SYS_PIPE ideal-int
-pkg syscall (netbsd-386), const SYS_PIPE2 ideal-int
-pkg syscall (netbsd-386), const SYS_PMC_CONTROL ideal-int
-pkg syscall (netbsd-386), const SYS_PMC_GET_INFO ideal-int
-pkg syscall (netbsd-386), const SYS_POLL ideal-int
-pkg syscall (netbsd-386), const SYS_POLLTS ideal-int
-pkg syscall (netbsd-386), const SYS_POSIX_FADVISE ideal-int
-pkg syscall (netbsd-386), const SYS_POSIX_SPAWN ideal-int
-pkg syscall (netbsd-386), const SYS_PREAD ideal-int
-pkg syscall (netbsd-386), const SYS_PREADV ideal-int
-pkg syscall (netbsd-386), const SYS_PROFIL ideal-int
-pkg syscall (netbsd-386), const SYS_PSELECT ideal-int
-pkg syscall (netbsd-386), const SYS_PSET_ASSIGN ideal-int
-pkg syscall (netbsd-386), const SYS_PSET_CREATE ideal-int
-pkg syscall (netbsd-386), const SYS_PSET_DESTROY ideal-int
-pkg syscall (netbsd-386), const SYS_PTRACE ideal-int
-pkg syscall (netbsd-386), const SYS_PWRITE ideal-int
-pkg syscall (netbsd-386), const SYS_PWRITEV ideal-int
-pkg syscall (netbsd-386), const SYS_RASCTL ideal-int
-pkg syscall (netbsd-386), const SYS_READ ideal-int
-pkg syscall (netbsd-386), const SYS_READLINK ideal-int
-pkg syscall (netbsd-386), const SYS_READLINKAT ideal-int
-pkg syscall (netbsd-386), const SYS_READV ideal-int
-pkg syscall (netbsd-386), const SYS_REBOOT ideal-int
-pkg syscall (netbsd-386), const SYS_RECVFROM ideal-int
-pkg syscall (netbsd-386), const SYS_RECVMMSG ideal-int
-pkg syscall (netbsd-386), const SYS_RECVMSG ideal-int
-pkg syscall (netbsd-386), const SYS_REMOVEXATTR ideal-int
-pkg syscall (netbsd-386), const SYS_RENAME ideal-int
-pkg syscall (netbsd-386), const SYS_RENAMEAT ideal-int
-pkg syscall (netbsd-386), const SYS_REVOKE ideal-int
-pkg syscall (netbsd-386), const SYS_RMDIR ideal-int
-pkg syscall (netbsd-386), const SYS_SBRK ideal-int
-pkg syscall (netbsd-386), const SYS_SCHED_YIELD ideal-int
-pkg syscall (netbsd-386), const SYS_SELECT ideal-int
-pkg syscall (netbsd-386), const SYS_SEMCONFIG ideal-int
-pkg syscall (netbsd-386), const SYS_SEMGET ideal-int
-pkg syscall (netbsd-386), const SYS_SEMOP ideal-int
-pkg syscall (netbsd-386), const SYS_SENDMMSG ideal-int
-pkg syscall (netbsd-386), const SYS_SENDMSG ideal-int
-pkg syscall (netbsd-386), const SYS_SENDTO ideal-int
-pkg syscall (netbsd-386), const SYS_SETCONTEXT ideal-int
-pkg syscall (netbsd-386), const SYS_SETEGID ideal-int
-pkg syscall (netbsd-386), const SYS_SETEUID ideal-int
-pkg syscall (netbsd-386), const SYS_SETGID ideal-int
-pkg syscall (netbsd-386), const SYS_SETGROUPS ideal-int
-pkg syscall (netbsd-386), const SYS_SETITIMER ideal-int
-pkg syscall (netbsd-386), const SYS_SETPGID ideal-int
-pkg syscall (netbsd-386), const SYS_SETPRIORITY ideal-int
-pkg syscall (netbsd-386), const SYS_SETREGID ideal-int
-pkg syscall (netbsd-386), const SYS_SETREUID ideal-int
-pkg syscall (netbsd-386), const SYS_SETRLIMIT ideal-int
-pkg syscall (netbsd-386), const SYS_SETSID ideal-int
-pkg syscall (netbsd-386), const SYS_SETSOCKOPT ideal-int
-pkg syscall (netbsd-386), const SYS_SETTIMEOFDAY ideal-int
-pkg syscall (netbsd-386), const SYS_SETUID ideal-int
-pkg syscall (netbsd-386), const SYS_SETXATTR ideal-int
-pkg syscall (netbsd-386), const SYS_SHMAT ideal-int
-pkg syscall (netbsd-386), const SYS_SHMCTL ideal-int
-pkg syscall (netbsd-386), const SYS_SHMDT ideal-int
-pkg syscall (netbsd-386), const SYS_SHMGET ideal-int
-pkg syscall (netbsd-386), const SYS_SHUTDOWN ideal-int
-pkg syscall (netbsd-386), const SYS_SIGQUEUEINFO ideal-int
-pkg syscall (netbsd-386), const SYS_SOCKET ideal-int
-pkg syscall (netbsd-386), const SYS_SOCKETPAIR ideal-int
-pkg syscall (netbsd-386), const SYS_SSTK ideal-int
-pkg syscall (netbsd-386), const SYS_STAT ideal-int
-pkg syscall (netbsd-386), const SYS_STATVFS1 ideal-int
-pkg syscall (netbsd-386), const SYS_SWAPCTL ideal-int
-pkg syscall (netbsd-386), const SYS_SYMLINK ideal-int
-pkg syscall (netbsd-386), const SYS_SYMLINKAT ideal-int
-pkg syscall (netbsd-386), const SYS_SYNC ideal-int
-pkg syscall (netbsd-386), const SYS_SYSARCH ideal-int
-pkg syscall (netbsd-386), const SYS_TIMER_CREATE ideal-int
-pkg syscall (netbsd-386), const SYS_TIMER_DELETE ideal-int
-pkg syscall (netbsd-386), const SYS_TIMER_GETOVERRUN ideal-int
-pkg syscall (netbsd-386), const SYS_TIMER_GETTIME ideal-int
-pkg syscall (netbsd-386), const SYS_TIMER_SETTIME ideal-int
-pkg syscall (netbsd-386), const SYS_TRUNCATE ideal-int
-pkg syscall (netbsd-386), const SYS_UMASK ideal-int
-pkg syscall (netbsd-386), const SYS_UNDELETE ideal-int
-pkg syscall (netbsd-386), const SYS_UNLINK ideal-int
-pkg syscall (netbsd-386), const SYS_UNLINKAT ideal-int
-pkg syscall (netbsd-386), const SYS_UNMOUNT ideal-int
-pkg syscall (netbsd-386), const SYS_UTIMENSAT ideal-int
-pkg syscall (netbsd-386), const SYS_UTIMES ideal-int
-pkg syscall (netbsd-386), const SYS_UTRACE ideal-int
-pkg syscall (netbsd-386), const SYS_UUIDGEN ideal-int
-pkg syscall (netbsd-386), const SYS_VADVISE ideal-int
-pkg syscall (netbsd-386), const SYS_VFORK ideal-int
-pkg syscall (netbsd-386), const SYS_WAIT4 ideal-int
-pkg syscall (netbsd-386), const SYS_WRITE ideal-int
-pkg syscall (netbsd-386), const SYS_WRITEV ideal-int
-pkg syscall (netbsd-386), const SYS__LWP_CONTINUE ideal-int
-pkg syscall (netbsd-386), const SYS__LWP_CREATE ideal-int
-pkg syscall (netbsd-386), const SYS__LWP_CTL ideal-int
-pkg syscall (netbsd-386), const SYS__LWP_DETACH ideal-int
-pkg syscall (netbsd-386), const SYS__LWP_EXIT ideal-int
-pkg syscall (netbsd-386), const SYS__LWP_GETNAME ideal-int
-pkg syscall (netbsd-386), const SYS__LWP_GETPRIVATE ideal-int
-pkg syscall (netbsd-386), const SYS__LWP_KILL ideal-int
-pkg syscall (netbsd-386), const SYS__LWP_PARK ideal-int
-pkg syscall (netbsd-386), const SYS__LWP_SELF ideal-int
-pkg syscall (netbsd-386), const SYS__LWP_SETNAME ideal-int
-pkg syscall (netbsd-386), const SYS__LWP_SETPRIVATE ideal-int
-pkg syscall (netbsd-386), const SYS__LWP_SUSPEND ideal-int
-pkg syscall (netbsd-386), const SYS__LWP_UNPARK ideal-int
-pkg syscall (netbsd-386), const SYS__LWP_UNPARK_ALL ideal-int
-pkg syscall (netbsd-386), const SYS__LWP_WAIT ideal-int
-pkg syscall (netbsd-386), const SYS__LWP_WAKEUP ideal-int
-pkg syscall (netbsd-386), const SYS__PSET_BIND ideal-int
-pkg syscall (netbsd-386), const SYS__SCHED_GETAFFINITY ideal-int
-pkg syscall (netbsd-386), const SYS__SCHED_GETPARAM ideal-int
-pkg syscall (netbsd-386), const SYS__SCHED_SETAFFINITY ideal-int
-pkg syscall (netbsd-386), const SYS__SCHED_SETPARAM ideal-int
-pkg syscall (netbsd-386), const SYS___CLONE ideal-int
-pkg syscall (netbsd-386), const SYS___GETCWD ideal-int
-pkg syscall (netbsd-386), const SYS___GETLOGIN ideal-int
-pkg syscall (netbsd-386), const SYS___POSIX_CHOWN ideal-int
-pkg syscall (netbsd-386), const SYS___POSIX_FCHOWN ideal-int
-pkg syscall (netbsd-386), const SYS___POSIX_LCHOWN ideal-int
-pkg syscall (netbsd-386), const SYS___POSIX_RENAME ideal-int
-pkg syscall (netbsd-386), const SYS___QUOTACTL ideal-int
-pkg syscall (netbsd-386), const SYS___SEMCTL ideal-int
-pkg syscall (netbsd-386), const SYS___SETLOGIN ideal-int
-pkg syscall (netbsd-386), const SYS___SIGACTION_SIGTRAMP ideal-int
-pkg syscall (netbsd-386), const SYS___SIGTIMEDWAIT ideal-int
-pkg syscall (netbsd-386), const SYS___SYSCTL ideal-int
-pkg syscall (netbsd-386), const S_ARCH1 ideal-int
-pkg syscall (netbsd-386), const S_ARCH2 ideal-int
-pkg syscall (netbsd-386), const S_BLKSIZE ideal-int
-pkg syscall (netbsd-386), const S_IEXEC ideal-int
-pkg syscall (netbsd-386), const S_IFWHT ideal-int
-pkg syscall (netbsd-386), const S_IREAD ideal-int
-pkg syscall (netbsd-386), const S_IRGRP ideal-int
-pkg syscall (netbsd-386), const S_IROTH ideal-int
-pkg syscall (netbsd-386), const S_IRWXG ideal-int
-pkg syscall (netbsd-386), const S_IRWXO ideal-int
-pkg syscall (netbsd-386), const S_IRWXU ideal-int
-pkg syscall (netbsd-386), const S_ISTXT ideal-int
-pkg syscall (netbsd-386), const S_IWGRP ideal-int
-pkg syscall (netbsd-386), const S_IWOTH ideal-int
-pkg syscall (netbsd-386), const S_IWRITE ideal-int
-pkg syscall (netbsd-386), const S_IXGRP ideal-int
-pkg syscall (netbsd-386), const S_IXOTH ideal-int
-pkg syscall (netbsd-386), const S_LOGIN_SET ideal-int
-pkg syscall (netbsd-386), const SizeofBpfHdr ideal-int
-pkg syscall (netbsd-386), const SizeofBpfInsn ideal-int
-pkg syscall (netbsd-386), const SizeofBpfProgram ideal-int
-pkg syscall (netbsd-386), const SizeofBpfStat ideal-int
-pkg syscall (netbsd-386), const SizeofBpfVersion ideal-int
-pkg syscall (netbsd-386), const SizeofCmsghdr ideal-int
-pkg syscall (netbsd-386), const SizeofICMPv6Filter = 32
-pkg syscall (netbsd-386), const SizeofICMPv6Filter ideal-int
-pkg syscall (netbsd-386), const SizeofIPMreq ideal-int
-pkg syscall (netbsd-386), const SizeofIPv6MTUInfo = 32
-pkg syscall (netbsd-386), const SizeofIPv6MTUInfo ideal-int
-pkg syscall (netbsd-386), const SizeofIPv6Mreq ideal-int
-pkg syscall (netbsd-386), const SizeofIfAnnounceMsghdr ideal-int
-pkg syscall (netbsd-386), const SizeofIfData ideal-int
-pkg syscall (netbsd-386), const SizeofIfMsghdr ideal-int
-pkg syscall (netbsd-386), const SizeofIfaMsghdr ideal-int
-pkg syscall (netbsd-386), const SizeofInet6Pktinfo ideal-int
-pkg syscall (netbsd-386), const SizeofLinger ideal-int
-pkg syscall (netbsd-386), const SizeofMsghdr ideal-int
-pkg syscall (netbsd-386), const SizeofRtMetrics ideal-int
-pkg syscall (netbsd-386), const SizeofRtMsghdr ideal-int
-pkg syscall (netbsd-386), const SizeofSockaddrAny ideal-int
-pkg syscall (netbsd-386), const SizeofSockaddrDatalink ideal-int
-pkg syscall (netbsd-386), const SizeofSockaddrInet4 ideal-int
-pkg syscall (netbsd-386), const SizeofSockaddrInet6 ideal-int
-pkg syscall (netbsd-386), const SizeofSockaddrUnix ideal-int
-pkg syscall (netbsd-386), const TCIFLUSH ideal-int
-pkg syscall (netbsd-386), const TCIOFLUSH ideal-int
-pkg syscall (netbsd-386), const TCOFLUSH ideal-int
-pkg syscall (netbsd-386), const TCP_CONGCTL ideal-int
-pkg syscall (netbsd-386), const TCP_KEEPCNT ideal-int
-pkg syscall (netbsd-386), const TCP_KEEPIDLE ideal-int
-pkg syscall (netbsd-386), const TCP_KEEPINIT ideal-int
-pkg syscall (netbsd-386), const TCP_KEEPINTVL ideal-int
-pkg syscall (netbsd-386), const TCP_MAXBURST ideal-int
-pkg syscall (netbsd-386), const TCP_MAXSEG ideal-int
-pkg syscall (netbsd-386), const TCP_MAXWIN ideal-int
-pkg syscall (netbsd-386), const TCP_MAX_WINSHIFT ideal-int
-pkg syscall (netbsd-386), const TCP_MD5SIG ideal-int
-pkg syscall (netbsd-386), const TCP_MINMSS ideal-int
-pkg syscall (netbsd-386), const TCP_MSS ideal-int
-pkg syscall (netbsd-386), const TCSAFLUSH ideal-int
-pkg syscall (netbsd-386), const TIOCCBRK ideal-int
-pkg syscall (netbsd-386), const TIOCCDTR ideal-int
-pkg syscall (netbsd-386), const TIOCCONS ideal-int
-pkg syscall (netbsd-386), const TIOCDCDTIMESTAMP ideal-int
-pkg syscall (netbsd-386), const TIOCDRAIN ideal-int
-pkg syscall (netbsd-386), const TIOCEXCL ideal-int
-pkg syscall (netbsd-386), const TIOCEXT ideal-int
-pkg syscall (netbsd-386), const TIOCFLAG_CDTRCTS ideal-int
-pkg syscall (netbsd-386), const TIOCFLAG_CLOCAL ideal-int
-pkg syscall (netbsd-386), const TIOCFLAG_CRTSCTS ideal-int
-pkg syscall (netbsd-386), const TIOCFLAG_MDMBUF ideal-int
-pkg syscall (netbsd-386), const TIOCFLAG_SOFTCAR ideal-int
-pkg syscall (netbsd-386), const TIOCFLUSH ideal-int
-pkg syscall (netbsd-386), const TIOCGETA ideal-int
-pkg syscall (netbsd-386), const TIOCGETD ideal-int
-pkg syscall (netbsd-386), const TIOCGFLAGS ideal-int
-pkg syscall (netbsd-386), const TIOCGLINED ideal-int
-pkg syscall (netbsd-386), const TIOCGPGRP ideal-int
-pkg syscall (netbsd-386), const TIOCGQSIZE ideal-int
-pkg syscall (netbsd-386), const TIOCGRANTPT ideal-int
-pkg syscall (netbsd-386), const TIOCGSID ideal-int
-pkg syscall (netbsd-386), const TIOCGSIZE ideal-int
-pkg syscall (netbsd-386), const TIOCGWINSZ ideal-int
-pkg syscall (netbsd-386), const TIOCMBIC ideal-int
-pkg syscall (netbsd-386), const TIOCMBIS ideal-int
-pkg syscall (netbsd-386), const TIOCMGET ideal-int
-pkg syscall (netbsd-386), const TIOCMSET ideal-int
-pkg syscall (netbsd-386), const TIOCM_CAR ideal-int
-pkg syscall (netbsd-386), const TIOCM_CD ideal-int
-pkg syscall (netbsd-386), const TIOCM_CTS ideal-int
-pkg syscall (netbsd-386), const TIOCM_DSR ideal-int
-pkg syscall (netbsd-386), const TIOCM_DTR ideal-int
-pkg syscall (netbsd-386), const TIOCM_LE ideal-int
-pkg syscall (netbsd-386), const TIOCM_RI ideal-int
-pkg syscall (netbsd-386), const TIOCM_RNG ideal-int
-pkg syscall (netbsd-386), const TIOCM_RTS ideal-int
-pkg syscall (netbsd-386), const TIOCM_SR ideal-int
-pkg syscall (netbsd-386), const TIOCM_ST ideal-int
-pkg syscall (netbsd-386), const TIOCNOTTY ideal-int
-pkg syscall (netbsd-386), const TIOCNXCL ideal-int
-pkg syscall (netbsd-386), const TIOCOUTQ ideal-int
-pkg syscall (netbsd-386), const TIOCPKT ideal-int
-pkg syscall (netbsd-386), const TIOCPKT_DATA ideal-int
-pkg syscall (netbsd-386), const TIOCPKT_DOSTOP ideal-int
-pkg syscall (netbsd-386), const TIOCPKT_FLUSHREAD ideal-int
-pkg syscall (netbsd-386), const TIOCPKT_FLUSHWRITE ideal-int
-pkg syscall (netbsd-386), const TIOCPKT_IOCTL ideal-int
-pkg syscall (netbsd-386), const TIOCPKT_NOSTOP ideal-int
-pkg syscall (netbsd-386), const TIOCPKT_START ideal-int
-pkg syscall (netbsd-386), const TIOCPKT_STOP ideal-int
-pkg syscall (netbsd-386), const TIOCPTMGET ideal-int
-pkg syscall (netbsd-386), const TIOCPTSNAME ideal-int
-pkg syscall (netbsd-386), const TIOCRCVFRAME ideal-int
-pkg syscall (netbsd-386), const TIOCREMOTE ideal-int
-pkg syscall (netbsd-386), const TIOCSBRK ideal-int
-pkg syscall (netbsd-386), const TIOCSCTTY ideal-int
-pkg syscall (netbsd-386), const TIOCSDTR ideal-int
-pkg syscall (netbsd-386), const TIOCSETA ideal-int
-pkg syscall (netbsd-386), const TIOCSETAF ideal-int
-pkg syscall (netbsd-386), const TIOCSETAW ideal-int
-pkg syscall (netbsd-386), const TIOCSETD ideal-int
-pkg syscall (netbsd-386), const TIOCSFLAGS ideal-int
-pkg syscall (netbsd-386), const TIOCSIG ideal-int
-pkg syscall (netbsd-386), const TIOCSLINED ideal-int
-pkg syscall (netbsd-386), const TIOCSPGRP ideal-int
-pkg syscall (netbsd-386), const TIOCSQSIZE ideal-int
-pkg syscall (netbsd-386), const TIOCSSIZE ideal-int
-pkg syscall (netbsd-386), const TIOCSTART ideal-int
-pkg syscall (netbsd-386), const TIOCSTAT ideal-int
-pkg syscall (netbsd-386), const TIOCSTI ideal-int
-pkg syscall (netbsd-386), const TIOCSTOP ideal-int
-pkg syscall (netbsd-386), const TIOCSWINSZ ideal-int
-pkg syscall (netbsd-386), const TIOCUCNTL ideal-int
-pkg syscall (netbsd-386), const TIOCXMTFRAME ideal-int
-pkg syscall (netbsd-386), const TOSTOP ideal-int
-pkg syscall (netbsd-386), const VDISCARD ideal-int
-pkg syscall (netbsd-386), const VDSUSP ideal-int
-pkg syscall (netbsd-386), const VEOF ideal-int
-pkg syscall (netbsd-386), const VEOL ideal-int
-pkg syscall (netbsd-386), const VEOL2 ideal-int
-pkg syscall (netbsd-386), const VERASE ideal-int
-pkg syscall (netbsd-386), const VINTR ideal-int
-pkg syscall (netbsd-386), const VKILL ideal-int
-pkg syscall (netbsd-386), const VLNEXT ideal-int
-pkg syscall (netbsd-386), const VMIN ideal-int
-pkg syscall (netbsd-386), const VQUIT ideal-int
-pkg syscall (netbsd-386), const VREPRINT ideal-int
-pkg syscall (netbsd-386), const VSTART ideal-int
-pkg syscall (netbsd-386), const VSTATUS ideal-int
-pkg syscall (netbsd-386), const VSTOP ideal-int
-pkg syscall (netbsd-386), const VSUSP ideal-int
-pkg syscall (netbsd-386), const VTIME ideal-int
-pkg syscall (netbsd-386), const VWERASE ideal-int
-pkg syscall (netbsd-386), const WALL ideal-int
-pkg syscall (netbsd-386), const WALLSIG ideal-int
-pkg syscall (netbsd-386), const WALTSIG ideal-int
-pkg syscall (netbsd-386), const WCLONE ideal-int
-pkg syscall (netbsd-386), const WCOREFLAG ideal-int
-pkg syscall (netbsd-386), const WNOHANG ideal-int
-pkg syscall (netbsd-386), const WNOWAIT ideal-int
-pkg syscall (netbsd-386), const WNOZOMBIE ideal-int
-pkg syscall (netbsd-386), const WOPTSCHECKED ideal-int
-pkg syscall (netbsd-386), const WSTOPPED ideal-int
-pkg syscall (netbsd-386), const WUNTRACED ideal-int
-pkg syscall (netbsd-386), func Accept(int) (int, Sockaddr, error)
-pkg syscall (netbsd-386), func Access(string, uint32) error
-pkg syscall (netbsd-386), func Adjtime(*Timeval, *Timeval) error
-pkg syscall (netbsd-386), func Bind(int, Sockaddr) error
-pkg syscall (netbsd-386), func BpfBuflen(int) (int, error)
-pkg syscall (netbsd-386), func BpfDatalink(int) (int, error)
-pkg syscall (netbsd-386), func BpfHeadercmpl(int) (int, error)
-pkg syscall (netbsd-386), func BpfInterface(int, string) (string, error)
-pkg syscall (netbsd-386), func BpfJump(int, int, int, int) *BpfInsn
-pkg syscall (netbsd-386), func BpfStats(int) (*BpfStat, error)
-pkg syscall (netbsd-386), func BpfStmt(int, int) *BpfInsn
-pkg syscall (netbsd-386), func BpfTimeout(int) (*Timeval, error)
-pkg syscall (netbsd-386), func CheckBpfVersion(int) error
-pkg syscall (netbsd-386), func Chflags(string, int) error
-pkg syscall (netbsd-386), func Chroot(string) error
-pkg syscall (netbsd-386), func Close(int) error
-pkg syscall (netbsd-386), func CloseOnExec(int)
-pkg syscall (netbsd-386), func CmsgLen(int) int
-pkg syscall (netbsd-386), func CmsgSpace(int) int
-pkg syscall (netbsd-386), func Connect(int, Sockaddr) error
-pkg syscall (netbsd-386), func Dup(int) (int, error)
-pkg syscall (netbsd-386), func Dup2(int, int) error
-pkg syscall (netbsd-386), func Fchdir(int) error
-pkg syscall (netbsd-386), func Fchflags(int, int) error
-pkg syscall (netbsd-386), func Fchmod(int, uint32) error
-pkg syscall (netbsd-386), func Fchown(int, int, int) error
-pkg syscall (netbsd-386), func Flock(int, int) error
-pkg syscall (netbsd-386), func FlushBpf(int) error
-pkg syscall (netbsd-386), func ForkExec(string, []string, *ProcAttr) (int, error)
-pkg syscall (netbsd-386), func Fpathconf(int, int) (int, error)
-pkg syscall (netbsd-386), func Fstat(int, *Stat_t) error
-pkg syscall (netbsd-386), func Fsync(int) error
-pkg syscall (netbsd-386), func Ftruncate(int, int64) error
-pkg syscall (netbsd-386), func Futimes(int, []Timeval) error
-pkg syscall (netbsd-386), func Getdirentries(int, []uint8, *uintptr) (int, error)
-pkg syscall (netbsd-386), func Getpeername(int) (Sockaddr, error)
-pkg syscall (netbsd-386), func Getpgid(int) (int, error)
-pkg syscall (netbsd-386), func Getpgrp() int
-pkg syscall (netbsd-386), func Getpriority(int, int) (int, error)
-pkg syscall (netbsd-386), func Getrlimit(int, *Rlimit) error
-pkg syscall (netbsd-386), func Getrusage(int, *Rusage) error
-pkg syscall (netbsd-386), func Getsid(int) (int, error)
-pkg syscall (netbsd-386), func Getsockname(int) (Sockaddr, error)
-pkg syscall (netbsd-386), func GetsockoptByte(int, int, int) (uint8, error)
-pkg syscall (netbsd-386), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
-pkg syscall (netbsd-386), func GetsockoptIPMreq(int, int, int) (*IPMreq, error)
-pkg syscall (netbsd-386), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
-pkg syscall (netbsd-386), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error)
-pkg syscall (netbsd-386), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error)
-pkg syscall (netbsd-386), func GetsockoptInt(int, int, int) (int, error)
-pkg syscall (netbsd-386), func Issetugid() bool
-pkg syscall (netbsd-386), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error)
-pkg syscall (netbsd-386), func Kill(int, Signal) error
-pkg syscall (netbsd-386), func Kqueue() (int, error)
-pkg syscall (netbsd-386), func Listen(int, int) error
-pkg syscall (netbsd-386), func Lstat(string, *Stat_t) error
-pkg syscall (netbsd-386), func Mkfifo(string, uint32) error
-pkg syscall (netbsd-386), func Mknod(string, uint32, int) error
-pkg syscall (netbsd-386), func Mmap(int, int64, int, int, int) ([]uint8, error)
-pkg syscall (netbsd-386), func Munmap([]uint8) error
-pkg syscall (netbsd-386), func Nanosleep(*Timespec, *Timespec) error
-pkg syscall (netbsd-386), func Open(string, int, uint32) (int, error)
-pkg syscall (netbsd-386), func ParseDirent([]uint8, int, []string) (int, int, []string)
-pkg syscall (netbsd-386), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error)
-pkg syscall (netbsd-386), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error)
-pkg syscall (netbsd-386), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error)
-pkg syscall (netbsd-386), func ParseUnixRights(*SocketControlMessage) ([]int, error)
-pkg syscall (netbsd-386), func Pathconf(string, int) (int, error)
-pkg syscall (netbsd-386), func Pipe([]int) error
-pkg syscall (netbsd-386), func Pread(int, []uint8, int64) (int, error)
-pkg syscall (netbsd-386), func Pwrite(int, []uint8, int64) (int, error)
-pkg syscall (netbsd-386), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (netbsd-386), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (netbsd-386), func Read(int, []uint8) (int, error)
-pkg syscall (netbsd-386), func ReadDirent(int, []uint8) (int, error)
-pkg syscall (netbsd-386), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
-pkg syscall (netbsd-386), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
-pkg syscall (netbsd-386), func Revoke(string) error
-pkg syscall (netbsd-386), func RouteRIB(int, int) ([]uint8, error)
-pkg syscall (netbsd-386), func Seek(int, int64, int) (int64, error)
-pkg syscall (netbsd-386), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error
-pkg syscall (netbsd-386), func Sendfile(int, int, *int64, int) (int, error)
-pkg syscall (netbsd-386), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
-pkg syscall (netbsd-386), func Sendto(int, []uint8, int, Sockaddr) error
-pkg syscall (netbsd-386), func SetBpf(int, []BpfInsn) error
-pkg syscall (netbsd-386), func SetBpfBuflen(int, int) (int, error)
-pkg syscall (netbsd-386), func SetBpfDatalink(int, int) (int, error)
-pkg syscall (netbsd-386), func SetBpfHeadercmpl(int, int) error
-pkg syscall (netbsd-386), func SetBpfImmediate(int, int) error
-pkg syscall (netbsd-386), func SetBpfInterface(int, string) error
-pkg syscall (netbsd-386), func SetBpfPromisc(int, int) error
-pkg syscall (netbsd-386), func SetBpfTimeout(int, *Timeval) error
-pkg syscall (netbsd-386), func SetKevent(*Kevent_t, int, int, int)
-pkg syscall (netbsd-386), func SetNonblock(int, bool) error
-pkg syscall (netbsd-386), func Setegid(int) error
-pkg syscall (netbsd-386), func Seteuid(int) error
-pkg syscall (netbsd-386), func Setgid(int) error
-pkg syscall (netbsd-386), func Setgroups([]int) error
-pkg syscall (netbsd-386), func Setpgid(int, int) error
-pkg syscall (netbsd-386), func Setpriority(int, int, int) error
-pkg syscall (netbsd-386), func Setregid(int, int) error
-pkg syscall (netbsd-386), func Setreuid(int, int) error
-pkg syscall (netbsd-386), func Setrlimit(int, *Rlimit) error
-pkg syscall (netbsd-386), func Setsid() (int, error)
-pkg syscall (netbsd-386), func SetsockoptByte(int, int, int, uint8) error
-pkg syscall (netbsd-386), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
-pkg syscall (netbsd-386), func SetsockoptIPMreq(int, int, int, *IPMreq) error
-pkg syscall (netbsd-386), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error
-pkg syscall (netbsd-386), func SetsockoptInet4Addr(int, int, int, [4]uint8) error
-pkg syscall (netbsd-386), func SetsockoptInt(int, int, int, int) error
-pkg syscall (netbsd-386), func SetsockoptLinger(int, int, int, *Linger) error
-pkg syscall (netbsd-386), func SetsockoptString(int, int, int, string) error
-pkg syscall (netbsd-386), func SetsockoptTimeval(int, int, int, *Timeval) error
-pkg syscall (netbsd-386), func Settimeofday(*Timeval) error
-pkg syscall (netbsd-386), func Setuid(int) error
-pkg syscall (netbsd-386), func Shutdown(int, int) error
-pkg syscall (netbsd-386), func SlicePtrFromStrings([]string) ([]*uint8, error)
-pkg syscall (netbsd-386), func Socket(int, int, int) (int, error)
-pkg syscall (netbsd-386), func Socketpair(int, int, int) ([2]int, error)
-pkg syscall (netbsd-386), func Stat(string, *Stat_t) error
-pkg syscall (netbsd-386), func StringSlicePtr([]string) []*uint8
-pkg syscall (netbsd-386), func Sync() error
-pkg syscall (netbsd-386), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (netbsd-386), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (netbsd-386), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (netbsd-386), func Sysctl(string) (string, error)
-pkg syscall (netbsd-386), func SysctlUint32(string) (uint32, error)
-pkg syscall (netbsd-386), func TimevalToNsec(Timeval) int64
-pkg syscall (netbsd-386), func Truncate(string, int64) error
-pkg syscall (netbsd-386), func Umask(int) int
-pkg syscall (netbsd-386), func UnixRights(...int) []uint8
-pkg syscall (netbsd-386), func Unmount(string, int) error
-pkg syscall (netbsd-386), func Wait4(int, *WaitStatus, int, *Rusage) (int, error)
-pkg syscall (netbsd-386), func Write(int, []uint8) (int, error)
-pkg syscall (netbsd-386), method (*Cmsghdr) SetLen(int)
-pkg syscall (netbsd-386), method (*Iovec) SetLen(int)
-pkg syscall (netbsd-386), method (*Msghdr) SetControllen(int)
-pkg syscall (netbsd-386), type BpfHdr struct
-pkg syscall (netbsd-386), type BpfHdr struct, Caplen uint32
-pkg syscall (netbsd-386), type BpfHdr struct, Datalen uint32
-pkg syscall (netbsd-386), type BpfHdr struct, Hdrlen uint16
-pkg syscall (netbsd-386), type BpfHdr struct, Pad_cgo_0 [2]uint8
-pkg syscall (netbsd-386), type BpfHdr struct, Tstamp BpfTimeval
-pkg syscall (netbsd-386), type BpfInsn struct
-pkg syscall (netbsd-386), type BpfInsn struct, Code uint16
-pkg syscall (netbsd-386), type BpfInsn struct, Jf uint8
-pkg syscall (netbsd-386), type BpfInsn struct, Jt uint8
-pkg syscall (netbsd-386), type BpfInsn struct, K uint32
-pkg syscall (netbsd-386), type BpfProgram struct
-pkg syscall (netbsd-386), type BpfProgram struct, Insns *BpfInsn
-pkg syscall (netbsd-386), type BpfProgram struct, Len uint32
-pkg syscall (netbsd-386), type BpfStat struct
-pkg syscall (netbsd-386), type BpfStat struct, Capt uint64
-pkg syscall (netbsd-386), type BpfStat struct, Drop uint64
-pkg syscall (netbsd-386), type BpfStat struct, Padding [13]uint64
-pkg syscall (netbsd-386), type BpfStat struct, Recv uint64
-pkg syscall (netbsd-386), type BpfTimeval struct
-pkg syscall (netbsd-386), type BpfTimeval struct, Sec int32
-pkg syscall (netbsd-386), type BpfTimeval struct, Usec int32
-pkg syscall (netbsd-386), type BpfVersion struct
-pkg syscall (netbsd-386), type BpfVersion struct, Major uint16
-pkg syscall (netbsd-386), type BpfVersion struct, Minor uint16
-pkg syscall (netbsd-386), type Cmsghdr struct
-pkg syscall (netbsd-386), type Cmsghdr struct, Len uint32
-pkg syscall (netbsd-386), type Cmsghdr struct, Level int32
-pkg syscall (netbsd-386), type Cmsghdr struct, Type int32
-pkg syscall (netbsd-386), type Credential struct
-pkg syscall (netbsd-386), type Credential struct, Gid uint32
-pkg syscall (netbsd-386), type Credential struct, Groups []uint32
-pkg syscall (netbsd-386), type Credential struct, Uid uint32
-pkg syscall (netbsd-386), type Dirent struct
-pkg syscall (netbsd-386), type Dirent struct, Fileno uint64
-pkg syscall (netbsd-386), type Dirent struct, Name [512]int8
-pkg syscall (netbsd-386), type Dirent struct, Namlen uint16
-pkg syscall (netbsd-386), type Dirent struct, Pad_cgo_0 [3]uint8
-pkg syscall (netbsd-386), type Dirent struct, Reclen uint16
-pkg syscall (netbsd-386), type Dirent struct, Type uint8
-pkg syscall (netbsd-386), type FdSet struct
-pkg syscall (netbsd-386), type FdSet struct, Bits [8]uint32
-pkg syscall (netbsd-386), type Flock_t struct
-pkg syscall (netbsd-386), type Flock_t struct, Len int64
-pkg syscall (netbsd-386), type Flock_t struct, Pid int32
-pkg syscall (netbsd-386), type Flock_t struct, Start int64
-pkg syscall (netbsd-386), type Flock_t struct, Type int16
-pkg syscall (netbsd-386), type Flock_t struct, Whence int16
-pkg syscall (netbsd-386), type Fsid struct
-pkg syscall (netbsd-386), type Fsid struct, X__fsid_val [2]int32
-pkg syscall (netbsd-386), type ICMPv6Filter struct
-pkg syscall (netbsd-386), type ICMPv6Filter struct, Filt [8]uint32
-pkg syscall (netbsd-386), type IPv6MTUInfo struct
-pkg syscall (netbsd-386), type IPv6MTUInfo struct, Addr RawSockaddrInet6
-pkg syscall (netbsd-386), type IPv6MTUInfo struct, Mtu uint32
-pkg syscall (netbsd-386), type IfAnnounceMsghdr struct
-pkg syscall (netbsd-386), type IfAnnounceMsghdr struct, Index uint16
-pkg syscall (netbsd-386), type IfAnnounceMsghdr struct, Msglen uint16
-pkg syscall (netbsd-386), type IfAnnounceMsghdr struct, Name [16]int8
-pkg syscall (netbsd-386), type IfAnnounceMsghdr struct, Type uint8
-pkg syscall (netbsd-386), type IfAnnounceMsghdr struct, Version uint8
-pkg syscall (netbsd-386), type IfAnnounceMsghdr struct, What uint16
-pkg syscall (netbsd-386), type IfData struct
-pkg syscall (netbsd-386), type IfData struct, Addrlen uint8
-pkg syscall (netbsd-386), type IfData struct, Baudrate uint64
-pkg syscall (netbsd-386), type IfData struct, Collisions uint64
-pkg syscall (netbsd-386), type IfData struct, Hdrlen uint8
-pkg syscall (netbsd-386), type IfData struct, Ibytes uint64
-pkg syscall (netbsd-386), type IfData struct, Ierrors uint64
-pkg syscall (netbsd-386), type IfData struct, Imcasts uint64
-pkg syscall (netbsd-386), type IfData struct, Ipackets uint64
-pkg syscall (netbsd-386), type IfData struct, Iqdrops uint64
-pkg syscall (netbsd-386), type IfData struct, Lastchange Timespec
-pkg syscall (netbsd-386), type IfData struct, Link_state int32
-pkg syscall (netbsd-386), type IfData struct, Metric uint64
-pkg syscall (netbsd-386), type IfData struct, Mtu uint64
-pkg syscall (netbsd-386), type IfData struct, Noproto uint64
-pkg syscall (netbsd-386), type IfData struct, Obytes uint64
-pkg syscall (netbsd-386), type IfData struct, Oerrors uint64
-pkg syscall (netbsd-386), type IfData struct, Omcasts uint64
-pkg syscall (netbsd-386), type IfData struct, Opackets uint64
-pkg syscall (netbsd-386), type IfData struct, Pad_cgo_0 [1]uint8
-pkg syscall (netbsd-386), type IfData struct, Type uint8
-pkg syscall (netbsd-386), type IfMsghdr struct
-pkg syscall (netbsd-386), type IfMsghdr struct, Addrs int32
-pkg syscall (netbsd-386), type IfMsghdr struct, Data IfData
-pkg syscall (netbsd-386), type IfMsghdr struct, Flags int32
-pkg syscall (netbsd-386), type IfMsghdr struct, Index uint16
-pkg syscall (netbsd-386), type IfMsghdr struct, Msglen uint16
-pkg syscall (netbsd-386), type IfMsghdr struct, Pad_cgo_0 [2]uint8
-pkg syscall (netbsd-386), type IfMsghdr struct, Pad_cgo_1 [4]uint8
-pkg syscall (netbsd-386), type IfMsghdr struct, Type uint8
-pkg syscall (netbsd-386), type IfMsghdr struct, Version uint8
-pkg syscall (netbsd-386), type IfaMsghdr struct
-pkg syscall (netbsd-386), type IfaMsghdr struct, Addrs int32
-pkg syscall (netbsd-386), type IfaMsghdr struct, Flags int32
-pkg syscall (netbsd-386), type IfaMsghdr struct, Index uint16
-pkg syscall (netbsd-386), type IfaMsghdr struct, Metric int32
-pkg syscall (netbsd-386), type IfaMsghdr struct, Msglen uint16
-pkg syscall (netbsd-386), type IfaMsghdr struct, Pad_cgo_0 [6]uint8
-pkg syscall (netbsd-386), type IfaMsghdr struct, Type uint8
-pkg syscall (netbsd-386), type IfaMsghdr struct, Version uint8
-pkg syscall (netbsd-386), type Inet6Pktinfo struct
-pkg syscall (netbsd-386), type Inet6Pktinfo struct, Addr [16]uint8
-pkg syscall (netbsd-386), type Inet6Pktinfo struct, Ifindex uint32
-pkg syscall (netbsd-386), type InterfaceAddrMessage struct
-pkg syscall (netbsd-386), type InterfaceAddrMessage struct, Data []uint8
-pkg syscall (netbsd-386), type InterfaceAddrMessage struct, Header IfaMsghdr
-pkg syscall (netbsd-386), type InterfaceAnnounceMessage struct
-pkg syscall (netbsd-386), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr
-pkg syscall (netbsd-386), type InterfaceMessage struct
-pkg syscall (netbsd-386), type InterfaceMessage struct, Data []uint8
-pkg syscall (netbsd-386), type InterfaceMessage struct, Header IfMsghdr
-pkg syscall (netbsd-386), type Iovec struct
-pkg syscall (netbsd-386), type Iovec struct, Base *uint8
-pkg syscall (netbsd-386), type Iovec struct, Len uint32
-pkg syscall (netbsd-386), type Kevent_t struct
-pkg syscall (netbsd-386), type Kevent_t struct, Data int64
-pkg syscall (netbsd-386), type Kevent_t struct, Fflags uint32
-pkg syscall (netbsd-386), type Kevent_t struct, Filter uint32
-pkg syscall (netbsd-386), type Kevent_t struct, Flags uint32
-pkg syscall (netbsd-386), type Kevent_t struct, Ident uint32
-pkg syscall (netbsd-386), type Kevent_t struct, Udata int32
-pkg syscall (netbsd-386), type Mclpool [0]uint8
-pkg syscall (netbsd-386), type Msghdr struct
-pkg syscall (netbsd-386), type Msghdr struct, Control *uint8
-pkg syscall (netbsd-386), type Msghdr struct, Controllen uint32
-pkg syscall (netbsd-386), type Msghdr struct, Flags int32
-pkg syscall (netbsd-386), type Msghdr struct, Iov *Iovec
-pkg syscall (netbsd-386), type Msghdr struct, Iovlen int32
-pkg syscall (netbsd-386), type Msghdr struct, Name *uint8
-pkg syscall (netbsd-386), type Msghdr struct, Namelen uint32
-pkg syscall (netbsd-386), type RawSockaddr struct, Data [14]int8
-pkg syscall (netbsd-386), type RawSockaddr struct, Family uint8
-pkg syscall (netbsd-386), type RawSockaddr struct, Len uint8
-pkg syscall (netbsd-386), type RawSockaddrAny struct, Pad [92]int8
-pkg syscall (netbsd-386), type RawSockaddrDatalink struct
-pkg syscall (netbsd-386), type RawSockaddrDatalink struct, Alen uint8
-pkg syscall (netbsd-386), type RawSockaddrDatalink struct, Data [12]int8
-pkg syscall (netbsd-386), type RawSockaddrDatalink struct, Family uint8
-pkg syscall (netbsd-386), type RawSockaddrDatalink struct, Index uint16
-pkg syscall (netbsd-386), type RawSockaddrDatalink struct, Len uint8
-pkg syscall (netbsd-386), type RawSockaddrDatalink struct, Nlen uint8
-pkg syscall (netbsd-386), type RawSockaddrDatalink struct, Slen uint8
-pkg syscall (netbsd-386), type RawSockaddrDatalink struct, Type uint8
-pkg syscall (netbsd-386), type RawSockaddrInet4 struct, Family uint8
-pkg syscall (netbsd-386), type RawSockaddrInet4 struct, Len uint8
-pkg syscall (netbsd-386), type RawSockaddrInet4 struct, Zero [8]int8
-pkg syscall (netbsd-386), type RawSockaddrInet6 struct, Family uint8
-pkg syscall (netbsd-386), type RawSockaddrInet6 struct, Len uint8
-pkg syscall (netbsd-386), type RawSockaddrUnix struct
-pkg syscall (netbsd-386), type RawSockaddrUnix struct, Family uint8
-pkg syscall (netbsd-386), type RawSockaddrUnix struct, Len uint8
-pkg syscall (netbsd-386), type RawSockaddrUnix struct, Path [104]int8
-pkg syscall (netbsd-386), type Rlimit struct
-pkg syscall (netbsd-386), type Rlimit struct, Cur uint64
-pkg syscall (netbsd-386), type Rlimit struct, Max uint64
-pkg syscall (netbsd-386), type RouteMessage struct
-pkg syscall (netbsd-386), type RouteMessage struct, Data []uint8
-pkg syscall (netbsd-386), type RouteMessage struct, Header RtMsghdr
-pkg syscall (netbsd-386), type RoutingMessage interface, unexported methods
-pkg syscall (netbsd-386), type RtMetrics struct
-pkg syscall (netbsd-386), type RtMetrics struct, Expire int64
-pkg syscall (netbsd-386), type RtMetrics struct, Hopcount uint64
-pkg syscall (netbsd-386), type RtMetrics struct, Locks uint64
-pkg syscall (netbsd-386), type RtMetrics struct, Mtu uint64
-pkg syscall (netbsd-386), type RtMetrics struct, Pksent int64
-pkg syscall (netbsd-386), type RtMetrics struct, Recvpipe uint64
-pkg syscall (netbsd-386), type RtMetrics struct, Rtt uint64
-pkg syscall (netbsd-386), type RtMetrics struct, Rttvar uint64
-pkg syscall (netbsd-386), type RtMetrics struct, Sendpipe uint64
-pkg syscall (netbsd-386), type RtMetrics struct, Ssthresh uint64
-pkg syscall (netbsd-386), type RtMsghdr struct
-pkg syscall (netbsd-386), type RtMsghdr struct, Addrs int32
-pkg syscall (netbsd-386), type RtMsghdr struct, Errno int32
-pkg syscall (netbsd-386), type RtMsghdr struct, Flags int32
-pkg syscall (netbsd-386), type RtMsghdr struct, Index uint16
-pkg syscall (netbsd-386), type RtMsghdr struct, Inits int32
-pkg syscall (netbsd-386), type RtMsghdr struct, Msglen uint16
-pkg syscall (netbsd-386), type RtMsghdr struct, Pad_cgo_0 [2]uint8
-pkg syscall (netbsd-386), type RtMsghdr struct, Pad_cgo_1 [4]uint8
-pkg syscall (netbsd-386), type RtMsghdr struct, Pid int32
-pkg syscall (netbsd-386), type RtMsghdr struct, Rmx RtMetrics
-pkg syscall (netbsd-386), type RtMsghdr struct, Seq int32
-pkg syscall (netbsd-386), type RtMsghdr struct, Type uint8
-pkg syscall (netbsd-386), type RtMsghdr struct, Use int32
-pkg syscall (netbsd-386), type RtMsghdr struct, Version uint8
-pkg syscall (netbsd-386), type Rusage struct, Idrss int32
-pkg syscall (netbsd-386), type Rusage struct, Inblock int32
-pkg syscall (netbsd-386), type Rusage struct, Isrss int32
-pkg syscall (netbsd-386), type Rusage struct, Ixrss int32
-pkg syscall (netbsd-386), type Rusage struct, Majflt int32
-pkg syscall (netbsd-386), type Rusage struct, Maxrss int32
-pkg syscall (netbsd-386), type Rusage struct, Minflt int32
-pkg syscall (netbsd-386), type Rusage struct, Msgrcv int32
-pkg syscall (netbsd-386), type Rusage struct, Msgsnd int32
-pkg syscall (netbsd-386), type Rusage struct, Nivcsw int32
-pkg syscall (netbsd-386), type Rusage struct, Nsignals int32
-pkg syscall (netbsd-386), type Rusage struct, Nswap int32
-pkg syscall (netbsd-386), type Rusage struct, Nvcsw int32
-pkg syscall (netbsd-386), type Rusage struct, Oublock int32
-pkg syscall (netbsd-386), type Rusage struct, Stime Timeval
-pkg syscall (netbsd-386), type Rusage struct, Utime Timeval
-pkg syscall (netbsd-386), type SockaddrDatalink struct
-pkg syscall (netbsd-386), type SockaddrDatalink struct, Alen uint8
-pkg syscall (netbsd-386), type SockaddrDatalink struct, Data [12]int8
-pkg syscall (netbsd-386), type SockaddrDatalink struct, Family uint8
-pkg syscall (netbsd-386), type SockaddrDatalink struct, Index uint16
-pkg syscall (netbsd-386), type SockaddrDatalink struct, Len uint8
-pkg syscall (netbsd-386), type SockaddrDatalink struct, Nlen uint8
-pkg syscall (netbsd-386), type SockaddrDatalink struct, Slen uint8
-pkg syscall (netbsd-386), type SockaddrDatalink struct, Type uint8
-pkg syscall (netbsd-386), type SocketControlMessage struct
-pkg syscall (netbsd-386), type SocketControlMessage struct, Data []uint8
-pkg syscall (netbsd-386), type SocketControlMessage struct, Header Cmsghdr
-pkg syscall (netbsd-386), type Stat_t struct
-pkg syscall (netbsd-386), type Stat_t struct, Atimespec Timespec
-pkg syscall (netbsd-386), type Stat_t struct, Birthtimespec Timespec
-pkg syscall (netbsd-386), type Stat_t struct, Blksize uint32
-pkg syscall (netbsd-386), type Stat_t struct, Blocks int64
-pkg syscall (netbsd-386), type Stat_t struct, Ctimespec Timespec
-pkg syscall (netbsd-386), type Stat_t struct, Dev uint64
-pkg syscall (netbsd-386), type Stat_t struct, Flags uint32
-pkg syscall (netbsd-386), type Stat_t struct, Gen uint32
-pkg syscall (netbsd-386), type Stat_t struct, Gid uint32
-pkg syscall (netbsd-386), type Stat_t struct, Ino uint64
-pkg syscall (netbsd-386), type Stat_t struct, Mode uint32
-pkg syscall (netbsd-386), type Stat_t struct, Mtimespec Timespec
-pkg syscall (netbsd-386), type Stat_t struct, Nlink uint32
-pkg syscall (netbsd-386), type Stat_t struct, Rdev uint64
-pkg syscall (netbsd-386), type Stat_t struct, Size int64
-pkg syscall (netbsd-386), type Stat_t struct, Spare [2]uint32
-pkg syscall (netbsd-386), type Stat_t struct, Uid uint32
-pkg syscall (netbsd-386), type Statfs_t [0]uint8
-pkg syscall (netbsd-386), type SysProcAttr struct, Chroot string
-pkg syscall (netbsd-386), type SysProcAttr struct, Credential *Credential
-pkg syscall (netbsd-386), type SysProcAttr struct, Noctty bool
-pkg syscall (netbsd-386), type SysProcAttr struct, Ptrace bool
-pkg syscall (netbsd-386), type SysProcAttr struct, Setctty bool
-pkg syscall (netbsd-386), type SysProcAttr struct, Setpgid bool
-pkg syscall (netbsd-386), type SysProcAttr struct, Setsid bool
-pkg syscall (netbsd-386), type Sysctlnode struct
-pkg syscall (netbsd-386), type Sysctlnode struct, Flags uint32
-pkg syscall (netbsd-386), type Sysctlnode struct, Name [32]int8
-pkg syscall (netbsd-386), type Sysctlnode struct, Num int32
-pkg syscall (netbsd-386), type Sysctlnode struct, Un [16]uint8
-pkg syscall (netbsd-386), type Sysctlnode struct, Ver uint32
-pkg syscall (netbsd-386), type Sysctlnode struct, X__rsvd uint32
-pkg syscall (netbsd-386), type Sysctlnode struct, X_sysctl_desc [8]uint8
-pkg syscall (netbsd-386), type Sysctlnode struct, X_sysctl_func [8]uint8
-pkg syscall (netbsd-386), type Sysctlnode struct, X_sysctl_parent [8]uint8
-pkg syscall (netbsd-386), type Sysctlnode struct, X_sysctl_size [8]uint8
-pkg syscall (netbsd-386), type Timespec struct, Nsec int32
-pkg syscall (netbsd-386), type Timespec struct, Sec int64
-pkg syscall (netbsd-386), type Timeval struct, Sec int64
-pkg syscall (netbsd-386), type Timeval struct, Usec int32
-pkg syscall (netbsd-386), type WaitStatus uint32
-pkg syscall (netbsd-386), var Stderr int
-pkg syscall (netbsd-386), var Stdin int
-pkg syscall (netbsd-386), var Stdout int
-pkg syscall (netbsd-386-cgo), const AF_APPLETALK ideal-int
-pkg syscall (netbsd-386-cgo), const AF_ARP ideal-int
-pkg syscall (netbsd-386-cgo), const AF_BLUETOOTH ideal-int
-pkg syscall (netbsd-386-cgo), const AF_CCITT ideal-int
-pkg syscall (netbsd-386-cgo), const AF_CHAOS ideal-int
-pkg syscall (netbsd-386-cgo), const AF_CNT ideal-int
-pkg syscall (netbsd-386-cgo), const AF_COIP ideal-int
-pkg syscall (netbsd-386-cgo), const AF_DATAKIT ideal-int
-pkg syscall (netbsd-386-cgo), const AF_DECnet ideal-int
-pkg syscall (netbsd-386-cgo), const AF_DLI ideal-int
-pkg syscall (netbsd-386-cgo), const AF_E164 ideal-int
-pkg syscall (netbsd-386-cgo), const AF_ECMA ideal-int
-pkg syscall (netbsd-386-cgo), const AF_HYLINK ideal-int
-pkg syscall (netbsd-386-cgo), const AF_IEEE80211 ideal-int
-pkg syscall (netbsd-386-cgo), const AF_IMPLINK ideal-int
-pkg syscall (netbsd-386-cgo), const AF_IPX ideal-int
-pkg syscall (netbsd-386-cgo), const AF_ISDN ideal-int
-pkg syscall (netbsd-386-cgo), const AF_ISO ideal-int
-pkg syscall (netbsd-386-cgo), const AF_LAT ideal-int
-pkg syscall (netbsd-386-cgo), const AF_LINK ideal-int
-pkg syscall (netbsd-386-cgo), const AF_LOCAL ideal-int
-pkg syscall (netbsd-386-cgo), const AF_MAX ideal-int
-pkg syscall (netbsd-386-cgo), const AF_MPLS ideal-int
-pkg syscall (netbsd-386-cgo), const AF_NATM ideal-int
-pkg syscall (netbsd-386-cgo), const AF_NS ideal-int
-pkg syscall (netbsd-386-cgo), const AF_OROUTE ideal-int
-pkg syscall (netbsd-386-cgo), const AF_OSI ideal-int
-pkg syscall (netbsd-386-cgo), const AF_PUP ideal-int
-pkg syscall (netbsd-386-cgo), const AF_ROUTE ideal-int
-pkg syscall (netbsd-386-cgo), const AF_SNA ideal-int
-pkg syscall (netbsd-386-cgo), const ARPHRD_ARCNET ideal-int
-pkg syscall (netbsd-386-cgo), const ARPHRD_ETHER ideal-int
-pkg syscall (netbsd-386-cgo), const ARPHRD_FRELAY ideal-int
-pkg syscall (netbsd-386-cgo), const ARPHRD_IEEE1394 ideal-int
-pkg syscall (netbsd-386-cgo), const ARPHRD_IEEE802 ideal-int
-pkg syscall (netbsd-386-cgo), const ARPHRD_STRIP ideal-int
-pkg syscall (netbsd-386-cgo), const B0 ideal-int
-pkg syscall (netbsd-386-cgo), const B110 ideal-int
-pkg syscall (netbsd-386-cgo), const B115200 ideal-int
-pkg syscall (netbsd-386-cgo), const B1200 ideal-int
-pkg syscall (netbsd-386-cgo), const B134 ideal-int
-pkg syscall (netbsd-386-cgo), const B14400 ideal-int
-pkg syscall (netbsd-386-cgo), const B150 ideal-int
-pkg syscall (netbsd-386-cgo), const B1800 ideal-int
-pkg syscall (netbsd-386-cgo), const B19200 ideal-int
-pkg syscall (netbsd-386-cgo), const B200 ideal-int
-pkg syscall (netbsd-386-cgo), const B230400 ideal-int
-pkg syscall (netbsd-386-cgo), const B2400 ideal-int
-pkg syscall (netbsd-386-cgo), const B28800 ideal-int
-pkg syscall (netbsd-386-cgo), const B300 ideal-int
-pkg syscall (netbsd-386-cgo), const B38400 ideal-int
-pkg syscall (netbsd-386-cgo), const B460800 ideal-int
-pkg syscall (netbsd-386-cgo), const B4800 ideal-int
-pkg syscall (netbsd-386-cgo), const B50 ideal-int
-pkg syscall (netbsd-386-cgo), const B57600 ideal-int
-pkg syscall (netbsd-386-cgo), const B600 ideal-int
-pkg syscall (netbsd-386-cgo), const B7200 ideal-int
-pkg syscall (netbsd-386-cgo), const B75 ideal-int
-pkg syscall (netbsd-386-cgo), const B76800 ideal-int
-pkg syscall (netbsd-386-cgo), const B921600 ideal-int
-pkg syscall (netbsd-386-cgo), const B9600 ideal-int
-pkg syscall (netbsd-386-cgo), const BIOCFEEDBACK ideal-int
-pkg syscall (netbsd-386-cgo), const BIOCFLUSH ideal-int
-pkg syscall (netbsd-386-cgo), const BIOCGBLEN ideal-int
-pkg syscall (netbsd-386-cgo), const BIOCGDLT ideal-int
-pkg syscall (netbsd-386-cgo), const BIOCGDLTLIST ideal-int
-pkg syscall (netbsd-386-cgo), const BIOCGETIF ideal-int
-pkg syscall (netbsd-386-cgo), const BIOCGFEEDBACK ideal-int
-pkg syscall (netbsd-386-cgo), const BIOCGHDRCMPLT ideal-int
-pkg syscall (netbsd-386-cgo), const BIOCGRTIMEOUT ideal-int
-pkg syscall (netbsd-386-cgo), const BIOCGSEESENT ideal-int
-pkg syscall (netbsd-386-cgo), const BIOCGSTATS ideal-int
-pkg syscall (netbsd-386-cgo), const BIOCGSTATSOLD ideal-int
-pkg syscall (netbsd-386-cgo), const BIOCIMMEDIATE ideal-int
-pkg syscall (netbsd-386-cgo), const BIOCPROMISC ideal-int
-pkg syscall (netbsd-386-cgo), const BIOCSBLEN ideal-int
-pkg syscall (netbsd-386-cgo), const BIOCSDLT ideal-int
-pkg syscall (netbsd-386-cgo), const BIOCSETF ideal-int
-pkg syscall (netbsd-386-cgo), const BIOCSETIF ideal-int
-pkg syscall (netbsd-386-cgo), const BIOCSFEEDBACK ideal-int
-pkg syscall (netbsd-386-cgo), const BIOCSHDRCMPLT ideal-int
-pkg syscall (netbsd-386-cgo), const BIOCSRTIMEOUT ideal-int
-pkg syscall (netbsd-386-cgo), const BIOCSSEESENT ideal-int
-pkg syscall (netbsd-386-cgo), const BIOCSTCPF ideal-int
-pkg syscall (netbsd-386-cgo), const BIOCSUDPF ideal-int
-pkg syscall (netbsd-386-cgo), const BIOCVERSION ideal-int
-pkg syscall (netbsd-386-cgo), const BPF_A ideal-int
-pkg syscall (netbsd-386-cgo), const BPF_ABS ideal-int
-pkg syscall (netbsd-386-cgo), const BPF_ADD ideal-int
-pkg syscall (netbsd-386-cgo), const BPF_ALIGNMENT ideal-int
-pkg syscall (netbsd-386-cgo), const BPF_ALIGNMENT32 ideal-int
-pkg syscall (netbsd-386-cgo), const BPF_ALU ideal-int
-pkg syscall (netbsd-386-cgo), const BPF_AND ideal-int
-pkg syscall (netbsd-386-cgo), const BPF_B ideal-int
-pkg syscall (netbsd-386-cgo), const BPF_DFLTBUFSIZE ideal-int
-pkg syscall (netbsd-386-cgo), const BPF_DIV ideal-int
-pkg syscall (netbsd-386-cgo), const BPF_H ideal-int
-pkg syscall (netbsd-386-cgo), const BPF_IMM ideal-int
-pkg syscall (netbsd-386-cgo), const BPF_IND ideal-int
-pkg syscall (netbsd-386-cgo), const BPF_JA ideal-int
-pkg syscall (netbsd-386-cgo), const BPF_JEQ ideal-int
-pkg syscall (netbsd-386-cgo), const BPF_JGE ideal-int
-pkg syscall (netbsd-386-cgo), const BPF_JGT ideal-int
-pkg syscall (netbsd-386-cgo), const BPF_JMP ideal-int
-pkg syscall (netbsd-386-cgo), const BPF_JSET ideal-int
-pkg syscall (netbsd-386-cgo), const BPF_K ideal-int
-pkg syscall (netbsd-386-cgo), const BPF_LD ideal-int
-pkg syscall (netbsd-386-cgo), const BPF_LDX ideal-int
-pkg syscall (netbsd-386-cgo), const BPF_LEN ideal-int
-pkg syscall (netbsd-386-cgo), const BPF_LSH ideal-int
-pkg syscall (netbsd-386-cgo), const BPF_MAJOR_VERSION ideal-int
-pkg syscall (netbsd-386-cgo), const BPF_MAXBUFSIZE ideal-int
-pkg syscall (netbsd-386-cgo), const BPF_MAXINSNS ideal-int
-pkg syscall (netbsd-386-cgo), const BPF_MEM ideal-int
-pkg syscall (netbsd-386-cgo), const BPF_MEMWORDS ideal-int
-pkg syscall (netbsd-386-cgo), const BPF_MINBUFSIZE ideal-int
-pkg syscall (netbsd-386-cgo), const BPF_MINOR_VERSION ideal-int
-pkg syscall (netbsd-386-cgo), const BPF_MISC ideal-int
-pkg syscall (netbsd-386-cgo), const BPF_MSH ideal-int
-pkg syscall (netbsd-386-cgo), const BPF_MUL ideal-int
-pkg syscall (netbsd-386-cgo), const BPF_NEG ideal-int
-pkg syscall (netbsd-386-cgo), const BPF_OR ideal-int
-pkg syscall (netbsd-386-cgo), const BPF_RELEASE ideal-int
-pkg syscall (netbsd-386-cgo), const BPF_RET ideal-int
-pkg syscall (netbsd-386-cgo), const BPF_RSH ideal-int
-pkg syscall (netbsd-386-cgo), const BPF_ST ideal-int
-pkg syscall (netbsd-386-cgo), const BPF_STX ideal-int
-pkg syscall (netbsd-386-cgo), const BPF_SUB ideal-int
-pkg syscall (netbsd-386-cgo), const BPF_TAX ideal-int
-pkg syscall (netbsd-386-cgo), const BPF_TXA ideal-int
-pkg syscall (netbsd-386-cgo), const BPF_W ideal-int
-pkg syscall (netbsd-386-cgo), const BPF_X ideal-int
-pkg syscall (netbsd-386-cgo), const BRKINT ideal-int
-pkg syscall (netbsd-386-cgo), const CFLUSH ideal-int
-pkg syscall (netbsd-386-cgo), const CLOCAL ideal-int
-pkg syscall (netbsd-386-cgo), const CREAD ideal-int
-pkg syscall (netbsd-386-cgo), const CS5 ideal-int
-pkg syscall (netbsd-386-cgo), const CS6 ideal-int
-pkg syscall (netbsd-386-cgo), const CS7 ideal-int
-pkg syscall (netbsd-386-cgo), const CS8 ideal-int
-pkg syscall (netbsd-386-cgo), const CSIZE ideal-int
-pkg syscall (netbsd-386-cgo), const CSTART ideal-int
-pkg syscall (netbsd-386-cgo), const CSTATUS ideal-int
-pkg syscall (netbsd-386-cgo), const CSTOP ideal-int
-pkg syscall (netbsd-386-cgo), const CSTOPB ideal-int
-pkg syscall (netbsd-386-cgo), const CSUSP ideal-int
-pkg syscall (netbsd-386-cgo), const CTL_MAXNAME ideal-int
-pkg syscall (netbsd-386-cgo), const CTL_NET ideal-int
-pkg syscall (netbsd-386-cgo), const CTL_QUERY ideal-int
-pkg syscall (netbsd-386-cgo), const DIOCBSFLUSH ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_A429 ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_A653_ICM ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_AIRONET_HEADER ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_AOS ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_ARCNET ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_ARCNET_LINUX ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_ATM_CLIP ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_ATM_RFC1483 ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_AURORA ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_AX25 ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_AX25_KISS ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_BACNET_MS_TP ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_BLUETOOTH_HCI_H4 ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_CAN20B ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_CAN_SOCKETCAN ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_CHAOS ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_CISCO_IOS ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_C_HDLC ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_C_HDLC_WITH_DIR ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_DECT ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_DOCSIS ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_ECONET ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_EN10MB ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_EN3MB ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_ENC ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_ERF ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_ERF_ETH ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_ERF_POS ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_FC_2 ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_FC_2_WITH_FRAME_DELIMS ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_FDDI ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_FLEXRAY ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_FRELAY ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_FRELAY_WITH_DIR ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_GCOM_SERIAL ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_GCOM_T1E1 ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_GPF_F ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_GPF_T ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_GPRS_LLC ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_GSMTAP_ABIS ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_GSMTAP_UM ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_HDLC ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_HHDLC ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_HIPPI ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_IBM_SN ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_IBM_SP ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_IEEE802 ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_IEEE802_11 ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_IEEE802_11_RADIO ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_IEEE802_11_RADIO_AVS ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_IEEE802_15_4 ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_IEEE802_15_4_LINUX ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_IEEE802_15_4_NONASK_PHY ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_IEEE802_16_MAC_CPS ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_IEEE802_16_MAC_CPS_RADIO ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_IPMB ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_IPMB_LINUX ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_IPNET ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_IPV4 ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_IPV6 ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_IP_OVER_FC ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_ATM1 ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_ATM2 ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_CHDLC ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_ES ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_ETHER ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_FRELAY ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_GGSN ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_ISM ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_MFR ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_MLFR ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_MLPPP ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_MONITOR ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_PIC_PEER ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_PPP ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_PPPOE ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_PPPOE_ATM ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_SERVICES ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_ST ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_VP ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_LAPB_WITH_DIR ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_LAPD ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_LIN ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_LINUX_EVDEV ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_LINUX_IRDA ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_LINUX_LAPD ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_LINUX_SLL ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_LOOP ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_LTALK ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_MFR ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_MOST ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_MPLS ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_MTP2 ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_MTP2_WITH_PHDR ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_MTP3 ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_NULL ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_PCI_EXP ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_PFLOG ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_PFSYNC ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_PPI ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_PPP ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_PPP_BSDOS ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_PPP_ETHER ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_PPP_PPPD ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_PPP_SERIAL ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_PPP_WITH_DIR ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_PRISM_HEADER ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_PRONET ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_RAIF1 ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_RAW ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_RAWAF_MASK ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_RIO ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_SCCP ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_SITA ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_SLIP ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_SLIP_BSDOS ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_SUNATM ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_SYMANTEC_FIREWALL ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_TZSP ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_USB ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_USB_LINUX ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_USB_LINUX_MMAPPED ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_WIHART ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_X2E_SERIAL ideal-int
-pkg syscall (netbsd-386-cgo), const DLT_X2E_XORAYA ideal-int
-pkg syscall (netbsd-386-cgo), const DT_BLK ideal-int
-pkg syscall (netbsd-386-cgo), const DT_CHR ideal-int
-pkg syscall (netbsd-386-cgo), const DT_DIR ideal-int
-pkg syscall (netbsd-386-cgo), const DT_FIFO ideal-int
-pkg syscall (netbsd-386-cgo), const DT_LNK ideal-int
-pkg syscall (netbsd-386-cgo), const DT_REG ideal-int
-pkg syscall (netbsd-386-cgo), const DT_SOCK ideal-int
-pkg syscall (netbsd-386-cgo), const DT_UNKNOWN ideal-int
-pkg syscall (netbsd-386-cgo), const DT_WHT ideal-int
-pkg syscall (netbsd-386-cgo), const EAUTH Errno
-pkg syscall (netbsd-386-cgo), const EBADMSG Errno
-pkg syscall (netbsd-386-cgo), const EBADRPC Errno
-pkg syscall (netbsd-386-cgo), const ECHO ideal-int
-pkg syscall (netbsd-386-cgo), const ECHOCTL ideal-int
-pkg syscall (netbsd-386-cgo), const ECHOE ideal-int
-pkg syscall (netbsd-386-cgo), const ECHOK ideal-int
-pkg syscall (netbsd-386-cgo), const ECHOKE ideal-int
-pkg syscall (netbsd-386-cgo), const ECHONL ideal-int
-pkg syscall (netbsd-386-cgo), const ECHOPRT ideal-int
-pkg syscall (netbsd-386-cgo), const EFTYPE Errno
-pkg syscall (netbsd-386-cgo), const ELAST Errno
-pkg syscall (netbsd-386-cgo), const EMULTIHOP Errno
-pkg syscall (netbsd-386-cgo), const EMUL_LINUX ideal-int
-pkg syscall (netbsd-386-cgo), const EMUL_LINUX32 ideal-int
-pkg syscall (netbsd-386-cgo), const EMUL_MAXID ideal-int
-pkg syscall (netbsd-386-cgo), const ENEEDAUTH Errno
-pkg syscall (netbsd-386-cgo), const ENOATTR Errno
-pkg syscall (netbsd-386-cgo), const ENODATA Errno
-pkg syscall (netbsd-386-cgo), const ENOLINK Errno
-pkg syscall (netbsd-386-cgo), const ENOSR Errno
-pkg syscall (netbsd-386-cgo), const ENOSTR Errno
-pkg syscall (netbsd-386-cgo), const EN_SW_CTL_INF ideal-int
-pkg syscall (netbsd-386-cgo), const EN_SW_CTL_PREC ideal-int
-pkg syscall (netbsd-386-cgo), const EN_SW_CTL_ROUND ideal-int
-pkg syscall (netbsd-386-cgo), const EN_SW_DATACHAIN ideal-int
-pkg syscall (netbsd-386-cgo), const EN_SW_DENORM ideal-int
-pkg syscall (netbsd-386-cgo), const EN_SW_INVOP ideal-int
-pkg syscall (netbsd-386-cgo), const EN_SW_OVERFLOW ideal-int
-pkg syscall (netbsd-386-cgo), const EN_SW_PRECLOSS ideal-int
-pkg syscall (netbsd-386-cgo), const EN_SW_UNDERFLOW ideal-int
-pkg syscall (netbsd-386-cgo), const EN_SW_ZERODIV ideal-int
-pkg syscall (netbsd-386-cgo), const EPROCLIM Errno
-pkg syscall (netbsd-386-cgo), const EPROCUNAVAIL Errno
-pkg syscall (netbsd-386-cgo), const EPROGMISMATCH Errno
-pkg syscall (netbsd-386-cgo), const EPROGUNAVAIL Errno
-pkg syscall (netbsd-386-cgo), const EPROTO Errno
-pkg syscall (netbsd-386-cgo), const ERPCMISMATCH Errno
-pkg syscall (netbsd-386-cgo), const ETHERCAP_JUMBO_MTU ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERCAP_VLAN_HWTAGGING ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERCAP_VLAN_MTU ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERMIN ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERMTU ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERMTU_JUMBO ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_8023 ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_AARP ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_ACCTON ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_AEONIC ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_ALPHA ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_AMBER ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_AMOEBA ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_APOLLO ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_APOLLODOMAIN ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_APPLETALK ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_APPLITEK ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_ARGONAUT ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_ARP ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_AT ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_ATALK ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_ATOMIC ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_ATT ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_ATTSTANFORD ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_AUTOPHON ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_AXIS ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_BCLOOP ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_BOFL ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_CABLETRON ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_CHAOS ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_COMDESIGN ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_COMPUGRAPHIC ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_COUNTERPOINT ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_CRONUS ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_CRONUSVLN ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_DCA ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_DDE ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_DEBNI ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_DECAM ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_DECCUST ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_DECDIAG ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_DECDNS ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_DECDTS ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_DECEXPER ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_DECLAST ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_DECLTM ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_DECMUMPS ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_DECNETBIOS ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_DELTACON ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_DIDDLE ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_DLOG1 ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_DLOG2 ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_DN ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_DOGFIGHT ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_DSMD ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_ECMA ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_ENCRYPT ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_ES ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_EXCELAN ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_EXPERDATA ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_FLIP ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_FLOWCONTROL ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_FRARP ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_GENDYN ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_HAYES ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_HIPPI_FP ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_HITACHI ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_HP ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_IEEEPUP ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_IEEEPUPAT ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_IMLBL ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_IMLBLDIAG ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_IP ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_IPAS ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_IPV6 ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_IPX ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_IPXNEW ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_KALPANA ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_LANBRIDGE ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_LANPROBE ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_LAT ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_LBACK ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_LITTLE ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_LOGICRAFT ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_LOOPBACK ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_MATRA ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_MAX ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_MERIT ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_MICP ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_MOPDL ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_MOPRC ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_MOTOROLA ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_MPLS ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_MPLS_MCAST ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_MUMPS ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPCC ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPCLAIM ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPCLREQ ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPCLRSP ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPCREQ ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPCRSP ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPDG ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPDGB ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPDLTE ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPRAR ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPRAS ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPRST ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPSCD ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPVCD ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBS ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_NCD ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_NESTAR ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_NETBEUI ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_NOVELL ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_NS ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_NSAT ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_NSCOMPAT ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_NTRAILER ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_OS9 ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_OS9NET ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_PACER ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_PAE ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_PCS ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_PLANNING ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_PPP ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_PPPOE ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_PPPOEDISC ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_PRIMENTS ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_PUP ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_PUPAT ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_RACAL ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_RATIONAL ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_RAWFR ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_RCL ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_RDP ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_RETIX ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_REVARP ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_SCA ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_SECTRA ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_SECUREDATA ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_SGITW ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_SG_BOUNCE ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_SG_DIAG ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_SG_NETGAMES ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_SG_RESV ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_SIMNET ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_SLOWPROTOCOLS ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_SNA ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_SNMP ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_SONIX ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_SPIDER ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_SPRITE ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_STP ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_TALARIS ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_TALARISMC ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_TCPCOMP ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_TCPSM ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_TEC ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_TIGAN ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_TRAIL ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_TRANSETHER ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_TYMSHARE ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_UBBST ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_UBDEBUG ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_UBDIAGLOOP ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_UBDL ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_UBNIU ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_UBNMC ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_VALID ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_VARIAN ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_VAXELN ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_VEECO ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_VEXP ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_VGLAB ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_VINES ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_VINESECHO ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_VINESLOOP ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_VITAL ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_VLAN ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_VLTLMAN ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_VPROD ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_VURESERVED ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_WATERLOO ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_WELLFLEET ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_X25 ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_X75 ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_XNSSM ideal-int
-pkg syscall (netbsd-386-cgo), const ETHERTYPE_XTP ideal-int
-pkg syscall (netbsd-386-cgo), const ETHER_ADDR_LEN ideal-int
-pkg syscall (netbsd-386-cgo), const ETHER_CRC_LEN ideal-int
-pkg syscall (netbsd-386-cgo), const ETHER_CRC_POLY_BE ideal-int
-pkg syscall (netbsd-386-cgo), const ETHER_CRC_POLY_LE ideal-int
-pkg syscall (netbsd-386-cgo), const ETHER_HDR_LEN ideal-int
-pkg syscall (netbsd-386-cgo), const ETHER_MAX_LEN ideal-int
-pkg syscall (netbsd-386-cgo), const ETHER_MAX_LEN_JUMBO ideal-int
-pkg syscall (netbsd-386-cgo), const ETHER_MIN_LEN ideal-int
-pkg syscall (netbsd-386-cgo), const ETHER_PPPOE_ENCAP_LEN ideal-int
-pkg syscall (netbsd-386-cgo), const ETHER_TYPE_LEN ideal-int
-pkg syscall (netbsd-386-cgo), const ETHER_VLAN_ENCAP_LEN ideal-int
-pkg syscall (netbsd-386-cgo), const ETIME Errno
-pkg syscall (netbsd-386-cgo), const EVFILT_AIO ideal-int
-pkg syscall (netbsd-386-cgo), const EVFILT_PROC ideal-int
-pkg syscall (netbsd-386-cgo), const EVFILT_READ ideal-int
-pkg syscall (netbsd-386-cgo), const EVFILT_SIGNAL ideal-int
-pkg syscall (netbsd-386-cgo), const EVFILT_SYSCOUNT ideal-int
-pkg syscall (netbsd-386-cgo), const EVFILT_TIMER ideal-int
-pkg syscall (netbsd-386-cgo), const EVFILT_VNODE ideal-int
-pkg syscall (netbsd-386-cgo), const EVFILT_WRITE ideal-int
-pkg syscall (netbsd-386-cgo), const EV_ADD ideal-int
-pkg syscall (netbsd-386-cgo), const EV_CLEAR ideal-int
-pkg syscall (netbsd-386-cgo), const EV_DELETE ideal-int
-pkg syscall (netbsd-386-cgo), const EV_DISABLE ideal-int
-pkg syscall (netbsd-386-cgo), const EV_ENABLE ideal-int
-pkg syscall (netbsd-386-cgo), const EV_EOF ideal-int
-pkg syscall (netbsd-386-cgo), const EV_ERROR ideal-int
-pkg syscall (netbsd-386-cgo), const EV_FLAG1 ideal-int
-pkg syscall (netbsd-386-cgo), const EV_ONESHOT ideal-int
-pkg syscall (netbsd-386-cgo), const EV_SYSFLAGS ideal-int
-pkg syscall (netbsd-386-cgo), const EXTA ideal-int
-pkg syscall (netbsd-386-cgo), const EXTB ideal-int
-pkg syscall (netbsd-386-cgo), const EXTPROC ideal-int
-pkg syscall (netbsd-386-cgo), const FD_CLOEXEC ideal-int
-pkg syscall (netbsd-386-cgo), const FD_SETSIZE ideal-int
-pkg syscall (netbsd-386-cgo), const FLUSHO ideal-int
-pkg syscall (netbsd-386-cgo), const F_CLOSEM ideal-int
-pkg syscall (netbsd-386-cgo), const F_DUPFD ideal-int
-pkg syscall (netbsd-386-cgo), const F_DUPFD_CLOEXEC ideal-int
-pkg syscall (netbsd-386-cgo), const F_FSCTL ideal-int
-pkg syscall (netbsd-386-cgo), const F_FSDIRMASK ideal-int
-pkg syscall (netbsd-386-cgo), const F_FSIN ideal-int
-pkg syscall (netbsd-386-cgo), const F_FSINOUT ideal-int
-pkg syscall (netbsd-386-cgo), const F_FSOUT ideal-int
-pkg syscall (netbsd-386-cgo), const F_FSPRIV ideal-int
-pkg syscall (netbsd-386-cgo), const F_FSVOID ideal-int
-pkg syscall (netbsd-386-cgo), const F_GETFD ideal-int
-pkg syscall (netbsd-386-cgo), const F_GETFL ideal-int
-pkg syscall (netbsd-386-cgo), const F_GETLK ideal-int
-pkg syscall (netbsd-386-cgo), const F_GETNOSIGPIPE ideal-int
-pkg syscall (netbsd-386-cgo), const F_GETOWN ideal-int
-pkg syscall (netbsd-386-cgo), const F_MAXFD ideal-int
-pkg syscall (netbsd-386-cgo), const F_OK ideal-int
-pkg syscall (netbsd-386-cgo), const F_PARAM_MASK ideal-int
-pkg syscall (netbsd-386-cgo), const F_PARAM_MAX ideal-int
-pkg syscall (netbsd-386-cgo), const F_RDLCK ideal-int
-pkg syscall (netbsd-386-cgo), const F_SETFD ideal-int
-pkg syscall (netbsd-386-cgo), const F_SETFL ideal-int
-pkg syscall (netbsd-386-cgo), const F_SETLK ideal-int
-pkg syscall (netbsd-386-cgo), const F_SETLKW ideal-int
-pkg syscall (netbsd-386-cgo), const F_SETNOSIGPIPE ideal-int
-pkg syscall (netbsd-386-cgo), const F_SETOWN ideal-int
-pkg syscall (netbsd-386-cgo), const F_UNLCK ideal-int
-pkg syscall (netbsd-386-cgo), const F_WRLCK ideal-int
-pkg syscall (netbsd-386-cgo), const HUPCL ideal-int
-pkg syscall (netbsd-386-cgo), const ICANON ideal-int
-pkg syscall (netbsd-386-cgo), const ICMP6_FILTER = 18
-pkg syscall (netbsd-386-cgo), const ICMP6_FILTER ideal-int
-pkg syscall (netbsd-386-cgo), const ICRNL ideal-int
-pkg syscall (netbsd-386-cgo), const IEXTEN ideal-int
-pkg syscall (netbsd-386-cgo), const IFAN_ARRIVAL ideal-int
-pkg syscall (netbsd-386-cgo), const IFAN_DEPARTURE ideal-int
-pkg syscall (netbsd-386-cgo), const IFA_ROUTE ideal-int
-pkg syscall (netbsd-386-cgo), const IFF_ALLMULTI ideal-int
-pkg syscall (netbsd-386-cgo), const IFF_CANTCHANGE ideal-int
-pkg syscall (netbsd-386-cgo), const IFF_DEBUG ideal-int
-pkg syscall (netbsd-386-cgo), const IFF_LINK0 ideal-int
-pkg syscall (netbsd-386-cgo), const IFF_LINK1 ideal-int
-pkg syscall (netbsd-386-cgo), const IFF_LINK2 ideal-int
-pkg syscall (netbsd-386-cgo), const IFF_NOARP ideal-int
-pkg syscall (netbsd-386-cgo), const IFF_NOTRAILERS ideal-int
-pkg syscall (netbsd-386-cgo), const IFF_OACTIVE ideal-int
-pkg syscall (netbsd-386-cgo), const IFF_POINTOPOINT ideal-int
-pkg syscall (netbsd-386-cgo), const IFF_PROMISC ideal-int
-pkg syscall (netbsd-386-cgo), const IFF_RUNNING ideal-int
-pkg syscall (netbsd-386-cgo), const IFF_SIMPLEX ideal-int
-pkg syscall (netbsd-386-cgo), const IFNAMSIZ ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_1822 ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_A12MPPSWITCH ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_AAL2 ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_AAL5 ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_ADSL ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_AFLANE8023 ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_AFLANE8025 ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_ARAP ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_ARCNET ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_ARCNETPLUS ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_ASYNC ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_ATM ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_ATMDXI ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_ATMFUNI ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_ATMIMA ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_ATMLOGICAL ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_ATMRADIO ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_ATMSUBINTERFACE ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_ATMVCIENDPT ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_ATMVIRTUAL ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_BGPPOLICYACCOUNTING ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_BRIDGE ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_BSC ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_CARP ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_CCTEMUL ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_CEPT ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_CES ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_CHANNEL ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_CNR ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_COFFEE ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_COMPOSITELINK ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_DCN ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_DIGITALPOWERLINE ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_DLSW ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_DOCSCABLEDOWNSTREAM ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_DOCSCABLEMACLAYER ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_DOCSCABLEUPSTREAM ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_DOCSCABLEUPSTREAMCHANNEL ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_DS0 ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_DS0BUNDLE ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_DS1FDL ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_DS3 ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_DTM ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_DVBASILN ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_DVBASIOUT ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_DVBRCCDOWNSTREAM ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_DVBRCCMACLAYER ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_DVBRCCUPSTREAM ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_ECONET ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_EON ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_EPLRS ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_ESCON ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_ETHER ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_FAITH ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_FAST ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_FASTETHER ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_FASTETHERFX ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_FDDI ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_FIBRECHANNEL ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_FRAMERELAYINTERCONNECT ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_FRAMERELAYMPI ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_FRDLCIENDPT ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_FRELAY ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_FRELAYDCE ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_FRF16MFRBUNDLE ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_FRFORWARD ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_G703AT2MB ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_G703AT64K ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_GIF ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_GIGABITETHERNET ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_GR303IDT ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_GR303RDT ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_H323GATEKEEPER ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_H323PROXY ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_HDH1822 ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_HDLC ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_HDSL2 ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_HIPERLAN2 ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_HIPPI ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_HIPPIINTERFACE ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_HOSTPAD ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_HSSI ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_HY ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_IBM370PARCHAN ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_IDSL ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_IEEE1394 ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_IEEE80211 ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_IEEE80212 ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_IEEE8023ADLAG ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_IFGSN ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_IMT ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_INFINIBAND ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_INTERLEAVE ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_IP ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_IPFORWARD ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_IPOVERATM ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_IPOVERCDLC ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_IPOVERCLAW ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_IPSWITCH ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_ISDN ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_ISDNBASIC ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_ISDNPRIMARY ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_ISDNS ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_ISDNU ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_ISO88022LLC ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_ISO88023 ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_ISO88024 ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_ISO88025 ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_ISO88025CRFPINT ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_ISO88025DTR ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_ISO88025FIBER ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_ISO88026 ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_ISUP ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_L2VLAN ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_L3IPVLAN ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_L3IPXVLAN ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_LAPB ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_LAPD ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_LAPF ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_LINEGROUP ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_LOCALTALK ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_LOOP ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_MEDIAMAILOVERIP ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_MFSIGLINK ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_MIOX25 ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_MODEM ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_MPC ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_MPLS ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_MPLSTUNNEL ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_MSDSL ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_MVL ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_MYRINET ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_NFAS ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_NSIP ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_OPTICALCHANNEL ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_OPTICALTRANSPORT ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_OTHER ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_P10 ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_P80 ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_PARA ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_PFLOG ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_PFSYNC ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_PLC ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_PON155 ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_PON622 ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_POS ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_PPP ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_PPPMULTILINKBUNDLE ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_PROPATM ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_PROPBWAP2MP ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_PROPCNLS ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_PROPMUX ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_PROPVIRTUAL ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_PROPWIRELESSP2P ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_PTPSERIAL ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_PVC ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_Q2931 ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_QLLC ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_RADIOMAC ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_RADSL ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_REACHDSL ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_RFC1483 ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_RS232 ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_RSRB ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_SDLC ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_SDSL ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_SHDSL ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_SIP ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_SIPSIG ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_SIPTG ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_SLIP ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_SMDSDXI ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_SMDSICIP ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_SONET ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_SONETOVERHEADCHANNEL ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_SONETPATH ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_SONETVT ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_SRP ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_SS7SIGLINK ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_STACKTOSTACK ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_STARLAN ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_STF ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_T1 ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_TDLC ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_TELINK ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_TERMPAD ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_TR008 ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_TRANSPHDLC ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_TUNNEL ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_ULTRA ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_USB ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_V11 ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_V35 ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_V36 ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_V37 ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_VDSL ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_VIRTUALIPADDRESS ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_VIRTUALTG ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_VOICEDID ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_VOICEEM ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_VOICEEMFGD ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_VOICEENCAP ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_VOICEFGDEANA ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_VOICEFXO ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_VOICEFXS ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_VOICEOVERATM ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_VOICEOVERCABLE ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_VOICEOVERFRAMERELAY ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_VOICEOVERIP ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_X213 ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_X25 ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_X25DDN ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_X25HUNTGROUP ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_X25MLP ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_X25PLE ideal-int
-pkg syscall (netbsd-386-cgo), const IFT_XETHER ideal-int
-pkg syscall (netbsd-386-cgo), const IGNBRK ideal-int
-pkg syscall (netbsd-386-cgo), const IGNCR ideal-int
-pkg syscall (netbsd-386-cgo), const IGNPAR ideal-int
-pkg syscall (netbsd-386-cgo), const IMAXBEL ideal-int
-pkg syscall (netbsd-386-cgo), const INLCR ideal-int
-pkg syscall (netbsd-386-cgo), const INPCK ideal-int
-pkg syscall (netbsd-386-cgo), const IN_CLASSA_HOST ideal-int
-pkg syscall (netbsd-386-cgo), const IN_CLASSA_MAX ideal-int
-pkg syscall (netbsd-386-cgo), const IN_CLASSA_NET ideal-int
-pkg syscall (netbsd-386-cgo), const IN_CLASSA_NSHIFT ideal-int
-pkg syscall (netbsd-386-cgo), const IN_CLASSB_HOST ideal-int
-pkg syscall (netbsd-386-cgo), const IN_CLASSB_MAX ideal-int
-pkg syscall (netbsd-386-cgo), const IN_CLASSB_NET ideal-int
-pkg syscall (netbsd-386-cgo), const IN_CLASSB_NSHIFT ideal-int
-pkg syscall (netbsd-386-cgo), const IN_CLASSC_HOST ideal-int
-pkg syscall (netbsd-386-cgo), const IN_CLASSC_NET ideal-int
-pkg syscall (netbsd-386-cgo), const IN_CLASSC_NSHIFT ideal-int
-pkg syscall (netbsd-386-cgo), const IN_CLASSD_HOST ideal-int
-pkg syscall (netbsd-386-cgo), const IN_CLASSD_NET ideal-int
-pkg syscall (netbsd-386-cgo), const IN_CLASSD_NSHIFT ideal-int
-pkg syscall (netbsd-386-cgo), const IN_LOOPBACKNET ideal-int
-pkg syscall (netbsd-386-cgo), const IPPROTO_AH ideal-int
-pkg syscall (netbsd-386-cgo), const IPPROTO_CARP ideal-int
-pkg syscall (netbsd-386-cgo), const IPPROTO_DONE ideal-int
-pkg syscall (netbsd-386-cgo), const IPPROTO_DSTOPTS ideal-int
-pkg syscall (netbsd-386-cgo), const IPPROTO_EGP ideal-int
-pkg syscall (netbsd-386-cgo), const IPPROTO_ENCAP ideal-int
-pkg syscall (netbsd-386-cgo), const IPPROTO_EON ideal-int
-pkg syscall (netbsd-386-cgo), const IPPROTO_ESP ideal-int
-pkg syscall (netbsd-386-cgo), const IPPROTO_ETHERIP ideal-int
-pkg syscall (netbsd-386-cgo), const IPPROTO_FRAGMENT ideal-int
-pkg syscall (netbsd-386-cgo), const IPPROTO_GGP ideal-int
-pkg syscall (netbsd-386-cgo), const IPPROTO_GRE ideal-int
-pkg syscall (netbsd-386-cgo), const IPPROTO_HOPOPTS ideal-int
-pkg syscall (netbsd-386-cgo), const IPPROTO_ICMP ideal-int
-pkg syscall (netbsd-386-cgo), const IPPROTO_ICMPV6 ideal-int
-pkg syscall (netbsd-386-cgo), const IPPROTO_IDP ideal-int
-pkg syscall (netbsd-386-cgo), const IPPROTO_IGMP ideal-int
-pkg syscall (netbsd-386-cgo), const IPPROTO_IPCOMP ideal-int
-pkg syscall (netbsd-386-cgo), const IPPROTO_IPIP ideal-int
-pkg syscall (netbsd-386-cgo), const IPPROTO_IPV4 ideal-int
-pkg syscall (netbsd-386-cgo), const IPPROTO_IPV6_ICMP ideal-int
-pkg syscall (netbsd-386-cgo), const IPPROTO_MAX ideal-int
-pkg syscall (netbsd-386-cgo), const IPPROTO_MAXID ideal-int
-pkg syscall (netbsd-386-cgo), const IPPROTO_MOBILE ideal-int
-pkg syscall (netbsd-386-cgo), const IPPROTO_NONE ideal-int
-pkg syscall (netbsd-386-cgo), const IPPROTO_PFSYNC ideal-int
-pkg syscall (netbsd-386-cgo), const IPPROTO_PIM ideal-int
-pkg syscall (netbsd-386-cgo), const IPPROTO_PUP ideal-int
-pkg syscall (netbsd-386-cgo), const IPPROTO_RAW ideal-int
-pkg syscall (netbsd-386-cgo), const IPPROTO_ROUTING ideal-int
-pkg syscall (netbsd-386-cgo), const IPPROTO_RSVP ideal-int
-pkg syscall (netbsd-386-cgo), const IPPROTO_TP ideal-int
-pkg syscall (netbsd-386-cgo), const IPPROTO_VRRP ideal-int
-pkg syscall (netbsd-386-cgo), const IPV6_CHECKSUM ideal-int
-pkg syscall (netbsd-386-cgo), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int
-pkg syscall (netbsd-386-cgo), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int
-pkg syscall (netbsd-386-cgo), const IPV6_DEFHLIM ideal-int
-pkg syscall (netbsd-386-cgo), const IPV6_DONTFRAG ideal-int
-pkg syscall (netbsd-386-cgo), const IPV6_DSTOPTS ideal-int
-pkg syscall (netbsd-386-cgo), const IPV6_FAITH ideal-int
-pkg syscall (netbsd-386-cgo), const IPV6_FLOWINFO_MASK ideal-int
-pkg syscall (netbsd-386-cgo), const IPV6_FLOWLABEL_MASK ideal-int
-pkg syscall (netbsd-386-cgo), const IPV6_FRAGTTL ideal-int
-pkg syscall (netbsd-386-cgo), const IPV6_HLIMDEC ideal-int
-pkg syscall (netbsd-386-cgo), const IPV6_HOPLIMIT ideal-int
-pkg syscall (netbsd-386-cgo), const IPV6_HOPOPTS ideal-int
-pkg syscall (netbsd-386-cgo), const IPV6_IPSEC_POLICY ideal-int
-pkg syscall (netbsd-386-cgo), const IPV6_MAXHLIM ideal-int
-pkg syscall (netbsd-386-cgo), const IPV6_MAXPACKET ideal-int
-pkg syscall (netbsd-386-cgo), const IPV6_MMTU ideal-int
-pkg syscall (netbsd-386-cgo), const IPV6_NEXTHOP ideal-int
-pkg syscall (netbsd-386-cgo), const IPV6_PATHMTU ideal-int
-pkg syscall (netbsd-386-cgo), const IPV6_PKTINFO ideal-int
-pkg syscall (netbsd-386-cgo), const IPV6_PORTRANGE ideal-int
-pkg syscall (netbsd-386-cgo), const IPV6_PORTRANGE_DEFAULT ideal-int
-pkg syscall (netbsd-386-cgo), const IPV6_PORTRANGE_HIGH ideal-int
-pkg syscall (netbsd-386-cgo), const IPV6_PORTRANGE_LOW ideal-int
-pkg syscall (netbsd-386-cgo), const IPV6_RECVDSTOPTS ideal-int
-pkg syscall (netbsd-386-cgo), const IPV6_RECVHOPLIMIT ideal-int
-pkg syscall (netbsd-386-cgo), const IPV6_RECVHOPOPTS ideal-int
-pkg syscall (netbsd-386-cgo), const IPV6_RECVPATHMTU ideal-int
-pkg syscall (netbsd-386-cgo), const IPV6_RECVPKTINFO ideal-int
-pkg syscall (netbsd-386-cgo), const IPV6_RECVRTHDR ideal-int
-pkg syscall (netbsd-386-cgo), const IPV6_RECVTCLASS ideal-int
-pkg syscall (netbsd-386-cgo), const IPV6_RTHDR ideal-int
-pkg syscall (netbsd-386-cgo), const IPV6_RTHDRDSTOPTS ideal-int
-pkg syscall (netbsd-386-cgo), const IPV6_RTHDR_LOOSE ideal-int
-pkg syscall (netbsd-386-cgo), const IPV6_RTHDR_STRICT ideal-int
-pkg syscall (netbsd-386-cgo), const IPV6_RTHDR_TYPE_0 ideal-int
-pkg syscall (netbsd-386-cgo), const IPV6_SOCKOPT_RESERVED1 ideal-int
-pkg syscall (netbsd-386-cgo), const IPV6_TCLASS ideal-int
-pkg syscall (netbsd-386-cgo), const IPV6_USE_MIN_MTU ideal-int
-pkg syscall (netbsd-386-cgo), const IPV6_VERSION ideal-int
-pkg syscall (netbsd-386-cgo), const IPV6_VERSION_MASK ideal-int
-pkg syscall (netbsd-386-cgo), const IP_DEFAULT_MULTICAST_LOOP ideal-int
-pkg syscall (netbsd-386-cgo), const IP_DEFAULT_MULTICAST_TTL ideal-int
-pkg syscall (netbsd-386-cgo), const IP_DF ideal-int
-pkg syscall (netbsd-386-cgo), const IP_EF ideal-int
-pkg syscall (netbsd-386-cgo), const IP_ERRORMTU ideal-int
-pkg syscall (netbsd-386-cgo), const IP_HDRINCL ideal-int
-pkg syscall (netbsd-386-cgo), const IP_IPSEC_POLICY ideal-int
-pkg syscall (netbsd-386-cgo), const IP_MAXPACKET ideal-int
-pkg syscall (netbsd-386-cgo), const IP_MAX_MEMBERSHIPS ideal-int
-pkg syscall (netbsd-386-cgo), const IP_MF ideal-int
-pkg syscall (netbsd-386-cgo), const IP_MINFRAGSIZE ideal-int
-pkg syscall (netbsd-386-cgo), const IP_MINTTL ideal-int
-pkg syscall (netbsd-386-cgo), const IP_MSS ideal-int
-pkg syscall (netbsd-386-cgo), const IP_OFFMASK ideal-int
-pkg syscall (netbsd-386-cgo), const IP_OPTIONS ideal-int
-pkg syscall (netbsd-386-cgo), const IP_PORTRANGE ideal-int
-pkg syscall (netbsd-386-cgo), const IP_PORTRANGE_DEFAULT ideal-int
-pkg syscall (netbsd-386-cgo), const IP_PORTRANGE_HIGH ideal-int
-pkg syscall (netbsd-386-cgo), const IP_PORTRANGE_LOW ideal-int
-pkg syscall (netbsd-386-cgo), const IP_RECVDSTADDR ideal-int
-pkg syscall (netbsd-386-cgo), const IP_RECVIF ideal-int
-pkg syscall (netbsd-386-cgo), const IP_RECVOPTS ideal-int
-pkg syscall (netbsd-386-cgo), const IP_RECVRETOPTS ideal-int
-pkg syscall (netbsd-386-cgo), const IP_RECVTTL ideal-int
-pkg syscall (netbsd-386-cgo), const IP_RETOPTS ideal-int
-pkg syscall (netbsd-386-cgo), const IP_RF ideal-int
-pkg syscall (netbsd-386-cgo), const ISIG ideal-int
-pkg syscall (netbsd-386-cgo), const ISTRIP ideal-int
-pkg syscall (netbsd-386-cgo), const IXANY ideal-int
-pkg syscall (netbsd-386-cgo), const IXOFF ideal-int
-pkg syscall (netbsd-386-cgo), const IXON ideal-int
-pkg syscall (netbsd-386-cgo), const LOCK_EX ideal-int
-pkg syscall (netbsd-386-cgo), const LOCK_NB ideal-int
-pkg syscall (netbsd-386-cgo), const LOCK_SH ideal-int
-pkg syscall (netbsd-386-cgo), const LOCK_UN ideal-int
-pkg syscall (netbsd-386-cgo), const MSG_BCAST ideal-int
-pkg syscall (netbsd-386-cgo), const MSG_CMSG_CLOEXEC ideal-int
-pkg syscall (netbsd-386-cgo), const MSG_CONTROLMBUF ideal-int
-pkg syscall (netbsd-386-cgo), const MSG_CTRUNC ideal-int
-pkg syscall (netbsd-386-cgo), const MSG_DONTROUTE ideal-int
-pkg syscall (netbsd-386-cgo), const MSG_DONTWAIT ideal-int
-pkg syscall (netbsd-386-cgo), const MSG_EOR ideal-int
-pkg syscall (netbsd-386-cgo), const MSG_IOVUSRSPACE ideal-int
-pkg syscall (netbsd-386-cgo), const MSG_LENUSRSPACE ideal-int
-pkg syscall (netbsd-386-cgo), const MSG_MCAST ideal-int
-pkg syscall (netbsd-386-cgo), const MSG_NAMEMBUF ideal-int
-pkg syscall (netbsd-386-cgo), const MSG_NBIO ideal-int
-pkg syscall (netbsd-386-cgo), const MSG_NOSIGNAL ideal-int
-pkg syscall (netbsd-386-cgo), const MSG_OOB ideal-int
-pkg syscall (netbsd-386-cgo), const MSG_PEEK ideal-int
-pkg syscall (netbsd-386-cgo), const MSG_TRUNC ideal-int
-pkg syscall (netbsd-386-cgo), const MSG_USERFLAGS ideal-int
-pkg syscall (netbsd-386-cgo), const MSG_WAITALL ideal-int
-pkg syscall (netbsd-386-cgo), const NAME_MAX ideal-int
-pkg syscall (netbsd-386-cgo), const NET_RT_DUMP ideal-int
-pkg syscall (netbsd-386-cgo), const NET_RT_FLAGS ideal-int
-pkg syscall (netbsd-386-cgo), const NET_RT_IFLIST ideal-int
-pkg syscall (netbsd-386-cgo), const NET_RT_MAXID ideal-int
-pkg syscall (netbsd-386-cgo), const NET_RT_OIFLIST ideal-int
-pkg syscall (netbsd-386-cgo), const NET_RT_OOIFLIST ideal-int
-pkg syscall (netbsd-386-cgo), const NOFLSH ideal-int
-pkg syscall (netbsd-386-cgo), const NOTE_ATTRIB ideal-int
-pkg syscall (netbsd-386-cgo), const NOTE_CHILD ideal-int
-pkg syscall (netbsd-386-cgo), const NOTE_DELETE ideal-int
-pkg syscall (netbsd-386-cgo), const NOTE_EXEC ideal-int
-pkg syscall (netbsd-386-cgo), const NOTE_EXIT ideal-int
-pkg syscall (netbsd-386-cgo), const NOTE_EXTEND ideal-int
-pkg syscall (netbsd-386-cgo), const NOTE_FORK ideal-int
-pkg syscall (netbsd-386-cgo), const NOTE_LINK ideal-int
-pkg syscall (netbsd-386-cgo), const NOTE_LOWAT ideal-int
-pkg syscall (netbsd-386-cgo), const NOTE_PCTRLMASK ideal-int
-pkg syscall (netbsd-386-cgo), const NOTE_PDATAMASK ideal-int
-pkg syscall (netbsd-386-cgo), const NOTE_RENAME ideal-int
-pkg syscall (netbsd-386-cgo), const NOTE_REVOKE ideal-int
-pkg syscall (netbsd-386-cgo), const NOTE_TRACK ideal-int
-pkg syscall (netbsd-386-cgo), const NOTE_TRACKERR ideal-int
-pkg syscall (netbsd-386-cgo), const NOTE_WRITE ideal-int
-pkg syscall (netbsd-386-cgo), const OCRNL ideal-int
-pkg syscall (netbsd-386-cgo), const OFIOGETBMAP ideal-int
-pkg syscall (netbsd-386-cgo), const ONLCR ideal-int
-pkg syscall (netbsd-386-cgo), const ONLRET ideal-int
-pkg syscall (netbsd-386-cgo), const ONOCR ideal-int
-pkg syscall (netbsd-386-cgo), const ONOEOT ideal-int
-pkg syscall (netbsd-386-cgo), const OPOST ideal-int
-pkg syscall (netbsd-386-cgo), const O_ACCMODE ideal-int
-pkg syscall (netbsd-386-cgo), const O_ALT_IO ideal-int
-pkg syscall (netbsd-386-cgo), const O_DIRECT ideal-int
-pkg syscall (netbsd-386-cgo), const O_DIRECTORY ideal-int
-pkg syscall (netbsd-386-cgo), const O_DSYNC ideal-int
-pkg syscall (netbsd-386-cgo), const O_EXLOCK ideal-int
-pkg syscall (netbsd-386-cgo), const O_FSYNC ideal-int
-pkg syscall (netbsd-386-cgo), const O_NDELAY ideal-int
-pkg syscall (netbsd-386-cgo), const O_NOFOLLOW ideal-int
-pkg syscall (netbsd-386-cgo), const O_NOSIGPIPE ideal-int
-pkg syscall (netbsd-386-cgo), const O_RSYNC ideal-int
-pkg syscall (netbsd-386-cgo), const O_SHLOCK ideal-int
-pkg syscall (netbsd-386-cgo), const PARENB ideal-int
-pkg syscall (netbsd-386-cgo), const PARMRK ideal-int
-pkg syscall (netbsd-386-cgo), const PARODD ideal-int
-pkg syscall (netbsd-386-cgo), const PENDIN ideal-int
-pkg syscall (netbsd-386-cgo), const PRIO_PGRP = 1
-pkg syscall (netbsd-386-cgo), const PRIO_PGRP ideal-int
-pkg syscall (netbsd-386-cgo), const PRIO_PROCESS = 0
-pkg syscall (netbsd-386-cgo), const PRIO_PROCESS ideal-int
-pkg syscall (netbsd-386-cgo), const PRIO_USER = 2
-pkg syscall (netbsd-386-cgo), const PRIO_USER ideal-int
-pkg syscall (netbsd-386-cgo), const PRI_IOFLUSH ideal-int
-pkg syscall (netbsd-386-cgo), const PTRACE_CONT ideal-int
-pkg syscall (netbsd-386-cgo), const PTRACE_KILL ideal-int
-pkg syscall (netbsd-386-cgo), const PTRACE_TRACEME ideal-int
-pkg syscall (netbsd-386-cgo), const RLIMIT_AS ideal-int
-pkg syscall (netbsd-386-cgo), const RLIMIT_CORE ideal-int
-pkg syscall (netbsd-386-cgo), const RLIMIT_CPU ideal-int
-pkg syscall (netbsd-386-cgo), const RLIMIT_DATA ideal-int
-pkg syscall (netbsd-386-cgo), const RLIMIT_FSIZE ideal-int
-pkg syscall (netbsd-386-cgo), const RLIMIT_NOFILE ideal-int
-pkg syscall (netbsd-386-cgo), const RLIMIT_STACK ideal-int
-pkg syscall (netbsd-386-cgo), const RLIM_INFINITY ideal-int
-pkg syscall (netbsd-386-cgo), const RTAX_AUTHOR ideal-int
-pkg syscall (netbsd-386-cgo), const RTAX_BRD ideal-int
-pkg syscall (netbsd-386-cgo), const RTAX_DST ideal-int
-pkg syscall (netbsd-386-cgo), const RTAX_GATEWAY ideal-int
-pkg syscall (netbsd-386-cgo), const RTAX_GENMASK ideal-int
-pkg syscall (netbsd-386-cgo), const RTAX_IFA ideal-int
-pkg syscall (netbsd-386-cgo), const RTAX_IFP ideal-int
-pkg syscall (netbsd-386-cgo), const RTAX_MAX ideal-int
-pkg syscall (netbsd-386-cgo), const RTAX_NETMASK ideal-int
-pkg syscall (netbsd-386-cgo), const RTAX_TAG ideal-int
-pkg syscall (netbsd-386-cgo), const RTA_AUTHOR ideal-int
-pkg syscall (netbsd-386-cgo), const RTA_BRD ideal-int
-pkg syscall (netbsd-386-cgo), const RTA_DST ideal-int
-pkg syscall (netbsd-386-cgo), const RTA_GATEWAY ideal-int
-pkg syscall (netbsd-386-cgo), const RTA_GENMASK ideal-int
-pkg syscall (netbsd-386-cgo), const RTA_IFA ideal-int
-pkg syscall (netbsd-386-cgo), const RTA_IFP ideal-int
-pkg syscall (netbsd-386-cgo), const RTA_NETMASK ideal-int
-pkg syscall (netbsd-386-cgo), const RTA_TAG ideal-int
-pkg syscall (netbsd-386-cgo), const RTF_ANNOUNCE ideal-int
-pkg syscall (netbsd-386-cgo), const RTF_BLACKHOLE ideal-int
-pkg syscall (netbsd-386-cgo), const RTF_CLONED ideal-int
-pkg syscall (netbsd-386-cgo), const RTF_CLONING ideal-int
-pkg syscall (netbsd-386-cgo), const RTF_DONE ideal-int
-pkg syscall (netbsd-386-cgo), const RTF_DYNAMIC ideal-int
-pkg syscall (netbsd-386-cgo), const RTF_GATEWAY ideal-int
-pkg syscall (netbsd-386-cgo), const RTF_HOST ideal-int
-pkg syscall (netbsd-386-cgo), const RTF_LLINFO ideal-int
-pkg syscall (netbsd-386-cgo), const RTF_MASK ideal-int
-pkg syscall (netbsd-386-cgo), const RTF_MODIFIED ideal-int
-pkg syscall (netbsd-386-cgo), const RTF_PROTO1 ideal-int
-pkg syscall (netbsd-386-cgo), const RTF_PROTO2 ideal-int
-pkg syscall (netbsd-386-cgo), const RTF_REJECT ideal-int
-pkg syscall (netbsd-386-cgo), const RTF_SRC ideal-int
-pkg syscall (netbsd-386-cgo), const RTF_STATIC ideal-int
-pkg syscall (netbsd-386-cgo), const RTF_UP ideal-int
-pkg syscall (netbsd-386-cgo), const RTF_XRESOLVE ideal-int
-pkg syscall (netbsd-386-cgo), const RTM_ADD ideal-int
-pkg syscall (netbsd-386-cgo), const RTM_CHANGE ideal-int
-pkg syscall (netbsd-386-cgo), const RTM_CHGADDR ideal-int
-pkg syscall (netbsd-386-cgo), const RTM_DELADDR ideal-int
-pkg syscall (netbsd-386-cgo), const RTM_DELETE ideal-int
-pkg syscall (netbsd-386-cgo), const RTM_GET ideal-int
-pkg syscall (netbsd-386-cgo), const RTM_IEEE80211 ideal-int
-pkg syscall (netbsd-386-cgo), const RTM_IFANNOUNCE ideal-int
-pkg syscall (netbsd-386-cgo), const RTM_IFINFO ideal-int
-pkg syscall (netbsd-386-cgo), const RTM_LLINFO_UPD ideal-int
-pkg syscall (netbsd-386-cgo), const RTM_LOCK ideal-int
-pkg syscall (netbsd-386-cgo), const RTM_LOSING ideal-int
-pkg syscall (netbsd-386-cgo), const RTM_MISS ideal-int
-pkg syscall (netbsd-386-cgo), const RTM_NEWADDR ideal-int
-pkg syscall (netbsd-386-cgo), const RTM_OIFINFO ideal-int
-pkg syscall (netbsd-386-cgo), const RTM_OLDADD ideal-int
-pkg syscall (netbsd-386-cgo), const RTM_OLDDEL ideal-int
-pkg syscall (netbsd-386-cgo), const RTM_OOIFINFO ideal-int
-pkg syscall (netbsd-386-cgo), const RTM_REDIRECT ideal-int
-pkg syscall (netbsd-386-cgo), const RTM_RESOLVE ideal-int
-pkg syscall (netbsd-386-cgo), const RTM_RTTUNIT ideal-int
-pkg syscall (netbsd-386-cgo), const RTM_SETGATE ideal-int
-pkg syscall (netbsd-386-cgo), const RTM_VERSION ideal-int
-pkg syscall (netbsd-386-cgo), const RTV_EXPIRE ideal-int
-pkg syscall (netbsd-386-cgo), const RTV_HOPCOUNT ideal-int
-pkg syscall (netbsd-386-cgo), const RTV_MTU ideal-int
-pkg syscall (netbsd-386-cgo), const RTV_RPIPE ideal-int
-pkg syscall (netbsd-386-cgo), const RTV_RTT ideal-int
-pkg syscall (netbsd-386-cgo), const RTV_RTTVAR ideal-int
-pkg syscall (netbsd-386-cgo), const RTV_SPIPE ideal-int
-pkg syscall (netbsd-386-cgo), const RTV_SSTHRESH ideal-int
-pkg syscall (netbsd-386-cgo), const RUSAGE_CHILDREN ideal-int
-pkg syscall (netbsd-386-cgo), const RUSAGE_SELF ideal-int
-pkg syscall (netbsd-386-cgo), const SCM_CREDS ideal-int
-pkg syscall (netbsd-386-cgo), const SCM_RIGHTS ideal-int
-pkg syscall (netbsd-386-cgo), const SCM_TIMESTAMP ideal-int
-pkg syscall (netbsd-386-cgo), const SIGCHLD Signal
-pkg syscall (netbsd-386-cgo), const SIGCONT Signal
-pkg syscall (netbsd-386-cgo), const SIGEMT Signal
-pkg syscall (netbsd-386-cgo), const SIGINFO Signal
-pkg syscall (netbsd-386-cgo), const SIGIO Signal
-pkg syscall (netbsd-386-cgo), const SIGIOT Signal
-pkg syscall (netbsd-386-cgo), const SIGPROF Signal
-pkg syscall (netbsd-386-cgo), const SIGPWR Signal
-pkg syscall (netbsd-386-cgo), const SIGSTOP Signal
-pkg syscall (netbsd-386-cgo), const SIGSYS Signal
-pkg syscall (netbsd-386-cgo), const SIGTSTP Signal
-pkg syscall (netbsd-386-cgo), const SIGTTIN Signal
-pkg syscall (netbsd-386-cgo), const SIGTTOU Signal
-pkg syscall (netbsd-386-cgo), const SIGURG Signal
-pkg syscall (netbsd-386-cgo), const SIGUSR1 Signal
-pkg syscall (netbsd-386-cgo), const SIGUSR2 Signal
-pkg syscall (netbsd-386-cgo), const SIGVTALRM Signal
-pkg syscall (netbsd-386-cgo), const SIGWINCH Signal
-pkg syscall (netbsd-386-cgo), const SIGXCPU Signal
-pkg syscall (netbsd-386-cgo), const SIGXFSZ Signal
-pkg syscall (netbsd-386-cgo), const SIOCADDMULTI ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCADDRT ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCAIFADDR ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCALIFADDR ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCATMARK ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCDELMULTI ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCDELRT ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCDIFADDR ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCDIFPHYADDR ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCDLIFADDR ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCGDRVSPEC ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCGETPFSYNC ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCGETSGCNT ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCGETVIFCNT ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCGHIWAT ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCGIFADDR ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCGIFADDRPREF ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCGIFALIAS ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCGIFBRDADDR ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCGIFCAP ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCGIFCONF ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCGIFDATA ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCGIFDLT ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCGIFDSTADDR ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCGIFFLAGS ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCGIFGENERIC ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCGIFMEDIA ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCGIFMETRIC ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCGIFMTU ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCGIFNETMASK ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCGIFPDSTADDR ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCGIFPSRCADDR ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCGLIFADDR ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCGLIFPHYADDR ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCGLINKSTR ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCGLOWAT ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCGPGRP ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCGVH ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCIFCREATE ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCIFDESTROY ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCIFGCLONERS ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCINITIFADDR ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCSDRVSPEC ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCSETPFSYNC ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCSHIWAT ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCSIFADDR ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCSIFADDRPREF ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCSIFBRDADDR ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCSIFCAP ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCSIFDSTADDR ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCSIFFLAGS ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCSIFGENERIC ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCSIFMEDIA ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCSIFMETRIC ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCSIFMTU ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCSIFNETMASK ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCSIFPHYADDR ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCSLIFPHYADDR ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCSLINKSTR ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCSLOWAT ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCSPGRP ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCSVH ideal-int
-pkg syscall (netbsd-386-cgo), const SIOCZIFDATA ideal-int
-pkg syscall (netbsd-386-cgo), const SOCK_CLOEXEC ideal-int
-pkg syscall (netbsd-386-cgo), const SOCK_FLAGS_MASK ideal-int
-pkg syscall (netbsd-386-cgo), const SOCK_NONBLOCK ideal-int
-pkg syscall (netbsd-386-cgo), const SOCK_NOSIGPIPE ideal-int
-pkg syscall (netbsd-386-cgo), const SOCK_RDM ideal-int
-pkg syscall (netbsd-386-cgo), const SO_ACCEPTCONN ideal-int
-pkg syscall (netbsd-386-cgo), const SO_ACCEPTFILTER ideal-int
-pkg syscall (netbsd-386-cgo), const SO_DEBUG ideal-int
-pkg syscall (netbsd-386-cgo), const SO_ERROR ideal-int
-pkg syscall (netbsd-386-cgo), const SO_NOHEADER ideal-int
-pkg syscall (netbsd-386-cgo), const SO_NOSIGPIPE ideal-int
-pkg syscall (netbsd-386-cgo), const SO_OOBINLINE ideal-int
-pkg syscall (netbsd-386-cgo), const SO_OVERFLOWED ideal-int
-pkg syscall (netbsd-386-cgo), const SO_RCVLOWAT ideal-int
-pkg syscall (netbsd-386-cgo), const SO_RCVTIMEO ideal-int
-pkg syscall (netbsd-386-cgo), const SO_REUSEPORT ideal-int
-pkg syscall (netbsd-386-cgo), const SO_SNDLOWAT ideal-int
-pkg syscall (netbsd-386-cgo), const SO_SNDTIMEO ideal-int
-pkg syscall (netbsd-386-cgo), const SO_TIMESTAMP ideal-int
-pkg syscall (netbsd-386-cgo), const SO_TYPE ideal-int
-pkg syscall (netbsd-386-cgo), const SO_USELOOPBACK ideal-int
-pkg syscall (netbsd-386-cgo), const SYSCTL_VERSION ideal-int
-pkg syscall (netbsd-386-cgo), const SYSCTL_VERS_0 ideal-int
-pkg syscall (netbsd-386-cgo), const SYSCTL_VERS_1 ideal-int
-pkg syscall (netbsd-386-cgo), const SYSCTL_VERS_MASK ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_ACCEPT ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_ACCESS ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_ACCT ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_ADJTIME ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_BIND ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_BREAK ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_CHDIR ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_CHFLAGS ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_CHMOD ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_CHOWN ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_CHROOT ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_CLOCK_GETRES ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_CLOCK_GETTIME ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_CLOCK_SETTIME ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_CLOSE ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_CONNECT ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_DUP ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_DUP2 ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_DUP3 ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_EXECVE ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_EXIT ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_EXTATTRCTL ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_EXTATTR_DELETE_FD ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_EXTATTR_DELETE_FILE ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_EXTATTR_DELETE_LINK ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_EXTATTR_GET_FD ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_EXTATTR_GET_FILE ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_EXTATTR_GET_LINK ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_EXTATTR_LIST_FD ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_EXTATTR_LIST_FILE ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_EXTATTR_LIST_LINK ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_EXTATTR_SET_FD ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_EXTATTR_SET_FILE ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_EXTATTR_SET_LINK ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_FACCESSAT ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_FCHDIR ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_FCHFLAGS ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_FCHMOD ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_FCHMODAT ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_FCHOWN ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_FCHOWNAT ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_FCHROOT ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_FCNTL ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_FDATASYNC ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_FEXECVE ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_FGETXATTR ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_FHSTAT ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_FKTRACE ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_FLISTXATTR ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_FLOCK ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_FORK ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_FPATHCONF ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_FREMOVEXATTR ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_FSETXATTR ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_FSTAT ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_FSTATAT ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_FSTATVFS1 ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_FSYNC ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_FSYNC_RANGE ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_FTRUNCATE ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_FUTIMENS ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_FUTIMES ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_GETCONTEXT ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_GETDENTS ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_GETEGID ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_GETEUID ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_GETFH ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_GETGID ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_GETGROUPS ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_GETITIMER ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_GETPEERNAME ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_GETPGID ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_GETPGRP ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_GETPID ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_GETPPID ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_GETPRIORITY ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_GETRLIMIT ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_GETRUSAGE ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_GETSID ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_GETSOCKNAME ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_GETSOCKOPT ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_GETTIMEOFDAY ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_GETUID ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_GETVFSSTAT ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_GETXATTR ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_IOCTL ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_ISSETUGID ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_KEVENT ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_KILL ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_KQUEUE ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_KQUEUE1 ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_KTRACE ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_LCHFLAGS ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_LCHMOD ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_LCHOWN ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_LGETXATTR ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_LINK ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_LINKAT ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_LISTEN ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_LISTXATTR ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_LLISTXATTR ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_LREMOVEXATTR ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_LSEEK ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_LSETXATTR ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_LSTAT ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_LUTIMES ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_MADVISE ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_MINCORE ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_MINHERIT ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_MKDIR ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_MKDIRAT ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_MKFIFO ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_MKFIFOAT ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_MKNOD ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_MKNODAT ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_MLOCK ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_MLOCKALL ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_MMAP ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_MODCTL ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_MOUNT ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_MPROTECT ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_MREMAP ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_MSGCTL ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_MSGGET ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_MSGRCV ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_MSGSND ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_MUNLOCK ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_MUNLOCKALL ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_MUNMAP ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_NANOSLEEP ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_NTP_ADJTIME ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_NTP_GETTIME ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_OPEN ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_OPENAT ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_PACCEPT ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_PATHCONF ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_PIPE ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_PIPE2 ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_PMC_CONTROL ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_PMC_GET_INFO ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_POLL ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_POLLTS ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_POSIX_FADVISE ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_POSIX_SPAWN ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_PREAD ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_PREADV ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_PROFIL ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_PSELECT ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_PSET_ASSIGN ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_PSET_CREATE ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_PSET_DESTROY ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_PTRACE ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_PWRITE ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_PWRITEV ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_RASCTL ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_READ ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_READLINK ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_READLINKAT ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_READV ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_REBOOT ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_RECVFROM ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_RECVMMSG ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_RECVMSG ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_REMOVEXATTR ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_RENAME ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_RENAMEAT ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_REVOKE ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_RMDIR ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_SBRK ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_SCHED_YIELD ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_SELECT ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_SEMCONFIG ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_SEMGET ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_SEMOP ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_SENDMMSG ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_SENDMSG ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_SENDTO ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_SETCONTEXT ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_SETEGID ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_SETEUID ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_SETGID ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_SETGROUPS ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_SETITIMER ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_SETPGID ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_SETPRIORITY ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_SETREGID ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_SETREUID ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_SETRLIMIT ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_SETSID ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_SETSOCKOPT ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_SETTIMEOFDAY ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_SETUID ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_SETXATTR ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_SHMAT ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_SHMCTL ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_SHMDT ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_SHMGET ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_SHUTDOWN ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_SIGQUEUEINFO ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_SOCKET ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_SOCKETPAIR ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_SSTK ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_STAT ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_STATVFS1 ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_SWAPCTL ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_SYMLINK ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_SYMLINKAT ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_SYNC ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_SYSARCH ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_TIMER_CREATE ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_TIMER_DELETE ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_TIMER_GETOVERRUN ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_TIMER_GETTIME ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_TIMER_SETTIME ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_TRUNCATE ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_UMASK ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_UNDELETE ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_UNLINK ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_UNLINKAT ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_UNMOUNT ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_UTIMENSAT ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_UTIMES ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_UTRACE ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_UUIDGEN ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_VADVISE ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_VFORK ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_WAIT4 ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_WRITE ideal-int
-pkg syscall (netbsd-386-cgo), const SYS_WRITEV ideal-int
-pkg syscall (netbsd-386-cgo), const SYS__LWP_CONTINUE ideal-int
-pkg syscall (netbsd-386-cgo), const SYS__LWP_CREATE ideal-int
-pkg syscall (netbsd-386-cgo), const SYS__LWP_CTL ideal-int
-pkg syscall (netbsd-386-cgo), const SYS__LWP_DETACH ideal-int
-pkg syscall (netbsd-386-cgo), const SYS__LWP_EXIT ideal-int
-pkg syscall (netbsd-386-cgo), const SYS__LWP_GETNAME ideal-int
-pkg syscall (netbsd-386-cgo), const SYS__LWP_GETPRIVATE ideal-int
-pkg syscall (netbsd-386-cgo), const SYS__LWP_KILL ideal-int
-pkg syscall (netbsd-386-cgo), const SYS__LWP_PARK ideal-int
-pkg syscall (netbsd-386-cgo), const SYS__LWP_SELF ideal-int
-pkg syscall (netbsd-386-cgo), const SYS__LWP_SETNAME ideal-int
-pkg syscall (netbsd-386-cgo), const SYS__LWP_SETPRIVATE ideal-int
-pkg syscall (netbsd-386-cgo), const SYS__LWP_SUSPEND ideal-int
-pkg syscall (netbsd-386-cgo), const SYS__LWP_UNPARK ideal-int
-pkg syscall (netbsd-386-cgo), const SYS__LWP_UNPARK_ALL ideal-int
-pkg syscall (netbsd-386-cgo), const SYS__LWP_WAIT ideal-int
-pkg syscall (netbsd-386-cgo), const SYS__LWP_WAKEUP ideal-int
-pkg syscall (netbsd-386-cgo), const SYS__PSET_BIND ideal-int
-pkg syscall (netbsd-386-cgo), const SYS__SCHED_GETAFFINITY ideal-int
-pkg syscall (netbsd-386-cgo), const SYS__SCHED_GETPARAM ideal-int
-pkg syscall (netbsd-386-cgo), const SYS__SCHED_SETAFFINITY ideal-int
-pkg syscall (netbsd-386-cgo), const SYS__SCHED_SETPARAM ideal-int
-pkg syscall (netbsd-386-cgo), const SYS___CLONE ideal-int
-pkg syscall (netbsd-386-cgo), const SYS___GETCWD ideal-int
-pkg syscall (netbsd-386-cgo), const SYS___GETLOGIN ideal-int
-pkg syscall (netbsd-386-cgo), const SYS___POSIX_CHOWN ideal-int
-pkg syscall (netbsd-386-cgo), const SYS___POSIX_FCHOWN ideal-int
-pkg syscall (netbsd-386-cgo), const SYS___POSIX_LCHOWN ideal-int
-pkg syscall (netbsd-386-cgo), const SYS___POSIX_RENAME ideal-int
-pkg syscall (netbsd-386-cgo), const SYS___QUOTACTL ideal-int
-pkg syscall (netbsd-386-cgo), const SYS___SEMCTL ideal-int
-pkg syscall (netbsd-386-cgo), const SYS___SETLOGIN ideal-int
-pkg syscall (netbsd-386-cgo), const SYS___SIGACTION_SIGTRAMP ideal-int
-pkg syscall (netbsd-386-cgo), const SYS___SIGTIMEDWAIT ideal-int
-pkg syscall (netbsd-386-cgo), const SYS___SYSCTL ideal-int
-pkg syscall (netbsd-386-cgo), const S_ARCH1 ideal-int
-pkg syscall (netbsd-386-cgo), const S_ARCH2 ideal-int
-pkg syscall (netbsd-386-cgo), const S_BLKSIZE ideal-int
-pkg syscall (netbsd-386-cgo), const S_IEXEC ideal-int
-pkg syscall (netbsd-386-cgo), const S_IFWHT ideal-int
-pkg syscall (netbsd-386-cgo), const S_IREAD ideal-int
-pkg syscall (netbsd-386-cgo), const S_IRGRP ideal-int
-pkg syscall (netbsd-386-cgo), const S_IROTH ideal-int
-pkg syscall (netbsd-386-cgo), const S_IRWXG ideal-int
-pkg syscall (netbsd-386-cgo), const S_IRWXO ideal-int
-pkg syscall (netbsd-386-cgo), const S_IRWXU ideal-int
-pkg syscall (netbsd-386-cgo), const S_ISTXT ideal-int
-pkg syscall (netbsd-386-cgo), const S_IWGRP ideal-int
-pkg syscall (netbsd-386-cgo), const S_IWOTH ideal-int
-pkg syscall (netbsd-386-cgo), const S_IWRITE ideal-int
-pkg syscall (netbsd-386-cgo), const S_IXGRP ideal-int
-pkg syscall (netbsd-386-cgo), const S_IXOTH ideal-int
-pkg syscall (netbsd-386-cgo), const S_LOGIN_SET ideal-int
-pkg syscall (netbsd-386-cgo), const SizeofBpfHdr ideal-int
-pkg syscall (netbsd-386-cgo), const SizeofBpfInsn ideal-int
-pkg syscall (netbsd-386-cgo), const SizeofBpfProgram ideal-int
-pkg syscall (netbsd-386-cgo), const SizeofBpfStat ideal-int
-pkg syscall (netbsd-386-cgo), const SizeofBpfVersion ideal-int
-pkg syscall (netbsd-386-cgo), const SizeofCmsghdr ideal-int
-pkg syscall (netbsd-386-cgo), const SizeofICMPv6Filter = 32
-pkg syscall (netbsd-386-cgo), const SizeofICMPv6Filter ideal-int
-pkg syscall (netbsd-386-cgo), const SizeofIPMreq ideal-int
-pkg syscall (netbsd-386-cgo), const SizeofIPv6MTUInfo = 32
-pkg syscall (netbsd-386-cgo), const SizeofIPv6MTUInfo ideal-int
-pkg syscall (netbsd-386-cgo), const SizeofIPv6Mreq ideal-int
-pkg syscall (netbsd-386-cgo), const SizeofIfAnnounceMsghdr ideal-int
-pkg syscall (netbsd-386-cgo), const SizeofIfData ideal-int
-pkg syscall (netbsd-386-cgo), const SizeofIfMsghdr ideal-int
-pkg syscall (netbsd-386-cgo), const SizeofIfaMsghdr ideal-int
-pkg syscall (netbsd-386-cgo), const SizeofInet6Pktinfo ideal-int
-pkg syscall (netbsd-386-cgo), const SizeofLinger ideal-int
-pkg syscall (netbsd-386-cgo), const SizeofMsghdr ideal-int
-pkg syscall (netbsd-386-cgo), const SizeofRtMetrics ideal-int
-pkg syscall (netbsd-386-cgo), const SizeofRtMsghdr ideal-int
-pkg syscall (netbsd-386-cgo), const SizeofSockaddrAny ideal-int
-pkg syscall (netbsd-386-cgo), const SizeofSockaddrDatalink ideal-int
-pkg syscall (netbsd-386-cgo), const SizeofSockaddrInet4 ideal-int
-pkg syscall (netbsd-386-cgo), const SizeofSockaddrInet6 ideal-int
-pkg syscall (netbsd-386-cgo), const SizeofSockaddrUnix ideal-int
-pkg syscall (netbsd-386-cgo), const TCIFLUSH ideal-int
-pkg syscall (netbsd-386-cgo), const TCIOFLUSH ideal-int
-pkg syscall (netbsd-386-cgo), const TCOFLUSH ideal-int
-pkg syscall (netbsd-386-cgo), const TCP_CONGCTL ideal-int
-pkg syscall (netbsd-386-cgo), const TCP_KEEPCNT ideal-int
-pkg syscall (netbsd-386-cgo), const TCP_KEEPIDLE ideal-int
-pkg syscall (netbsd-386-cgo), const TCP_KEEPINIT ideal-int
-pkg syscall (netbsd-386-cgo), const TCP_KEEPINTVL ideal-int
-pkg syscall (netbsd-386-cgo), const TCP_MAXBURST ideal-int
-pkg syscall (netbsd-386-cgo), const TCP_MAXSEG ideal-int
-pkg syscall (netbsd-386-cgo), const TCP_MAXWIN ideal-int
-pkg syscall (netbsd-386-cgo), const TCP_MAX_WINSHIFT ideal-int
-pkg syscall (netbsd-386-cgo), const TCP_MD5SIG ideal-int
-pkg syscall (netbsd-386-cgo), const TCP_MINMSS ideal-int
-pkg syscall (netbsd-386-cgo), const TCP_MSS ideal-int
-pkg syscall (netbsd-386-cgo), const TCSAFLUSH ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCCBRK ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCCDTR ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCCONS ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCDCDTIMESTAMP ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCDRAIN ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCEXCL ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCEXT ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCFLAG_CDTRCTS ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCFLAG_CLOCAL ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCFLAG_CRTSCTS ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCFLAG_MDMBUF ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCFLAG_SOFTCAR ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCFLUSH ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCGETA ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCGETD ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCGFLAGS ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCGLINED ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCGPGRP ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCGQSIZE ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCGRANTPT ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCGSID ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCGSIZE ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCGWINSZ ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCMBIC ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCMBIS ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCMGET ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCMSET ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCM_CAR ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCM_CD ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCM_CTS ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCM_DSR ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCM_DTR ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCM_LE ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCM_RI ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCM_RNG ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCM_RTS ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCM_SR ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCM_ST ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCNOTTY ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCNXCL ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCOUTQ ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCPKT ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCPKT_DATA ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCPKT_DOSTOP ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCPKT_FLUSHREAD ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCPKT_FLUSHWRITE ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCPKT_IOCTL ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCPKT_NOSTOP ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCPKT_START ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCPKT_STOP ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCPTMGET ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCPTSNAME ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCRCVFRAME ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCREMOTE ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCSBRK ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCSCTTY ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCSDTR ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCSETA ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCSETAF ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCSETAW ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCSETD ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCSFLAGS ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCSIG ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCSLINED ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCSPGRP ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCSQSIZE ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCSSIZE ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCSTART ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCSTAT ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCSTI ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCSTOP ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCSWINSZ ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCUCNTL ideal-int
-pkg syscall (netbsd-386-cgo), const TIOCXMTFRAME ideal-int
-pkg syscall (netbsd-386-cgo), const TOSTOP ideal-int
-pkg syscall (netbsd-386-cgo), const VDISCARD ideal-int
-pkg syscall (netbsd-386-cgo), const VDSUSP ideal-int
-pkg syscall (netbsd-386-cgo), const VEOF ideal-int
-pkg syscall (netbsd-386-cgo), const VEOL ideal-int
-pkg syscall (netbsd-386-cgo), const VEOL2 ideal-int
-pkg syscall (netbsd-386-cgo), const VERASE ideal-int
-pkg syscall (netbsd-386-cgo), const VINTR ideal-int
-pkg syscall (netbsd-386-cgo), const VKILL ideal-int
-pkg syscall (netbsd-386-cgo), const VLNEXT ideal-int
-pkg syscall (netbsd-386-cgo), const VMIN ideal-int
-pkg syscall (netbsd-386-cgo), const VQUIT ideal-int
-pkg syscall (netbsd-386-cgo), const VREPRINT ideal-int
-pkg syscall (netbsd-386-cgo), const VSTART ideal-int
-pkg syscall (netbsd-386-cgo), const VSTATUS ideal-int
-pkg syscall (netbsd-386-cgo), const VSTOP ideal-int
-pkg syscall (netbsd-386-cgo), const VSUSP ideal-int
-pkg syscall (netbsd-386-cgo), const VTIME ideal-int
-pkg syscall (netbsd-386-cgo), const VWERASE ideal-int
-pkg syscall (netbsd-386-cgo), const WALL ideal-int
-pkg syscall (netbsd-386-cgo), const WALLSIG ideal-int
-pkg syscall (netbsd-386-cgo), const WALTSIG ideal-int
-pkg syscall (netbsd-386-cgo), const WCLONE ideal-int
-pkg syscall (netbsd-386-cgo), const WCOREFLAG ideal-int
-pkg syscall (netbsd-386-cgo), const WNOHANG ideal-int
-pkg syscall (netbsd-386-cgo), const WNOWAIT ideal-int
-pkg syscall (netbsd-386-cgo), const WNOZOMBIE ideal-int
-pkg syscall (netbsd-386-cgo), const WOPTSCHECKED ideal-int
-pkg syscall (netbsd-386-cgo), const WSTOPPED ideal-int
-pkg syscall (netbsd-386-cgo), const WUNTRACED ideal-int
-pkg syscall (netbsd-386-cgo), func Accept(int) (int, Sockaddr, error)
-pkg syscall (netbsd-386-cgo), func Access(string, uint32) error
-pkg syscall (netbsd-386-cgo), func Adjtime(*Timeval, *Timeval) error
-pkg syscall (netbsd-386-cgo), func Bind(int, Sockaddr) error
-pkg syscall (netbsd-386-cgo), func BpfBuflen(int) (int, error)
-pkg syscall (netbsd-386-cgo), func BpfDatalink(int) (int, error)
-pkg syscall (netbsd-386-cgo), func BpfHeadercmpl(int) (int, error)
-pkg syscall (netbsd-386-cgo), func BpfInterface(int, string) (string, error)
-pkg syscall (netbsd-386-cgo), func BpfJump(int, int, int, int) *BpfInsn
-pkg syscall (netbsd-386-cgo), func BpfStats(int) (*BpfStat, error)
-pkg syscall (netbsd-386-cgo), func BpfStmt(int, int) *BpfInsn
-pkg syscall (netbsd-386-cgo), func BpfTimeout(int) (*Timeval, error)
-pkg syscall (netbsd-386-cgo), func CheckBpfVersion(int) error
-pkg syscall (netbsd-386-cgo), func Chflags(string, int) error
-pkg syscall (netbsd-386-cgo), func Chroot(string) error
-pkg syscall (netbsd-386-cgo), func Close(int) error
-pkg syscall (netbsd-386-cgo), func CloseOnExec(int)
-pkg syscall (netbsd-386-cgo), func CmsgLen(int) int
-pkg syscall (netbsd-386-cgo), func CmsgSpace(int) int
-pkg syscall (netbsd-386-cgo), func Connect(int, Sockaddr) error
-pkg syscall (netbsd-386-cgo), func Dup(int) (int, error)
-pkg syscall (netbsd-386-cgo), func Dup2(int, int) error
-pkg syscall (netbsd-386-cgo), func Fchdir(int) error
-pkg syscall (netbsd-386-cgo), func Fchflags(int, int) error
-pkg syscall (netbsd-386-cgo), func Fchmod(int, uint32) error
-pkg syscall (netbsd-386-cgo), func Fchown(int, int, int) error
-pkg syscall (netbsd-386-cgo), func Flock(int, int) error
-pkg syscall (netbsd-386-cgo), func FlushBpf(int) error
-pkg syscall (netbsd-386-cgo), func ForkExec(string, []string, *ProcAttr) (int, error)
-pkg syscall (netbsd-386-cgo), func Fpathconf(int, int) (int, error)
-pkg syscall (netbsd-386-cgo), func Fstat(int, *Stat_t) error
-pkg syscall (netbsd-386-cgo), func Fsync(int) error
-pkg syscall (netbsd-386-cgo), func Ftruncate(int, int64) error
-pkg syscall (netbsd-386-cgo), func Futimes(int, []Timeval) error
-pkg syscall (netbsd-386-cgo), func Getdirentries(int, []uint8, *uintptr) (int, error)
-pkg syscall (netbsd-386-cgo), func Getpeername(int) (Sockaddr, error)
-pkg syscall (netbsd-386-cgo), func Getpgid(int) (int, error)
-pkg syscall (netbsd-386-cgo), func Getpgrp() int
-pkg syscall (netbsd-386-cgo), func Getpriority(int, int) (int, error)
-pkg syscall (netbsd-386-cgo), func Getrlimit(int, *Rlimit) error
-pkg syscall (netbsd-386-cgo), func Getrusage(int, *Rusage) error
-pkg syscall (netbsd-386-cgo), func Getsid(int) (int, error)
-pkg syscall (netbsd-386-cgo), func Getsockname(int) (Sockaddr, error)
-pkg syscall (netbsd-386-cgo), func GetsockoptByte(int, int, int) (uint8, error)
-pkg syscall (netbsd-386-cgo), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
-pkg syscall (netbsd-386-cgo), func GetsockoptIPMreq(int, int, int) (*IPMreq, error)
-pkg syscall (netbsd-386-cgo), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
-pkg syscall (netbsd-386-cgo), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error)
-pkg syscall (netbsd-386-cgo), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error)
-pkg syscall (netbsd-386-cgo), func GetsockoptInt(int, int, int) (int, error)
-pkg syscall (netbsd-386-cgo), func Issetugid() bool
-pkg syscall (netbsd-386-cgo), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error)
-pkg syscall (netbsd-386-cgo), func Kill(int, Signal) error
-pkg syscall (netbsd-386-cgo), func Kqueue() (int, error)
-pkg syscall (netbsd-386-cgo), func Listen(int, int) error
-pkg syscall (netbsd-386-cgo), func Lstat(string, *Stat_t) error
-pkg syscall (netbsd-386-cgo), func Mkfifo(string, uint32) error
-pkg syscall (netbsd-386-cgo), func Mknod(string, uint32, int) error
-pkg syscall (netbsd-386-cgo), func Mmap(int, int64, int, int, int) ([]uint8, error)
-pkg syscall (netbsd-386-cgo), func Munmap([]uint8) error
-pkg syscall (netbsd-386-cgo), func Nanosleep(*Timespec, *Timespec) error
-pkg syscall (netbsd-386-cgo), func Open(string, int, uint32) (int, error)
-pkg syscall (netbsd-386-cgo), func ParseDirent([]uint8, int, []string) (int, int, []string)
-pkg syscall (netbsd-386-cgo), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error)
-pkg syscall (netbsd-386-cgo), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error)
-pkg syscall (netbsd-386-cgo), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error)
-pkg syscall (netbsd-386-cgo), func ParseUnixRights(*SocketControlMessage) ([]int, error)
-pkg syscall (netbsd-386-cgo), func Pathconf(string, int) (int, error)
-pkg syscall (netbsd-386-cgo), func Pipe([]int) error
-pkg syscall (netbsd-386-cgo), func Pread(int, []uint8, int64) (int, error)
-pkg syscall (netbsd-386-cgo), func Pwrite(int, []uint8, int64) (int, error)
-pkg syscall (netbsd-386-cgo), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (netbsd-386-cgo), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (netbsd-386-cgo), func Read(int, []uint8) (int, error)
-pkg syscall (netbsd-386-cgo), func ReadDirent(int, []uint8) (int, error)
-pkg syscall (netbsd-386-cgo), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
-pkg syscall (netbsd-386-cgo), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
-pkg syscall (netbsd-386-cgo), func Revoke(string) error
-pkg syscall (netbsd-386-cgo), func RouteRIB(int, int) ([]uint8, error)
-pkg syscall (netbsd-386-cgo), func Seek(int, int64, int) (int64, error)
-pkg syscall (netbsd-386-cgo), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error
-pkg syscall (netbsd-386-cgo), func Sendfile(int, int, *int64, int) (int, error)
-pkg syscall (netbsd-386-cgo), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
-pkg syscall (netbsd-386-cgo), func Sendto(int, []uint8, int, Sockaddr) error
-pkg syscall (netbsd-386-cgo), func SetBpf(int, []BpfInsn) error
-pkg syscall (netbsd-386-cgo), func SetBpfBuflen(int, int) (int, error)
-pkg syscall (netbsd-386-cgo), func SetBpfDatalink(int, int) (int, error)
-pkg syscall (netbsd-386-cgo), func SetBpfHeadercmpl(int, int) error
-pkg syscall (netbsd-386-cgo), func SetBpfImmediate(int, int) error
-pkg syscall (netbsd-386-cgo), func SetBpfInterface(int, string) error
-pkg syscall (netbsd-386-cgo), func SetBpfPromisc(int, int) error
-pkg syscall (netbsd-386-cgo), func SetBpfTimeout(int, *Timeval) error
-pkg syscall (netbsd-386-cgo), func SetKevent(*Kevent_t, int, int, int)
-pkg syscall (netbsd-386-cgo), func SetNonblock(int, bool) error
-pkg syscall (netbsd-386-cgo), func Setegid(int) error
-pkg syscall (netbsd-386-cgo), func Seteuid(int) error
-pkg syscall (netbsd-386-cgo), func Setgid(int) error
-pkg syscall (netbsd-386-cgo), func Setgroups([]int) error
-pkg syscall (netbsd-386-cgo), func Setpgid(int, int) error
-pkg syscall (netbsd-386-cgo), func Setpriority(int, int, int) error
-pkg syscall (netbsd-386-cgo), func Setregid(int, int) error
-pkg syscall (netbsd-386-cgo), func Setreuid(int, int) error
-pkg syscall (netbsd-386-cgo), func Setrlimit(int, *Rlimit) error
-pkg syscall (netbsd-386-cgo), func Setsid() (int, error)
-pkg syscall (netbsd-386-cgo), func SetsockoptByte(int, int, int, uint8) error
-pkg syscall (netbsd-386-cgo), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
-pkg syscall (netbsd-386-cgo), func SetsockoptIPMreq(int, int, int, *IPMreq) error
-pkg syscall (netbsd-386-cgo), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error
-pkg syscall (netbsd-386-cgo), func SetsockoptInet4Addr(int, int, int, [4]uint8) error
-pkg syscall (netbsd-386-cgo), func SetsockoptInt(int, int, int, int) error
-pkg syscall (netbsd-386-cgo), func SetsockoptLinger(int, int, int, *Linger) error
-pkg syscall (netbsd-386-cgo), func SetsockoptString(int, int, int, string) error
-pkg syscall (netbsd-386-cgo), func SetsockoptTimeval(int, int, int, *Timeval) error
-pkg syscall (netbsd-386-cgo), func Settimeofday(*Timeval) error
-pkg syscall (netbsd-386-cgo), func Setuid(int) error
-pkg syscall (netbsd-386-cgo), func Shutdown(int, int) error
-pkg syscall (netbsd-386-cgo), func SlicePtrFromStrings([]string) ([]*uint8, error)
-pkg syscall (netbsd-386-cgo), func Socket(int, int, int) (int, error)
-pkg syscall (netbsd-386-cgo), func Socketpair(int, int, int) ([2]int, error)
-pkg syscall (netbsd-386-cgo), func Stat(string, *Stat_t) error
-pkg syscall (netbsd-386-cgo), func StringSlicePtr([]string) []*uint8
-pkg syscall (netbsd-386-cgo), func Sync() error
-pkg syscall (netbsd-386-cgo), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (netbsd-386-cgo), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (netbsd-386-cgo), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (netbsd-386-cgo), func Sysctl(string) (string, error)
-pkg syscall (netbsd-386-cgo), func SysctlUint32(string) (uint32, error)
-pkg syscall (netbsd-386-cgo), func TimevalToNsec(Timeval) int64
-pkg syscall (netbsd-386-cgo), func Truncate(string, int64) error
-pkg syscall (netbsd-386-cgo), func Umask(int) int
-pkg syscall (netbsd-386-cgo), func UnixRights(...int) []uint8
-pkg syscall (netbsd-386-cgo), func Unmount(string, int) error
-pkg syscall (netbsd-386-cgo), func Wait4(int, *WaitStatus, int, *Rusage) (int, error)
-pkg syscall (netbsd-386-cgo), func Write(int, []uint8) (int, error)
-pkg syscall (netbsd-386-cgo), method (*Cmsghdr) SetLen(int)
-pkg syscall (netbsd-386-cgo), method (*Iovec) SetLen(int)
-pkg syscall (netbsd-386-cgo), method (*Msghdr) SetControllen(int)
-pkg syscall (netbsd-386-cgo), type BpfHdr struct
-pkg syscall (netbsd-386-cgo), type BpfHdr struct, Caplen uint32
-pkg syscall (netbsd-386-cgo), type BpfHdr struct, Datalen uint32
-pkg syscall (netbsd-386-cgo), type BpfHdr struct, Hdrlen uint16
-pkg syscall (netbsd-386-cgo), type BpfHdr struct, Pad_cgo_0 [2]uint8
-pkg syscall (netbsd-386-cgo), type BpfHdr struct, Tstamp BpfTimeval
-pkg syscall (netbsd-386-cgo), type BpfInsn struct
-pkg syscall (netbsd-386-cgo), type BpfInsn struct, Code uint16
-pkg syscall (netbsd-386-cgo), type BpfInsn struct, Jf uint8
-pkg syscall (netbsd-386-cgo), type BpfInsn struct, Jt uint8
-pkg syscall (netbsd-386-cgo), type BpfInsn struct, K uint32
-pkg syscall (netbsd-386-cgo), type BpfProgram struct
-pkg syscall (netbsd-386-cgo), type BpfProgram struct, Insns *BpfInsn
-pkg syscall (netbsd-386-cgo), type BpfProgram struct, Len uint32
-pkg syscall (netbsd-386-cgo), type BpfStat struct
-pkg syscall (netbsd-386-cgo), type BpfStat struct, Capt uint64
-pkg syscall (netbsd-386-cgo), type BpfStat struct, Drop uint64
-pkg syscall (netbsd-386-cgo), type BpfStat struct, Padding [13]uint64
-pkg syscall (netbsd-386-cgo), type BpfStat struct, Recv uint64
-pkg syscall (netbsd-386-cgo), type BpfTimeval struct
-pkg syscall (netbsd-386-cgo), type BpfTimeval struct, Sec int32
-pkg syscall (netbsd-386-cgo), type BpfTimeval struct, Usec int32
-pkg syscall (netbsd-386-cgo), type BpfVersion struct
-pkg syscall (netbsd-386-cgo), type BpfVersion struct, Major uint16
-pkg syscall (netbsd-386-cgo), type BpfVersion struct, Minor uint16
-pkg syscall (netbsd-386-cgo), type Cmsghdr struct
-pkg syscall (netbsd-386-cgo), type Cmsghdr struct, Len uint32
-pkg syscall (netbsd-386-cgo), type Cmsghdr struct, Level int32
-pkg syscall (netbsd-386-cgo), type Cmsghdr struct, Type int32
-pkg syscall (netbsd-386-cgo), type Credential struct
-pkg syscall (netbsd-386-cgo), type Credential struct, Gid uint32
-pkg syscall (netbsd-386-cgo), type Credential struct, Groups []uint32
-pkg syscall (netbsd-386-cgo), type Credential struct, Uid uint32
-pkg syscall (netbsd-386-cgo), type Dirent struct
-pkg syscall (netbsd-386-cgo), type Dirent struct, Fileno uint64
-pkg syscall (netbsd-386-cgo), type Dirent struct, Name [512]int8
-pkg syscall (netbsd-386-cgo), type Dirent struct, Namlen uint16
-pkg syscall (netbsd-386-cgo), type Dirent struct, Pad_cgo_0 [3]uint8
-pkg syscall (netbsd-386-cgo), type Dirent struct, Reclen uint16
-pkg syscall (netbsd-386-cgo), type Dirent struct, Type uint8
-pkg syscall (netbsd-386-cgo), type FdSet struct
-pkg syscall (netbsd-386-cgo), type FdSet struct, Bits [8]uint32
-pkg syscall (netbsd-386-cgo), type Flock_t struct
-pkg syscall (netbsd-386-cgo), type Flock_t struct, Len int64
-pkg syscall (netbsd-386-cgo), type Flock_t struct, Pid int32
-pkg syscall (netbsd-386-cgo), type Flock_t struct, Start int64
-pkg syscall (netbsd-386-cgo), type Flock_t struct, Type int16
-pkg syscall (netbsd-386-cgo), type Flock_t struct, Whence int16
-pkg syscall (netbsd-386-cgo), type Fsid struct
-pkg syscall (netbsd-386-cgo), type Fsid struct, X__fsid_val [2]int32
-pkg syscall (netbsd-386-cgo), type ICMPv6Filter struct
-pkg syscall (netbsd-386-cgo), type ICMPv6Filter struct, Filt [8]uint32
-pkg syscall (netbsd-386-cgo), type IPv6MTUInfo struct
-pkg syscall (netbsd-386-cgo), type IPv6MTUInfo struct, Addr RawSockaddrInet6
-pkg syscall (netbsd-386-cgo), type IPv6MTUInfo struct, Mtu uint32
-pkg syscall (netbsd-386-cgo), type IfAnnounceMsghdr struct
-pkg syscall (netbsd-386-cgo), type IfAnnounceMsghdr struct, Index uint16
-pkg syscall (netbsd-386-cgo), type IfAnnounceMsghdr struct, Msglen uint16
-pkg syscall (netbsd-386-cgo), type IfAnnounceMsghdr struct, Name [16]int8
-pkg syscall (netbsd-386-cgo), type IfAnnounceMsghdr struct, Type uint8
-pkg syscall (netbsd-386-cgo), type IfAnnounceMsghdr struct, Version uint8
-pkg syscall (netbsd-386-cgo), type IfAnnounceMsghdr struct, What uint16
-pkg syscall (netbsd-386-cgo), type IfData struct
-pkg syscall (netbsd-386-cgo), type IfData struct, Addrlen uint8
-pkg syscall (netbsd-386-cgo), type IfData struct, Baudrate uint64
-pkg syscall (netbsd-386-cgo), type IfData struct, Collisions uint64
-pkg syscall (netbsd-386-cgo), type IfData struct, Hdrlen uint8
-pkg syscall (netbsd-386-cgo), type IfData struct, Ibytes uint64
-pkg syscall (netbsd-386-cgo), type IfData struct, Ierrors uint64
-pkg syscall (netbsd-386-cgo), type IfData struct, Imcasts uint64
-pkg syscall (netbsd-386-cgo), type IfData struct, Ipackets uint64
-pkg syscall (netbsd-386-cgo), type IfData struct, Iqdrops uint64
-pkg syscall (netbsd-386-cgo), type IfData struct, Lastchange Timespec
-pkg syscall (netbsd-386-cgo), type IfData struct, Link_state int32
-pkg syscall (netbsd-386-cgo), type IfData struct, Metric uint64
-pkg syscall (netbsd-386-cgo), type IfData struct, Mtu uint64
-pkg syscall (netbsd-386-cgo), type IfData struct, Noproto uint64
-pkg syscall (netbsd-386-cgo), type IfData struct, Obytes uint64
-pkg syscall (netbsd-386-cgo), type IfData struct, Oerrors uint64
-pkg syscall (netbsd-386-cgo), type IfData struct, Omcasts uint64
-pkg syscall (netbsd-386-cgo), type IfData struct, Opackets uint64
-pkg syscall (netbsd-386-cgo), type IfData struct, Pad_cgo_0 [1]uint8
-pkg syscall (netbsd-386-cgo), type IfData struct, Type uint8
-pkg syscall (netbsd-386-cgo), type IfMsghdr struct
-pkg syscall (netbsd-386-cgo), type IfMsghdr struct, Addrs int32
-pkg syscall (netbsd-386-cgo), type IfMsghdr struct, Data IfData
-pkg syscall (netbsd-386-cgo), type IfMsghdr struct, Flags int32
-pkg syscall (netbsd-386-cgo), type IfMsghdr struct, Index uint16
-pkg syscall (netbsd-386-cgo), type IfMsghdr struct, Msglen uint16
-pkg syscall (netbsd-386-cgo), type IfMsghdr struct, Pad_cgo_0 [2]uint8
-pkg syscall (netbsd-386-cgo), type IfMsghdr struct, Pad_cgo_1 [4]uint8
-pkg syscall (netbsd-386-cgo), type IfMsghdr struct, Type uint8
-pkg syscall (netbsd-386-cgo), type IfMsghdr struct, Version uint8
-pkg syscall (netbsd-386-cgo), type IfaMsghdr struct
-pkg syscall (netbsd-386-cgo), type IfaMsghdr struct, Addrs int32
-pkg syscall (netbsd-386-cgo), type IfaMsghdr struct, Flags int32
-pkg syscall (netbsd-386-cgo), type IfaMsghdr struct, Index uint16
-pkg syscall (netbsd-386-cgo), type IfaMsghdr struct, Metric int32
-pkg syscall (netbsd-386-cgo), type IfaMsghdr struct, Msglen uint16
-pkg syscall (netbsd-386-cgo), type IfaMsghdr struct, Pad_cgo_0 [6]uint8
-pkg syscall (netbsd-386-cgo), type IfaMsghdr struct, Type uint8
-pkg syscall (netbsd-386-cgo), type IfaMsghdr struct, Version uint8
-pkg syscall (netbsd-386-cgo), type Inet6Pktinfo struct
-pkg syscall (netbsd-386-cgo), type Inet6Pktinfo struct, Addr [16]uint8
-pkg syscall (netbsd-386-cgo), type Inet6Pktinfo struct, Ifindex uint32
-pkg syscall (netbsd-386-cgo), type InterfaceAddrMessage struct
-pkg syscall (netbsd-386-cgo), type InterfaceAddrMessage struct, Data []uint8
-pkg syscall (netbsd-386-cgo), type InterfaceAddrMessage struct, Header IfaMsghdr
-pkg syscall (netbsd-386-cgo), type InterfaceAnnounceMessage struct
-pkg syscall (netbsd-386-cgo), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr
-pkg syscall (netbsd-386-cgo), type InterfaceMessage struct
-pkg syscall (netbsd-386-cgo), type InterfaceMessage struct, Data []uint8
-pkg syscall (netbsd-386-cgo), type InterfaceMessage struct, Header IfMsghdr
-pkg syscall (netbsd-386-cgo), type Iovec struct
-pkg syscall (netbsd-386-cgo), type Iovec struct, Base *uint8
-pkg syscall (netbsd-386-cgo), type Iovec struct, Len uint32
-pkg syscall (netbsd-386-cgo), type Kevent_t struct
-pkg syscall (netbsd-386-cgo), type Kevent_t struct, Data int64
-pkg syscall (netbsd-386-cgo), type Kevent_t struct, Fflags uint32
-pkg syscall (netbsd-386-cgo), type Kevent_t struct, Filter uint32
-pkg syscall (netbsd-386-cgo), type Kevent_t struct, Flags uint32
-pkg syscall (netbsd-386-cgo), type Kevent_t struct, Ident uint32
-pkg syscall (netbsd-386-cgo), type Kevent_t struct, Udata int32
-pkg syscall (netbsd-386-cgo), type Mclpool [0]uint8
-pkg syscall (netbsd-386-cgo), type Msghdr struct
-pkg syscall (netbsd-386-cgo), type Msghdr struct, Control *uint8
-pkg syscall (netbsd-386-cgo), type Msghdr struct, Controllen uint32
-pkg syscall (netbsd-386-cgo), type Msghdr struct, Flags int32
-pkg syscall (netbsd-386-cgo), type Msghdr struct, Iov *Iovec
-pkg syscall (netbsd-386-cgo), type Msghdr struct, Iovlen int32
-pkg syscall (netbsd-386-cgo), type Msghdr struct, Name *uint8
-pkg syscall (netbsd-386-cgo), type Msghdr struct, Namelen uint32
-pkg syscall (netbsd-386-cgo), type RawSockaddr struct, Data [14]int8
-pkg syscall (netbsd-386-cgo), type RawSockaddr struct, Family uint8
-pkg syscall (netbsd-386-cgo), type RawSockaddr struct, Len uint8
-pkg syscall (netbsd-386-cgo), type RawSockaddrAny struct, Pad [92]int8
-pkg syscall (netbsd-386-cgo), type RawSockaddrDatalink struct
-pkg syscall (netbsd-386-cgo), type RawSockaddrDatalink struct, Alen uint8
-pkg syscall (netbsd-386-cgo), type RawSockaddrDatalink struct, Data [12]int8
-pkg syscall (netbsd-386-cgo), type RawSockaddrDatalink struct, Family uint8
-pkg syscall (netbsd-386-cgo), type RawSockaddrDatalink struct, Index uint16
-pkg syscall (netbsd-386-cgo), type RawSockaddrDatalink struct, Len uint8
-pkg syscall (netbsd-386-cgo), type RawSockaddrDatalink struct, Nlen uint8
-pkg syscall (netbsd-386-cgo), type RawSockaddrDatalink struct, Slen uint8
-pkg syscall (netbsd-386-cgo), type RawSockaddrDatalink struct, Type uint8
-pkg syscall (netbsd-386-cgo), type RawSockaddrInet4 struct, Family uint8
-pkg syscall (netbsd-386-cgo), type RawSockaddrInet4 struct, Len uint8
-pkg syscall (netbsd-386-cgo), type RawSockaddrInet4 struct, Zero [8]int8
-pkg syscall (netbsd-386-cgo), type RawSockaddrInet6 struct, Family uint8
-pkg syscall (netbsd-386-cgo), type RawSockaddrInet6 struct, Len uint8
-pkg syscall (netbsd-386-cgo), type RawSockaddrUnix struct
-pkg syscall (netbsd-386-cgo), type RawSockaddrUnix struct, Family uint8
-pkg syscall (netbsd-386-cgo), type RawSockaddrUnix struct, Len uint8
-pkg syscall (netbsd-386-cgo), type RawSockaddrUnix struct, Path [104]int8
-pkg syscall (netbsd-386-cgo), type Rlimit struct
-pkg syscall (netbsd-386-cgo), type Rlimit struct, Cur uint64
-pkg syscall (netbsd-386-cgo), type Rlimit struct, Max uint64
-pkg syscall (netbsd-386-cgo), type RouteMessage struct
-pkg syscall (netbsd-386-cgo), type RouteMessage struct, Data []uint8
-pkg syscall (netbsd-386-cgo), type RouteMessage struct, Header RtMsghdr
-pkg syscall (netbsd-386-cgo), type RoutingMessage interface, unexported methods
-pkg syscall (netbsd-386-cgo), type RtMetrics struct
-pkg syscall (netbsd-386-cgo), type RtMetrics struct, Expire int64
-pkg syscall (netbsd-386-cgo), type RtMetrics struct, Hopcount uint64
-pkg syscall (netbsd-386-cgo), type RtMetrics struct, Locks uint64
-pkg syscall (netbsd-386-cgo), type RtMetrics struct, Mtu uint64
-pkg syscall (netbsd-386-cgo), type RtMetrics struct, Pksent int64
-pkg syscall (netbsd-386-cgo), type RtMetrics struct, Recvpipe uint64
-pkg syscall (netbsd-386-cgo), type RtMetrics struct, Rtt uint64
-pkg syscall (netbsd-386-cgo), type RtMetrics struct, Rttvar uint64
-pkg syscall (netbsd-386-cgo), type RtMetrics struct, Sendpipe uint64
-pkg syscall (netbsd-386-cgo), type RtMetrics struct, Ssthresh uint64
-pkg syscall (netbsd-386-cgo), type RtMsghdr struct
-pkg syscall (netbsd-386-cgo), type RtMsghdr struct, Addrs int32
-pkg syscall (netbsd-386-cgo), type RtMsghdr struct, Errno int32
-pkg syscall (netbsd-386-cgo), type RtMsghdr struct, Flags int32
-pkg syscall (netbsd-386-cgo), type RtMsghdr struct, Index uint16
-pkg syscall (netbsd-386-cgo), type RtMsghdr struct, Inits int32
-pkg syscall (netbsd-386-cgo), type RtMsghdr struct, Msglen uint16
-pkg syscall (netbsd-386-cgo), type RtMsghdr struct, Pad_cgo_0 [2]uint8
-pkg syscall (netbsd-386-cgo), type RtMsghdr struct, Pad_cgo_1 [4]uint8
-pkg syscall (netbsd-386-cgo), type RtMsghdr struct, Pid int32
-pkg syscall (netbsd-386-cgo), type RtMsghdr struct, Rmx RtMetrics
-pkg syscall (netbsd-386-cgo), type RtMsghdr struct, Seq int32
-pkg syscall (netbsd-386-cgo), type RtMsghdr struct, Type uint8
-pkg syscall (netbsd-386-cgo), type RtMsghdr struct, Use int32
-pkg syscall (netbsd-386-cgo), type RtMsghdr struct, Version uint8
-pkg syscall (netbsd-386-cgo), type Rusage struct, Idrss int32
-pkg syscall (netbsd-386-cgo), type Rusage struct, Inblock int32
-pkg syscall (netbsd-386-cgo), type Rusage struct, Isrss int32
-pkg syscall (netbsd-386-cgo), type Rusage struct, Ixrss int32
-pkg syscall (netbsd-386-cgo), type Rusage struct, Majflt int32
-pkg syscall (netbsd-386-cgo), type Rusage struct, Maxrss int32
-pkg syscall (netbsd-386-cgo), type Rusage struct, Minflt int32
-pkg syscall (netbsd-386-cgo), type Rusage struct, Msgrcv int32
-pkg syscall (netbsd-386-cgo), type Rusage struct, Msgsnd int32
-pkg syscall (netbsd-386-cgo), type Rusage struct, Nivcsw int32
-pkg syscall (netbsd-386-cgo), type Rusage struct, Nsignals int32
-pkg syscall (netbsd-386-cgo), type Rusage struct, Nswap int32
-pkg syscall (netbsd-386-cgo), type Rusage struct, Nvcsw int32
-pkg syscall (netbsd-386-cgo), type Rusage struct, Oublock int32
-pkg syscall (netbsd-386-cgo), type Rusage struct, Stime Timeval
-pkg syscall (netbsd-386-cgo), type Rusage struct, Utime Timeval
-pkg syscall (netbsd-386-cgo), type SockaddrDatalink struct
-pkg syscall (netbsd-386-cgo), type SockaddrDatalink struct, Alen uint8
-pkg syscall (netbsd-386-cgo), type SockaddrDatalink struct, Data [12]int8
-pkg syscall (netbsd-386-cgo), type SockaddrDatalink struct, Family uint8
-pkg syscall (netbsd-386-cgo), type SockaddrDatalink struct, Index uint16
-pkg syscall (netbsd-386-cgo), type SockaddrDatalink struct, Len uint8
-pkg syscall (netbsd-386-cgo), type SockaddrDatalink struct, Nlen uint8
-pkg syscall (netbsd-386-cgo), type SockaddrDatalink struct, Slen uint8
-pkg syscall (netbsd-386-cgo), type SockaddrDatalink struct, Type uint8
-pkg syscall (netbsd-386-cgo), type SocketControlMessage struct
-pkg syscall (netbsd-386-cgo), type SocketControlMessage struct, Data []uint8
-pkg syscall (netbsd-386-cgo), type SocketControlMessage struct, Header Cmsghdr
-pkg syscall (netbsd-386-cgo), type Stat_t struct
-pkg syscall (netbsd-386-cgo), type Stat_t struct, Atimespec Timespec
-pkg syscall (netbsd-386-cgo), type Stat_t struct, Birthtimespec Timespec
-pkg syscall (netbsd-386-cgo), type Stat_t struct, Blksize uint32
-pkg syscall (netbsd-386-cgo), type Stat_t struct, Blocks int64
-pkg syscall (netbsd-386-cgo), type Stat_t struct, Ctimespec Timespec
-pkg syscall (netbsd-386-cgo), type Stat_t struct, Dev uint64
-pkg syscall (netbsd-386-cgo), type Stat_t struct, Flags uint32
-pkg syscall (netbsd-386-cgo), type Stat_t struct, Gen uint32
-pkg syscall (netbsd-386-cgo), type Stat_t struct, Gid uint32
-pkg syscall (netbsd-386-cgo), type Stat_t struct, Ino uint64
-pkg syscall (netbsd-386-cgo), type Stat_t struct, Mode uint32
-pkg syscall (netbsd-386-cgo), type Stat_t struct, Mtimespec Timespec
-pkg syscall (netbsd-386-cgo), type Stat_t struct, Nlink uint32
-pkg syscall (netbsd-386-cgo), type Stat_t struct, Rdev uint64
-pkg syscall (netbsd-386-cgo), type Stat_t struct, Size int64
-pkg syscall (netbsd-386-cgo), type Stat_t struct, Spare [2]uint32
-pkg syscall (netbsd-386-cgo), type Stat_t struct, Uid uint32
-pkg syscall (netbsd-386-cgo), type Statfs_t [0]uint8
-pkg syscall (netbsd-386-cgo), type SysProcAttr struct, Chroot string
-pkg syscall (netbsd-386-cgo), type SysProcAttr struct, Credential *Credential
-pkg syscall (netbsd-386-cgo), type SysProcAttr struct, Noctty bool
-pkg syscall (netbsd-386-cgo), type SysProcAttr struct, Ptrace bool
-pkg syscall (netbsd-386-cgo), type SysProcAttr struct, Setctty bool
-pkg syscall (netbsd-386-cgo), type SysProcAttr struct, Setpgid bool
-pkg syscall (netbsd-386-cgo), type SysProcAttr struct, Setsid bool
-pkg syscall (netbsd-386-cgo), type Sysctlnode struct
-pkg syscall (netbsd-386-cgo), type Sysctlnode struct, Flags uint32
-pkg syscall (netbsd-386-cgo), type Sysctlnode struct, Name [32]int8
-pkg syscall (netbsd-386-cgo), type Sysctlnode struct, Num int32
-pkg syscall (netbsd-386-cgo), type Sysctlnode struct, Un [16]uint8
-pkg syscall (netbsd-386-cgo), type Sysctlnode struct, Ver uint32
-pkg syscall (netbsd-386-cgo), type Sysctlnode struct, X__rsvd uint32
-pkg syscall (netbsd-386-cgo), type Sysctlnode struct, X_sysctl_desc [8]uint8
-pkg syscall (netbsd-386-cgo), type Sysctlnode struct, X_sysctl_func [8]uint8
-pkg syscall (netbsd-386-cgo), type Sysctlnode struct, X_sysctl_parent [8]uint8
-pkg syscall (netbsd-386-cgo), type Sysctlnode struct, X_sysctl_size [8]uint8
-pkg syscall (netbsd-386-cgo), type Timespec struct, Nsec int32
-pkg syscall (netbsd-386-cgo), type Timespec struct, Sec int64
-pkg syscall (netbsd-386-cgo), type Timeval struct, Sec int64
-pkg syscall (netbsd-386-cgo), type Timeval struct, Usec int32
-pkg syscall (netbsd-386-cgo), type WaitStatus uint32
-pkg syscall (netbsd-386-cgo), var Stderr int
-pkg syscall (netbsd-386-cgo), var Stdin int
-pkg syscall (netbsd-386-cgo), var Stdout int
-pkg syscall (netbsd-amd64), const AF_APPLETALK ideal-int
-pkg syscall (netbsd-amd64), const AF_ARP ideal-int
-pkg syscall (netbsd-amd64), const AF_BLUETOOTH ideal-int
-pkg syscall (netbsd-amd64), const AF_CCITT ideal-int
-pkg syscall (netbsd-amd64), const AF_CHAOS ideal-int
-pkg syscall (netbsd-amd64), const AF_CNT ideal-int
-pkg syscall (netbsd-amd64), const AF_COIP ideal-int
-pkg syscall (netbsd-amd64), const AF_DATAKIT ideal-int
-pkg syscall (netbsd-amd64), const AF_DECnet ideal-int
-pkg syscall (netbsd-amd64), const AF_DLI ideal-int
-pkg syscall (netbsd-amd64), const AF_E164 ideal-int
-pkg syscall (netbsd-amd64), const AF_ECMA ideal-int
-pkg syscall (netbsd-amd64), const AF_HYLINK ideal-int
-pkg syscall (netbsd-amd64), const AF_IEEE80211 ideal-int
-pkg syscall (netbsd-amd64), const AF_IMPLINK ideal-int
-pkg syscall (netbsd-amd64), const AF_IPX ideal-int
-pkg syscall (netbsd-amd64), const AF_ISDN ideal-int
-pkg syscall (netbsd-amd64), const AF_ISO ideal-int
-pkg syscall (netbsd-amd64), const AF_LAT ideal-int
-pkg syscall (netbsd-amd64), const AF_LINK ideal-int
-pkg syscall (netbsd-amd64), const AF_LOCAL ideal-int
-pkg syscall (netbsd-amd64), const AF_MAX ideal-int
-pkg syscall (netbsd-amd64), const AF_MPLS ideal-int
-pkg syscall (netbsd-amd64), const AF_NATM ideal-int
-pkg syscall (netbsd-amd64), const AF_NS ideal-int
-pkg syscall (netbsd-amd64), const AF_OROUTE ideal-int
-pkg syscall (netbsd-amd64), const AF_OSI ideal-int
-pkg syscall (netbsd-amd64), const AF_PUP ideal-int
-pkg syscall (netbsd-amd64), const AF_ROUTE ideal-int
-pkg syscall (netbsd-amd64), const AF_SNA ideal-int
-pkg syscall (netbsd-amd64), const ARPHRD_ARCNET ideal-int
-pkg syscall (netbsd-amd64), const ARPHRD_ETHER ideal-int
-pkg syscall (netbsd-amd64), const ARPHRD_FRELAY ideal-int
-pkg syscall (netbsd-amd64), const ARPHRD_IEEE1394 ideal-int
-pkg syscall (netbsd-amd64), const ARPHRD_IEEE802 ideal-int
-pkg syscall (netbsd-amd64), const ARPHRD_STRIP ideal-int
-pkg syscall (netbsd-amd64), const B0 ideal-int
-pkg syscall (netbsd-amd64), const B110 ideal-int
-pkg syscall (netbsd-amd64), const B115200 ideal-int
-pkg syscall (netbsd-amd64), const B1200 ideal-int
-pkg syscall (netbsd-amd64), const B134 ideal-int
-pkg syscall (netbsd-amd64), const B14400 ideal-int
-pkg syscall (netbsd-amd64), const B150 ideal-int
-pkg syscall (netbsd-amd64), const B1800 ideal-int
-pkg syscall (netbsd-amd64), const B19200 ideal-int
-pkg syscall (netbsd-amd64), const B200 ideal-int
-pkg syscall (netbsd-amd64), const B230400 ideal-int
-pkg syscall (netbsd-amd64), const B2400 ideal-int
-pkg syscall (netbsd-amd64), const B28800 ideal-int
-pkg syscall (netbsd-amd64), const B300 ideal-int
-pkg syscall (netbsd-amd64), const B38400 ideal-int
-pkg syscall (netbsd-amd64), const B460800 ideal-int
-pkg syscall (netbsd-amd64), const B4800 ideal-int
-pkg syscall (netbsd-amd64), const B50 ideal-int
-pkg syscall (netbsd-amd64), const B57600 ideal-int
-pkg syscall (netbsd-amd64), const B600 ideal-int
-pkg syscall (netbsd-amd64), const B7200 ideal-int
-pkg syscall (netbsd-amd64), const B75 ideal-int
-pkg syscall (netbsd-amd64), const B76800 ideal-int
-pkg syscall (netbsd-amd64), const B921600 ideal-int
-pkg syscall (netbsd-amd64), const B9600 ideal-int
-pkg syscall (netbsd-amd64), const BIOCFEEDBACK ideal-int
-pkg syscall (netbsd-amd64), const BIOCFLUSH ideal-int
-pkg syscall (netbsd-amd64), const BIOCGBLEN ideal-int
-pkg syscall (netbsd-amd64), const BIOCGDLT ideal-int
-pkg syscall (netbsd-amd64), const BIOCGDLTLIST ideal-int
-pkg syscall (netbsd-amd64), const BIOCGETIF ideal-int
-pkg syscall (netbsd-amd64), const BIOCGFEEDBACK ideal-int
-pkg syscall (netbsd-amd64), const BIOCGHDRCMPLT ideal-int
-pkg syscall (netbsd-amd64), const BIOCGRTIMEOUT ideal-int
-pkg syscall (netbsd-amd64), const BIOCGSEESENT ideal-int
-pkg syscall (netbsd-amd64), const BIOCGSTATS ideal-int
-pkg syscall (netbsd-amd64), const BIOCGSTATSOLD ideal-int
-pkg syscall (netbsd-amd64), const BIOCIMMEDIATE ideal-int
-pkg syscall (netbsd-amd64), const BIOCPROMISC ideal-int
-pkg syscall (netbsd-amd64), const BIOCSBLEN ideal-int
-pkg syscall (netbsd-amd64), const BIOCSDLT ideal-int
-pkg syscall (netbsd-amd64), const BIOCSETF ideal-int
-pkg syscall (netbsd-amd64), const BIOCSETIF ideal-int
-pkg syscall (netbsd-amd64), const BIOCSFEEDBACK ideal-int
-pkg syscall (netbsd-amd64), const BIOCSHDRCMPLT ideal-int
-pkg syscall (netbsd-amd64), const BIOCSRTIMEOUT ideal-int
-pkg syscall (netbsd-amd64), const BIOCSSEESENT ideal-int
-pkg syscall (netbsd-amd64), const BIOCSTCPF ideal-int
-pkg syscall (netbsd-amd64), const BIOCSUDPF ideal-int
-pkg syscall (netbsd-amd64), const BIOCVERSION ideal-int
-pkg syscall (netbsd-amd64), const BPF_A ideal-int
-pkg syscall (netbsd-amd64), const BPF_ABS ideal-int
-pkg syscall (netbsd-amd64), const BPF_ADD ideal-int
-pkg syscall (netbsd-amd64), const BPF_ALIGNMENT ideal-int
-pkg syscall (netbsd-amd64), const BPF_ALIGNMENT32 ideal-int
-pkg syscall (netbsd-amd64), const BPF_ALU ideal-int
-pkg syscall (netbsd-amd64), const BPF_AND ideal-int
-pkg syscall (netbsd-amd64), const BPF_B ideal-int
-pkg syscall (netbsd-amd64), const BPF_DFLTBUFSIZE ideal-int
-pkg syscall (netbsd-amd64), const BPF_DIV ideal-int
-pkg syscall (netbsd-amd64), const BPF_H ideal-int
-pkg syscall (netbsd-amd64), const BPF_IMM ideal-int
-pkg syscall (netbsd-amd64), const BPF_IND ideal-int
-pkg syscall (netbsd-amd64), const BPF_JA ideal-int
-pkg syscall (netbsd-amd64), const BPF_JEQ ideal-int
-pkg syscall (netbsd-amd64), const BPF_JGE ideal-int
-pkg syscall (netbsd-amd64), const BPF_JGT ideal-int
-pkg syscall (netbsd-amd64), const BPF_JMP ideal-int
-pkg syscall (netbsd-amd64), const BPF_JSET ideal-int
-pkg syscall (netbsd-amd64), const BPF_K ideal-int
-pkg syscall (netbsd-amd64), const BPF_LD ideal-int
-pkg syscall (netbsd-amd64), const BPF_LDX ideal-int
-pkg syscall (netbsd-amd64), const BPF_LEN ideal-int
-pkg syscall (netbsd-amd64), const BPF_LSH ideal-int
-pkg syscall (netbsd-amd64), const BPF_MAJOR_VERSION ideal-int
-pkg syscall (netbsd-amd64), const BPF_MAXBUFSIZE ideal-int
-pkg syscall (netbsd-amd64), const BPF_MAXINSNS ideal-int
-pkg syscall (netbsd-amd64), const BPF_MEM ideal-int
-pkg syscall (netbsd-amd64), const BPF_MEMWORDS ideal-int
-pkg syscall (netbsd-amd64), const BPF_MINBUFSIZE ideal-int
-pkg syscall (netbsd-amd64), const BPF_MINOR_VERSION ideal-int
-pkg syscall (netbsd-amd64), const BPF_MISC ideal-int
-pkg syscall (netbsd-amd64), const BPF_MSH ideal-int
-pkg syscall (netbsd-amd64), const BPF_MUL ideal-int
-pkg syscall (netbsd-amd64), const BPF_NEG ideal-int
-pkg syscall (netbsd-amd64), const BPF_OR ideal-int
-pkg syscall (netbsd-amd64), const BPF_RELEASE ideal-int
-pkg syscall (netbsd-amd64), const BPF_RET ideal-int
-pkg syscall (netbsd-amd64), const BPF_RSH ideal-int
-pkg syscall (netbsd-amd64), const BPF_ST ideal-int
-pkg syscall (netbsd-amd64), const BPF_STX ideal-int
-pkg syscall (netbsd-amd64), const BPF_SUB ideal-int
-pkg syscall (netbsd-amd64), const BPF_TAX ideal-int
-pkg syscall (netbsd-amd64), const BPF_TXA ideal-int
-pkg syscall (netbsd-amd64), const BPF_W ideal-int
-pkg syscall (netbsd-amd64), const BPF_X ideal-int
-pkg syscall (netbsd-amd64), const BRKINT ideal-int
-pkg syscall (netbsd-amd64), const CFLUSH ideal-int
-pkg syscall (netbsd-amd64), const CLOCAL ideal-int
-pkg syscall (netbsd-amd64), const CREAD ideal-int
-pkg syscall (netbsd-amd64), const CS5 ideal-int
-pkg syscall (netbsd-amd64), const CS6 ideal-int
-pkg syscall (netbsd-amd64), const CS7 ideal-int
-pkg syscall (netbsd-amd64), const CS8 ideal-int
-pkg syscall (netbsd-amd64), const CSIZE ideal-int
-pkg syscall (netbsd-amd64), const CSTART ideal-int
-pkg syscall (netbsd-amd64), const CSTATUS ideal-int
-pkg syscall (netbsd-amd64), const CSTOP ideal-int
-pkg syscall (netbsd-amd64), const CSTOPB ideal-int
-pkg syscall (netbsd-amd64), const CSUSP ideal-int
-pkg syscall (netbsd-amd64), const CTL_MAXNAME ideal-int
-pkg syscall (netbsd-amd64), const CTL_NET ideal-int
-pkg syscall (netbsd-amd64), const CTL_QUERY ideal-int
-pkg syscall (netbsd-amd64), const DIOCBSFLUSH ideal-int
-pkg syscall (netbsd-amd64), const DLT_A429 ideal-int
-pkg syscall (netbsd-amd64), const DLT_A653_ICM ideal-int
-pkg syscall (netbsd-amd64), const DLT_AIRONET_HEADER ideal-int
-pkg syscall (netbsd-amd64), const DLT_AOS ideal-int
-pkg syscall (netbsd-amd64), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int
-pkg syscall (netbsd-amd64), const DLT_ARCNET ideal-int
-pkg syscall (netbsd-amd64), const DLT_ARCNET_LINUX ideal-int
-pkg syscall (netbsd-amd64), const DLT_ATM_CLIP ideal-int
-pkg syscall (netbsd-amd64), const DLT_ATM_RFC1483 ideal-int
-pkg syscall (netbsd-amd64), const DLT_AURORA ideal-int
-pkg syscall (netbsd-amd64), const DLT_AX25 ideal-int
-pkg syscall (netbsd-amd64), const DLT_AX25_KISS ideal-int
-pkg syscall (netbsd-amd64), const DLT_BACNET_MS_TP ideal-int
-pkg syscall (netbsd-amd64), const DLT_BLUETOOTH_HCI_H4 ideal-int
-pkg syscall (netbsd-amd64), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR ideal-int
-pkg syscall (netbsd-amd64), const DLT_CAN20B ideal-int
-pkg syscall (netbsd-amd64), const DLT_CAN_SOCKETCAN ideal-int
-pkg syscall (netbsd-amd64), const DLT_CHAOS ideal-int
-pkg syscall (netbsd-amd64), const DLT_CISCO_IOS ideal-int
-pkg syscall (netbsd-amd64), const DLT_C_HDLC ideal-int
-pkg syscall (netbsd-amd64), const DLT_C_HDLC_WITH_DIR ideal-int
-pkg syscall (netbsd-amd64), const DLT_DECT ideal-int
-pkg syscall (netbsd-amd64), const DLT_DOCSIS ideal-int
-pkg syscall (netbsd-amd64), const DLT_ECONET ideal-int
-pkg syscall (netbsd-amd64), const DLT_EN10MB ideal-int
-pkg syscall (netbsd-amd64), const DLT_EN3MB ideal-int
-pkg syscall (netbsd-amd64), const DLT_ENC ideal-int
-pkg syscall (netbsd-amd64), const DLT_ERF ideal-int
-pkg syscall (netbsd-amd64), const DLT_ERF_ETH ideal-int
-pkg syscall (netbsd-amd64), const DLT_ERF_POS ideal-int
-pkg syscall (netbsd-amd64), const DLT_FC_2 ideal-int
-pkg syscall (netbsd-amd64), const DLT_FC_2_WITH_FRAME_DELIMS ideal-int
-pkg syscall (netbsd-amd64), const DLT_FDDI ideal-int
-pkg syscall (netbsd-amd64), const DLT_FLEXRAY ideal-int
-pkg syscall (netbsd-amd64), const DLT_FRELAY ideal-int
-pkg syscall (netbsd-amd64), const DLT_FRELAY_WITH_DIR ideal-int
-pkg syscall (netbsd-amd64), const DLT_GCOM_SERIAL ideal-int
-pkg syscall (netbsd-amd64), const DLT_GCOM_T1E1 ideal-int
-pkg syscall (netbsd-amd64), const DLT_GPF_F ideal-int
-pkg syscall (netbsd-amd64), const DLT_GPF_T ideal-int
-pkg syscall (netbsd-amd64), const DLT_GPRS_LLC ideal-int
-pkg syscall (netbsd-amd64), const DLT_GSMTAP_ABIS ideal-int
-pkg syscall (netbsd-amd64), const DLT_GSMTAP_UM ideal-int
-pkg syscall (netbsd-amd64), const DLT_HDLC ideal-int
-pkg syscall (netbsd-amd64), const DLT_HHDLC ideal-int
-pkg syscall (netbsd-amd64), const DLT_HIPPI ideal-int
-pkg syscall (netbsd-amd64), const DLT_IBM_SN ideal-int
-pkg syscall (netbsd-amd64), const DLT_IBM_SP ideal-int
-pkg syscall (netbsd-amd64), const DLT_IEEE802 ideal-int
-pkg syscall (netbsd-amd64), const DLT_IEEE802_11 ideal-int
-pkg syscall (netbsd-amd64), const DLT_IEEE802_11_RADIO ideal-int
-pkg syscall (netbsd-amd64), const DLT_IEEE802_11_RADIO_AVS ideal-int
-pkg syscall (netbsd-amd64), const DLT_IEEE802_15_4 ideal-int
-pkg syscall (netbsd-amd64), const DLT_IEEE802_15_4_LINUX ideal-int
-pkg syscall (netbsd-amd64), const DLT_IEEE802_15_4_NONASK_PHY ideal-int
-pkg syscall (netbsd-amd64), const DLT_IEEE802_16_MAC_CPS ideal-int
-pkg syscall (netbsd-amd64), const DLT_IEEE802_16_MAC_CPS_RADIO ideal-int
-pkg syscall (netbsd-amd64), const DLT_IPMB ideal-int
-pkg syscall (netbsd-amd64), const DLT_IPMB_LINUX ideal-int
-pkg syscall (netbsd-amd64), const DLT_IPNET ideal-int
-pkg syscall (netbsd-amd64), const DLT_IPV4 ideal-int
-pkg syscall (netbsd-amd64), const DLT_IPV6 ideal-int
-pkg syscall (netbsd-amd64), const DLT_IP_OVER_FC ideal-int
-pkg syscall (netbsd-amd64), const DLT_JUNIPER_ATM1 ideal-int
-pkg syscall (netbsd-amd64), const DLT_JUNIPER_ATM2 ideal-int
-pkg syscall (netbsd-amd64), const DLT_JUNIPER_CHDLC ideal-int
-pkg syscall (netbsd-amd64), const DLT_JUNIPER_ES ideal-int
-pkg syscall (netbsd-amd64), const DLT_JUNIPER_ETHER ideal-int
-pkg syscall (netbsd-amd64), const DLT_JUNIPER_FRELAY ideal-int
-pkg syscall (netbsd-amd64), const DLT_JUNIPER_GGSN ideal-int
-pkg syscall (netbsd-amd64), const DLT_JUNIPER_ISM ideal-int
-pkg syscall (netbsd-amd64), const DLT_JUNIPER_MFR ideal-int
-pkg syscall (netbsd-amd64), const DLT_JUNIPER_MLFR ideal-int
-pkg syscall (netbsd-amd64), const DLT_JUNIPER_MLPPP ideal-int
-pkg syscall (netbsd-amd64), const DLT_JUNIPER_MONITOR ideal-int
-pkg syscall (netbsd-amd64), const DLT_JUNIPER_PIC_PEER ideal-int
-pkg syscall (netbsd-amd64), const DLT_JUNIPER_PPP ideal-int
-pkg syscall (netbsd-amd64), const DLT_JUNIPER_PPPOE ideal-int
-pkg syscall (netbsd-amd64), const DLT_JUNIPER_PPPOE_ATM ideal-int
-pkg syscall (netbsd-amd64), const DLT_JUNIPER_SERVICES ideal-int
-pkg syscall (netbsd-amd64), const DLT_JUNIPER_ST ideal-int
-pkg syscall (netbsd-amd64), const DLT_JUNIPER_VP ideal-int
-pkg syscall (netbsd-amd64), const DLT_LAPB_WITH_DIR ideal-int
-pkg syscall (netbsd-amd64), const DLT_LAPD ideal-int
-pkg syscall (netbsd-amd64), const DLT_LIN ideal-int
-pkg syscall (netbsd-amd64), const DLT_LINUX_EVDEV ideal-int
-pkg syscall (netbsd-amd64), const DLT_LINUX_IRDA ideal-int
-pkg syscall (netbsd-amd64), const DLT_LINUX_LAPD ideal-int
-pkg syscall (netbsd-amd64), const DLT_LINUX_SLL ideal-int
-pkg syscall (netbsd-amd64), const DLT_LOOP ideal-int
-pkg syscall (netbsd-amd64), const DLT_LTALK ideal-int
-pkg syscall (netbsd-amd64), const DLT_MFR ideal-int
-pkg syscall (netbsd-amd64), const DLT_MOST ideal-int
-pkg syscall (netbsd-amd64), const DLT_MPLS ideal-int
-pkg syscall (netbsd-amd64), const DLT_MTP2 ideal-int
-pkg syscall (netbsd-amd64), const DLT_MTP2_WITH_PHDR ideal-int
-pkg syscall (netbsd-amd64), const DLT_MTP3 ideal-int
-pkg syscall (netbsd-amd64), const DLT_NULL ideal-int
-pkg syscall (netbsd-amd64), const DLT_PCI_EXP ideal-int
-pkg syscall (netbsd-amd64), const DLT_PFLOG ideal-int
-pkg syscall (netbsd-amd64), const DLT_PFSYNC ideal-int
-pkg syscall (netbsd-amd64), const DLT_PPI ideal-int
-pkg syscall (netbsd-amd64), const DLT_PPP ideal-int
-pkg syscall (netbsd-amd64), const DLT_PPP_BSDOS ideal-int
-pkg syscall (netbsd-amd64), const DLT_PPP_ETHER ideal-int
-pkg syscall (netbsd-amd64), const DLT_PPP_PPPD ideal-int
-pkg syscall (netbsd-amd64), const DLT_PPP_SERIAL ideal-int
-pkg syscall (netbsd-amd64), const DLT_PPP_WITH_DIR ideal-int
-pkg syscall (netbsd-amd64), const DLT_PRISM_HEADER ideal-int
-pkg syscall (netbsd-amd64), const DLT_PRONET ideal-int
-pkg syscall (netbsd-amd64), const DLT_RAIF1 ideal-int
-pkg syscall (netbsd-amd64), const DLT_RAW ideal-int
-pkg syscall (netbsd-amd64), const DLT_RAWAF_MASK ideal-int
-pkg syscall (netbsd-amd64), const DLT_RIO ideal-int
-pkg syscall (netbsd-amd64), const DLT_SCCP ideal-int
-pkg syscall (netbsd-amd64), const DLT_SITA ideal-int
-pkg syscall (netbsd-amd64), const DLT_SLIP ideal-int
-pkg syscall (netbsd-amd64), const DLT_SLIP_BSDOS ideal-int
-pkg syscall (netbsd-amd64), const DLT_SUNATM ideal-int
-pkg syscall (netbsd-amd64), const DLT_SYMANTEC_FIREWALL ideal-int
-pkg syscall (netbsd-amd64), const DLT_TZSP ideal-int
-pkg syscall (netbsd-amd64), const DLT_USB ideal-int
-pkg syscall (netbsd-amd64), const DLT_USB_LINUX ideal-int
-pkg syscall (netbsd-amd64), const DLT_USB_LINUX_MMAPPED ideal-int
-pkg syscall (netbsd-amd64), const DLT_WIHART ideal-int
-pkg syscall (netbsd-amd64), const DLT_X2E_SERIAL ideal-int
-pkg syscall (netbsd-amd64), const DLT_X2E_XORAYA ideal-int
-pkg syscall (netbsd-amd64), const DT_BLK ideal-int
-pkg syscall (netbsd-amd64), const DT_CHR ideal-int
-pkg syscall (netbsd-amd64), const DT_DIR ideal-int
-pkg syscall (netbsd-amd64), const DT_FIFO ideal-int
-pkg syscall (netbsd-amd64), const DT_LNK ideal-int
-pkg syscall (netbsd-amd64), const DT_REG ideal-int
-pkg syscall (netbsd-amd64), const DT_SOCK ideal-int
-pkg syscall (netbsd-amd64), const DT_UNKNOWN ideal-int
-pkg syscall (netbsd-amd64), const DT_WHT ideal-int
-pkg syscall (netbsd-amd64), const EAUTH Errno
-pkg syscall (netbsd-amd64), const EBADMSG Errno
-pkg syscall (netbsd-amd64), const EBADRPC Errno
-pkg syscall (netbsd-amd64), const ECHO ideal-int
-pkg syscall (netbsd-amd64), const ECHOCTL ideal-int
-pkg syscall (netbsd-amd64), const ECHOE ideal-int
-pkg syscall (netbsd-amd64), const ECHOK ideal-int
-pkg syscall (netbsd-amd64), const ECHOKE ideal-int
-pkg syscall (netbsd-amd64), const ECHONL ideal-int
-pkg syscall (netbsd-amd64), const ECHOPRT ideal-int
-pkg syscall (netbsd-amd64), const EFTYPE Errno
-pkg syscall (netbsd-amd64), const ELAST Errno
-pkg syscall (netbsd-amd64), const EMULTIHOP Errno
-pkg syscall (netbsd-amd64), const EMUL_LINUX ideal-int
-pkg syscall (netbsd-amd64), const EMUL_LINUX32 ideal-int
-pkg syscall (netbsd-amd64), const EMUL_MAXID ideal-int
-pkg syscall (netbsd-amd64), const ENEEDAUTH Errno
-pkg syscall (netbsd-amd64), const ENOATTR Errno
-pkg syscall (netbsd-amd64), const ENODATA Errno
-pkg syscall (netbsd-amd64), const ENOLINK Errno
-pkg syscall (netbsd-amd64), const ENOSR Errno
-pkg syscall (netbsd-amd64), const ENOSTR Errno
-pkg syscall (netbsd-amd64), const EPROCLIM Errno
-pkg syscall (netbsd-amd64), const EPROCUNAVAIL Errno
-pkg syscall (netbsd-amd64), const EPROGMISMATCH Errno
-pkg syscall (netbsd-amd64), const EPROGUNAVAIL Errno
-pkg syscall (netbsd-amd64), const EPROTO Errno
-pkg syscall (netbsd-amd64), const ERPCMISMATCH Errno
-pkg syscall (netbsd-amd64), const ETHERCAP_JUMBO_MTU ideal-int
-pkg syscall (netbsd-amd64), const ETHERCAP_VLAN_HWTAGGING ideal-int
-pkg syscall (netbsd-amd64), const ETHERCAP_VLAN_MTU ideal-int
-pkg syscall (netbsd-amd64), const ETHERMIN ideal-int
-pkg syscall (netbsd-amd64), const ETHERMTU ideal-int
-pkg syscall (netbsd-amd64), const ETHERMTU_JUMBO ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_8023 ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_AARP ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_ACCTON ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_AEONIC ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_ALPHA ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_AMBER ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_AMOEBA ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_APOLLO ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_APOLLODOMAIN ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_APPLETALK ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_APPLITEK ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_ARGONAUT ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_ARP ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_AT ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_ATALK ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_ATOMIC ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_ATT ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_ATTSTANFORD ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_AUTOPHON ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_AXIS ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_BCLOOP ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_BOFL ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_CABLETRON ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_CHAOS ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_COMDESIGN ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_COMPUGRAPHIC ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_COUNTERPOINT ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_CRONUS ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_CRONUSVLN ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_DCA ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_DDE ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_DEBNI ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_DECAM ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_DECCUST ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_DECDIAG ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_DECDNS ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_DECDTS ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_DECEXPER ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_DECLAST ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_DECLTM ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_DECMUMPS ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_DECNETBIOS ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_DELTACON ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_DIDDLE ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_DLOG1 ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_DLOG2 ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_DN ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_DOGFIGHT ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_DSMD ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_ECMA ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_ENCRYPT ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_ES ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_EXCELAN ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_EXPERDATA ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_FLIP ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_FLOWCONTROL ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_FRARP ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_GENDYN ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_HAYES ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_HIPPI_FP ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_HITACHI ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_HP ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_IEEEPUP ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_IEEEPUPAT ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_IMLBL ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_IMLBLDIAG ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_IP ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_IPAS ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_IPV6 ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_IPX ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_IPXNEW ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_KALPANA ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_LANBRIDGE ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_LANPROBE ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_LAT ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_LBACK ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_LITTLE ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_LOGICRAFT ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_LOOPBACK ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_MATRA ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_MAX ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_MERIT ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_MICP ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_MOPDL ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_MOPRC ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_MOTOROLA ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_MPLS ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_MPLS_MCAST ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_MUMPS ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_NBPCC ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_NBPCLAIM ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_NBPCLREQ ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_NBPCLRSP ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_NBPCREQ ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_NBPCRSP ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_NBPDG ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_NBPDGB ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_NBPDLTE ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_NBPRAR ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_NBPRAS ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_NBPRST ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_NBPSCD ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_NBPVCD ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_NBS ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_NCD ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_NESTAR ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_NETBEUI ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_NOVELL ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_NS ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_NSAT ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_NSCOMPAT ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_NTRAILER ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_OS9 ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_OS9NET ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_PACER ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_PAE ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_PCS ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_PLANNING ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_PPP ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_PPPOE ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_PPPOEDISC ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_PRIMENTS ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_PUP ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_PUPAT ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_RACAL ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_RATIONAL ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_RAWFR ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_RCL ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_RDP ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_RETIX ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_REVARP ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_SCA ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_SECTRA ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_SECUREDATA ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_SGITW ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_SG_BOUNCE ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_SG_DIAG ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_SG_NETGAMES ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_SG_RESV ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_SIMNET ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_SLOWPROTOCOLS ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_SNA ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_SNMP ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_SONIX ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_SPIDER ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_SPRITE ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_STP ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_TALARIS ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_TALARISMC ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_TCPCOMP ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_TCPSM ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_TEC ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_TIGAN ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_TRAIL ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_TRANSETHER ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_TYMSHARE ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_UBBST ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_UBDEBUG ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_UBDIAGLOOP ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_UBDL ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_UBNIU ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_UBNMC ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_VALID ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_VARIAN ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_VAXELN ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_VEECO ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_VEXP ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_VGLAB ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_VINES ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_VINESECHO ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_VINESLOOP ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_VITAL ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_VLAN ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_VLTLMAN ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_VPROD ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_VURESERVED ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_WATERLOO ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_WELLFLEET ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_X25 ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_X75 ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_XNSSM ideal-int
-pkg syscall (netbsd-amd64), const ETHERTYPE_XTP ideal-int
-pkg syscall (netbsd-amd64), const ETHER_ADDR_LEN ideal-int
-pkg syscall (netbsd-amd64), const ETHER_CRC_LEN ideal-int
-pkg syscall (netbsd-amd64), const ETHER_CRC_POLY_BE ideal-int
-pkg syscall (netbsd-amd64), const ETHER_CRC_POLY_LE ideal-int
-pkg syscall (netbsd-amd64), const ETHER_HDR_LEN ideal-int
-pkg syscall (netbsd-amd64), const ETHER_MAX_LEN ideal-int
-pkg syscall (netbsd-amd64), const ETHER_MAX_LEN_JUMBO ideal-int
-pkg syscall (netbsd-amd64), const ETHER_MIN_LEN ideal-int
-pkg syscall (netbsd-amd64), const ETHER_PPPOE_ENCAP_LEN ideal-int
-pkg syscall (netbsd-amd64), const ETHER_TYPE_LEN ideal-int
-pkg syscall (netbsd-amd64), const ETHER_VLAN_ENCAP_LEN ideal-int
-pkg syscall (netbsd-amd64), const ETIME Errno
-pkg syscall (netbsd-amd64), const EVFILT_AIO ideal-int
-pkg syscall (netbsd-amd64), const EVFILT_PROC ideal-int
-pkg syscall (netbsd-amd64), const EVFILT_READ ideal-int
-pkg syscall (netbsd-amd64), const EVFILT_SIGNAL ideal-int
-pkg syscall (netbsd-amd64), const EVFILT_SYSCOUNT ideal-int
-pkg syscall (netbsd-amd64), const EVFILT_TIMER ideal-int
-pkg syscall (netbsd-amd64), const EVFILT_VNODE ideal-int
-pkg syscall (netbsd-amd64), const EVFILT_WRITE ideal-int
-pkg syscall (netbsd-amd64), const EV_ADD ideal-int
-pkg syscall (netbsd-amd64), const EV_CLEAR ideal-int
-pkg syscall (netbsd-amd64), const EV_DELETE ideal-int
-pkg syscall (netbsd-amd64), const EV_DISABLE ideal-int
-pkg syscall (netbsd-amd64), const EV_ENABLE ideal-int
-pkg syscall (netbsd-amd64), const EV_EOF ideal-int
-pkg syscall (netbsd-amd64), const EV_ERROR ideal-int
-pkg syscall (netbsd-amd64), const EV_FLAG1 ideal-int
-pkg syscall (netbsd-amd64), const EV_ONESHOT ideal-int
-pkg syscall (netbsd-amd64), const EV_SYSFLAGS ideal-int
-pkg syscall (netbsd-amd64), const EXTA ideal-int
-pkg syscall (netbsd-amd64), const EXTB ideal-int
-pkg syscall (netbsd-amd64), const EXTPROC ideal-int
-pkg syscall (netbsd-amd64), const FD_CLOEXEC ideal-int
-pkg syscall (netbsd-amd64), const FD_SETSIZE ideal-int
-pkg syscall (netbsd-amd64), const FLUSHO ideal-int
-pkg syscall (netbsd-amd64), const F_CLOSEM ideal-int
-pkg syscall (netbsd-amd64), const F_DUPFD ideal-int
-pkg syscall (netbsd-amd64), const F_DUPFD_CLOEXEC ideal-int
-pkg syscall (netbsd-amd64), const F_FSCTL ideal-int
-pkg syscall (netbsd-amd64), const F_FSDIRMASK ideal-int
-pkg syscall (netbsd-amd64), const F_FSIN ideal-int
-pkg syscall (netbsd-amd64), const F_FSINOUT ideal-int
-pkg syscall (netbsd-amd64), const F_FSOUT ideal-int
-pkg syscall (netbsd-amd64), const F_FSPRIV ideal-int
-pkg syscall (netbsd-amd64), const F_FSVOID ideal-int
-pkg syscall (netbsd-amd64), const F_GETFD ideal-int
-pkg syscall (netbsd-amd64), const F_GETFL ideal-int
-pkg syscall (netbsd-amd64), const F_GETLK ideal-int
-pkg syscall (netbsd-amd64), const F_GETNOSIGPIPE ideal-int
-pkg syscall (netbsd-amd64), const F_GETOWN ideal-int
-pkg syscall (netbsd-amd64), const F_MAXFD ideal-int
-pkg syscall (netbsd-amd64), const F_OK ideal-int
-pkg syscall (netbsd-amd64), const F_PARAM_MASK ideal-int
-pkg syscall (netbsd-amd64), const F_PARAM_MAX ideal-int
-pkg syscall (netbsd-amd64), const F_RDLCK ideal-int
-pkg syscall (netbsd-amd64), const F_SETFD ideal-int
-pkg syscall (netbsd-amd64), const F_SETFL ideal-int
-pkg syscall (netbsd-amd64), const F_SETLK ideal-int
-pkg syscall (netbsd-amd64), const F_SETLKW ideal-int
-pkg syscall (netbsd-amd64), const F_SETNOSIGPIPE ideal-int
-pkg syscall (netbsd-amd64), const F_SETOWN ideal-int
-pkg syscall (netbsd-amd64), const F_UNLCK ideal-int
-pkg syscall (netbsd-amd64), const F_WRLCK ideal-int
-pkg syscall (netbsd-amd64), const HUPCL ideal-int
-pkg syscall (netbsd-amd64), const ICANON ideal-int
-pkg syscall (netbsd-amd64), const ICMP6_FILTER = 18
-pkg syscall (netbsd-amd64), const ICMP6_FILTER ideal-int
-pkg syscall (netbsd-amd64), const ICRNL ideal-int
-pkg syscall (netbsd-amd64), const IEXTEN ideal-int
-pkg syscall (netbsd-amd64), const IFAN_ARRIVAL ideal-int
-pkg syscall (netbsd-amd64), const IFAN_DEPARTURE ideal-int
-pkg syscall (netbsd-amd64), const IFA_ROUTE ideal-int
-pkg syscall (netbsd-amd64), const IFF_ALLMULTI ideal-int
-pkg syscall (netbsd-amd64), const IFF_CANTCHANGE ideal-int
-pkg syscall (netbsd-amd64), const IFF_DEBUG ideal-int
-pkg syscall (netbsd-amd64), const IFF_LINK0 ideal-int
-pkg syscall (netbsd-amd64), const IFF_LINK1 ideal-int
-pkg syscall (netbsd-amd64), const IFF_LINK2 ideal-int
-pkg syscall (netbsd-amd64), const IFF_NOARP ideal-int
-pkg syscall (netbsd-amd64), const IFF_NOTRAILERS ideal-int
-pkg syscall (netbsd-amd64), const IFF_OACTIVE ideal-int
-pkg syscall (netbsd-amd64), const IFF_POINTOPOINT ideal-int
-pkg syscall (netbsd-amd64), const IFF_PROMISC ideal-int
-pkg syscall (netbsd-amd64), const IFF_RUNNING ideal-int
-pkg syscall (netbsd-amd64), const IFF_SIMPLEX ideal-int
-pkg syscall (netbsd-amd64), const IFNAMSIZ ideal-int
-pkg syscall (netbsd-amd64), const IFT_1822 ideal-int
-pkg syscall (netbsd-amd64), const IFT_A12MPPSWITCH ideal-int
-pkg syscall (netbsd-amd64), const IFT_AAL2 ideal-int
-pkg syscall (netbsd-amd64), const IFT_AAL5 ideal-int
-pkg syscall (netbsd-amd64), const IFT_ADSL ideal-int
-pkg syscall (netbsd-amd64), const IFT_AFLANE8023 ideal-int
-pkg syscall (netbsd-amd64), const IFT_AFLANE8025 ideal-int
-pkg syscall (netbsd-amd64), const IFT_ARAP ideal-int
-pkg syscall (netbsd-amd64), const IFT_ARCNET ideal-int
-pkg syscall (netbsd-amd64), const IFT_ARCNETPLUS ideal-int
-pkg syscall (netbsd-amd64), const IFT_ASYNC ideal-int
-pkg syscall (netbsd-amd64), const IFT_ATM ideal-int
-pkg syscall (netbsd-amd64), const IFT_ATMDXI ideal-int
-pkg syscall (netbsd-amd64), const IFT_ATMFUNI ideal-int
-pkg syscall (netbsd-amd64), const IFT_ATMIMA ideal-int
-pkg syscall (netbsd-amd64), const IFT_ATMLOGICAL ideal-int
-pkg syscall (netbsd-amd64), const IFT_ATMRADIO ideal-int
-pkg syscall (netbsd-amd64), const IFT_ATMSUBINTERFACE ideal-int
-pkg syscall (netbsd-amd64), const IFT_ATMVCIENDPT ideal-int
-pkg syscall (netbsd-amd64), const IFT_ATMVIRTUAL ideal-int
-pkg syscall (netbsd-amd64), const IFT_BGPPOLICYACCOUNTING ideal-int
-pkg syscall (netbsd-amd64), const IFT_BRIDGE ideal-int
-pkg syscall (netbsd-amd64), const IFT_BSC ideal-int
-pkg syscall (netbsd-amd64), const IFT_CARP ideal-int
-pkg syscall (netbsd-amd64), const IFT_CCTEMUL ideal-int
-pkg syscall (netbsd-amd64), const IFT_CEPT ideal-int
-pkg syscall (netbsd-amd64), const IFT_CES ideal-int
-pkg syscall (netbsd-amd64), const IFT_CHANNEL ideal-int
-pkg syscall (netbsd-amd64), const IFT_CNR ideal-int
-pkg syscall (netbsd-amd64), const IFT_COFFEE ideal-int
-pkg syscall (netbsd-amd64), const IFT_COMPOSITELINK ideal-int
-pkg syscall (netbsd-amd64), const IFT_DCN ideal-int
-pkg syscall (netbsd-amd64), const IFT_DIGITALPOWERLINE ideal-int
-pkg syscall (netbsd-amd64), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int
-pkg syscall (netbsd-amd64), const IFT_DLSW ideal-int
-pkg syscall (netbsd-amd64), const IFT_DOCSCABLEDOWNSTREAM ideal-int
-pkg syscall (netbsd-amd64), const IFT_DOCSCABLEMACLAYER ideal-int
-pkg syscall (netbsd-amd64), const IFT_DOCSCABLEUPSTREAM ideal-int
-pkg syscall (netbsd-amd64), const IFT_DOCSCABLEUPSTREAMCHANNEL ideal-int
-pkg syscall (netbsd-amd64), const IFT_DS0 ideal-int
-pkg syscall (netbsd-amd64), const IFT_DS0BUNDLE ideal-int
-pkg syscall (netbsd-amd64), const IFT_DS1FDL ideal-int
-pkg syscall (netbsd-amd64), const IFT_DS3 ideal-int
-pkg syscall (netbsd-amd64), const IFT_DTM ideal-int
-pkg syscall (netbsd-amd64), const IFT_DVBASILN ideal-int
-pkg syscall (netbsd-amd64), const IFT_DVBASIOUT ideal-int
-pkg syscall (netbsd-amd64), const IFT_DVBRCCDOWNSTREAM ideal-int
-pkg syscall (netbsd-amd64), const IFT_DVBRCCMACLAYER ideal-int
-pkg syscall (netbsd-amd64), const IFT_DVBRCCUPSTREAM ideal-int
-pkg syscall (netbsd-amd64), const IFT_ECONET ideal-int
-pkg syscall (netbsd-amd64), const IFT_EON ideal-int
-pkg syscall (netbsd-amd64), const IFT_EPLRS ideal-int
-pkg syscall (netbsd-amd64), const IFT_ESCON ideal-int
-pkg syscall (netbsd-amd64), const IFT_ETHER ideal-int
-pkg syscall (netbsd-amd64), const IFT_FAITH ideal-int
-pkg syscall (netbsd-amd64), const IFT_FAST ideal-int
-pkg syscall (netbsd-amd64), const IFT_FASTETHER ideal-int
-pkg syscall (netbsd-amd64), const IFT_FASTETHERFX ideal-int
-pkg syscall (netbsd-amd64), const IFT_FDDI ideal-int
-pkg syscall (netbsd-amd64), const IFT_FIBRECHANNEL ideal-int
-pkg syscall (netbsd-amd64), const IFT_FRAMERELAYINTERCONNECT ideal-int
-pkg syscall (netbsd-amd64), const IFT_FRAMERELAYMPI ideal-int
-pkg syscall (netbsd-amd64), const IFT_FRDLCIENDPT ideal-int
-pkg syscall (netbsd-amd64), const IFT_FRELAY ideal-int
-pkg syscall (netbsd-amd64), const IFT_FRELAYDCE ideal-int
-pkg syscall (netbsd-amd64), const IFT_FRF16MFRBUNDLE ideal-int
-pkg syscall (netbsd-amd64), const IFT_FRFORWARD ideal-int
-pkg syscall (netbsd-amd64), const IFT_G703AT2MB ideal-int
-pkg syscall (netbsd-amd64), const IFT_G703AT64K ideal-int
-pkg syscall (netbsd-amd64), const IFT_GIF ideal-int
-pkg syscall (netbsd-amd64), const IFT_GIGABITETHERNET ideal-int
-pkg syscall (netbsd-amd64), const IFT_GR303IDT ideal-int
-pkg syscall (netbsd-amd64), const IFT_GR303RDT ideal-int
-pkg syscall (netbsd-amd64), const IFT_H323GATEKEEPER ideal-int
-pkg syscall (netbsd-amd64), const IFT_H323PROXY ideal-int
-pkg syscall (netbsd-amd64), const IFT_HDH1822 ideal-int
-pkg syscall (netbsd-amd64), const IFT_HDLC ideal-int
-pkg syscall (netbsd-amd64), const IFT_HDSL2 ideal-int
-pkg syscall (netbsd-amd64), const IFT_HIPERLAN2 ideal-int
-pkg syscall (netbsd-amd64), const IFT_HIPPI ideal-int
-pkg syscall (netbsd-amd64), const IFT_HIPPIINTERFACE ideal-int
-pkg syscall (netbsd-amd64), const IFT_HOSTPAD ideal-int
-pkg syscall (netbsd-amd64), const IFT_HSSI ideal-int
-pkg syscall (netbsd-amd64), const IFT_HY ideal-int
-pkg syscall (netbsd-amd64), const IFT_IBM370PARCHAN ideal-int
-pkg syscall (netbsd-amd64), const IFT_IDSL ideal-int
-pkg syscall (netbsd-amd64), const IFT_IEEE1394 ideal-int
-pkg syscall (netbsd-amd64), const IFT_IEEE80211 ideal-int
-pkg syscall (netbsd-amd64), const IFT_IEEE80212 ideal-int
-pkg syscall (netbsd-amd64), const IFT_IEEE8023ADLAG ideal-int
-pkg syscall (netbsd-amd64), const IFT_IFGSN ideal-int
-pkg syscall (netbsd-amd64), const IFT_IMT ideal-int
-pkg syscall (netbsd-amd64), const IFT_INFINIBAND ideal-int
-pkg syscall (netbsd-amd64), const IFT_INTERLEAVE ideal-int
-pkg syscall (netbsd-amd64), const IFT_IP ideal-int
-pkg syscall (netbsd-amd64), const IFT_IPFORWARD ideal-int
-pkg syscall (netbsd-amd64), const IFT_IPOVERATM ideal-int
-pkg syscall (netbsd-amd64), const IFT_IPOVERCDLC ideal-int
-pkg syscall (netbsd-amd64), const IFT_IPOVERCLAW ideal-int
-pkg syscall (netbsd-amd64), const IFT_IPSWITCH ideal-int
-pkg syscall (netbsd-amd64), const IFT_ISDN ideal-int
-pkg syscall (netbsd-amd64), const IFT_ISDNBASIC ideal-int
-pkg syscall (netbsd-amd64), const IFT_ISDNPRIMARY ideal-int
-pkg syscall (netbsd-amd64), const IFT_ISDNS ideal-int
-pkg syscall (netbsd-amd64), const IFT_ISDNU ideal-int
-pkg syscall (netbsd-amd64), const IFT_ISO88022LLC ideal-int
-pkg syscall (netbsd-amd64), const IFT_ISO88023 ideal-int
-pkg syscall (netbsd-amd64), const IFT_ISO88024 ideal-int
-pkg syscall (netbsd-amd64), const IFT_ISO88025 ideal-int
-pkg syscall (netbsd-amd64), const IFT_ISO88025CRFPINT ideal-int
-pkg syscall (netbsd-amd64), const IFT_ISO88025DTR ideal-int
-pkg syscall (netbsd-amd64), const IFT_ISO88025FIBER ideal-int
-pkg syscall (netbsd-amd64), const IFT_ISO88026 ideal-int
-pkg syscall (netbsd-amd64), const IFT_ISUP ideal-int
-pkg syscall (netbsd-amd64), const IFT_L2VLAN ideal-int
-pkg syscall (netbsd-amd64), const IFT_L3IPVLAN ideal-int
-pkg syscall (netbsd-amd64), const IFT_L3IPXVLAN ideal-int
-pkg syscall (netbsd-amd64), const IFT_LAPB ideal-int
-pkg syscall (netbsd-amd64), const IFT_LAPD ideal-int
-pkg syscall (netbsd-amd64), const IFT_LAPF ideal-int
-pkg syscall (netbsd-amd64), const IFT_LINEGROUP ideal-int
-pkg syscall (netbsd-amd64), const IFT_LOCALTALK ideal-int
-pkg syscall (netbsd-amd64), const IFT_LOOP ideal-int
-pkg syscall (netbsd-amd64), const IFT_MEDIAMAILOVERIP ideal-int
-pkg syscall (netbsd-amd64), const IFT_MFSIGLINK ideal-int
-pkg syscall (netbsd-amd64), const IFT_MIOX25 ideal-int
-pkg syscall (netbsd-amd64), const IFT_MODEM ideal-int
-pkg syscall (netbsd-amd64), const IFT_MPC ideal-int
-pkg syscall (netbsd-amd64), const IFT_MPLS ideal-int
-pkg syscall (netbsd-amd64), const IFT_MPLSTUNNEL ideal-int
-pkg syscall (netbsd-amd64), const IFT_MSDSL ideal-int
-pkg syscall (netbsd-amd64), const IFT_MVL ideal-int
-pkg syscall (netbsd-amd64), const IFT_MYRINET ideal-int
-pkg syscall (netbsd-amd64), const IFT_NFAS ideal-int
-pkg syscall (netbsd-amd64), const IFT_NSIP ideal-int
-pkg syscall (netbsd-amd64), const IFT_OPTICALCHANNEL ideal-int
-pkg syscall (netbsd-amd64), const IFT_OPTICALTRANSPORT ideal-int
-pkg syscall (netbsd-amd64), const IFT_OTHER ideal-int
-pkg syscall (netbsd-amd64), const IFT_P10 ideal-int
-pkg syscall (netbsd-amd64), const IFT_P80 ideal-int
-pkg syscall (netbsd-amd64), const IFT_PARA ideal-int
-pkg syscall (netbsd-amd64), const IFT_PFLOG ideal-int
-pkg syscall (netbsd-amd64), const IFT_PFSYNC ideal-int
-pkg syscall (netbsd-amd64), const IFT_PLC ideal-int
-pkg syscall (netbsd-amd64), const IFT_PON155 ideal-int
-pkg syscall (netbsd-amd64), const IFT_PON622 ideal-int
-pkg syscall (netbsd-amd64), const IFT_POS ideal-int
-pkg syscall (netbsd-amd64), const IFT_PPP ideal-int
-pkg syscall (netbsd-amd64), const IFT_PPPMULTILINKBUNDLE ideal-int
-pkg syscall (netbsd-amd64), const IFT_PROPATM ideal-int
-pkg syscall (netbsd-amd64), const IFT_PROPBWAP2MP ideal-int
-pkg syscall (netbsd-amd64), const IFT_PROPCNLS ideal-int
-pkg syscall (netbsd-amd64), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int
-pkg syscall (netbsd-amd64), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int
-pkg syscall (netbsd-amd64), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int
-pkg syscall (netbsd-amd64), const IFT_PROPMUX ideal-int
-pkg syscall (netbsd-amd64), const IFT_PROPVIRTUAL ideal-int
-pkg syscall (netbsd-amd64), const IFT_PROPWIRELESSP2P ideal-int
-pkg syscall (netbsd-amd64), const IFT_PTPSERIAL ideal-int
-pkg syscall (netbsd-amd64), const IFT_PVC ideal-int
-pkg syscall (netbsd-amd64), const IFT_Q2931 ideal-int
-pkg syscall (netbsd-amd64), const IFT_QLLC ideal-int
-pkg syscall (netbsd-amd64), const IFT_RADIOMAC ideal-int
-pkg syscall (netbsd-amd64), const IFT_RADSL ideal-int
-pkg syscall (netbsd-amd64), const IFT_REACHDSL ideal-int
-pkg syscall (netbsd-amd64), const IFT_RFC1483 ideal-int
-pkg syscall (netbsd-amd64), const IFT_RS232 ideal-int
-pkg syscall (netbsd-amd64), const IFT_RSRB ideal-int
-pkg syscall (netbsd-amd64), const IFT_SDLC ideal-int
-pkg syscall (netbsd-amd64), const IFT_SDSL ideal-int
-pkg syscall (netbsd-amd64), const IFT_SHDSL ideal-int
-pkg syscall (netbsd-amd64), const IFT_SIP ideal-int
-pkg syscall (netbsd-amd64), const IFT_SIPSIG ideal-int
-pkg syscall (netbsd-amd64), const IFT_SIPTG ideal-int
-pkg syscall (netbsd-amd64), const IFT_SLIP ideal-int
-pkg syscall (netbsd-amd64), const IFT_SMDSDXI ideal-int
-pkg syscall (netbsd-amd64), const IFT_SMDSICIP ideal-int
-pkg syscall (netbsd-amd64), const IFT_SONET ideal-int
-pkg syscall (netbsd-amd64), const IFT_SONETOVERHEADCHANNEL ideal-int
-pkg syscall (netbsd-amd64), const IFT_SONETPATH ideal-int
-pkg syscall (netbsd-amd64), const IFT_SONETVT ideal-int
-pkg syscall (netbsd-amd64), const IFT_SRP ideal-int
-pkg syscall (netbsd-amd64), const IFT_SS7SIGLINK ideal-int
-pkg syscall (netbsd-amd64), const IFT_STACKTOSTACK ideal-int
-pkg syscall (netbsd-amd64), const IFT_STARLAN ideal-int
-pkg syscall (netbsd-amd64), const IFT_STF ideal-int
-pkg syscall (netbsd-amd64), const IFT_T1 ideal-int
-pkg syscall (netbsd-amd64), const IFT_TDLC ideal-int
-pkg syscall (netbsd-amd64), const IFT_TELINK ideal-int
-pkg syscall (netbsd-amd64), const IFT_TERMPAD ideal-int
-pkg syscall (netbsd-amd64), const IFT_TR008 ideal-int
-pkg syscall (netbsd-amd64), const IFT_TRANSPHDLC ideal-int
-pkg syscall (netbsd-amd64), const IFT_TUNNEL ideal-int
-pkg syscall (netbsd-amd64), const IFT_ULTRA ideal-int
-pkg syscall (netbsd-amd64), const IFT_USB ideal-int
-pkg syscall (netbsd-amd64), const IFT_V11 ideal-int
-pkg syscall (netbsd-amd64), const IFT_V35 ideal-int
-pkg syscall (netbsd-amd64), const IFT_V36 ideal-int
-pkg syscall (netbsd-amd64), const IFT_V37 ideal-int
-pkg syscall (netbsd-amd64), const IFT_VDSL ideal-int
-pkg syscall (netbsd-amd64), const IFT_VIRTUALIPADDRESS ideal-int
-pkg syscall (netbsd-amd64), const IFT_VIRTUALTG ideal-int
-pkg syscall (netbsd-amd64), const IFT_VOICEDID ideal-int
-pkg syscall (netbsd-amd64), const IFT_VOICEEM ideal-int
-pkg syscall (netbsd-amd64), const IFT_VOICEEMFGD ideal-int
-pkg syscall (netbsd-amd64), const IFT_VOICEENCAP ideal-int
-pkg syscall (netbsd-amd64), const IFT_VOICEFGDEANA ideal-int
-pkg syscall (netbsd-amd64), const IFT_VOICEFXO ideal-int
-pkg syscall (netbsd-amd64), const IFT_VOICEFXS ideal-int
-pkg syscall (netbsd-amd64), const IFT_VOICEOVERATM ideal-int
-pkg syscall (netbsd-amd64), const IFT_VOICEOVERCABLE ideal-int
-pkg syscall (netbsd-amd64), const IFT_VOICEOVERFRAMERELAY ideal-int
-pkg syscall (netbsd-amd64), const IFT_VOICEOVERIP ideal-int
-pkg syscall (netbsd-amd64), const IFT_X213 ideal-int
-pkg syscall (netbsd-amd64), const IFT_X25 ideal-int
-pkg syscall (netbsd-amd64), const IFT_X25DDN ideal-int
-pkg syscall (netbsd-amd64), const IFT_X25HUNTGROUP ideal-int
-pkg syscall (netbsd-amd64), const IFT_X25MLP ideal-int
-pkg syscall (netbsd-amd64), const IFT_X25PLE ideal-int
-pkg syscall (netbsd-amd64), const IFT_XETHER ideal-int
-pkg syscall (netbsd-amd64), const IGNBRK ideal-int
-pkg syscall (netbsd-amd64), const IGNCR ideal-int
-pkg syscall (netbsd-amd64), const IGNPAR ideal-int
-pkg syscall (netbsd-amd64), const IMAXBEL ideal-int
-pkg syscall (netbsd-amd64), const INLCR ideal-int
-pkg syscall (netbsd-amd64), const INPCK ideal-int
-pkg syscall (netbsd-amd64), const IN_CLASSA_HOST ideal-int
-pkg syscall (netbsd-amd64), const IN_CLASSA_MAX ideal-int
-pkg syscall (netbsd-amd64), const IN_CLASSA_NET ideal-int
-pkg syscall (netbsd-amd64), const IN_CLASSA_NSHIFT ideal-int
-pkg syscall (netbsd-amd64), const IN_CLASSB_HOST ideal-int
-pkg syscall (netbsd-amd64), const IN_CLASSB_MAX ideal-int
-pkg syscall (netbsd-amd64), const IN_CLASSB_NET ideal-int
-pkg syscall (netbsd-amd64), const IN_CLASSB_NSHIFT ideal-int
-pkg syscall (netbsd-amd64), const IN_CLASSC_HOST ideal-int
-pkg syscall (netbsd-amd64), const IN_CLASSC_NET ideal-int
-pkg syscall (netbsd-amd64), const IN_CLASSC_NSHIFT ideal-int
-pkg syscall (netbsd-amd64), const IN_CLASSD_HOST ideal-int
-pkg syscall (netbsd-amd64), const IN_CLASSD_NET ideal-int
-pkg syscall (netbsd-amd64), const IN_CLASSD_NSHIFT ideal-int
-pkg syscall (netbsd-amd64), const IN_LOOPBACKNET ideal-int
-pkg syscall (netbsd-amd64), const IPPROTO_AH ideal-int
-pkg syscall (netbsd-amd64), const IPPROTO_CARP ideal-int
-pkg syscall (netbsd-amd64), const IPPROTO_DONE ideal-int
-pkg syscall (netbsd-amd64), const IPPROTO_DSTOPTS ideal-int
-pkg syscall (netbsd-amd64), const IPPROTO_EGP ideal-int
-pkg syscall (netbsd-amd64), const IPPROTO_ENCAP ideal-int
-pkg syscall (netbsd-amd64), const IPPROTO_EON ideal-int
-pkg syscall (netbsd-amd64), const IPPROTO_ESP ideal-int
-pkg syscall (netbsd-amd64), const IPPROTO_ETHERIP ideal-int
-pkg syscall (netbsd-amd64), const IPPROTO_FRAGMENT ideal-int
-pkg syscall (netbsd-amd64), const IPPROTO_GGP ideal-int
-pkg syscall (netbsd-amd64), const IPPROTO_GRE ideal-int
-pkg syscall (netbsd-amd64), const IPPROTO_HOPOPTS ideal-int
-pkg syscall (netbsd-amd64), const IPPROTO_ICMP ideal-int
-pkg syscall (netbsd-amd64), const IPPROTO_ICMPV6 ideal-int
-pkg syscall (netbsd-amd64), const IPPROTO_IDP ideal-int
-pkg syscall (netbsd-amd64), const IPPROTO_IGMP ideal-int
-pkg syscall (netbsd-amd64), const IPPROTO_IPCOMP ideal-int
-pkg syscall (netbsd-amd64), const IPPROTO_IPIP ideal-int
-pkg syscall (netbsd-amd64), const IPPROTO_IPV4 ideal-int
-pkg syscall (netbsd-amd64), const IPPROTO_IPV6_ICMP ideal-int
-pkg syscall (netbsd-amd64), const IPPROTO_MAX ideal-int
-pkg syscall (netbsd-amd64), const IPPROTO_MAXID ideal-int
-pkg syscall (netbsd-amd64), const IPPROTO_MOBILE ideal-int
-pkg syscall (netbsd-amd64), const IPPROTO_NONE ideal-int
-pkg syscall (netbsd-amd64), const IPPROTO_PFSYNC ideal-int
-pkg syscall (netbsd-amd64), const IPPROTO_PIM ideal-int
-pkg syscall (netbsd-amd64), const IPPROTO_PUP ideal-int
-pkg syscall (netbsd-amd64), const IPPROTO_RAW ideal-int
-pkg syscall (netbsd-amd64), const IPPROTO_ROUTING ideal-int
-pkg syscall (netbsd-amd64), const IPPROTO_RSVP ideal-int
-pkg syscall (netbsd-amd64), const IPPROTO_TP ideal-int
-pkg syscall (netbsd-amd64), const IPPROTO_VRRP ideal-int
-pkg syscall (netbsd-amd64), const IPV6_CHECKSUM ideal-int
-pkg syscall (netbsd-amd64), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int
-pkg syscall (netbsd-amd64), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int
-pkg syscall (netbsd-amd64), const IPV6_DEFHLIM ideal-int
-pkg syscall (netbsd-amd64), const IPV6_DONTFRAG ideal-int
-pkg syscall (netbsd-amd64), const IPV6_DSTOPTS ideal-int
-pkg syscall (netbsd-amd64), const IPV6_FAITH ideal-int
-pkg syscall (netbsd-amd64), const IPV6_FLOWINFO_MASK ideal-int
-pkg syscall (netbsd-amd64), const IPV6_FLOWLABEL_MASK ideal-int
-pkg syscall (netbsd-amd64), const IPV6_FRAGTTL ideal-int
-pkg syscall (netbsd-amd64), const IPV6_HLIMDEC ideal-int
-pkg syscall (netbsd-amd64), const IPV6_HOPLIMIT ideal-int
-pkg syscall (netbsd-amd64), const IPV6_HOPOPTS ideal-int
-pkg syscall (netbsd-amd64), const IPV6_IPSEC_POLICY ideal-int
-pkg syscall (netbsd-amd64), const IPV6_MAXHLIM ideal-int
-pkg syscall (netbsd-amd64), const IPV6_MAXPACKET ideal-int
-pkg syscall (netbsd-amd64), const IPV6_MMTU ideal-int
-pkg syscall (netbsd-amd64), const IPV6_NEXTHOP ideal-int
-pkg syscall (netbsd-amd64), const IPV6_PATHMTU ideal-int
-pkg syscall (netbsd-amd64), const IPV6_PKTINFO ideal-int
-pkg syscall (netbsd-amd64), const IPV6_PORTRANGE ideal-int
-pkg syscall (netbsd-amd64), const IPV6_PORTRANGE_DEFAULT ideal-int
-pkg syscall (netbsd-amd64), const IPV6_PORTRANGE_HIGH ideal-int
-pkg syscall (netbsd-amd64), const IPV6_PORTRANGE_LOW ideal-int
-pkg syscall (netbsd-amd64), const IPV6_RECVDSTOPTS ideal-int
-pkg syscall (netbsd-amd64), const IPV6_RECVHOPLIMIT ideal-int
-pkg syscall (netbsd-amd64), const IPV6_RECVHOPOPTS ideal-int
-pkg syscall (netbsd-amd64), const IPV6_RECVPATHMTU ideal-int
-pkg syscall (netbsd-amd64), const IPV6_RECVPKTINFO ideal-int
-pkg syscall (netbsd-amd64), const IPV6_RECVRTHDR ideal-int
-pkg syscall (netbsd-amd64), const IPV6_RECVTCLASS ideal-int
-pkg syscall (netbsd-amd64), const IPV6_RTHDR ideal-int
-pkg syscall (netbsd-amd64), const IPV6_RTHDRDSTOPTS ideal-int
-pkg syscall (netbsd-amd64), const IPV6_RTHDR_LOOSE ideal-int
-pkg syscall (netbsd-amd64), const IPV6_RTHDR_STRICT ideal-int
-pkg syscall (netbsd-amd64), const IPV6_RTHDR_TYPE_0 ideal-int
-pkg syscall (netbsd-amd64), const IPV6_SOCKOPT_RESERVED1 ideal-int
-pkg syscall (netbsd-amd64), const IPV6_TCLASS ideal-int
-pkg syscall (netbsd-amd64), const IPV6_USE_MIN_MTU ideal-int
-pkg syscall (netbsd-amd64), const IPV6_VERSION ideal-int
-pkg syscall (netbsd-amd64), const IPV6_VERSION_MASK ideal-int
-pkg syscall (netbsd-amd64), const IP_DEFAULT_MULTICAST_LOOP ideal-int
-pkg syscall (netbsd-amd64), const IP_DEFAULT_MULTICAST_TTL ideal-int
-pkg syscall (netbsd-amd64), const IP_DF ideal-int
-pkg syscall (netbsd-amd64), const IP_EF ideal-int
-pkg syscall (netbsd-amd64), const IP_ERRORMTU ideal-int
-pkg syscall (netbsd-amd64), const IP_HDRINCL ideal-int
-pkg syscall (netbsd-amd64), const IP_IPSEC_POLICY ideal-int
-pkg syscall (netbsd-amd64), const IP_MAXPACKET ideal-int
-pkg syscall (netbsd-amd64), const IP_MAX_MEMBERSHIPS ideal-int
-pkg syscall (netbsd-amd64), const IP_MF ideal-int
-pkg syscall (netbsd-amd64), const IP_MINFRAGSIZE ideal-int
-pkg syscall (netbsd-amd64), const IP_MINTTL ideal-int
-pkg syscall (netbsd-amd64), const IP_MSS ideal-int
-pkg syscall (netbsd-amd64), const IP_OFFMASK ideal-int
-pkg syscall (netbsd-amd64), const IP_OPTIONS ideal-int
-pkg syscall (netbsd-amd64), const IP_PORTRANGE ideal-int
-pkg syscall (netbsd-amd64), const IP_PORTRANGE_DEFAULT ideal-int
-pkg syscall (netbsd-amd64), const IP_PORTRANGE_HIGH ideal-int
-pkg syscall (netbsd-amd64), const IP_PORTRANGE_LOW ideal-int
-pkg syscall (netbsd-amd64), const IP_RECVDSTADDR ideal-int
-pkg syscall (netbsd-amd64), const IP_RECVIF ideal-int
-pkg syscall (netbsd-amd64), const IP_RECVOPTS ideal-int
-pkg syscall (netbsd-amd64), const IP_RECVRETOPTS ideal-int
-pkg syscall (netbsd-amd64), const IP_RECVTTL ideal-int
-pkg syscall (netbsd-amd64), const IP_RETOPTS ideal-int
-pkg syscall (netbsd-amd64), const IP_RF ideal-int
-pkg syscall (netbsd-amd64), const ISIG ideal-int
-pkg syscall (netbsd-amd64), const ISTRIP ideal-int
-pkg syscall (netbsd-amd64), const IXANY ideal-int
-pkg syscall (netbsd-amd64), const IXOFF ideal-int
-pkg syscall (netbsd-amd64), const IXON ideal-int
-pkg syscall (netbsd-amd64), const LOCK_EX ideal-int
-pkg syscall (netbsd-amd64), const LOCK_NB ideal-int
-pkg syscall (netbsd-amd64), const LOCK_SH ideal-int
-pkg syscall (netbsd-amd64), const LOCK_UN ideal-int
-pkg syscall (netbsd-amd64), const MSG_BCAST ideal-int
-pkg syscall (netbsd-amd64), const MSG_CMSG_CLOEXEC ideal-int
-pkg syscall (netbsd-amd64), const MSG_CONTROLMBUF ideal-int
-pkg syscall (netbsd-amd64), const MSG_CTRUNC ideal-int
-pkg syscall (netbsd-amd64), const MSG_DONTROUTE ideal-int
-pkg syscall (netbsd-amd64), const MSG_DONTWAIT ideal-int
-pkg syscall (netbsd-amd64), const MSG_EOR ideal-int
-pkg syscall (netbsd-amd64), const MSG_IOVUSRSPACE ideal-int
-pkg syscall (netbsd-amd64), const MSG_LENUSRSPACE ideal-int
-pkg syscall (netbsd-amd64), const MSG_MCAST ideal-int
-pkg syscall (netbsd-amd64), const MSG_NAMEMBUF ideal-int
-pkg syscall (netbsd-amd64), const MSG_NBIO ideal-int
-pkg syscall (netbsd-amd64), const MSG_NOSIGNAL ideal-int
-pkg syscall (netbsd-amd64), const MSG_OOB ideal-int
-pkg syscall (netbsd-amd64), const MSG_PEEK ideal-int
-pkg syscall (netbsd-amd64), const MSG_TRUNC ideal-int
-pkg syscall (netbsd-amd64), const MSG_USERFLAGS ideal-int
-pkg syscall (netbsd-amd64), const MSG_WAITALL ideal-int
-pkg syscall (netbsd-amd64), const NAME_MAX ideal-int
-pkg syscall (netbsd-amd64), const NET_RT_DUMP ideal-int
-pkg syscall (netbsd-amd64), const NET_RT_FLAGS ideal-int
-pkg syscall (netbsd-amd64), const NET_RT_IFLIST ideal-int
-pkg syscall (netbsd-amd64), const NET_RT_MAXID ideal-int
-pkg syscall (netbsd-amd64), const NET_RT_OIFLIST ideal-int
-pkg syscall (netbsd-amd64), const NET_RT_OOIFLIST ideal-int
-pkg syscall (netbsd-amd64), const NOFLSH ideal-int
-pkg syscall (netbsd-amd64), const NOTE_ATTRIB ideal-int
-pkg syscall (netbsd-amd64), const NOTE_CHILD ideal-int
-pkg syscall (netbsd-amd64), const NOTE_DELETE ideal-int
-pkg syscall (netbsd-amd64), const NOTE_EXEC ideal-int
-pkg syscall (netbsd-amd64), const NOTE_EXIT ideal-int
-pkg syscall (netbsd-amd64), const NOTE_EXTEND ideal-int
-pkg syscall (netbsd-amd64), const NOTE_FORK ideal-int
-pkg syscall (netbsd-amd64), const NOTE_LINK ideal-int
-pkg syscall (netbsd-amd64), const NOTE_LOWAT ideal-int
-pkg syscall (netbsd-amd64), const NOTE_PCTRLMASK ideal-int
-pkg syscall (netbsd-amd64), const NOTE_PDATAMASK ideal-int
-pkg syscall (netbsd-amd64), const NOTE_RENAME ideal-int
-pkg syscall (netbsd-amd64), const NOTE_REVOKE ideal-int
-pkg syscall (netbsd-amd64), const NOTE_TRACK ideal-int
-pkg syscall (netbsd-amd64), const NOTE_TRACKERR ideal-int
-pkg syscall (netbsd-amd64), const NOTE_WRITE ideal-int
-pkg syscall (netbsd-amd64), const OCRNL ideal-int
-pkg syscall (netbsd-amd64), const OFIOGETBMAP ideal-int
-pkg syscall (netbsd-amd64), const ONLCR ideal-int
-pkg syscall (netbsd-amd64), const ONLRET ideal-int
-pkg syscall (netbsd-amd64), const ONOCR ideal-int
-pkg syscall (netbsd-amd64), const ONOEOT ideal-int
-pkg syscall (netbsd-amd64), const OPOST ideal-int
-pkg syscall (netbsd-amd64), const O_ACCMODE ideal-int
-pkg syscall (netbsd-amd64), const O_ALT_IO ideal-int
-pkg syscall (netbsd-amd64), const O_DIRECT ideal-int
-pkg syscall (netbsd-amd64), const O_DIRECTORY ideal-int
-pkg syscall (netbsd-amd64), const O_DSYNC ideal-int
-pkg syscall (netbsd-amd64), const O_EXLOCK ideal-int
-pkg syscall (netbsd-amd64), const O_FSYNC ideal-int
-pkg syscall (netbsd-amd64), const O_NDELAY ideal-int
-pkg syscall (netbsd-amd64), const O_NOFOLLOW ideal-int
-pkg syscall (netbsd-amd64), const O_NOSIGPIPE ideal-int
-pkg syscall (netbsd-amd64), const O_RSYNC ideal-int
-pkg syscall (netbsd-amd64), const O_SHLOCK ideal-int
-pkg syscall (netbsd-amd64), const PARENB ideal-int
-pkg syscall (netbsd-amd64), const PARMRK ideal-int
-pkg syscall (netbsd-amd64), const PARODD ideal-int
-pkg syscall (netbsd-amd64), const PENDIN ideal-int
-pkg syscall (netbsd-amd64), const PRIO_PGRP = 1
-pkg syscall (netbsd-amd64), const PRIO_PGRP ideal-int
-pkg syscall (netbsd-amd64), const PRIO_PROCESS = 0
-pkg syscall (netbsd-amd64), const PRIO_PROCESS ideal-int
-pkg syscall (netbsd-amd64), const PRIO_USER = 2
-pkg syscall (netbsd-amd64), const PRIO_USER ideal-int
-pkg syscall (netbsd-amd64), const PRI_IOFLUSH ideal-int
-pkg syscall (netbsd-amd64), const PTRACE_CONT ideal-int
-pkg syscall (netbsd-amd64), const PTRACE_KILL ideal-int
-pkg syscall (netbsd-amd64), const PTRACE_TRACEME ideal-int
-pkg syscall (netbsd-amd64), const RLIMIT_AS ideal-int
-pkg syscall (netbsd-amd64), const RLIMIT_CORE ideal-int
-pkg syscall (netbsd-amd64), const RLIMIT_CPU ideal-int
-pkg syscall (netbsd-amd64), const RLIMIT_DATA ideal-int
-pkg syscall (netbsd-amd64), const RLIMIT_FSIZE ideal-int
-pkg syscall (netbsd-amd64), const RLIMIT_NOFILE ideal-int
-pkg syscall (netbsd-amd64), const RLIMIT_STACK ideal-int
-pkg syscall (netbsd-amd64), const RLIM_INFINITY ideal-int
-pkg syscall (netbsd-amd64), const RTAX_AUTHOR ideal-int
-pkg syscall (netbsd-amd64), const RTAX_BRD ideal-int
-pkg syscall (netbsd-amd64), const RTAX_DST ideal-int
-pkg syscall (netbsd-amd64), const RTAX_GATEWAY ideal-int
-pkg syscall (netbsd-amd64), const RTAX_GENMASK ideal-int
-pkg syscall (netbsd-amd64), const RTAX_IFA ideal-int
-pkg syscall (netbsd-amd64), const RTAX_IFP ideal-int
-pkg syscall (netbsd-amd64), const RTAX_MAX ideal-int
-pkg syscall (netbsd-amd64), const RTAX_NETMASK ideal-int
-pkg syscall (netbsd-amd64), const RTAX_TAG ideal-int
-pkg syscall (netbsd-amd64), const RTA_AUTHOR ideal-int
-pkg syscall (netbsd-amd64), const RTA_BRD ideal-int
-pkg syscall (netbsd-amd64), const RTA_DST ideal-int
-pkg syscall (netbsd-amd64), const RTA_GATEWAY ideal-int
-pkg syscall (netbsd-amd64), const RTA_GENMASK ideal-int
-pkg syscall (netbsd-amd64), const RTA_IFA ideal-int
-pkg syscall (netbsd-amd64), const RTA_IFP ideal-int
-pkg syscall (netbsd-amd64), const RTA_NETMASK ideal-int
-pkg syscall (netbsd-amd64), const RTA_TAG ideal-int
-pkg syscall (netbsd-amd64), const RTF_ANNOUNCE ideal-int
-pkg syscall (netbsd-amd64), const RTF_BLACKHOLE ideal-int
-pkg syscall (netbsd-amd64), const RTF_CLONED ideal-int
-pkg syscall (netbsd-amd64), const RTF_CLONING ideal-int
-pkg syscall (netbsd-amd64), const RTF_DONE ideal-int
-pkg syscall (netbsd-amd64), const RTF_DYNAMIC ideal-int
-pkg syscall (netbsd-amd64), const RTF_GATEWAY ideal-int
-pkg syscall (netbsd-amd64), const RTF_HOST ideal-int
-pkg syscall (netbsd-amd64), const RTF_LLINFO ideal-int
-pkg syscall (netbsd-amd64), const RTF_MASK ideal-int
-pkg syscall (netbsd-amd64), const RTF_MODIFIED ideal-int
-pkg syscall (netbsd-amd64), const RTF_PROTO1 ideal-int
-pkg syscall (netbsd-amd64), const RTF_PROTO2 ideal-int
-pkg syscall (netbsd-amd64), const RTF_REJECT ideal-int
-pkg syscall (netbsd-amd64), const RTF_SRC ideal-int
-pkg syscall (netbsd-amd64), const RTF_STATIC ideal-int
-pkg syscall (netbsd-amd64), const RTF_UP ideal-int
-pkg syscall (netbsd-amd64), const RTF_XRESOLVE ideal-int
-pkg syscall (netbsd-amd64), const RTM_ADD ideal-int
-pkg syscall (netbsd-amd64), const RTM_CHANGE ideal-int
-pkg syscall (netbsd-amd64), const RTM_CHGADDR ideal-int
-pkg syscall (netbsd-amd64), const RTM_DELADDR ideal-int
-pkg syscall (netbsd-amd64), const RTM_DELETE ideal-int
-pkg syscall (netbsd-amd64), const RTM_GET ideal-int
-pkg syscall (netbsd-amd64), const RTM_IEEE80211 ideal-int
-pkg syscall (netbsd-amd64), const RTM_IFANNOUNCE ideal-int
-pkg syscall (netbsd-amd64), const RTM_IFINFO ideal-int
-pkg syscall (netbsd-amd64), const RTM_LLINFO_UPD ideal-int
-pkg syscall (netbsd-amd64), const RTM_LOCK ideal-int
-pkg syscall (netbsd-amd64), const RTM_LOSING ideal-int
-pkg syscall (netbsd-amd64), const RTM_MISS ideal-int
-pkg syscall (netbsd-amd64), const RTM_NEWADDR ideal-int
-pkg syscall (netbsd-amd64), const RTM_OIFINFO ideal-int
-pkg syscall (netbsd-amd64), const RTM_OLDADD ideal-int
-pkg syscall (netbsd-amd64), const RTM_OLDDEL ideal-int
-pkg syscall (netbsd-amd64), const RTM_OOIFINFO ideal-int
-pkg syscall (netbsd-amd64), const RTM_REDIRECT ideal-int
-pkg syscall (netbsd-amd64), const RTM_RESOLVE ideal-int
-pkg syscall (netbsd-amd64), const RTM_RTTUNIT ideal-int
-pkg syscall (netbsd-amd64), const RTM_SETGATE ideal-int
-pkg syscall (netbsd-amd64), const RTM_VERSION ideal-int
-pkg syscall (netbsd-amd64), const RTV_EXPIRE ideal-int
-pkg syscall (netbsd-amd64), const RTV_HOPCOUNT ideal-int
-pkg syscall (netbsd-amd64), const RTV_MTU ideal-int
-pkg syscall (netbsd-amd64), const RTV_RPIPE ideal-int
-pkg syscall (netbsd-amd64), const RTV_RTT ideal-int
-pkg syscall (netbsd-amd64), const RTV_RTTVAR ideal-int
-pkg syscall (netbsd-amd64), const RTV_SPIPE ideal-int
-pkg syscall (netbsd-amd64), const RTV_SSTHRESH ideal-int
-pkg syscall (netbsd-amd64), const RUSAGE_CHILDREN ideal-int
-pkg syscall (netbsd-amd64), const RUSAGE_SELF ideal-int
-pkg syscall (netbsd-amd64), const SCM_CREDS ideal-int
-pkg syscall (netbsd-amd64), const SCM_RIGHTS ideal-int
-pkg syscall (netbsd-amd64), const SCM_TIMESTAMP ideal-int
-pkg syscall (netbsd-amd64), const SIGCHLD Signal
-pkg syscall (netbsd-amd64), const SIGCONT Signal
-pkg syscall (netbsd-amd64), const SIGEMT Signal
-pkg syscall (netbsd-amd64), const SIGINFO Signal
-pkg syscall (netbsd-amd64), const SIGIO Signal
-pkg syscall (netbsd-amd64), const SIGIOT Signal
-pkg syscall (netbsd-amd64), const SIGPROF Signal
-pkg syscall (netbsd-amd64), const SIGPWR Signal
-pkg syscall (netbsd-amd64), const SIGSTOP Signal
-pkg syscall (netbsd-amd64), const SIGSYS Signal
-pkg syscall (netbsd-amd64), const SIGTSTP Signal
-pkg syscall (netbsd-amd64), const SIGTTIN Signal
-pkg syscall (netbsd-amd64), const SIGTTOU Signal
-pkg syscall (netbsd-amd64), const SIGURG Signal
-pkg syscall (netbsd-amd64), const SIGUSR1 Signal
-pkg syscall (netbsd-amd64), const SIGUSR2 Signal
-pkg syscall (netbsd-amd64), const SIGVTALRM Signal
-pkg syscall (netbsd-amd64), const SIGWINCH Signal
-pkg syscall (netbsd-amd64), const SIGXCPU Signal
-pkg syscall (netbsd-amd64), const SIGXFSZ Signal
-pkg syscall (netbsd-amd64), const SIOCADDMULTI ideal-int
-pkg syscall (netbsd-amd64), const SIOCADDRT ideal-int
-pkg syscall (netbsd-amd64), const SIOCAIFADDR ideal-int
-pkg syscall (netbsd-amd64), const SIOCALIFADDR ideal-int
-pkg syscall (netbsd-amd64), const SIOCATMARK ideal-int
-pkg syscall (netbsd-amd64), const SIOCDELMULTI ideal-int
-pkg syscall (netbsd-amd64), const SIOCDELRT ideal-int
-pkg syscall (netbsd-amd64), const SIOCDIFADDR ideal-int
-pkg syscall (netbsd-amd64), const SIOCDIFPHYADDR ideal-int
-pkg syscall (netbsd-amd64), const SIOCDLIFADDR ideal-int
-pkg syscall (netbsd-amd64), const SIOCGDRVSPEC ideal-int
-pkg syscall (netbsd-amd64), const SIOCGETPFSYNC ideal-int
-pkg syscall (netbsd-amd64), const SIOCGETSGCNT ideal-int
-pkg syscall (netbsd-amd64), const SIOCGETVIFCNT ideal-int
-pkg syscall (netbsd-amd64), const SIOCGHIWAT ideal-int
-pkg syscall (netbsd-amd64), const SIOCGIFADDR ideal-int
-pkg syscall (netbsd-amd64), const SIOCGIFADDRPREF ideal-int
-pkg syscall (netbsd-amd64), const SIOCGIFALIAS ideal-int
-pkg syscall (netbsd-amd64), const SIOCGIFBRDADDR ideal-int
-pkg syscall (netbsd-amd64), const SIOCGIFCAP ideal-int
-pkg syscall (netbsd-amd64), const SIOCGIFCONF ideal-int
-pkg syscall (netbsd-amd64), const SIOCGIFDATA ideal-int
-pkg syscall (netbsd-amd64), const SIOCGIFDLT ideal-int
-pkg syscall (netbsd-amd64), const SIOCGIFDSTADDR ideal-int
-pkg syscall (netbsd-amd64), const SIOCGIFFLAGS ideal-int
-pkg syscall (netbsd-amd64), const SIOCGIFGENERIC ideal-int
-pkg syscall (netbsd-amd64), const SIOCGIFMEDIA ideal-int
-pkg syscall (netbsd-amd64), const SIOCGIFMETRIC ideal-int
-pkg syscall (netbsd-amd64), const SIOCGIFMTU ideal-int
-pkg syscall (netbsd-amd64), const SIOCGIFNETMASK ideal-int
-pkg syscall (netbsd-amd64), const SIOCGIFPDSTADDR ideal-int
-pkg syscall (netbsd-amd64), const SIOCGIFPSRCADDR ideal-int
-pkg syscall (netbsd-amd64), const SIOCGLIFADDR ideal-int
-pkg syscall (netbsd-amd64), const SIOCGLIFPHYADDR ideal-int
-pkg syscall (netbsd-amd64), const SIOCGLINKSTR ideal-int
-pkg syscall (netbsd-amd64), const SIOCGLOWAT ideal-int
-pkg syscall (netbsd-amd64), const SIOCGPGRP ideal-int
-pkg syscall (netbsd-amd64), const SIOCGVH ideal-int
-pkg syscall (netbsd-amd64), const SIOCIFCREATE ideal-int
-pkg syscall (netbsd-amd64), const SIOCIFDESTROY ideal-int
-pkg syscall (netbsd-amd64), const SIOCIFGCLONERS ideal-int
-pkg syscall (netbsd-amd64), const SIOCINITIFADDR ideal-int
-pkg syscall (netbsd-amd64), const SIOCSDRVSPEC ideal-int
-pkg syscall (netbsd-amd64), const SIOCSETPFSYNC ideal-int
-pkg syscall (netbsd-amd64), const SIOCSHIWAT ideal-int
-pkg syscall (netbsd-amd64), const SIOCSIFADDR ideal-int
-pkg syscall (netbsd-amd64), const SIOCSIFADDRPREF ideal-int
-pkg syscall (netbsd-amd64), const SIOCSIFBRDADDR ideal-int
-pkg syscall (netbsd-amd64), const SIOCSIFCAP ideal-int
-pkg syscall (netbsd-amd64), const SIOCSIFDSTADDR ideal-int
-pkg syscall (netbsd-amd64), const SIOCSIFFLAGS ideal-int
-pkg syscall (netbsd-amd64), const SIOCSIFGENERIC ideal-int
-pkg syscall (netbsd-amd64), const SIOCSIFMEDIA ideal-int
-pkg syscall (netbsd-amd64), const SIOCSIFMETRIC ideal-int
-pkg syscall (netbsd-amd64), const SIOCSIFMTU ideal-int
-pkg syscall (netbsd-amd64), const SIOCSIFNETMASK ideal-int
-pkg syscall (netbsd-amd64), const SIOCSIFPHYADDR ideal-int
-pkg syscall (netbsd-amd64), const SIOCSLIFPHYADDR ideal-int
-pkg syscall (netbsd-amd64), const SIOCSLINKSTR ideal-int
-pkg syscall (netbsd-amd64), const SIOCSLOWAT ideal-int
-pkg syscall (netbsd-amd64), const SIOCSPGRP ideal-int
-pkg syscall (netbsd-amd64), const SIOCSVH ideal-int
-pkg syscall (netbsd-amd64), const SIOCZIFDATA ideal-int
-pkg syscall (netbsd-amd64), const SOCK_CLOEXEC ideal-int
-pkg syscall (netbsd-amd64), const SOCK_FLAGS_MASK ideal-int
-pkg syscall (netbsd-amd64), const SOCK_NONBLOCK ideal-int
-pkg syscall (netbsd-amd64), const SOCK_NOSIGPIPE ideal-int
-pkg syscall (netbsd-amd64), const SOCK_RDM ideal-int
-pkg syscall (netbsd-amd64), const SO_ACCEPTCONN ideal-int
-pkg syscall (netbsd-amd64), const SO_ACCEPTFILTER ideal-int
-pkg syscall (netbsd-amd64), const SO_DEBUG ideal-int
-pkg syscall (netbsd-amd64), const SO_ERROR ideal-int
-pkg syscall (netbsd-amd64), const SO_NOHEADER ideal-int
-pkg syscall (netbsd-amd64), const SO_NOSIGPIPE ideal-int
-pkg syscall (netbsd-amd64), const SO_OOBINLINE ideal-int
-pkg syscall (netbsd-amd64), const SO_OVERFLOWED ideal-int
-pkg syscall (netbsd-amd64), const SO_RCVLOWAT ideal-int
-pkg syscall (netbsd-amd64), const SO_RCVTIMEO ideal-int
-pkg syscall (netbsd-amd64), const SO_REUSEPORT ideal-int
-pkg syscall (netbsd-amd64), const SO_SNDLOWAT ideal-int
-pkg syscall (netbsd-amd64), const SO_SNDTIMEO ideal-int
-pkg syscall (netbsd-amd64), const SO_TIMESTAMP ideal-int
-pkg syscall (netbsd-amd64), const SO_TYPE ideal-int
-pkg syscall (netbsd-amd64), const SO_USELOOPBACK ideal-int
-pkg syscall (netbsd-amd64), const SYSCTL_VERSION ideal-int
-pkg syscall (netbsd-amd64), const SYSCTL_VERS_0 ideal-int
-pkg syscall (netbsd-amd64), const SYSCTL_VERS_1 ideal-int
-pkg syscall (netbsd-amd64), const SYSCTL_VERS_MASK ideal-int
-pkg syscall (netbsd-amd64), const SYS_ACCEPT ideal-int
-pkg syscall (netbsd-amd64), const SYS_ACCESS ideal-int
-pkg syscall (netbsd-amd64), const SYS_ACCT ideal-int
-pkg syscall (netbsd-amd64), const SYS_ADJTIME ideal-int
-pkg syscall (netbsd-amd64), const SYS_BIND ideal-int
-pkg syscall (netbsd-amd64), const SYS_BREAK ideal-int
-pkg syscall (netbsd-amd64), const SYS_CHDIR ideal-int
-pkg syscall (netbsd-amd64), const SYS_CHFLAGS ideal-int
-pkg syscall (netbsd-amd64), const SYS_CHMOD ideal-int
-pkg syscall (netbsd-amd64), const SYS_CHOWN ideal-int
-pkg syscall (netbsd-amd64), const SYS_CHROOT ideal-int
-pkg syscall (netbsd-amd64), const SYS_CLOCK_GETRES ideal-int
-pkg syscall (netbsd-amd64), const SYS_CLOCK_GETTIME ideal-int
-pkg syscall (netbsd-amd64), const SYS_CLOCK_SETTIME ideal-int
-pkg syscall (netbsd-amd64), const SYS_CLOSE ideal-int
-pkg syscall (netbsd-amd64), const SYS_CONNECT ideal-int
-pkg syscall (netbsd-amd64), const SYS_DUP ideal-int
-pkg syscall (netbsd-amd64), const SYS_DUP2 ideal-int
-pkg syscall (netbsd-amd64), const SYS_DUP3 ideal-int
-pkg syscall (netbsd-amd64), const SYS_EXECVE ideal-int
-pkg syscall (netbsd-amd64), const SYS_EXIT ideal-int
-pkg syscall (netbsd-amd64), const SYS_EXTATTRCTL ideal-int
-pkg syscall (netbsd-amd64), const SYS_EXTATTR_DELETE_FD ideal-int
-pkg syscall (netbsd-amd64), const SYS_EXTATTR_DELETE_FILE ideal-int
-pkg syscall (netbsd-amd64), const SYS_EXTATTR_DELETE_LINK ideal-int
-pkg syscall (netbsd-amd64), const SYS_EXTATTR_GET_FD ideal-int
-pkg syscall (netbsd-amd64), const SYS_EXTATTR_GET_FILE ideal-int
-pkg syscall (netbsd-amd64), const SYS_EXTATTR_GET_LINK ideal-int
-pkg syscall (netbsd-amd64), const SYS_EXTATTR_LIST_FD ideal-int
-pkg syscall (netbsd-amd64), const SYS_EXTATTR_LIST_FILE ideal-int
-pkg syscall (netbsd-amd64), const SYS_EXTATTR_LIST_LINK ideal-int
-pkg syscall (netbsd-amd64), const SYS_EXTATTR_SET_FD ideal-int
-pkg syscall (netbsd-amd64), const SYS_EXTATTR_SET_FILE ideal-int
-pkg syscall (netbsd-amd64), const SYS_EXTATTR_SET_LINK ideal-int
-pkg syscall (netbsd-amd64), const SYS_FACCESSAT ideal-int
-pkg syscall (netbsd-amd64), const SYS_FCHDIR ideal-int
-pkg syscall (netbsd-amd64), const SYS_FCHFLAGS ideal-int
-pkg syscall (netbsd-amd64), const SYS_FCHMOD ideal-int
-pkg syscall (netbsd-amd64), const SYS_FCHMODAT ideal-int
-pkg syscall (netbsd-amd64), const SYS_FCHOWN ideal-int
-pkg syscall (netbsd-amd64), const SYS_FCHOWNAT ideal-int
-pkg syscall (netbsd-amd64), const SYS_FCHROOT ideal-int
-pkg syscall (netbsd-amd64), const SYS_FCNTL ideal-int
-pkg syscall (netbsd-amd64), const SYS_FDATASYNC ideal-int
-pkg syscall (netbsd-amd64), const SYS_FEXECVE ideal-int
-pkg syscall (netbsd-amd64), const SYS_FGETXATTR ideal-int
-pkg syscall (netbsd-amd64), const SYS_FHSTAT ideal-int
-pkg syscall (netbsd-amd64), const SYS_FKTRACE ideal-int
-pkg syscall (netbsd-amd64), const SYS_FLISTXATTR ideal-int
-pkg syscall (netbsd-amd64), const SYS_FLOCK ideal-int
-pkg syscall (netbsd-amd64), const SYS_FORK ideal-int
-pkg syscall (netbsd-amd64), const SYS_FPATHCONF ideal-int
-pkg syscall (netbsd-amd64), const SYS_FREMOVEXATTR ideal-int
-pkg syscall (netbsd-amd64), const SYS_FSETXATTR ideal-int
-pkg syscall (netbsd-amd64), const SYS_FSTAT ideal-int
-pkg syscall (netbsd-amd64), const SYS_FSTATAT ideal-int
-pkg syscall (netbsd-amd64), const SYS_FSTATVFS1 ideal-int
-pkg syscall (netbsd-amd64), const SYS_FSYNC ideal-int
-pkg syscall (netbsd-amd64), const SYS_FSYNC_RANGE ideal-int
-pkg syscall (netbsd-amd64), const SYS_FTRUNCATE ideal-int
-pkg syscall (netbsd-amd64), const SYS_FUTIMENS ideal-int
-pkg syscall (netbsd-amd64), const SYS_FUTIMES ideal-int
-pkg syscall (netbsd-amd64), const SYS_GETCONTEXT ideal-int
-pkg syscall (netbsd-amd64), const SYS_GETDENTS ideal-int
-pkg syscall (netbsd-amd64), const SYS_GETEGID ideal-int
-pkg syscall (netbsd-amd64), const SYS_GETEUID ideal-int
-pkg syscall (netbsd-amd64), const SYS_GETFH ideal-int
-pkg syscall (netbsd-amd64), const SYS_GETGID ideal-int
-pkg syscall (netbsd-amd64), const SYS_GETGROUPS ideal-int
-pkg syscall (netbsd-amd64), const SYS_GETITIMER ideal-int
-pkg syscall (netbsd-amd64), const SYS_GETPEERNAME ideal-int
-pkg syscall (netbsd-amd64), const SYS_GETPGID ideal-int
-pkg syscall (netbsd-amd64), const SYS_GETPGRP ideal-int
-pkg syscall (netbsd-amd64), const SYS_GETPID ideal-int
-pkg syscall (netbsd-amd64), const SYS_GETPPID ideal-int
-pkg syscall (netbsd-amd64), const SYS_GETPRIORITY ideal-int
-pkg syscall (netbsd-amd64), const SYS_GETRLIMIT ideal-int
-pkg syscall (netbsd-amd64), const SYS_GETRUSAGE ideal-int
-pkg syscall (netbsd-amd64), const SYS_GETSID ideal-int
-pkg syscall (netbsd-amd64), const SYS_GETSOCKNAME ideal-int
-pkg syscall (netbsd-amd64), const SYS_GETSOCKOPT ideal-int
-pkg syscall (netbsd-amd64), const SYS_GETTIMEOFDAY ideal-int
-pkg syscall (netbsd-amd64), const SYS_GETUID ideal-int
-pkg syscall (netbsd-amd64), const SYS_GETVFSSTAT ideal-int
-pkg syscall (netbsd-amd64), const SYS_GETXATTR ideal-int
-pkg syscall (netbsd-amd64), const SYS_IOCTL ideal-int
-pkg syscall (netbsd-amd64), const SYS_ISSETUGID ideal-int
-pkg syscall (netbsd-amd64), const SYS_KEVENT ideal-int
-pkg syscall (netbsd-amd64), const SYS_KILL ideal-int
-pkg syscall (netbsd-amd64), const SYS_KQUEUE ideal-int
-pkg syscall (netbsd-amd64), const SYS_KQUEUE1 ideal-int
-pkg syscall (netbsd-amd64), const SYS_KTRACE ideal-int
-pkg syscall (netbsd-amd64), const SYS_LCHFLAGS ideal-int
-pkg syscall (netbsd-amd64), const SYS_LCHMOD ideal-int
-pkg syscall (netbsd-amd64), const SYS_LCHOWN ideal-int
-pkg syscall (netbsd-amd64), const SYS_LGETXATTR ideal-int
-pkg syscall (netbsd-amd64), const SYS_LINK ideal-int
-pkg syscall (netbsd-amd64), const SYS_LINKAT ideal-int
-pkg syscall (netbsd-amd64), const SYS_LISTEN ideal-int
-pkg syscall (netbsd-amd64), const SYS_LISTXATTR ideal-int
-pkg syscall (netbsd-amd64), const SYS_LLISTXATTR ideal-int
-pkg syscall (netbsd-amd64), const SYS_LREMOVEXATTR ideal-int
-pkg syscall (netbsd-amd64), const SYS_LSEEK ideal-int
-pkg syscall (netbsd-amd64), const SYS_LSETXATTR ideal-int
-pkg syscall (netbsd-amd64), const SYS_LSTAT ideal-int
-pkg syscall (netbsd-amd64), const SYS_LUTIMES ideal-int
-pkg syscall (netbsd-amd64), const SYS_MADVISE ideal-int
-pkg syscall (netbsd-amd64), const SYS_MINCORE ideal-int
-pkg syscall (netbsd-amd64), const SYS_MINHERIT ideal-int
-pkg syscall (netbsd-amd64), const SYS_MKDIR ideal-int
-pkg syscall (netbsd-amd64), const SYS_MKDIRAT ideal-int
-pkg syscall (netbsd-amd64), const SYS_MKFIFO ideal-int
-pkg syscall (netbsd-amd64), const SYS_MKFIFOAT ideal-int
-pkg syscall (netbsd-amd64), const SYS_MKNOD ideal-int
-pkg syscall (netbsd-amd64), const SYS_MKNODAT ideal-int
-pkg syscall (netbsd-amd64), const SYS_MLOCK ideal-int
-pkg syscall (netbsd-amd64), const SYS_MLOCKALL ideal-int
-pkg syscall (netbsd-amd64), const SYS_MMAP ideal-int
-pkg syscall (netbsd-amd64), const SYS_MODCTL ideal-int
-pkg syscall (netbsd-amd64), const SYS_MOUNT ideal-int
-pkg syscall (netbsd-amd64), const SYS_MPROTECT ideal-int
-pkg syscall (netbsd-amd64), const SYS_MREMAP ideal-int
-pkg syscall (netbsd-amd64), const SYS_MSGCTL ideal-int
-pkg syscall (netbsd-amd64), const SYS_MSGGET ideal-int
-pkg syscall (netbsd-amd64), const SYS_MSGRCV ideal-int
-pkg syscall (netbsd-amd64), const SYS_MSGSND ideal-int
-pkg syscall (netbsd-amd64), const SYS_MUNLOCK ideal-int
-pkg syscall (netbsd-amd64), const SYS_MUNLOCKALL ideal-int
-pkg syscall (netbsd-amd64), const SYS_MUNMAP ideal-int
-pkg syscall (netbsd-amd64), const SYS_NANOSLEEP ideal-int
-pkg syscall (netbsd-amd64), const SYS_NTP_ADJTIME ideal-int
-pkg syscall (netbsd-amd64), const SYS_NTP_GETTIME ideal-int
-pkg syscall (netbsd-amd64), const SYS_OPEN ideal-int
-pkg syscall (netbsd-amd64), const SYS_OPENAT ideal-int
-pkg syscall (netbsd-amd64), const SYS_PACCEPT ideal-int
-pkg syscall (netbsd-amd64), const SYS_PATHCONF ideal-int
-pkg syscall (netbsd-amd64), const SYS_PIPE ideal-int
-pkg syscall (netbsd-amd64), const SYS_PIPE2 ideal-int
-pkg syscall (netbsd-amd64), const SYS_PMC_CONTROL ideal-int
-pkg syscall (netbsd-amd64), const SYS_PMC_GET_INFO ideal-int
-pkg syscall (netbsd-amd64), const SYS_POLL ideal-int
-pkg syscall (netbsd-amd64), const SYS_POLLTS ideal-int
-pkg syscall (netbsd-amd64), const SYS_POSIX_FADVISE ideal-int
-pkg syscall (netbsd-amd64), const SYS_POSIX_SPAWN ideal-int
-pkg syscall (netbsd-amd64), const SYS_PREAD ideal-int
-pkg syscall (netbsd-amd64), const SYS_PREADV ideal-int
-pkg syscall (netbsd-amd64), const SYS_PROFIL ideal-int
-pkg syscall (netbsd-amd64), const SYS_PSELECT ideal-int
-pkg syscall (netbsd-amd64), const SYS_PSET_ASSIGN ideal-int
-pkg syscall (netbsd-amd64), const SYS_PSET_CREATE ideal-int
-pkg syscall (netbsd-amd64), const SYS_PSET_DESTROY ideal-int
-pkg syscall (netbsd-amd64), const SYS_PTRACE ideal-int
-pkg syscall (netbsd-amd64), const SYS_PWRITE ideal-int
-pkg syscall (netbsd-amd64), const SYS_PWRITEV ideal-int
-pkg syscall (netbsd-amd64), const SYS_RASCTL ideal-int
-pkg syscall (netbsd-amd64), const SYS_READ ideal-int
-pkg syscall (netbsd-amd64), const SYS_READLINK ideal-int
-pkg syscall (netbsd-amd64), const SYS_READLINKAT ideal-int
-pkg syscall (netbsd-amd64), const SYS_READV ideal-int
-pkg syscall (netbsd-amd64), const SYS_REBOOT ideal-int
-pkg syscall (netbsd-amd64), const SYS_RECVFROM ideal-int
-pkg syscall (netbsd-amd64), const SYS_RECVMMSG ideal-int
-pkg syscall (netbsd-amd64), const SYS_RECVMSG ideal-int
-pkg syscall (netbsd-amd64), const SYS_REMOVEXATTR ideal-int
-pkg syscall (netbsd-amd64), const SYS_RENAME ideal-int
-pkg syscall (netbsd-amd64), const SYS_RENAMEAT ideal-int
-pkg syscall (netbsd-amd64), const SYS_REVOKE ideal-int
-pkg syscall (netbsd-amd64), const SYS_RMDIR ideal-int
-pkg syscall (netbsd-amd64), const SYS_SBRK ideal-int
-pkg syscall (netbsd-amd64), const SYS_SCHED_YIELD ideal-int
-pkg syscall (netbsd-amd64), const SYS_SELECT ideal-int
-pkg syscall (netbsd-amd64), const SYS_SEMCONFIG ideal-int
-pkg syscall (netbsd-amd64), const SYS_SEMGET ideal-int
-pkg syscall (netbsd-amd64), const SYS_SEMOP ideal-int
-pkg syscall (netbsd-amd64), const SYS_SENDMMSG ideal-int
-pkg syscall (netbsd-amd64), const SYS_SENDMSG ideal-int
-pkg syscall (netbsd-amd64), const SYS_SENDTO ideal-int
-pkg syscall (netbsd-amd64), const SYS_SETCONTEXT ideal-int
-pkg syscall (netbsd-amd64), const SYS_SETEGID ideal-int
-pkg syscall (netbsd-amd64), const SYS_SETEUID ideal-int
-pkg syscall (netbsd-amd64), const SYS_SETGID ideal-int
-pkg syscall (netbsd-amd64), const SYS_SETGROUPS ideal-int
-pkg syscall (netbsd-amd64), const SYS_SETITIMER ideal-int
-pkg syscall (netbsd-amd64), const SYS_SETPGID ideal-int
-pkg syscall (netbsd-amd64), const SYS_SETPRIORITY ideal-int
-pkg syscall (netbsd-amd64), const SYS_SETREGID ideal-int
-pkg syscall (netbsd-amd64), const SYS_SETREUID ideal-int
-pkg syscall (netbsd-amd64), const SYS_SETRLIMIT ideal-int
-pkg syscall (netbsd-amd64), const SYS_SETSID ideal-int
-pkg syscall (netbsd-amd64), const SYS_SETSOCKOPT ideal-int
-pkg syscall (netbsd-amd64), const SYS_SETTIMEOFDAY ideal-int
-pkg syscall (netbsd-amd64), const SYS_SETUID ideal-int
-pkg syscall (netbsd-amd64), const SYS_SETXATTR ideal-int
-pkg syscall (netbsd-amd64), const SYS_SHMAT ideal-int
-pkg syscall (netbsd-amd64), const SYS_SHMCTL ideal-int
-pkg syscall (netbsd-amd64), const SYS_SHMDT ideal-int
-pkg syscall (netbsd-amd64), const SYS_SHMGET ideal-int
-pkg syscall (netbsd-amd64), const SYS_SHUTDOWN ideal-int
-pkg syscall (netbsd-amd64), const SYS_SIGQUEUEINFO ideal-int
-pkg syscall (netbsd-amd64), const SYS_SOCKET ideal-int
-pkg syscall (netbsd-amd64), const SYS_SOCKETPAIR ideal-int
-pkg syscall (netbsd-amd64), const SYS_SSTK ideal-int
-pkg syscall (netbsd-amd64), const SYS_STAT ideal-int
-pkg syscall (netbsd-amd64), const SYS_STATVFS1 ideal-int
-pkg syscall (netbsd-amd64), const SYS_SWAPCTL ideal-int
-pkg syscall (netbsd-amd64), const SYS_SYMLINK ideal-int
-pkg syscall (netbsd-amd64), const SYS_SYMLINKAT ideal-int
-pkg syscall (netbsd-amd64), const SYS_SYNC ideal-int
-pkg syscall (netbsd-amd64), const SYS_SYSARCH ideal-int
-pkg syscall (netbsd-amd64), const SYS_TIMER_CREATE ideal-int
-pkg syscall (netbsd-amd64), const SYS_TIMER_DELETE ideal-int
-pkg syscall (netbsd-amd64), const SYS_TIMER_GETOVERRUN ideal-int
-pkg syscall (netbsd-amd64), const SYS_TIMER_GETTIME ideal-int
-pkg syscall (netbsd-amd64), const SYS_TIMER_SETTIME ideal-int
-pkg syscall (netbsd-amd64), const SYS_TRUNCATE ideal-int
-pkg syscall (netbsd-amd64), const SYS_UMASK ideal-int
-pkg syscall (netbsd-amd64), const SYS_UNDELETE ideal-int
-pkg syscall (netbsd-amd64), const SYS_UNLINK ideal-int
-pkg syscall (netbsd-amd64), const SYS_UNLINKAT ideal-int
-pkg syscall (netbsd-amd64), const SYS_UNMOUNT ideal-int
-pkg syscall (netbsd-amd64), const SYS_UTIMENSAT ideal-int
-pkg syscall (netbsd-amd64), const SYS_UTIMES ideal-int
-pkg syscall (netbsd-amd64), const SYS_UTRACE ideal-int
-pkg syscall (netbsd-amd64), const SYS_UUIDGEN ideal-int
-pkg syscall (netbsd-amd64), const SYS_VADVISE ideal-int
-pkg syscall (netbsd-amd64), const SYS_VFORK ideal-int
-pkg syscall (netbsd-amd64), const SYS_WAIT4 ideal-int
-pkg syscall (netbsd-amd64), const SYS_WRITE ideal-int
-pkg syscall (netbsd-amd64), const SYS_WRITEV ideal-int
-pkg syscall (netbsd-amd64), const SYS__LWP_CONTINUE ideal-int
-pkg syscall (netbsd-amd64), const SYS__LWP_CREATE ideal-int
-pkg syscall (netbsd-amd64), const SYS__LWP_CTL ideal-int
-pkg syscall (netbsd-amd64), const SYS__LWP_DETACH ideal-int
-pkg syscall (netbsd-amd64), const SYS__LWP_EXIT ideal-int
-pkg syscall (netbsd-amd64), const SYS__LWP_GETNAME ideal-int
-pkg syscall (netbsd-amd64), const SYS__LWP_GETPRIVATE ideal-int
-pkg syscall (netbsd-amd64), const SYS__LWP_KILL ideal-int
-pkg syscall (netbsd-amd64), const SYS__LWP_PARK ideal-int
-pkg syscall (netbsd-amd64), const SYS__LWP_SELF ideal-int
-pkg syscall (netbsd-amd64), const SYS__LWP_SETNAME ideal-int
-pkg syscall (netbsd-amd64), const SYS__LWP_SETPRIVATE ideal-int
-pkg syscall (netbsd-amd64), const SYS__LWP_SUSPEND ideal-int
-pkg syscall (netbsd-amd64), const SYS__LWP_UNPARK ideal-int
-pkg syscall (netbsd-amd64), const SYS__LWP_UNPARK_ALL ideal-int
-pkg syscall (netbsd-amd64), const SYS__LWP_WAIT ideal-int
-pkg syscall (netbsd-amd64), const SYS__LWP_WAKEUP ideal-int
-pkg syscall (netbsd-amd64), const SYS__PSET_BIND ideal-int
-pkg syscall (netbsd-amd64), const SYS__SCHED_GETAFFINITY ideal-int
-pkg syscall (netbsd-amd64), const SYS__SCHED_GETPARAM ideal-int
-pkg syscall (netbsd-amd64), const SYS__SCHED_SETAFFINITY ideal-int
-pkg syscall (netbsd-amd64), const SYS__SCHED_SETPARAM ideal-int
-pkg syscall (netbsd-amd64), const SYS___CLONE ideal-int
-pkg syscall (netbsd-amd64), const SYS___GETCWD ideal-int
-pkg syscall (netbsd-amd64), const SYS___GETLOGIN ideal-int
-pkg syscall (netbsd-amd64), const SYS___POSIX_CHOWN ideal-int
-pkg syscall (netbsd-amd64), const SYS___POSIX_FCHOWN ideal-int
-pkg syscall (netbsd-amd64), const SYS___POSIX_LCHOWN ideal-int
-pkg syscall (netbsd-amd64), const SYS___POSIX_RENAME ideal-int
-pkg syscall (netbsd-amd64), const SYS___QUOTACTL ideal-int
-pkg syscall (netbsd-amd64), const SYS___SEMCTL ideal-int
-pkg syscall (netbsd-amd64), const SYS___SETLOGIN ideal-int
-pkg syscall (netbsd-amd64), const SYS___SIGACTION_SIGTRAMP ideal-int
-pkg syscall (netbsd-amd64), const SYS___SIGTIMEDWAIT ideal-int
-pkg syscall (netbsd-amd64), const SYS___SYSCTL ideal-int
-pkg syscall (netbsd-amd64), const S_ARCH1 ideal-int
-pkg syscall (netbsd-amd64), const S_ARCH2 ideal-int
-pkg syscall (netbsd-amd64), const S_BLKSIZE ideal-int
-pkg syscall (netbsd-amd64), const S_IEXEC ideal-int
-pkg syscall (netbsd-amd64), const S_IFWHT ideal-int
-pkg syscall (netbsd-amd64), const S_IREAD ideal-int
-pkg syscall (netbsd-amd64), const S_IRGRP ideal-int
-pkg syscall (netbsd-amd64), const S_IROTH ideal-int
-pkg syscall (netbsd-amd64), const S_IRWXG ideal-int
-pkg syscall (netbsd-amd64), const S_IRWXO ideal-int
-pkg syscall (netbsd-amd64), const S_IRWXU ideal-int
-pkg syscall (netbsd-amd64), const S_ISTXT ideal-int
-pkg syscall (netbsd-amd64), const S_IWGRP ideal-int
-pkg syscall (netbsd-amd64), const S_IWOTH ideal-int
-pkg syscall (netbsd-amd64), const S_IWRITE ideal-int
-pkg syscall (netbsd-amd64), const S_IXGRP ideal-int
-pkg syscall (netbsd-amd64), const S_IXOTH ideal-int
-pkg syscall (netbsd-amd64), const S_LOGIN_SET ideal-int
-pkg syscall (netbsd-amd64), const SizeofBpfHdr ideal-int
-pkg syscall (netbsd-amd64), const SizeofBpfInsn ideal-int
-pkg syscall (netbsd-amd64), const SizeofBpfProgram ideal-int
-pkg syscall (netbsd-amd64), const SizeofBpfStat ideal-int
-pkg syscall (netbsd-amd64), const SizeofBpfVersion ideal-int
-pkg syscall (netbsd-amd64), const SizeofCmsghdr ideal-int
-pkg syscall (netbsd-amd64), const SizeofICMPv6Filter = 32
-pkg syscall (netbsd-amd64), const SizeofICMPv6Filter ideal-int
-pkg syscall (netbsd-amd64), const SizeofIPMreq ideal-int
-pkg syscall (netbsd-amd64), const SizeofIPv6MTUInfo = 32
-pkg syscall (netbsd-amd64), const SizeofIPv6MTUInfo ideal-int
-pkg syscall (netbsd-amd64), const SizeofIPv6Mreq ideal-int
-pkg syscall (netbsd-amd64), const SizeofIfAnnounceMsghdr ideal-int
-pkg syscall (netbsd-amd64), const SizeofIfData ideal-int
-pkg syscall (netbsd-amd64), const SizeofIfMsghdr ideal-int
-pkg syscall (netbsd-amd64), const SizeofIfaMsghdr ideal-int
-pkg syscall (netbsd-amd64), const SizeofInet6Pktinfo ideal-int
-pkg syscall (netbsd-amd64), const SizeofLinger ideal-int
-pkg syscall (netbsd-amd64), const SizeofMsghdr ideal-int
-pkg syscall (netbsd-amd64), const SizeofRtMetrics ideal-int
-pkg syscall (netbsd-amd64), const SizeofRtMsghdr ideal-int
-pkg syscall (netbsd-amd64), const SizeofSockaddrAny ideal-int
-pkg syscall (netbsd-amd64), const SizeofSockaddrDatalink ideal-int
-pkg syscall (netbsd-amd64), const SizeofSockaddrInet4 ideal-int
-pkg syscall (netbsd-amd64), const SizeofSockaddrInet6 ideal-int
-pkg syscall (netbsd-amd64), const SizeofSockaddrUnix ideal-int
-pkg syscall (netbsd-amd64), const TCIFLUSH ideal-int
-pkg syscall (netbsd-amd64), const TCIOFLUSH ideal-int
-pkg syscall (netbsd-amd64), const TCOFLUSH ideal-int
-pkg syscall (netbsd-amd64), const TCP_CONGCTL ideal-int
-pkg syscall (netbsd-amd64), const TCP_KEEPCNT ideal-int
-pkg syscall (netbsd-amd64), const TCP_KEEPIDLE ideal-int
-pkg syscall (netbsd-amd64), const TCP_KEEPINIT ideal-int
-pkg syscall (netbsd-amd64), const TCP_KEEPINTVL ideal-int
-pkg syscall (netbsd-amd64), const TCP_MAXBURST ideal-int
-pkg syscall (netbsd-amd64), const TCP_MAXSEG ideal-int
-pkg syscall (netbsd-amd64), const TCP_MAXWIN ideal-int
-pkg syscall (netbsd-amd64), const TCP_MAX_WINSHIFT ideal-int
-pkg syscall (netbsd-amd64), const TCP_MD5SIG ideal-int
-pkg syscall (netbsd-amd64), const TCP_MINMSS ideal-int
-pkg syscall (netbsd-amd64), const TCP_MSS ideal-int
-pkg syscall (netbsd-amd64), const TCSAFLUSH ideal-int
-pkg syscall (netbsd-amd64), const TIOCCBRK ideal-int
-pkg syscall (netbsd-amd64), const TIOCCDTR ideal-int
-pkg syscall (netbsd-amd64), const TIOCCONS ideal-int
-pkg syscall (netbsd-amd64), const TIOCDCDTIMESTAMP ideal-int
-pkg syscall (netbsd-amd64), const TIOCDRAIN ideal-int
-pkg syscall (netbsd-amd64), const TIOCEXCL ideal-int
-pkg syscall (netbsd-amd64), const TIOCEXT ideal-int
-pkg syscall (netbsd-amd64), const TIOCFLAG_CDTRCTS ideal-int
-pkg syscall (netbsd-amd64), const TIOCFLAG_CLOCAL ideal-int
-pkg syscall (netbsd-amd64), const TIOCFLAG_CRTSCTS ideal-int
-pkg syscall (netbsd-amd64), const TIOCFLAG_MDMBUF ideal-int
-pkg syscall (netbsd-amd64), const TIOCFLAG_SOFTCAR ideal-int
-pkg syscall (netbsd-amd64), const TIOCFLUSH ideal-int
-pkg syscall (netbsd-amd64), const TIOCGETA ideal-int
-pkg syscall (netbsd-amd64), const TIOCGETD ideal-int
-pkg syscall (netbsd-amd64), const TIOCGFLAGS ideal-int
-pkg syscall (netbsd-amd64), const TIOCGLINED ideal-int
-pkg syscall (netbsd-amd64), const TIOCGPGRP ideal-int
-pkg syscall (netbsd-amd64), const TIOCGQSIZE ideal-int
-pkg syscall (netbsd-amd64), const TIOCGRANTPT ideal-int
-pkg syscall (netbsd-amd64), const TIOCGSID ideal-int
-pkg syscall (netbsd-amd64), const TIOCGSIZE ideal-int
-pkg syscall (netbsd-amd64), const TIOCGWINSZ ideal-int
-pkg syscall (netbsd-amd64), const TIOCMBIC ideal-int
-pkg syscall (netbsd-amd64), const TIOCMBIS ideal-int
-pkg syscall (netbsd-amd64), const TIOCMGET ideal-int
-pkg syscall (netbsd-amd64), const TIOCMSET ideal-int
-pkg syscall (netbsd-amd64), const TIOCM_CAR ideal-int
-pkg syscall (netbsd-amd64), const TIOCM_CD ideal-int
-pkg syscall (netbsd-amd64), const TIOCM_CTS ideal-int
-pkg syscall (netbsd-amd64), const TIOCM_DSR ideal-int
-pkg syscall (netbsd-amd64), const TIOCM_DTR ideal-int
-pkg syscall (netbsd-amd64), const TIOCM_LE ideal-int
-pkg syscall (netbsd-amd64), const TIOCM_RI ideal-int
-pkg syscall (netbsd-amd64), const TIOCM_RNG ideal-int
-pkg syscall (netbsd-amd64), const TIOCM_RTS ideal-int
-pkg syscall (netbsd-amd64), const TIOCM_SR ideal-int
-pkg syscall (netbsd-amd64), const TIOCM_ST ideal-int
-pkg syscall (netbsd-amd64), const TIOCNOTTY ideal-int
-pkg syscall (netbsd-amd64), const TIOCNXCL ideal-int
-pkg syscall (netbsd-amd64), const TIOCOUTQ ideal-int
-pkg syscall (netbsd-amd64), const TIOCPKT ideal-int
-pkg syscall (netbsd-amd64), const TIOCPKT_DATA ideal-int
-pkg syscall (netbsd-amd64), const TIOCPKT_DOSTOP ideal-int
-pkg syscall (netbsd-amd64), const TIOCPKT_FLUSHREAD ideal-int
-pkg syscall (netbsd-amd64), const TIOCPKT_FLUSHWRITE ideal-int
-pkg syscall (netbsd-amd64), const TIOCPKT_IOCTL ideal-int
-pkg syscall (netbsd-amd64), const TIOCPKT_NOSTOP ideal-int
-pkg syscall (netbsd-amd64), const TIOCPKT_START ideal-int
-pkg syscall (netbsd-amd64), const TIOCPKT_STOP ideal-int
-pkg syscall (netbsd-amd64), const TIOCPTMGET ideal-int
-pkg syscall (netbsd-amd64), const TIOCPTSNAME ideal-int
-pkg syscall (netbsd-amd64), const TIOCRCVFRAME ideal-int
-pkg syscall (netbsd-amd64), const TIOCREMOTE ideal-int
-pkg syscall (netbsd-amd64), const TIOCSBRK ideal-int
-pkg syscall (netbsd-amd64), const TIOCSCTTY ideal-int
-pkg syscall (netbsd-amd64), const TIOCSDTR ideal-int
-pkg syscall (netbsd-amd64), const TIOCSETA ideal-int
-pkg syscall (netbsd-amd64), const TIOCSETAF ideal-int
-pkg syscall (netbsd-amd64), const TIOCSETAW ideal-int
-pkg syscall (netbsd-amd64), const TIOCSETD ideal-int
-pkg syscall (netbsd-amd64), const TIOCSFLAGS ideal-int
-pkg syscall (netbsd-amd64), const TIOCSIG ideal-int
-pkg syscall (netbsd-amd64), const TIOCSLINED ideal-int
-pkg syscall (netbsd-amd64), const TIOCSPGRP ideal-int
-pkg syscall (netbsd-amd64), const TIOCSQSIZE ideal-int
-pkg syscall (netbsd-amd64), const TIOCSSIZE ideal-int
-pkg syscall (netbsd-amd64), const TIOCSTART ideal-int
-pkg syscall (netbsd-amd64), const TIOCSTAT ideal-int
-pkg syscall (netbsd-amd64), const TIOCSTI ideal-int
-pkg syscall (netbsd-amd64), const TIOCSTOP ideal-int
-pkg syscall (netbsd-amd64), const TIOCSWINSZ ideal-int
-pkg syscall (netbsd-amd64), const TIOCUCNTL ideal-int
-pkg syscall (netbsd-amd64), const TIOCXMTFRAME ideal-int
-pkg syscall (netbsd-amd64), const TOSTOP ideal-int
-pkg syscall (netbsd-amd64), const VDISCARD ideal-int
-pkg syscall (netbsd-amd64), const VDSUSP ideal-int
-pkg syscall (netbsd-amd64), const VEOF ideal-int
-pkg syscall (netbsd-amd64), const VEOL ideal-int
-pkg syscall (netbsd-amd64), const VEOL2 ideal-int
-pkg syscall (netbsd-amd64), const VERASE ideal-int
-pkg syscall (netbsd-amd64), const VINTR ideal-int
-pkg syscall (netbsd-amd64), const VKILL ideal-int
-pkg syscall (netbsd-amd64), const VLNEXT ideal-int
-pkg syscall (netbsd-amd64), const VMIN ideal-int
-pkg syscall (netbsd-amd64), const VQUIT ideal-int
-pkg syscall (netbsd-amd64), const VREPRINT ideal-int
-pkg syscall (netbsd-amd64), const VSTART ideal-int
-pkg syscall (netbsd-amd64), const VSTATUS ideal-int
-pkg syscall (netbsd-amd64), const VSTOP ideal-int
-pkg syscall (netbsd-amd64), const VSUSP ideal-int
-pkg syscall (netbsd-amd64), const VTIME ideal-int
-pkg syscall (netbsd-amd64), const VWERASE ideal-int
-pkg syscall (netbsd-amd64), const WALL ideal-int
-pkg syscall (netbsd-amd64), const WALLSIG ideal-int
-pkg syscall (netbsd-amd64), const WALTSIG ideal-int
-pkg syscall (netbsd-amd64), const WCLONE ideal-int
-pkg syscall (netbsd-amd64), const WCOREFLAG ideal-int
-pkg syscall (netbsd-amd64), const WNOHANG ideal-int
-pkg syscall (netbsd-amd64), const WNOWAIT ideal-int
-pkg syscall (netbsd-amd64), const WNOZOMBIE ideal-int
-pkg syscall (netbsd-amd64), const WOPTSCHECKED ideal-int
-pkg syscall (netbsd-amd64), const WSTOPPED ideal-int
-pkg syscall (netbsd-amd64), const WUNTRACED ideal-int
-pkg syscall (netbsd-amd64), func Accept(int) (int, Sockaddr, error)
-pkg syscall (netbsd-amd64), func Access(string, uint32) error
-pkg syscall (netbsd-amd64), func Adjtime(*Timeval, *Timeval) error
-pkg syscall (netbsd-amd64), func Bind(int, Sockaddr) error
-pkg syscall (netbsd-amd64), func BpfBuflen(int) (int, error)
-pkg syscall (netbsd-amd64), func BpfDatalink(int) (int, error)
-pkg syscall (netbsd-amd64), func BpfHeadercmpl(int) (int, error)
-pkg syscall (netbsd-amd64), func BpfInterface(int, string) (string, error)
-pkg syscall (netbsd-amd64), func BpfJump(int, int, int, int) *BpfInsn
-pkg syscall (netbsd-amd64), func BpfStats(int) (*BpfStat, error)
-pkg syscall (netbsd-amd64), func BpfStmt(int, int) *BpfInsn
-pkg syscall (netbsd-amd64), func BpfTimeout(int) (*Timeval, error)
-pkg syscall (netbsd-amd64), func CheckBpfVersion(int) error
-pkg syscall (netbsd-amd64), func Chflags(string, int) error
-pkg syscall (netbsd-amd64), func Chroot(string) error
-pkg syscall (netbsd-amd64), func Close(int) error
-pkg syscall (netbsd-amd64), func CloseOnExec(int)
-pkg syscall (netbsd-amd64), func CmsgLen(int) int
-pkg syscall (netbsd-amd64), func CmsgSpace(int) int
-pkg syscall (netbsd-amd64), func Connect(int, Sockaddr) error
-pkg syscall (netbsd-amd64), func Dup(int) (int, error)
-pkg syscall (netbsd-amd64), func Dup2(int, int) error
-pkg syscall (netbsd-amd64), func Fchdir(int) error
-pkg syscall (netbsd-amd64), func Fchflags(int, int) error
-pkg syscall (netbsd-amd64), func Fchmod(int, uint32) error
-pkg syscall (netbsd-amd64), func Fchown(int, int, int) error
-pkg syscall (netbsd-amd64), func Flock(int, int) error
-pkg syscall (netbsd-amd64), func FlushBpf(int) error
-pkg syscall (netbsd-amd64), func ForkExec(string, []string, *ProcAttr) (int, error)
-pkg syscall (netbsd-amd64), func Fpathconf(int, int) (int, error)
-pkg syscall (netbsd-amd64), func Fstat(int, *Stat_t) error
-pkg syscall (netbsd-amd64), func Fsync(int) error
-pkg syscall (netbsd-amd64), func Ftruncate(int, int64) error
-pkg syscall (netbsd-amd64), func Futimes(int, []Timeval) error
-pkg syscall (netbsd-amd64), func Getdirentries(int, []uint8, *uintptr) (int, error)
-pkg syscall (netbsd-amd64), func Getpeername(int) (Sockaddr, error)
-pkg syscall (netbsd-amd64), func Getpgid(int) (int, error)
-pkg syscall (netbsd-amd64), func Getpgrp() int
-pkg syscall (netbsd-amd64), func Getpriority(int, int) (int, error)
-pkg syscall (netbsd-amd64), func Getrlimit(int, *Rlimit) error
-pkg syscall (netbsd-amd64), func Getrusage(int, *Rusage) error
-pkg syscall (netbsd-amd64), func Getsid(int) (int, error)
-pkg syscall (netbsd-amd64), func Getsockname(int) (Sockaddr, error)
-pkg syscall (netbsd-amd64), func GetsockoptByte(int, int, int) (uint8, error)
-pkg syscall (netbsd-amd64), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
-pkg syscall (netbsd-amd64), func GetsockoptIPMreq(int, int, int) (*IPMreq, error)
-pkg syscall (netbsd-amd64), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
-pkg syscall (netbsd-amd64), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error)
-pkg syscall (netbsd-amd64), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error)
-pkg syscall (netbsd-amd64), func GetsockoptInt(int, int, int) (int, error)
-pkg syscall (netbsd-amd64), func Issetugid() bool
-pkg syscall (netbsd-amd64), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error)
-pkg syscall (netbsd-amd64), func Kill(int, Signal) error
-pkg syscall (netbsd-amd64), func Kqueue() (int, error)
-pkg syscall (netbsd-amd64), func Listen(int, int) error
-pkg syscall (netbsd-amd64), func Lstat(string, *Stat_t) error
-pkg syscall (netbsd-amd64), func Mkfifo(string, uint32) error
-pkg syscall (netbsd-amd64), func Mknod(string, uint32, int) error
-pkg syscall (netbsd-amd64), func Mmap(int, int64, int, int, int) ([]uint8, error)
-pkg syscall (netbsd-amd64), func Munmap([]uint8) error
-pkg syscall (netbsd-amd64), func Nanosleep(*Timespec, *Timespec) error
-pkg syscall (netbsd-amd64), func Open(string, int, uint32) (int, error)
-pkg syscall (netbsd-amd64), func ParseDirent([]uint8, int, []string) (int, int, []string)
-pkg syscall (netbsd-amd64), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error)
-pkg syscall (netbsd-amd64), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error)
-pkg syscall (netbsd-amd64), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error)
-pkg syscall (netbsd-amd64), func ParseUnixRights(*SocketControlMessage) ([]int, error)
-pkg syscall (netbsd-amd64), func Pathconf(string, int) (int, error)
-pkg syscall (netbsd-amd64), func Pipe([]int) error
-pkg syscall (netbsd-amd64), func Pread(int, []uint8, int64) (int, error)
-pkg syscall (netbsd-amd64), func Pwrite(int, []uint8, int64) (int, error)
-pkg syscall (netbsd-amd64), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (netbsd-amd64), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (netbsd-amd64), func Read(int, []uint8) (int, error)
-pkg syscall (netbsd-amd64), func ReadDirent(int, []uint8) (int, error)
-pkg syscall (netbsd-amd64), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
-pkg syscall (netbsd-amd64), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
-pkg syscall (netbsd-amd64), func Revoke(string) error
-pkg syscall (netbsd-amd64), func RouteRIB(int, int) ([]uint8, error)
-pkg syscall (netbsd-amd64), func Seek(int, int64, int) (int64, error)
-pkg syscall (netbsd-amd64), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error
-pkg syscall (netbsd-amd64), func Sendfile(int, int, *int64, int) (int, error)
-pkg syscall (netbsd-amd64), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
-pkg syscall (netbsd-amd64), func Sendto(int, []uint8, int, Sockaddr) error
-pkg syscall (netbsd-amd64), func SetBpf(int, []BpfInsn) error
-pkg syscall (netbsd-amd64), func SetBpfBuflen(int, int) (int, error)
-pkg syscall (netbsd-amd64), func SetBpfDatalink(int, int) (int, error)
-pkg syscall (netbsd-amd64), func SetBpfHeadercmpl(int, int) error
-pkg syscall (netbsd-amd64), func SetBpfImmediate(int, int) error
-pkg syscall (netbsd-amd64), func SetBpfInterface(int, string) error
-pkg syscall (netbsd-amd64), func SetBpfPromisc(int, int) error
-pkg syscall (netbsd-amd64), func SetBpfTimeout(int, *Timeval) error
-pkg syscall (netbsd-amd64), func SetKevent(*Kevent_t, int, int, int)
-pkg syscall (netbsd-amd64), func SetNonblock(int, bool) error
-pkg syscall (netbsd-amd64), func Setegid(int) error
-pkg syscall (netbsd-amd64), func Seteuid(int) error
-pkg syscall (netbsd-amd64), func Setgid(int) error
-pkg syscall (netbsd-amd64), func Setgroups([]int) error
-pkg syscall (netbsd-amd64), func Setpgid(int, int) error
-pkg syscall (netbsd-amd64), func Setpriority(int, int, int) error
-pkg syscall (netbsd-amd64), func Setregid(int, int) error
-pkg syscall (netbsd-amd64), func Setreuid(int, int) error
-pkg syscall (netbsd-amd64), func Setrlimit(int, *Rlimit) error
-pkg syscall (netbsd-amd64), func Setsid() (int, error)
-pkg syscall (netbsd-amd64), func SetsockoptByte(int, int, int, uint8) error
-pkg syscall (netbsd-amd64), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
-pkg syscall (netbsd-amd64), func SetsockoptIPMreq(int, int, int, *IPMreq) error
-pkg syscall (netbsd-amd64), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error
-pkg syscall (netbsd-amd64), func SetsockoptInet4Addr(int, int, int, [4]uint8) error
-pkg syscall (netbsd-amd64), func SetsockoptInt(int, int, int, int) error
-pkg syscall (netbsd-amd64), func SetsockoptLinger(int, int, int, *Linger) error
-pkg syscall (netbsd-amd64), func SetsockoptString(int, int, int, string) error
-pkg syscall (netbsd-amd64), func SetsockoptTimeval(int, int, int, *Timeval) error
-pkg syscall (netbsd-amd64), func Settimeofday(*Timeval) error
-pkg syscall (netbsd-amd64), func Setuid(int) error
-pkg syscall (netbsd-amd64), func Shutdown(int, int) error
-pkg syscall (netbsd-amd64), func SlicePtrFromStrings([]string) ([]*uint8, error)
-pkg syscall (netbsd-amd64), func Socket(int, int, int) (int, error)
-pkg syscall (netbsd-amd64), func Socketpair(int, int, int) ([2]int, error)
-pkg syscall (netbsd-amd64), func Stat(string, *Stat_t) error
-pkg syscall (netbsd-amd64), func StringSlicePtr([]string) []*uint8
-pkg syscall (netbsd-amd64), func Sync() error
-pkg syscall (netbsd-amd64), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (netbsd-amd64), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (netbsd-amd64), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (netbsd-amd64), func Sysctl(string) (string, error)
-pkg syscall (netbsd-amd64), func SysctlUint32(string) (uint32, error)
-pkg syscall (netbsd-amd64), func TimevalToNsec(Timeval) int64
-pkg syscall (netbsd-amd64), func Truncate(string, int64) error
-pkg syscall (netbsd-amd64), func Umask(int) int
-pkg syscall (netbsd-amd64), func UnixRights(...int) []uint8
-pkg syscall (netbsd-amd64), func Unmount(string, int) error
-pkg syscall (netbsd-amd64), func Wait4(int, *WaitStatus, int, *Rusage) (int, error)
-pkg syscall (netbsd-amd64), func Write(int, []uint8) (int, error)
-pkg syscall (netbsd-amd64), method (*Cmsghdr) SetLen(int)
-pkg syscall (netbsd-amd64), method (*Iovec) SetLen(int)
-pkg syscall (netbsd-amd64), method (*Msghdr) SetControllen(int)
-pkg syscall (netbsd-amd64), type BpfHdr struct
-pkg syscall (netbsd-amd64), type BpfHdr struct, Caplen uint32
-pkg syscall (netbsd-amd64), type BpfHdr struct, Datalen uint32
-pkg syscall (netbsd-amd64), type BpfHdr struct, Hdrlen uint16
-pkg syscall (netbsd-amd64), type BpfHdr struct, Pad_cgo_0 [6]uint8
-pkg syscall (netbsd-amd64), type BpfHdr struct, Tstamp BpfTimeval
-pkg syscall (netbsd-amd64), type BpfInsn struct
-pkg syscall (netbsd-amd64), type BpfInsn struct, Code uint16
-pkg syscall (netbsd-amd64), type BpfInsn struct, Jf uint8
-pkg syscall (netbsd-amd64), type BpfInsn struct, Jt uint8
-pkg syscall (netbsd-amd64), type BpfInsn struct, K uint32
-pkg syscall (netbsd-amd64), type BpfProgram struct
-pkg syscall (netbsd-amd64), type BpfProgram struct, Insns *BpfInsn
-pkg syscall (netbsd-amd64), type BpfProgram struct, Len uint32
-pkg syscall (netbsd-amd64), type BpfProgram struct, Pad_cgo_0 [4]uint8
-pkg syscall (netbsd-amd64), type BpfStat struct
-pkg syscall (netbsd-amd64), type BpfStat struct, Capt uint64
-pkg syscall (netbsd-amd64), type BpfStat struct, Drop uint64
-pkg syscall (netbsd-amd64), type BpfStat struct, Padding [13]uint64
-pkg syscall (netbsd-amd64), type BpfStat struct, Recv uint64
-pkg syscall (netbsd-amd64), type BpfTimeval struct
-pkg syscall (netbsd-amd64), type BpfTimeval struct, Sec int64
-pkg syscall (netbsd-amd64), type BpfTimeval struct, Usec int64
-pkg syscall (netbsd-amd64), type BpfVersion struct
-pkg syscall (netbsd-amd64), type BpfVersion struct, Major uint16
-pkg syscall (netbsd-amd64), type BpfVersion struct, Minor uint16
-pkg syscall (netbsd-amd64), type Cmsghdr struct
-pkg syscall (netbsd-amd64), type Cmsghdr struct, Len uint32
-pkg syscall (netbsd-amd64), type Cmsghdr struct, Level int32
-pkg syscall (netbsd-amd64), type Cmsghdr struct, Type int32
-pkg syscall (netbsd-amd64), type Credential struct
-pkg syscall (netbsd-amd64), type Credential struct, Gid uint32
-pkg syscall (netbsd-amd64), type Credential struct, Groups []uint32
-pkg syscall (netbsd-amd64), type Credential struct, Uid uint32
-pkg syscall (netbsd-amd64), type Dirent struct
-pkg syscall (netbsd-amd64), type Dirent struct, Fileno uint64
-pkg syscall (netbsd-amd64), type Dirent struct, Name [512]int8
-pkg syscall (netbsd-amd64), type Dirent struct, Namlen uint16
-pkg syscall (netbsd-amd64), type Dirent struct, Pad_cgo_0 [3]uint8
-pkg syscall (netbsd-amd64), type Dirent struct, Reclen uint16
-pkg syscall (netbsd-amd64), type Dirent struct, Type uint8
-pkg syscall (netbsd-amd64), type FdSet struct
-pkg syscall (netbsd-amd64), type FdSet struct, Bits [8]uint32
-pkg syscall (netbsd-amd64), type Flock_t struct
-pkg syscall (netbsd-amd64), type Flock_t struct, Len int64
-pkg syscall (netbsd-amd64), type Flock_t struct, Pid int32
-pkg syscall (netbsd-amd64), type Flock_t struct, Start int64
-pkg syscall (netbsd-amd64), type Flock_t struct, Type int16
-pkg syscall (netbsd-amd64), type Flock_t struct, Whence int16
-pkg syscall (netbsd-amd64), type Fsid struct
-pkg syscall (netbsd-amd64), type Fsid struct, X__fsid_val [2]int32
-pkg syscall (netbsd-amd64), type ICMPv6Filter struct
-pkg syscall (netbsd-amd64), type ICMPv6Filter struct, Filt [8]uint32
-pkg syscall (netbsd-amd64), type IPv6MTUInfo struct
-pkg syscall (netbsd-amd64), type IPv6MTUInfo struct, Addr RawSockaddrInet6
-pkg syscall (netbsd-amd64), type IPv6MTUInfo struct, Mtu uint32
-pkg syscall (netbsd-amd64), type IfAnnounceMsghdr struct
-pkg syscall (netbsd-amd64), type IfAnnounceMsghdr struct, Index uint16
-pkg syscall (netbsd-amd64), type IfAnnounceMsghdr struct, Msglen uint16
-pkg syscall (netbsd-amd64), type IfAnnounceMsghdr struct, Name [16]int8
-pkg syscall (netbsd-amd64), type IfAnnounceMsghdr struct, Type uint8
-pkg syscall (netbsd-amd64), type IfAnnounceMsghdr struct, Version uint8
-pkg syscall (netbsd-amd64), type IfAnnounceMsghdr struct, What uint16
-pkg syscall (netbsd-amd64), type IfData struct
-pkg syscall (netbsd-amd64), type IfData struct, Addrlen uint8
-pkg syscall (netbsd-amd64), type IfData struct, Baudrate uint64
-pkg syscall (netbsd-amd64), type IfData struct, Collisions uint64
-pkg syscall (netbsd-amd64), type IfData struct, Hdrlen uint8
-pkg syscall (netbsd-amd64), type IfData struct, Ibytes uint64
-pkg syscall (netbsd-amd64), type IfData struct, Ierrors uint64
-pkg syscall (netbsd-amd64), type IfData struct, Imcasts uint64
-pkg syscall (netbsd-amd64), type IfData struct, Ipackets uint64
-pkg syscall (netbsd-amd64), type IfData struct, Iqdrops uint64
-pkg syscall (netbsd-amd64), type IfData struct, Lastchange Timespec
-pkg syscall (netbsd-amd64), type IfData struct, Link_state int32
-pkg syscall (netbsd-amd64), type IfData struct, Metric uint64
-pkg syscall (netbsd-amd64), type IfData struct, Mtu uint64
-pkg syscall (netbsd-amd64), type IfData struct, Noproto uint64
-pkg syscall (netbsd-amd64), type IfData struct, Obytes uint64
-pkg syscall (netbsd-amd64), type IfData struct, Oerrors uint64
-pkg syscall (netbsd-amd64), type IfData struct, Omcasts uint64
-pkg syscall (netbsd-amd64), type IfData struct, Opackets uint64
-pkg syscall (netbsd-amd64), type IfData struct, Pad_cgo_0 [1]uint8
-pkg syscall (netbsd-amd64), type IfData struct, Type uint8
-pkg syscall (netbsd-amd64), type IfMsghdr struct
-pkg syscall (netbsd-amd64), type IfMsghdr struct, Addrs int32
-pkg syscall (netbsd-amd64), type IfMsghdr struct, Data IfData
-pkg syscall (netbsd-amd64), type IfMsghdr struct, Flags int32
-pkg syscall (netbsd-amd64), type IfMsghdr struct, Index uint16
-pkg syscall (netbsd-amd64), type IfMsghdr struct, Msglen uint16
-pkg syscall (netbsd-amd64), type IfMsghdr struct, Pad_cgo_0 [2]uint8
-pkg syscall (netbsd-amd64), type IfMsghdr struct, Type uint8
-pkg syscall (netbsd-amd64), type IfMsghdr struct, Version uint8
-pkg syscall (netbsd-amd64), type IfaMsghdr struct
-pkg syscall (netbsd-amd64), type IfaMsghdr struct, Addrs int32
-pkg syscall (netbsd-amd64), type IfaMsghdr struct, Flags int32
-pkg syscall (netbsd-amd64), type IfaMsghdr struct, Index uint16
-pkg syscall (netbsd-amd64), type IfaMsghdr struct, Metric int32
-pkg syscall (netbsd-amd64), type IfaMsghdr struct, Msglen uint16
-pkg syscall (netbsd-amd64), type IfaMsghdr struct, Pad_cgo_0 [6]uint8
-pkg syscall (netbsd-amd64), type IfaMsghdr struct, Type uint8
-pkg syscall (netbsd-amd64), type IfaMsghdr struct, Version uint8
-pkg syscall (netbsd-amd64), type Inet6Pktinfo struct
-pkg syscall (netbsd-amd64), type Inet6Pktinfo struct, Addr [16]uint8
-pkg syscall (netbsd-amd64), type Inet6Pktinfo struct, Ifindex uint32
-pkg syscall (netbsd-amd64), type InterfaceAddrMessage struct
-pkg syscall (netbsd-amd64), type InterfaceAddrMessage struct, Data []uint8
-pkg syscall (netbsd-amd64), type InterfaceAddrMessage struct, Header IfaMsghdr
-pkg syscall (netbsd-amd64), type InterfaceAnnounceMessage struct
-pkg syscall (netbsd-amd64), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr
-pkg syscall (netbsd-amd64), type InterfaceMessage struct
-pkg syscall (netbsd-amd64), type InterfaceMessage struct, Data []uint8
-pkg syscall (netbsd-amd64), type InterfaceMessage struct, Header IfMsghdr
-pkg syscall (netbsd-amd64), type Iovec struct
-pkg syscall (netbsd-amd64), type Iovec struct, Base *uint8
-pkg syscall (netbsd-amd64), type Iovec struct, Len uint64
-pkg syscall (netbsd-amd64), type Kevent_t struct
-pkg syscall (netbsd-amd64), type Kevent_t struct, Data int64
-pkg syscall (netbsd-amd64), type Kevent_t struct, Fflags uint32
-pkg syscall (netbsd-amd64), type Kevent_t struct, Filter uint32
-pkg syscall (netbsd-amd64), type Kevent_t struct, Flags uint32
-pkg syscall (netbsd-amd64), type Kevent_t struct, Ident uint64
-pkg syscall (netbsd-amd64), type Kevent_t struct, Pad_cgo_0 [4]uint8
-pkg syscall (netbsd-amd64), type Kevent_t struct, Udata int64
-pkg syscall (netbsd-amd64), type Mclpool [0]uint8
-pkg syscall (netbsd-amd64), type Msghdr struct
-pkg syscall (netbsd-amd64), type Msghdr struct, Control *uint8
-pkg syscall (netbsd-amd64), type Msghdr struct, Controllen uint32
-pkg syscall (netbsd-amd64), type Msghdr struct, Flags int32
-pkg syscall (netbsd-amd64), type Msghdr struct, Iov *Iovec
-pkg syscall (netbsd-amd64), type Msghdr struct, Iovlen int32
-pkg syscall (netbsd-amd64), type Msghdr struct, Name *uint8
-pkg syscall (netbsd-amd64), type Msghdr struct, Namelen uint32
-pkg syscall (netbsd-amd64), type Msghdr struct, Pad_cgo_0 [4]uint8
-pkg syscall (netbsd-amd64), type Msghdr struct, Pad_cgo_1 [4]uint8
-pkg syscall (netbsd-amd64), type RawSockaddr struct, Data [14]int8
-pkg syscall (netbsd-amd64), type RawSockaddr struct, Family uint8
-pkg syscall (netbsd-amd64), type RawSockaddr struct, Len uint8
-pkg syscall (netbsd-amd64), type RawSockaddrAny struct, Pad [92]int8
-pkg syscall (netbsd-amd64), type RawSockaddrDatalink struct
-pkg syscall (netbsd-amd64), type RawSockaddrDatalink struct, Alen uint8
-pkg syscall (netbsd-amd64), type RawSockaddrDatalink struct, Data [12]int8
-pkg syscall (netbsd-amd64), type RawSockaddrDatalink struct, Family uint8
-pkg syscall (netbsd-amd64), type RawSockaddrDatalink struct, Index uint16
-pkg syscall (netbsd-amd64), type RawSockaddrDatalink struct, Len uint8
-pkg syscall (netbsd-amd64), type RawSockaddrDatalink struct, Nlen uint8
-pkg syscall (netbsd-amd64), type RawSockaddrDatalink struct, Slen uint8
-pkg syscall (netbsd-amd64), type RawSockaddrDatalink struct, Type uint8
-pkg syscall (netbsd-amd64), type RawSockaddrInet4 struct, Family uint8
-pkg syscall (netbsd-amd64), type RawSockaddrInet4 struct, Len uint8
-pkg syscall (netbsd-amd64), type RawSockaddrInet4 struct, Zero [8]int8
-pkg syscall (netbsd-amd64), type RawSockaddrInet6 struct, Family uint8
-pkg syscall (netbsd-amd64), type RawSockaddrInet6 struct, Len uint8
-pkg syscall (netbsd-amd64), type RawSockaddrUnix struct
-pkg syscall (netbsd-amd64), type RawSockaddrUnix struct, Family uint8
-pkg syscall (netbsd-amd64), type RawSockaddrUnix struct, Len uint8
-pkg syscall (netbsd-amd64), type RawSockaddrUnix struct, Path [104]int8
-pkg syscall (netbsd-amd64), type Rlimit struct
-pkg syscall (netbsd-amd64), type Rlimit struct, Cur uint64
-pkg syscall (netbsd-amd64), type Rlimit struct, Max uint64
-pkg syscall (netbsd-amd64), type RouteMessage struct
-pkg syscall (netbsd-amd64), type RouteMessage struct, Data []uint8
-pkg syscall (netbsd-amd64), type RouteMessage struct, Header RtMsghdr
-pkg syscall (netbsd-amd64), type RoutingMessage interface, unexported methods
-pkg syscall (netbsd-amd64), type RtMetrics struct
-pkg syscall (netbsd-amd64), type RtMetrics struct, Expire int64
-pkg syscall (netbsd-amd64), type RtMetrics struct, Hopcount uint64
-pkg syscall (netbsd-amd64), type RtMetrics struct, Locks uint64
-pkg syscall (netbsd-amd64), type RtMetrics struct, Mtu uint64
-pkg syscall (netbsd-amd64), type RtMetrics struct, Pksent int64
-pkg syscall (netbsd-amd64), type RtMetrics struct, Recvpipe uint64
-pkg syscall (netbsd-amd64), type RtMetrics struct, Rtt uint64
-pkg syscall (netbsd-amd64), type RtMetrics struct, Rttvar uint64
-pkg syscall (netbsd-amd64), type RtMetrics struct, Sendpipe uint64
-pkg syscall (netbsd-amd64), type RtMetrics struct, Ssthresh uint64
-pkg syscall (netbsd-amd64), type RtMsghdr struct
-pkg syscall (netbsd-amd64), type RtMsghdr struct, Addrs int32
-pkg syscall (netbsd-amd64), type RtMsghdr struct, Errno int32
-pkg syscall (netbsd-amd64), type RtMsghdr struct, Flags int32
-pkg syscall (netbsd-amd64), type RtMsghdr struct, Index uint16
-pkg syscall (netbsd-amd64), type RtMsghdr struct, Inits int32
-pkg syscall (netbsd-amd64), type RtMsghdr struct, Msglen uint16
-pkg syscall (netbsd-amd64), type RtMsghdr struct, Pad_cgo_0 [2]uint8
-pkg syscall (netbsd-amd64), type RtMsghdr struct, Pad_cgo_1 [4]uint8
-pkg syscall (netbsd-amd64), type RtMsghdr struct, Pid int32
-pkg syscall (netbsd-amd64), type RtMsghdr struct, Rmx RtMetrics
-pkg syscall (netbsd-amd64), type RtMsghdr struct, Seq int32
-pkg syscall (netbsd-amd64), type RtMsghdr struct, Type uint8
-pkg syscall (netbsd-amd64), type RtMsghdr struct, Use int32
-pkg syscall (netbsd-amd64), type RtMsghdr struct, Version uint8
-pkg syscall (netbsd-amd64), type Rusage struct, Idrss int64
-pkg syscall (netbsd-amd64), type Rusage struct, Inblock int64
-pkg syscall (netbsd-amd64), type Rusage struct, Isrss int64
-pkg syscall (netbsd-amd64), type Rusage struct, Ixrss int64
-pkg syscall (netbsd-amd64), type Rusage struct, Majflt int64
-pkg syscall (netbsd-amd64), type Rusage struct, Maxrss int64
-pkg syscall (netbsd-amd64), type Rusage struct, Minflt int64
-pkg syscall (netbsd-amd64), type Rusage struct, Msgrcv int64
-pkg syscall (netbsd-amd64), type Rusage struct, Msgsnd int64
-pkg syscall (netbsd-amd64), type Rusage struct, Nivcsw int64
-pkg syscall (netbsd-amd64), type Rusage struct, Nsignals int64
-pkg syscall (netbsd-amd64), type Rusage struct, Nswap int64
-pkg syscall (netbsd-amd64), type Rusage struct, Nvcsw int64
-pkg syscall (netbsd-amd64), type Rusage struct, Oublock int64
-pkg syscall (netbsd-amd64), type Rusage struct, Stime Timeval
-pkg syscall (netbsd-amd64), type Rusage struct, Utime Timeval
-pkg syscall (netbsd-amd64), type SockaddrDatalink struct
-pkg syscall (netbsd-amd64), type SockaddrDatalink struct, Alen uint8
-pkg syscall (netbsd-amd64), type SockaddrDatalink struct, Data [12]int8
-pkg syscall (netbsd-amd64), type SockaddrDatalink struct, Family uint8
-pkg syscall (netbsd-amd64), type SockaddrDatalink struct, Index uint16
-pkg syscall (netbsd-amd64), type SockaddrDatalink struct, Len uint8
-pkg syscall (netbsd-amd64), type SockaddrDatalink struct, Nlen uint8
-pkg syscall (netbsd-amd64), type SockaddrDatalink struct, Slen uint8
-pkg syscall (netbsd-amd64), type SockaddrDatalink struct, Type uint8
-pkg syscall (netbsd-amd64), type SocketControlMessage struct
-pkg syscall (netbsd-amd64), type SocketControlMessage struct, Data []uint8
-pkg syscall (netbsd-amd64), type SocketControlMessage struct, Header Cmsghdr
-pkg syscall (netbsd-amd64), type Stat_t struct
-pkg syscall (netbsd-amd64), type Stat_t struct, Atimespec Timespec
-pkg syscall (netbsd-amd64), type Stat_t struct, Birthtimespec Timespec
-pkg syscall (netbsd-amd64), type Stat_t struct, Blksize uint32
-pkg syscall (netbsd-amd64), type Stat_t struct, Blocks int64
-pkg syscall (netbsd-amd64), type Stat_t struct, Ctimespec Timespec
-pkg syscall (netbsd-amd64), type Stat_t struct, Dev uint64
-pkg syscall (netbsd-amd64), type Stat_t struct, Flags uint32
-pkg syscall (netbsd-amd64), type Stat_t struct, Gen uint32
-pkg syscall (netbsd-amd64), type Stat_t struct, Gid uint32
-pkg syscall (netbsd-amd64), type Stat_t struct, Ino uint64
-pkg syscall (netbsd-amd64), type Stat_t struct, Mode uint32
-pkg syscall (netbsd-amd64), type Stat_t struct, Mtimespec Timespec
-pkg syscall (netbsd-amd64), type Stat_t struct, Nlink uint32
-pkg syscall (netbsd-amd64), type Stat_t struct, Pad_cgo_0 [4]uint8
-pkg syscall (netbsd-amd64), type Stat_t struct, Pad_cgo_1 [4]uint8
-pkg syscall (netbsd-amd64), type Stat_t struct, Pad_cgo_2 [4]uint8
-pkg syscall (netbsd-amd64), type Stat_t struct, Rdev uint64
-pkg syscall (netbsd-amd64), type Stat_t struct, Size int64
-pkg syscall (netbsd-amd64), type Stat_t struct, Spare [2]uint32
-pkg syscall (netbsd-amd64), type Stat_t struct, Uid uint32
-pkg syscall (netbsd-amd64), type Statfs_t [0]uint8
-pkg syscall (netbsd-amd64), type SysProcAttr struct, Chroot string
-pkg syscall (netbsd-amd64), type SysProcAttr struct, Credential *Credential
-pkg syscall (netbsd-amd64), type SysProcAttr struct, Noctty bool
-pkg syscall (netbsd-amd64), type SysProcAttr struct, Ptrace bool
-pkg syscall (netbsd-amd64), type SysProcAttr struct, Setctty bool
-pkg syscall (netbsd-amd64), type SysProcAttr struct, Setpgid bool
-pkg syscall (netbsd-amd64), type SysProcAttr struct, Setsid bool
-pkg syscall (netbsd-amd64), type Sysctlnode struct
-pkg syscall (netbsd-amd64), type Sysctlnode struct, Flags uint32
-pkg syscall (netbsd-amd64), type Sysctlnode struct, Name [32]int8
-pkg syscall (netbsd-amd64), type Sysctlnode struct, Num int32
-pkg syscall (netbsd-amd64), type Sysctlnode struct, Un [16]uint8
-pkg syscall (netbsd-amd64), type Sysctlnode struct, Ver uint32
-pkg syscall (netbsd-amd64), type Sysctlnode struct, X__rsvd uint32
-pkg syscall (netbsd-amd64), type Sysctlnode struct, X_sysctl_desc [8]uint8
-pkg syscall (netbsd-amd64), type Sysctlnode struct, X_sysctl_func [8]uint8
-pkg syscall (netbsd-amd64), type Sysctlnode struct, X_sysctl_parent [8]uint8
-pkg syscall (netbsd-amd64), type Sysctlnode struct, X_sysctl_size [8]uint8
-pkg syscall (netbsd-amd64), type Timespec struct, Nsec int64
-pkg syscall (netbsd-amd64), type Timespec struct, Sec int64
-pkg syscall (netbsd-amd64), type Timeval struct, Pad_cgo_0 [4]uint8
-pkg syscall (netbsd-amd64), type Timeval struct, Sec int64
-pkg syscall (netbsd-amd64), type Timeval struct, Usec int32
-pkg syscall (netbsd-amd64), type WaitStatus uint32
-pkg syscall (netbsd-amd64), var Stderr int
-pkg syscall (netbsd-amd64), var Stdin int
-pkg syscall (netbsd-amd64), var Stdout int
-pkg syscall (netbsd-amd64-cgo), const AF_APPLETALK ideal-int
-pkg syscall (netbsd-amd64-cgo), const AF_ARP ideal-int
-pkg syscall (netbsd-amd64-cgo), const AF_BLUETOOTH ideal-int
-pkg syscall (netbsd-amd64-cgo), const AF_CCITT ideal-int
-pkg syscall (netbsd-amd64-cgo), const AF_CHAOS ideal-int
-pkg syscall (netbsd-amd64-cgo), const AF_CNT ideal-int
-pkg syscall (netbsd-amd64-cgo), const AF_COIP ideal-int
-pkg syscall (netbsd-amd64-cgo), const AF_DATAKIT ideal-int
-pkg syscall (netbsd-amd64-cgo), const AF_DECnet ideal-int
-pkg syscall (netbsd-amd64-cgo), const AF_DLI ideal-int
-pkg syscall (netbsd-amd64-cgo), const AF_E164 ideal-int
-pkg syscall (netbsd-amd64-cgo), const AF_ECMA ideal-int
-pkg syscall (netbsd-amd64-cgo), const AF_HYLINK ideal-int
-pkg syscall (netbsd-amd64-cgo), const AF_IEEE80211 ideal-int
-pkg syscall (netbsd-amd64-cgo), const AF_IMPLINK ideal-int
-pkg syscall (netbsd-amd64-cgo), const AF_IPX ideal-int
-pkg syscall (netbsd-amd64-cgo), const AF_ISDN ideal-int
-pkg syscall (netbsd-amd64-cgo), const AF_ISO ideal-int
-pkg syscall (netbsd-amd64-cgo), const AF_LAT ideal-int
-pkg syscall (netbsd-amd64-cgo), const AF_LINK ideal-int
-pkg syscall (netbsd-amd64-cgo), const AF_LOCAL ideal-int
-pkg syscall (netbsd-amd64-cgo), const AF_MAX ideal-int
-pkg syscall (netbsd-amd64-cgo), const AF_MPLS ideal-int
-pkg syscall (netbsd-amd64-cgo), const AF_NATM ideal-int
-pkg syscall (netbsd-amd64-cgo), const AF_NS ideal-int
-pkg syscall (netbsd-amd64-cgo), const AF_OROUTE ideal-int
-pkg syscall (netbsd-amd64-cgo), const AF_OSI ideal-int
-pkg syscall (netbsd-amd64-cgo), const AF_PUP ideal-int
-pkg syscall (netbsd-amd64-cgo), const AF_ROUTE ideal-int
-pkg syscall (netbsd-amd64-cgo), const AF_SNA ideal-int
-pkg syscall (netbsd-amd64-cgo), const ARPHRD_ARCNET ideal-int
-pkg syscall (netbsd-amd64-cgo), const ARPHRD_ETHER ideal-int
-pkg syscall (netbsd-amd64-cgo), const ARPHRD_FRELAY ideal-int
-pkg syscall (netbsd-amd64-cgo), const ARPHRD_IEEE1394 ideal-int
-pkg syscall (netbsd-amd64-cgo), const ARPHRD_IEEE802 ideal-int
-pkg syscall (netbsd-amd64-cgo), const ARPHRD_STRIP ideal-int
-pkg syscall (netbsd-amd64-cgo), const B0 ideal-int
-pkg syscall (netbsd-amd64-cgo), const B110 ideal-int
-pkg syscall (netbsd-amd64-cgo), const B115200 ideal-int
-pkg syscall (netbsd-amd64-cgo), const B1200 ideal-int
-pkg syscall (netbsd-amd64-cgo), const B134 ideal-int
-pkg syscall (netbsd-amd64-cgo), const B14400 ideal-int
-pkg syscall (netbsd-amd64-cgo), const B150 ideal-int
-pkg syscall (netbsd-amd64-cgo), const B1800 ideal-int
-pkg syscall (netbsd-amd64-cgo), const B19200 ideal-int
-pkg syscall (netbsd-amd64-cgo), const B200 ideal-int
-pkg syscall (netbsd-amd64-cgo), const B230400 ideal-int
-pkg syscall (netbsd-amd64-cgo), const B2400 ideal-int
-pkg syscall (netbsd-amd64-cgo), const B28800 ideal-int
-pkg syscall (netbsd-amd64-cgo), const B300 ideal-int
-pkg syscall (netbsd-amd64-cgo), const B38400 ideal-int
-pkg syscall (netbsd-amd64-cgo), const B460800 ideal-int
-pkg syscall (netbsd-amd64-cgo), const B4800 ideal-int
-pkg syscall (netbsd-amd64-cgo), const B50 ideal-int
-pkg syscall (netbsd-amd64-cgo), const B57600 ideal-int
-pkg syscall (netbsd-amd64-cgo), const B600 ideal-int
-pkg syscall (netbsd-amd64-cgo), const B7200 ideal-int
-pkg syscall (netbsd-amd64-cgo), const B75 ideal-int
-pkg syscall (netbsd-amd64-cgo), const B76800 ideal-int
-pkg syscall (netbsd-amd64-cgo), const B921600 ideal-int
-pkg syscall (netbsd-amd64-cgo), const B9600 ideal-int
-pkg syscall (netbsd-amd64-cgo), const BIOCFEEDBACK ideal-int
-pkg syscall (netbsd-amd64-cgo), const BIOCFLUSH ideal-int
-pkg syscall (netbsd-amd64-cgo), const BIOCGBLEN ideal-int
-pkg syscall (netbsd-amd64-cgo), const BIOCGDLT ideal-int
-pkg syscall (netbsd-amd64-cgo), const BIOCGDLTLIST ideal-int
-pkg syscall (netbsd-amd64-cgo), const BIOCGETIF ideal-int
-pkg syscall (netbsd-amd64-cgo), const BIOCGFEEDBACK ideal-int
-pkg syscall (netbsd-amd64-cgo), const BIOCGHDRCMPLT ideal-int
-pkg syscall (netbsd-amd64-cgo), const BIOCGRTIMEOUT ideal-int
-pkg syscall (netbsd-amd64-cgo), const BIOCGSEESENT ideal-int
-pkg syscall (netbsd-amd64-cgo), const BIOCGSTATS ideal-int
-pkg syscall (netbsd-amd64-cgo), const BIOCGSTATSOLD ideal-int
-pkg syscall (netbsd-amd64-cgo), const BIOCIMMEDIATE ideal-int
-pkg syscall (netbsd-amd64-cgo), const BIOCPROMISC ideal-int
-pkg syscall (netbsd-amd64-cgo), const BIOCSBLEN ideal-int
-pkg syscall (netbsd-amd64-cgo), const BIOCSDLT ideal-int
-pkg syscall (netbsd-amd64-cgo), const BIOCSETF ideal-int
-pkg syscall (netbsd-amd64-cgo), const BIOCSETIF ideal-int
-pkg syscall (netbsd-amd64-cgo), const BIOCSFEEDBACK ideal-int
-pkg syscall (netbsd-amd64-cgo), const BIOCSHDRCMPLT ideal-int
-pkg syscall (netbsd-amd64-cgo), const BIOCSRTIMEOUT ideal-int
-pkg syscall (netbsd-amd64-cgo), const BIOCSSEESENT ideal-int
-pkg syscall (netbsd-amd64-cgo), const BIOCSTCPF ideal-int
-pkg syscall (netbsd-amd64-cgo), const BIOCSUDPF ideal-int
-pkg syscall (netbsd-amd64-cgo), const BIOCVERSION ideal-int
-pkg syscall (netbsd-amd64-cgo), const BPF_A ideal-int
-pkg syscall (netbsd-amd64-cgo), const BPF_ABS ideal-int
-pkg syscall (netbsd-amd64-cgo), const BPF_ADD ideal-int
-pkg syscall (netbsd-amd64-cgo), const BPF_ALIGNMENT ideal-int
-pkg syscall (netbsd-amd64-cgo), const BPF_ALIGNMENT32 ideal-int
-pkg syscall (netbsd-amd64-cgo), const BPF_ALU ideal-int
-pkg syscall (netbsd-amd64-cgo), const BPF_AND ideal-int
-pkg syscall (netbsd-amd64-cgo), const BPF_B ideal-int
-pkg syscall (netbsd-amd64-cgo), const BPF_DFLTBUFSIZE ideal-int
-pkg syscall (netbsd-amd64-cgo), const BPF_DIV ideal-int
-pkg syscall (netbsd-amd64-cgo), const BPF_H ideal-int
-pkg syscall (netbsd-amd64-cgo), const BPF_IMM ideal-int
-pkg syscall (netbsd-amd64-cgo), const BPF_IND ideal-int
-pkg syscall (netbsd-amd64-cgo), const BPF_JA ideal-int
-pkg syscall (netbsd-amd64-cgo), const BPF_JEQ ideal-int
-pkg syscall (netbsd-amd64-cgo), const BPF_JGE ideal-int
-pkg syscall (netbsd-amd64-cgo), const BPF_JGT ideal-int
-pkg syscall (netbsd-amd64-cgo), const BPF_JMP ideal-int
-pkg syscall (netbsd-amd64-cgo), const BPF_JSET ideal-int
-pkg syscall (netbsd-amd64-cgo), const BPF_K ideal-int
-pkg syscall (netbsd-amd64-cgo), const BPF_LD ideal-int
-pkg syscall (netbsd-amd64-cgo), const BPF_LDX ideal-int
-pkg syscall (netbsd-amd64-cgo), const BPF_LEN ideal-int
-pkg syscall (netbsd-amd64-cgo), const BPF_LSH ideal-int
-pkg syscall (netbsd-amd64-cgo), const BPF_MAJOR_VERSION ideal-int
-pkg syscall (netbsd-amd64-cgo), const BPF_MAXBUFSIZE ideal-int
-pkg syscall (netbsd-amd64-cgo), const BPF_MAXINSNS ideal-int
-pkg syscall (netbsd-amd64-cgo), const BPF_MEM ideal-int
-pkg syscall (netbsd-amd64-cgo), const BPF_MEMWORDS ideal-int
-pkg syscall (netbsd-amd64-cgo), const BPF_MINBUFSIZE ideal-int
-pkg syscall (netbsd-amd64-cgo), const BPF_MINOR_VERSION ideal-int
-pkg syscall (netbsd-amd64-cgo), const BPF_MISC ideal-int
-pkg syscall (netbsd-amd64-cgo), const BPF_MSH ideal-int
-pkg syscall (netbsd-amd64-cgo), const BPF_MUL ideal-int
-pkg syscall (netbsd-amd64-cgo), const BPF_NEG ideal-int
-pkg syscall (netbsd-amd64-cgo), const BPF_OR ideal-int
-pkg syscall (netbsd-amd64-cgo), const BPF_RELEASE ideal-int
-pkg syscall (netbsd-amd64-cgo), const BPF_RET ideal-int
-pkg syscall (netbsd-amd64-cgo), const BPF_RSH ideal-int
-pkg syscall (netbsd-amd64-cgo), const BPF_ST ideal-int
-pkg syscall (netbsd-amd64-cgo), const BPF_STX ideal-int
-pkg syscall (netbsd-amd64-cgo), const BPF_SUB ideal-int
-pkg syscall (netbsd-amd64-cgo), const BPF_TAX ideal-int
-pkg syscall (netbsd-amd64-cgo), const BPF_TXA ideal-int
-pkg syscall (netbsd-amd64-cgo), const BPF_W ideal-int
-pkg syscall (netbsd-amd64-cgo), const BPF_X ideal-int
-pkg syscall (netbsd-amd64-cgo), const BRKINT ideal-int
-pkg syscall (netbsd-amd64-cgo), const CFLUSH ideal-int
-pkg syscall (netbsd-amd64-cgo), const CLOCAL ideal-int
-pkg syscall (netbsd-amd64-cgo), const CREAD ideal-int
-pkg syscall (netbsd-amd64-cgo), const CS5 ideal-int
-pkg syscall (netbsd-amd64-cgo), const CS6 ideal-int
-pkg syscall (netbsd-amd64-cgo), const CS7 ideal-int
-pkg syscall (netbsd-amd64-cgo), const CS8 ideal-int
-pkg syscall (netbsd-amd64-cgo), const CSIZE ideal-int
-pkg syscall (netbsd-amd64-cgo), const CSTART ideal-int
-pkg syscall (netbsd-amd64-cgo), const CSTATUS ideal-int
-pkg syscall (netbsd-amd64-cgo), const CSTOP ideal-int
-pkg syscall (netbsd-amd64-cgo), const CSTOPB ideal-int
-pkg syscall (netbsd-amd64-cgo), const CSUSP ideal-int
-pkg syscall (netbsd-amd64-cgo), const CTL_MAXNAME ideal-int
-pkg syscall (netbsd-amd64-cgo), const CTL_NET ideal-int
-pkg syscall (netbsd-amd64-cgo), const CTL_QUERY ideal-int
-pkg syscall (netbsd-amd64-cgo), const DIOCBSFLUSH ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_A429 ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_A653_ICM ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_AIRONET_HEADER ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_AOS ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_ARCNET ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_ARCNET_LINUX ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_ATM_CLIP ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_ATM_RFC1483 ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_AURORA ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_AX25 ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_AX25_KISS ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_BACNET_MS_TP ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_BLUETOOTH_HCI_H4 ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_CAN20B ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_CAN_SOCKETCAN ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_CHAOS ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_CISCO_IOS ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_C_HDLC ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_C_HDLC_WITH_DIR ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_DECT ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_DOCSIS ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_ECONET ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_EN10MB ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_EN3MB ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_ENC ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_ERF ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_ERF_ETH ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_ERF_POS ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_FC_2 ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_FC_2_WITH_FRAME_DELIMS ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_FDDI ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_FLEXRAY ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_FRELAY ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_FRELAY_WITH_DIR ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_GCOM_SERIAL ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_GCOM_T1E1 ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_GPF_F ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_GPF_T ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_GPRS_LLC ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_GSMTAP_ABIS ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_GSMTAP_UM ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_HDLC ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_HHDLC ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_HIPPI ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_IBM_SN ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_IBM_SP ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_IEEE802 ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_IEEE802_11 ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_IEEE802_11_RADIO ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_IEEE802_11_RADIO_AVS ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_IEEE802_15_4 ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_IEEE802_15_4_LINUX ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_IEEE802_15_4_NONASK_PHY ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_IEEE802_16_MAC_CPS ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_IEEE802_16_MAC_CPS_RADIO ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_IPMB ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_IPMB_LINUX ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_IPNET ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_IPV4 ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_IPV6 ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_IP_OVER_FC ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_ATM1 ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_ATM2 ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_CHDLC ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_ES ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_ETHER ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_FRELAY ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_GGSN ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_ISM ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_MFR ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_MLFR ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_MLPPP ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_MONITOR ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_PIC_PEER ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_PPP ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_PPPOE ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_PPPOE_ATM ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_SERVICES ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_ST ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_VP ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_LAPB_WITH_DIR ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_LAPD ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_LIN ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_LINUX_EVDEV ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_LINUX_IRDA ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_LINUX_LAPD ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_LINUX_SLL ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_LOOP ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_LTALK ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_MFR ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_MOST ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_MPLS ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_MTP2 ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_MTP2_WITH_PHDR ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_MTP3 ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_NULL ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_PCI_EXP ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_PFLOG ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_PFSYNC ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_PPI ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_PPP ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_PPP_BSDOS ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_PPP_ETHER ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_PPP_PPPD ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_PPP_SERIAL ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_PPP_WITH_DIR ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_PRISM_HEADER ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_PRONET ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_RAIF1 ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_RAW ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_RAWAF_MASK ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_RIO ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_SCCP ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_SITA ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_SLIP ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_SLIP_BSDOS ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_SUNATM ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_SYMANTEC_FIREWALL ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_TZSP ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_USB ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_USB_LINUX ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_USB_LINUX_MMAPPED ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_WIHART ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_X2E_SERIAL ideal-int
-pkg syscall (netbsd-amd64-cgo), const DLT_X2E_XORAYA ideal-int
-pkg syscall (netbsd-amd64-cgo), const DT_BLK ideal-int
-pkg syscall (netbsd-amd64-cgo), const DT_CHR ideal-int
-pkg syscall (netbsd-amd64-cgo), const DT_DIR ideal-int
-pkg syscall (netbsd-amd64-cgo), const DT_FIFO ideal-int
-pkg syscall (netbsd-amd64-cgo), const DT_LNK ideal-int
-pkg syscall (netbsd-amd64-cgo), const DT_REG ideal-int
-pkg syscall (netbsd-amd64-cgo), const DT_SOCK ideal-int
-pkg syscall (netbsd-amd64-cgo), const DT_UNKNOWN ideal-int
-pkg syscall (netbsd-amd64-cgo), const DT_WHT ideal-int
-pkg syscall (netbsd-amd64-cgo), const EAUTH Errno
-pkg syscall (netbsd-amd64-cgo), const EBADMSG Errno
-pkg syscall (netbsd-amd64-cgo), const EBADRPC Errno
-pkg syscall (netbsd-amd64-cgo), const ECHO ideal-int
-pkg syscall (netbsd-amd64-cgo), const ECHOCTL ideal-int
-pkg syscall (netbsd-amd64-cgo), const ECHOE ideal-int
-pkg syscall (netbsd-amd64-cgo), const ECHOK ideal-int
-pkg syscall (netbsd-amd64-cgo), const ECHOKE ideal-int
-pkg syscall (netbsd-amd64-cgo), const ECHONL ideal-int
-pkg syscall (netbsd-amd64-cgo), const ECHOPRT ideal-int
-pkg syscall (netbsd-amd64-cgo), const EFTYPE Errno
-pkg syscall (netbsd-amd64-cgo), const ELAST Errno
-pkg syscall (netbsd-amd64-cgo), const EMULTIHOP Errno
-pkg syscall (netbsd-amd64-cgo), const EMUL_LINUX ideal-int
-pkg syscall (netbsd-amd64-cgo), const EMUL_LINUX32 ideal-int
-pkg syscall (netbsd-amd64-cgo), const EMUL_MAXID ideal-int
-pkg syscall (netbsd-amd64-cgo), const ENEEDAUTH Errno
-pkg syscall (netbsd-amd64-cgo), const ENOATTR Errno
-pkg syscall (netbsd-amd64-cgo), const ENODATA Errno
-pkg syscall (netbsd-amd64-cgo), const ENOLINK Errno
-pkg syscall (netbsd-amd64-cgo), const ENOSR Errno
-pkg syscall (netbsd-amd64-cgo), const ENOSTR Errno
-pkg syscall (netbsd-amd64-cgo), const EPROCLIM Errno
-pkg syscall (netbsd-amd64-cgo), const EPROCUNAVAIL Errno
-pkg syscall (netbsd-amd64-cgo), const EPROGMISMATCH Errno
-pkg syscall (netbsd-amd64-cgo), const EPROGUNAVAIL Errno
-pkg syscall (netbsd-amd64-cgo), const EPROTO Errno
-pkg syscall (netbsd-amd64-cgo), const ERPCMISMATCH Errno
-pkg syscall (netbsd-amd64-cgo), const ETHERCAP_JUMBO_MTU ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERCAP_VLAN_HWTAGGING ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERCAP_VLAN_MTU ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERMIN ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERMTU ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERMTU_JUMBO ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_8023 ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_AARP ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_ACCTON ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_AEONIC ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_ALPHA ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_AMBER ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_AMOEBA ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_APOLLO ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_APOLLODOMAIN ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_APPLETALK ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_APPLITEK ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_ARGONAUT ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_ARP ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_AT ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_ATALK ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_ATOMIC ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_ATT ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_ATTSTANFORD ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_AUTOPHON ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_AXIS ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_BCLOOP ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_BOFL ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_CABLETRON ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_CHAOS ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_COMDESIGN ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_COMPUGRAPHIC ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_COUNTERPOINT ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_CRONUS ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_CRONUSVLN ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DCA ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DDE ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DEBNI ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DECAM ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DECCUST ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DECDIAG ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DECDNS ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DECDTS ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DECEXPER ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DECLAST ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DECLTM ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DECMUMPS ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DECNETBIOS ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DELTACON ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DIDDLE ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DLOG1 ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DLOG2 ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DN ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DOGFIGHT ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DSMD ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_ECMA ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_ENCRYPT ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_ES ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_EXCELAN ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_EXPERDATA ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_FLIP ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_FLOWCONTROL ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_FRARP ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_GENDYN ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_HAYES ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_HIPPI_FP ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_HITACHI ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_HP ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_IEEEPUP ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_IEEEPUPAT ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_IMLBL ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_IMLBLDIAG ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_IP ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_IPAS ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_IPV6 ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_IPX ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_IPXNEW ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_KALPANA ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_LANBRIDGE ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_LANPROBE ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_LAT ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_LBACK ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_LITTLE ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_LOGICRAFT ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_LOOPBACK ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_MATRA ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_MAX ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_MERIT ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_MICP ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_MOPDL ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_MOPRC ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_MOTOROLA ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_MPLS ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_MPLS_MCAST ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_MUMPS ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPCC ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPCLAIM ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPCLREQ ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPCLRSP ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPCREQ ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPCRSP ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPDG ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPDGB ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPDLTE ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPRAR ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPRAS ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPRST ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPSCD ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPVCD ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBS ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NCD ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NESTAR ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NETBEUI ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NOVELL ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NS ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NSAT ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NSCOMPAT ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NTRAILER ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_OS9 ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_OS9NET ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_PACER ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_PAE ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_PCS ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_PLANNING ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_PPP ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_PPPOE ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_PPPOEDISC ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_PRIMENTS ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_PUP ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_PUPAT ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_RACAL ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_RATIONAL ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_RAWFR ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_RCL ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_RDP ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_RETIX ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_REVARP ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SCA ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SECTRA ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SECUREDATA ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SGITW ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SG_BOUNCE ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SG_DIAG ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SG_NETGAMES ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SG_RESV ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SIMNET ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SLOWPROTOCOLS ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SNA ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SNMP ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SONIX ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SPIDER ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SPRITE ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_STP ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_TALARIS ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_TALARISMC ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_TCPCOMP ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_TCPSM ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_TEC ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_TIGAN ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_TRAIL ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_TRANSETHER ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_TYMSHARE ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_UBBST ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_UBDEBUG ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_UBDIAGLOOP ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_UBDL ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_UBNIU ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_UBNMC ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VALID ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VARIAN ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VAXELN ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VEECO ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VEXP ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VGLAB ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VINES ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VINESECHO ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VINESLOOP ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VITAL ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VLAN ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VLTLMAN ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VPROD ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VURESERVED ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_WATERLOO ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_WELLFLEET ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_X25 ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_X75 ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_XNSSM ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_XTP ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHER_ADDR_LEN ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHER_CRC_LEN ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHER_CRC_POLY_BE ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHER_CRC_POLY_LE ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHER_HDR_LEN ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHER_MAX_LEN ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHER_MAX_LEN_JUMBO ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHER_MIN_LEN ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHER_PPPOE_ENCAP_LEN ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHER_TYPE_LEN ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETHER_VLAN_ENCAP_LEN ideal-int
-pkg syscall (netbsd-amd64-cgo), const ETIME Errno
-pkg syscall (netbsd-amd64-cgo), const EVFILT_AIO ideal-int
-pkg syscall (netbsd-amd64-cgo), const EVFILT_PROC ideal-int
-pkg syscall (netbsd-amd64-cgo), const EVFILT_READ ideal-int
-pkg syscall (netbsd-amd64-cgo), const EVFILT_SIGNAL ideal-int
-pkg syscall (netbsd-amd64-cgo), const EVFILT_SYSCOUNT ideal-int
-pkg syscall (netbsd-amd64-cgo), const EVFILT_TIMER ideal-int
-pkg syscall (netbsd-amd64-cgo), const EVFILT_VNODE ideal-int
-pkg syscall (netbsd-amd64-cgo), const EVFILT_WRITE ideal-int
-pkg syscall (netbsd-amd64-cgo), const EV_ADD ideal-int
-pkg syscall (netbsd-amd64-cgo), const EV_CLEAR ideal-int
-pkg syscall (netbsd-amd64-cgo), const EV_DELETE ideal-int
-pkg syscall (netbsd-amd64-cgo), const EV_DISABLE ideal-int
-pkg syscall (netbsd-amd64-cgo), const EV_ENABLE ideal-int
-pkg syscall (netbsd-amd64-cgo), const EV_EOF ideal-int
-pkg syscall (netbsd-amd64-cgo), const EV_ERROR ideal-int
-pkg syscall (netbsd-amd64-cgo), const EV_FLAG1 ideal-int
-pkg syscall (netbsd-amd64-cgo), const EV_ONESHOT ideal-int
-pkg syscall (netbsd-amd64-cgo), const EV_SYSFLAGS ideal-int
-pkg syscall (netbsd-amd64-cgo), const EXTA ideal-int
-pkg syscall (netbsd-amd64-cgo), const EXTB ideal-int
-pkg syscall (netbsd-amd64-cgo), const EXTPROC ideal-int
-pkg syscall (netbsd-amd64-cgo), const FD_CLOEXEC ideal-int
-pkg syscall (netbsd-amd64-cgo), const FD_SETSIZE ideal-int
-pkg syscall (netbsd-amd64-cgo), const FLUSHO ideal-int
-pkg syscall (netbsd-amd64-cgo), const F_CLOSEM ideal-int
-pkg syscall (netbsd-amd64-cgo), const F_DUPFD ideal-int
-pkg syscall (netbsd-amd64-cgo), const F_DUPFD_CLOEXEC ideal-int
-pkg syscall (netbsd-amd64-cgo), const F_FSCTL ideal-int
-pkg syscall (netbsd-amd64-cgo), const F_FSDIRMASK ideal-int
-pkg syscall (netbsd-amd64-cgo), const F_FSIN ideal-int
-pkg syscall (netbsd-amd64-cgo), const F_FSINOUT ideal-int
-pkg syscall (netbsd-amd64-cgo), const F_FSOUT ideal-int
-pkg syscall (netbsd-amd64-cgo), const F_FSPRIV ideal-int
-pkg syscall (netbsd-amd64-cgo), const F_FSVOID ideal-int
-pkg syscall (netbsd-amd64-cgo), const F_GETFD ideal-int
-pkg syscall (netbsd-amd64-cgo), const F_GETFL ideal-int
-pkg syscall (netbsd-amd64-cgo), const F_GETLK ideal-int
-pkg syscall (netbsd-amd64-cgo), const F_GETNOSIGPIPE ideal-int
-pkg syscall (netbsd-amd64-cgo), const F_GETOWN ideal-int
-pkg syscall (netbsd-amd64-cgo), const F_MAXFD ideal-int
-pkg syscall (netbsd-amd64-cgo), const F_OK ideal-int
-pkg syscall (netbsd-amd64-cgo), const F_PARAM_MASK ideal-int
-pkg syscall (netbsd-amd64-cgo), const F_PARAM_MAX ideal-int
-pkg syscall (netbsd-amd64-cgo), const F_RDLCK ideal-int
-pkg syscall (netbsd-amd64-cgo), const F_SETFD ideal-int
-pkg syscall (netbsd-amd64-cgo), const F_SETFL ideal-int
-pkg syscall (netbsd-amd64-cgo), const F_SETLK ideal-int
-pkg syscall (netbsd-amd64-cgo), const F_SETLKW ideal-int
-pkg syscall (netbsd-amd64-cgo), const F_SETNOSIGPIPE ideal-int
-pkg syscall (netbsd-amd64-cgo), const F_SETOWN ideal-int
-pkg syscall (netbsd-amd64-cgo), const F_UNLCK ideal-int
-pkg syscall (netbsd-amd64-cgo), const F_WRLCK ideal-int
-pkg syscall (netbsd-amd64-cgo), const HUPCL ideal-int
-pkg syscall (netbsd-amd64-cgo), const ICANON ideal-int
-pkg syscall (netbsd-amd64-cgo), const ICMP6_FILTER = 18
-pkg syscall (netbsd-amd64-cgo), const ICMP6_FILTER ideal-int
-pkg syscall (netbsd-amd64-cgo), const ICRNL ideal-int
-pkg syscall (netbsd-amd64-cgo), const IEXTEN ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFAN_ARRIVAL ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFAN_DEPARTURE ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFA_ROUTE ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFF_ALLMULTI ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFF_CANTCHANGE ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFF_DEBUG ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFF_LINK0 ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFF_LINK1 ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFF_LINK2 ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFF_NOARP ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFF_NOTRAILERS ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFF_OACTIVE ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFF_POINTOPOINT ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFF_PROMISC ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFF_RUNNING ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFF_SIMPLEX ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFNAMSIZ ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_1822 ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_A12MPPSWITCH ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_AAL2 ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_AAL5 ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_ADSL ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_AFLANE8023 ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_AFLANE8025 ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_ARAP ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_ARCNET ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_ARCNETPLUS ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_ASYNC ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_ATM ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_ATMDXI ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_ATMFUNI ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_ATMIMA ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_ATMLOGICAL ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_ATMRADIO ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_ATMSUBINTERFACE ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_ATMVCIENDPT ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_ATMVIRTUAL ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_BGPPOLICYACCOUNTING ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_BRIDGE ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_BSC ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_CARP ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_CCTEMUL ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_CEPT ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_CES ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_CHANNEL ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_CNR ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_COFFEE ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_COMPOSITELINK ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_DCN ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_DIGITALPOWERLINE ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_DLSW ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_DOCSCABLEDOWNSTREAM ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_DOCSCABLEMACLAYER ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_DOCSCABLEUPSTREAM ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_DOCSCABLEUPSTREAMCHANNEL ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_DS0 ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_DS0BUNDLE ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_DS1FDL ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_DS3 ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_DTM ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_DVBASILN ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_DVBASIOUT ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_DVBRCCDOWNSTREAM ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_DVBRCCMACLAYER ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_DVBRCCUPSTREAM ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_ECONET ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_EON ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_EPLRS ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_ESCON ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_ETHER ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_FAITH ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_FAST ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_FASTETHER ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_FASTETHERFX ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_FDDI ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_FIBRECHANNEL ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_FRAMERELAYINTERCONNECT ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_FRAMERELAYMPI ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_FRDLCIENDPT ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_FRELAY ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_FRELAYDCE ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_FRF16MFRBUNDLE ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_FRFORWARD ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_G703AT2MB ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_G703AT64K ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_GIF ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_GIGABITETHERNET ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_GR303IDT ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_GR303RDT ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_H323GATEKEEPER ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_H323PROXY ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_HDH1822 ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_HDLC ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_HDSL2 ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_HIPERLAN2 ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_HIPPI ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_HIPPIINTERFACE ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_HOSTPAD ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_HSSI ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_HY ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_IBM370PARCHAN ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_IDSL ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_IEEE1394 ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_IEEE80211 ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_IEEE80212 ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_IEEE8023ADLAG ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_IFGSN ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_IMT ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_INFINIBAND ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_INTERLEAVE ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_IP ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_IPFORWARD ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_IPOVERATM ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_IPOVERCDLC ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_IPOVERCLAW ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_IPSWITCH ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_ISDN ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_ISDNBASIC ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_ISDNPRIMARY ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_ISDNS ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_ISDNU ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_ISO88022LLC ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_ISO88023 ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_ISO88024 ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_ISO88025 ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_ISO88025CRFPINT ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_ISO88025DTR ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_ISO88025FIBER ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_ISO88026 ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_ISUP ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_L2VLAN ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_L3IPVLAN ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_L3IPXVLAN ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_LAPB ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_LAPD ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_LAPF ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_LINEGROUP ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_LOCALTALK ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_LOOP ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_MEDIAMAILOVERIP ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_MFSIGLINK ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_MIOX25 ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_MODEM ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_MPC ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_MPLS ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_MPLSTUNNEL ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_MSDSL ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_MVL ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_MYRINET ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_NFAS ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_NSIP ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_OPTICALCHANNEL ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_OPTICALTRANSPORT ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_OTHER ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_P10 ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_P80 ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_PARA ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_PFLOG ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_PFSYNC ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_PLC ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_PON155 ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_PON622 ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_POS ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_PPP ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_PPPMULTILINKBUNDLE ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_PROPATM ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_PROPBWAP2MP ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_PROPCNLS ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_PROPMUX ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_PROPVIRTUAL ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_PROPWIRELESSP2P ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_PTPSERIAL ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_PVC ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_Q2931 ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_QLLC ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_RADIOMAC ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_RADSL ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_REACHDSL ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_RFC1483 ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_RS232 ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_RSRB ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_SDLC ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_SDSL ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_SHDSL ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_SIP ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_SIPSIG ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_SIPTG ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_SLIP ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_SMDSDXI ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_SMDSICIP ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_SONET ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_SONETOVERHEADCHANNEL ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_SONETPATH ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_SONETVT ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_SRP ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_SS7SIGLINK ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_STACKTOSTACK ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_STARLAN ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_STF ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_T1 ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_TDLC ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_TELINK ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_TERMPAD ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_TR008 ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_TRANSPHDLC ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_TUNNEL ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_ULTRA ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_USB ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_V11 ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_V35 ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_V36 ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_V37 ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_VDSL ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_VIRTUALIPADDRESS ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_VIRTUALTG ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_VOICEDID ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_VOICEEM ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_VOICEEMFGD ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_VOICEENCAP ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_VOICEFGDEANA ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_VOICEFXO ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_VOICEFXS ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_VOICEOVERATM ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_VOICEOVERCABLE ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_VOICEOVERFRAMERELAY ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_VOICEOVERIP ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_X213 ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_X25 ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_X25DDN ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_X25HUNTGROUP ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_X25MLP ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_X25PLE ideal-int
-pkg syscall (netbsd-amd64-cgo), const IFT_XETHER ideal-int
-pkg syscall (netbsd-amd64-cgo), const IGNBRK ideal-int
-pkg syscall (netbsd-amd64-cgo), const IGNCR ideal-int
-pkg syscall (netbsd-amd64-cgo), const IGNPAR ideal-int
-pkg syscall (netbsd-amd64-cgo), const IMAXBEL ideal-int
-pkg syscall (netbsd-amd64-cgo), const INLCR ideal-int
-pkg syscall (netbsd-amd64-cgo), const INPCK ideal-int
-pkg syscall (netbsd-amd64-cgo), const IN_CLASSA_HOST ideal-int
-pkg syscall (netbsd-amd64-cgo), const IN_CLASSA_MAX ideal-int
-pkg syscall (netbsd-amd64-cgo), const IN_CLASSA_NET ideal-int
-pkg syscall (netbsd-amd64-cgo), const IN_CLASSA_NSHIFT ideal-int
-pkg syscall (netbsd-amd64-cgo), const IN_CLASSB_HOST ideal-int
-pkg syscall (netbsd-amd64-cgo), const IN_CLASSB_MAX ideal-int
-pkg syscall (netbsd-amd64-cgo), const IN_CLASSB_NET ideal-int
-pkg syscall (netbsd-amd64-cgo), const IN_CLASSB_NSHIFT ideal-int
-pkg syscall (netbsd-amd64-cgo), const IN_CLASSC_HOST ideal-int
-pkg syscall (netbsd-amd64-cgo), const IN_CLASSC_NET ideal-int
-pkg syscall (netbsd-amd64-cgo), const IN_CLASSC_NSHIFT ideal-int
-pkg syscall (netbsd-amd64-cgo), const IN_CLASSD_HOST ideal-int
-pkg syscall (netbsd-amd64-cgo), const IN_CLASSD_NET ideal-int
-pkg syscall (netbsd-amd64-cgo), const IN_CLASSD_NSHIFT ideal-int
-pkg syscall (netbsd-amd64-cgo), const IN_LOOPBACKNET ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPPROTO_AH ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPPROTO_CARP ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPPROTO_DONE ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPPROTO_DSTOPTS ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPPROTO_EGP ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPPROTO_ENCAP ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPPROTO_EON ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPPROTO_ESP ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPPROTO_ETHERIP ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPPROTO_FRAGMENT ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPPROTO_GGP ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPPROTO_GRE ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPPROTO_HOPOPTS ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPPROTO_ICMP ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPPROTO_ICMPV6 ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPPROTO_IDP ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPPROTO_IGMP ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPPROTO_IPCOMP ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPPROTO_IPIP ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPPROTO_IPV4 ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPPROTO_IPV6_ICMP ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPPROTO_MAX ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPPROTO_MAXID ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPPROTO_MOBILE ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPPROTO_NONE ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPPROTO_PFSYNC ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPPROTO_PIM ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPPROTO_PUP ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPPROTO_RAW ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPPROTO_ROUTING ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPPROTO_RSVP ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPPROTO_TP ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPPROTO_VRRP ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPV6_CHECKSUM ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPV6_DEFHLIM ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPV6_DONTFRAG ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPV6_DSTOPTS ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPV6_FAITH ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPV6_FLOWINFO_MASK ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPV6_FLOWLABEL_MASK ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPV6_FRAGTTL ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPV6_HLIMDEC ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPV6_HOPLIMIT ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPV6_HOPOPTS ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPV6_IPSEC_POLICY ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPV6_MAXHLIM ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPV6_MAXPACKET ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPV6_MMTU ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPV6_NEXTHOP ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPV6_PATHMTU ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPV6_PKTINFO ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPV6_PORTRANGE ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPV6_PORTRANGE_DEFAULT ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPV6_PORTRANGE_HIGH ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPV6_PORTRANGE_LOW ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPV6_RECVDSTOPTS ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPV6_RECVHOPLIMIT ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPV6_RECVHOPOPTS ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPV6_RECVPATHMTU ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPV6_RECVPKTINFO ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPV6_RECVRTHDR ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPV6_RECVTCLASS ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPV6_RTHDR ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPV6_RTHDRDSTOPTS ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPV6_RTHDR_LOOSE ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPV6_RTHDR_STRICT ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPV6_RTHDR_TYPE_0 ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPV6_SOCKOPT_RESERVED1 ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPV6_TCLASS ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPV6_USE_MIN_MTU ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPV6_VERSION ideal-int
-pkg syscall (netbsd-amd64-cgo), const IPV6_VERSION_MASK ideal-int
-pkg syscall (netbsd-amd64-cgo), const IP_DEFAULT_MULTICAST_LOOP ideal-int
-pkg syscall (netbsd-amd64-cgo), const IP_DEFAULT_MULTICAST_TTL ideal-int
-pkg syscall (netbsd-amd64-cgo), const IP_DF ideal-int
-pkg syscall (netbsd-amd64-cgo), const IP_EF ideal-int
-pkg syscall (netbsd-amd64-cgo), const IP_ERRORMTU ideal-int
-pkg syscall (netbsd-amd64-cgo), const IP_HDRINCL ideal-int
-pkg syscall (netbsd-amd64-cgo), const IP_IPSEC_POLICY ideal-int
-pkg syscall (netbsd-amd64-cgo), const IP_MAXPACKET ideal-int
-pkg syscall (netbsd-amd64-cgo), const IP_MAX_MEMBERSHIPS ideal-int
-pkg syscall (netbsd-amd64-cgo), const IP_MF ideal-int
-pkg syscall (netbsd-amd64-cgo), const IP_MINFRAGSIZE ideal-int
-pkg syscall (netbsd-amd64-cgo), const IP_MINTTL ideal-int
-pkg syscall (netbsd-amd64-cgo), const IP_MSS ideal-int
-pkg syscall (netbsd-amd64-cgo), const IP_OFFMASK ideal-int
-pkg syscall (netbsd-amd64-cgo), const IP_OPTIONS ideal-int
-pkg syscall (netbsd-amd64-cgo), const IP_PORTRANGE ideal-int
-pkg syscall (netbsd-amd64-cgo), const IP_PORTRANGE_DEFAULT ideal-int
-pkg syscall (netbsd-amd64-cgo), const IP_PORTRANGE_HIGH ideal-int
-pkg syscall (netbsd-amd64-cgo), const IP_PORTRANGE_LOW ideal-int
-pkg syscall (netbsd-amd64-cgo), const IP_RECVDSTADDR ideal-int
-pkg syscall (netbsd-amd64-cgo), const IP_RECVIF ideal-int
-pkg syscall (netbsd-amd64-cgo), const IP_RECVOPTS ideal-int
-pkg syscall (netbsd-amd64-cgo), const IP_RECVRETOPTS ideal-int
-pkg syscall (netbsd-amd64-cgo), const IP_RECVTTL ideal-int
-pkg syscall (netbsd-amd64-cgo), const IP_RETOPTS ideal-int
-pkg syscall (netbsd-amd64-cgo), const IP_RF ideal-int
-pkg syscall (netbsd-amd64-cgo), const ISIG ideal-int
-pkg syscall (netbsd-amd64-cgo), const ISTRIP ideal-int
-pkg syscall (netbsd-amd64-cgo), const IXANY ideal-int
-pkg syscall (netbsd-amd64-cgo), const IXOFF ideal-int
-pkg syscall (netbsd-amd64-cgo), const IXON ideal-int
-pkg syscall (netbsd-amd64-cgo), const LOCK_EX ideal-int
-pkg syscall (netbsd-amd64-cgo), const LOCK_NB ideal-int
-pkg syscall (netbsd-amd64-cgo), const LOCK_SH ideal-int
-pkg syscall (netbsd-amd64-cgo), const LOCK_UN ideal-int
-pkg syscall (netbsd-amd64-cgo), const MSG_BCAST ideal-int
-pkg syscall (netbsd-amd64-cgo), const MSG_CMSG_CLOEXEC ideal-int
-pkg syscall (netbsd-amd64-cgo), const MSG_CONTROLMBUF ideal-int
-pkg syscall (netbsd-amd64-cgo), const MSG_CTRUNC ideal-int
-pkg syscall (netbsd-amd64-cgo), const MSG_DONTROUTE ideal-int
-pkg syscall (netbsd-amd64-cgo), const MSG_DONTWAIT ideal-int
-pkg syscall (netbsd-amd64-cgo), const MSG_EOR ideal-int
-pkg syscall (netbsd-amd64-cgo), const MSG_IOVUSRSPACE ideal-int
-pkg syscall (netbsd-amd64-cgo), const MSG_LENUSRSPACE ideal-int
-pkg syscall (netbsd-amd64-cgo), const MSG_MCAST ideal-int
-pkg syscall (netbsd-amd64-cgo), const MSG_NAMEMBUF ideal-int
-pkg syscall (netbsd-amd64-cgo), const MSG_NBIO ideal-int
-pkg syscall (netbsd-amd64-cgo), const MSG_NOSIGNAL ideal-int
-pkg syscall (netbsd-amd64-cgo), const MSG_OOB ideal-int
-pkg syscall (netbsd-amd64-cgo), const MSG_PEEK ideal-int
-pkg syscall (netbsd-amd64-cgo), const MSG_TRUNC ideal-int
-pkg syscall (netbsd-amd64-cgo), const MSG_USERFLAGS ideal-int
-pkg syscall (netbsd-amd64-cgo), const MSG_WAITALL ideal-int
-pkg syscall (netbsd-amd64-cgo), const NAME_MAX ideal-int
-pkg syscall (netbsd-amd64-cgo), const NET_RT_DUMP ideal-int
-pkg syscall (netbsd-amd64-cgo), const NET_RT_FLAGS ideal-int
-pkg syscall (netbsd-amd64-cgo), const NET_RT_IFLIST ideal-int
-pkg syscall (netbsd-amd64-cgo), const NET_RT_MAXID ideal-int
-pkg syscall (netbsd-amd64-cgo), const NET_RT_OIFLIST ideal-int
-pkg syscall (netbsd-amd64-cgo), const NET_RT_OOIFLIST ideal-int
-pkg syscall (netbsd-amd64-cgo), const NOFLSH ideal-int
-pkg syscall (netbsd-amd64-cgo), const NOTE_ATTRIB ideal-int
-pkg syscall (netbsd-amd64-cgo), const NOTE_CHILD ideal-int
-pkg syscall (netbsd-amd64-cgo), const NOTE_DELETE ideal-int
-pkg syscall (netbsd-amd64-cgo), const NOTE_EXEC ideal-int
-pkg syscall (netbsd-amd64-cgo), const NOTE_EXIT ideal-int
-pkg syscall (netbsd-amd64-cgo), const NOTE_EXTEND ideal-int
-pkg syscall (netbsd-amd64-cgo), const NOTE_FORK ideal-int
-pkg syscall (netbsd-amd64-cgo), const NOTE_LINK ideal-int
-pkg syscall (netbsd-amd64-cgo), const NOTE_LOWAT ideal-int
-pkg syscall (netbsd-amd64-cgo), const NOTE_PCTRLMASK ideal-int
-pkg syscall (netbsd-amd64-cgo), const NOTE_PDATAMASK ideal-int
-pkg syscall (netbsd-amd64-cgo), const NOTE_RENAME ideal-int
-pkg syscall (netbsd-amd64-cgo), const NOTE_REVOKE ideal-int
-pkg syscall (netbsd-amd64-cgo), const NOTE_TRACK ideal-int
-pkg syscall (netbsd-amd64-cgo), const NOTE_TRACKERR ideal-int
-pkg syscall (netbsd-amd64-cgo), const NOTE_WRITE ideal-int
-pkg syscall (netbsd-amd64-cgo), const OCRNL ideal-int
-pkg syscall (netbsd-amd64-cgo), const OFIOGETBMAP ideal-int
-pkg syscall (netbsd-amd64-cgo), const ONLCR ideal-int
-pkg syscall (netbsd-amd64-cgo), const ONLRET ideal-int
-pkg syscall (netbsd-amd64-cgo), const ONOCR ideal-int
-pkg syscall (netbsd-amd64-cgo), const ONOEOT ideal-int
-pkg syscall (netbsd-amd64-cgo), const OPOST ideal-int
-pkg syscall (netbsd-amd64-cgo), const O_ACCMODE ideal-int
-pkg syscall (netbsd-amd64-cgo), const O_ALT_IO ideal-int
-pkg syscall (netbsd-amd64-cgo), const O_DIRECT ideal-int
-pkg syscall (netbsd-amd64-cgo), const O_DIRECTORY ideal-int
-pkg syscall (netbsd-amd64-cgo), const O_DSYNC ideal-int
-pkg syscall (netbsd-amd64-cgo), const O_EXLOCK ideal-int
-pkg syscall (netbsd-amd64-cgo), const O_FSYNC ideal-int
-pkg syscall (netbsd-amd64-cgo), const O_NDELAY ideal-int
-pkg syscall (netbsd-amd64-cgo), const O_NOFOLLOW ideal-int
-pkg syscall (netbsd-amd64-cgo), const O_NOSIGPIPE ideal-int
-pkg syscall (netbsd-amd64-cgo), const O_RSYNC ideal-int
-pkg syscall (netbsd-amd64-cgo), const O_SHLOCK ideal-int
-pkg syscall (netbsd-amd64-cgo), const PARENB ideal-int
-pkg syscall (netbsd-amd64-cgo), const PARMRK ideal-int
-pkg syscall (netbsd-amd64-cgo), const PARODD ideal-int
-pkg syscall (netbsd-amd64-cgo), const PENDIN ideal-int
-pkg syscall (netbsd-amd64-cgo), const PRIO_PGRP = 1
-pkg syscall (netbsd-amd64-cgo), const PRIO_PGRP ideal-int
-pkg syscall (netbsd-amd64-cgo), const PRIO_PROCESS = 0
-pkg syscall (netbsd-amd64-cgo), const PRIO_PROCESS ideal-int
-pkg syscall (netbsd-amd64-cgo), const PRIO_USER = 2
-pkg syscall (netbsd-amd64-cgo), const PRIO_USER ideal-int
-pkg syscall (netbsd-amd64-cgo), const PRI_IOFLUSH ideal-int
-pkg syscall (netbsd-amd64-cgo), const PTRACE_CONT ideal-int
-pkg syscall (netbsd-amd64-cgo), const PTRACE_KILL ideal-int
-pkg syscall (netbsd-amd64-cgo), const PTRACE_TRACEME ideal-int
-pkg syscall (netbsd-amd64-cgo), const RLIMIT_AS ideal-int
-pkg syscall (netbsd-amd64-cgo), const RLIMIT_CORE ideal-int
-pkg syscall (netbsd-amd64-cgo), const RLIMIT_CPU ideal-int
-pkg syscall (netbsd-amd64-cgo), const RLIMIT_DATA ideal-int
-pkg syscall (netbsd-amd64-cgo), const RLIMIT_FSIZE ideal-int
-pkg syscall (netbsd-amd64-cgo), const RLIMIT_NOFILE ideal-int
-pkg syscall (netbsd-amd64-cgo), const RLIMIT_STACK ideal-int
-pkg syscall (netbsd-amd64-cgo), const RLIM_INFINITY ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTAX_AUTHOR ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTAX_BRD ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTAX_DST ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTAX_GATEWAY ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTAX_GENMASK ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTAX_IFA ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTAX_IFP ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTAX_MAX ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTAX_NETMASK ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTAX_TAG ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTA_AUTHOR ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTA_BRD ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTA_DST ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTA_GATEWAY ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTA_GENMASK ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTA_IFA ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTA_IFP ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTA_NETMASK ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTA_TAG ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTF_ANNOUNCE ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTF_BLACKHOLE ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTF_CLONED ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTF_CLONING ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTF_DONE ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTF_DYNAMIC ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTF_GATEWAY ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTF_HOST ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTF_LLINFO ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTF_MASK ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTF_MODIFIED ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTF_PROTO1 ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTF_PROTO2 ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTF_REJECT ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTF_SRC ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTF_STATIC ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTF_UP ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTF_XRESOLVE ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTM_ADD ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTM_CHANGE ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTM_CHGADDR ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTM_DELADDR ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTM_DELETE ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTM_GET ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTM_IEEE80211 ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTM_IFANNOUNCE ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTM_IFINFO ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTM_LLINFO_UPD ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTM_LOCK ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTM_LOSING ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTM_MISS ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTM_NEWADDR ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTM_OIFINFO ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTM_OLDADD ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTM_OLDDEL ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTM_OOIFINFO ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTM_REDIRECT ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTM_RESOLVE ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTM_RTTUNIT ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTM_SETGATE ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTM_VERSION ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTV_EXPIRE ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTV_HOPCOUNT ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTV_MTU ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTV_RPIPE ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTV_RTT ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTV_RTTVAR ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTV_SPIPE ideal-int
-pkg syscall (netbsd-amd64-cgo), const RTV_SSTHRESH ideal-int
-pkg syscall (netbsd-amd64-cgo), const RUSAGE_CHILDREN ideal-int
-pkg syscall (netbsd-amd64-cgo), const RUSAGE_SELF ideal-int
-pkg syscall (netbsd-amd64-cgo), const SCM_CREDS ideal-int
-pkg syscall (netbsd-amd64-cgo), const SCM_RIGHTS ideal-int
-pkg syscall (netbsd-amd64-cgo), const SCM_TIMESTAMP ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIGCHLD Signal
-pkg syscall (netbsd-amd64-cgo), const SIGCONT Signal
-pkg syscall (netbsd-amd64-cgo), const SIGEMT Signal
-pkg syscall (netbsd-amd64-cgo), const SIGINFO Signal
-pkg syscall (netbsd-amd64-cgo), const SIGIO Signal
-pkg syscall (netbsd-amd64-cgo), const SIGIOT Signal
-pkg syscall (netbsd-amd64-cgo), const SIGPROF Signal
-pkg syscall (netbsd-amd64-cgo), const SIGPWR Signal
-pkg syscall (netbsd-amd64-cgo), const SIGSTOP Signal
-pkg syscall (netbsd-amd64-cgo), const SIGSYS Signal
-pkg syscall (netbsd-amd64-cgo), const SIGTSTP Signal
-pkg syscall (netbsd-amd64-cgo), const SIGTTIN Signal
-pkg syscall (netbsd-amd64-cgo), const SIGTTOU Signal
-pkg syscall (netbsd-amd64-cgo), const SIGURG Signal
-pkg syscall (netbsd-amd64-cgo), const SIGUSR1 Signal
-pkg syscall (netbsd-amd64-cgo), const SIGUSR2 Signal
-pkg syscall (netbsd-amd64-cgo), const SIGVTALRM Signal
-pkg syscall (netbsd-amd64-cgo), const SIGWINCH Signal
-pkg syscall (netbsd-amd64-cgo), const SIGXCPU Signal
-pkg syscall (netbsd-amd64-cgo), const SIGXFSZ Signal
-pkg syscall (netbsd-amd64-cgo), const SIOCADDMULTI ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCADDRT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCAIFADDR ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCALIFADDR ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCATMARK ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCDELMULTI ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCDELRT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCDIFADDR ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCDIFPHYADDR ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCDLIFADDR ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCGDRVSPEC ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCGETPFSYNC ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCGETSGCNT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCGETVIFCNT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCGHIWAT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCGIFADDR ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCGIFADDRPREF ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCGIFALIAS ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCGIFBRDADDR ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCGIFCAP ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCGIFCONF ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCGIFDATA ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCGIFDLT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCGIFDSTADDR ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCGIFFLAGS ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCGIFGENERIC ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCGIFMEDIA ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCGIFMETRIC ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCGIFMTU ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCGIFNETMASK ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCGIFPDSTADDR ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCGIFPSRCADDR ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCGLIFADDR ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCGLIFPHYADDR ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCGLINKSTR ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCGLOWAT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCGPGRP ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCGVH ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCIFCREATE ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCIFDESTROY ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCIFGCLONERS ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCINITIFADDR ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCSDRVSPEC ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCSETPFSYNC ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCSHIWAT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCSIFADDR ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCSIFADDRPREF ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCSIFBRDADDR ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCSIFCAP ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCSIFDSTADDR ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCSIFFLAGS ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCSIFGENERIC ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCSIFMEDIA ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCSIFMETRIC ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCSIFMTU ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCSIFNETMASK ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCSIFPHYADDR ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCSLIFPHYADDR ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCSLINKSTR ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCSLOWAT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCSPGRP ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCSVH ideal-int
-pkg syscall (netbsd-amd64-cgo), const SIOCZIFDATA ideal-int
-pkg syscall (netbsd-amd64-cgo), const SOCK_CLOEXEC ideal-int
-pkg syscall (netbsd-amd64-cgo), const SOCK_FLAGS_MASK ideal-int
-pkg syscall (netbsd-amd64-cgo), const SOCK_NONBLOCK ideal-int
-pkg syscall (netbsd-amd64-cgo), const SOCK_NOSIGPIPE ideal-int
-pkg syscall (netbsd-amd64-cgo), const SOCK_RDM ideal-int
-pkg syscall (netbsd-amd64-cgo), const SO_ACCEPTCONN ideal-int
-pkg syscall (netbsd-amd64-cgo), const SO_ACCEPTFILTER ideal-int
-pkg syscall (netbsd-amd64-cgo), const SO_DEBUG ideal-int
-pkg syscall (netbsd-amd64-cgo), const SO_ERROR ideal-int
-pkg syscall (netbsd-amd64-cgo), const SO_NOHEADER ideal-int
-pkg syscall (netbsd-amd64-cgo), const SO_NOSIGPIPE ideal-int
-pkg syscall (netbsd-amd64-cgo), const SO_OOBINLINE ideal-int
-pkg syscall (netbsd-amd64-cgo), const SO_OVERFLOWED ideal-int
-pkg syscall (netbsd-amd64-cgo), const SO_RCVLOWAT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SO_RCVTIMEO ideal-int
-pkg syscall (netbsd-amd64-cgo), const SO_REUSEPORT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SO_SNDLOWAT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SO_SNDTIMEO ideal-int
-pkg syscall (netbsd-amd64-cgo), const SO_TIMESTAMP ideal-int
-pkg syscall (netbsd-amd64-cgo), const SO_TYPE ideal-int
-pkg syscall (netbsd-amd64-cgo), const SO_USELOOPBACK ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYSCTL_VERSION ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYSCTL_VERS_0 ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYSCTL_VERS_1 ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYSCTL_VERS_MASK ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_ACCEPT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_ACCESS ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_ACCT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_ADJTIME ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_BIND ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_BREAK ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_CHDIR ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_CHFLAGS ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_CHMOD ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_CHOWN ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_CHROOT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_CLOCK_GETRES ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_CLOCK_GETTIME ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_CLOCK_SETTIME ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_CLOSE ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_CONNECT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_DUP ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_DUP2 ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_DUP3 ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_EXECVE ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_EXIT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTRCTL ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTR_DELETE_FD ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTR_DELETE_FILE ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTR_DELETE_LINK ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTR_GET_FD ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTR_GET_FILE ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTR_GET_LINK ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTR_LIST_FD ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTR_LIST_FILE ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTR_LIST_LINK ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTR_SET_FD ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTR_SET_FILE ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTR_SET_LINK ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_FACCESSAT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_FCHDIR ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_FCHFLAGS ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_FCHMOD ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_FCHMODAT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_FCHOWN ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_FCHOWNAT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_FCHROOT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_FCNTL ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_FDATASYNC ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_FEXECVE ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_FGETXATTR ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_FHSTAT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_FKTRACE ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_FLISTXATTR ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_FLOCK ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_FORK ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_FPATHCONF ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_FREMOVEXATTR ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_FSETXATTR ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_FSTAT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_FSTATAT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_FSTATVFS1 ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_FSYNC ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_FSYNC_RANGE ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_FTRUNCATE ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_FUTIMENS ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_FUTIMES ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_GETCONTEXT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_GETDENTS ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_GETEGID ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_GETEUID ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_GETFH ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_GETGID ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_GETGROUPS ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_GETITIMER ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_GETPEERNAME ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_GETPGID ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_GETPGRP ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_GETPID ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_GETPPID ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_GETPRIORITY ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_GETRLIMIT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_GETRUSAGE ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_GETSID ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_GETSOCKNAME ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_GETSOCKOPT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_GETTIMEOFDAY ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_GETUID ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_GETVFSSTAT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_GETXATTR ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_IOCTL ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_ISSETUGID ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_KEVENT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_KILL ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_KQUEUE ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_KQUEUE1 ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_KTRACE ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_LCHFLAGS ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_LCHMOD ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_LCHOWN ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_LGETXATTR ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_LINK ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_LINKAT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_LISTEN ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_LISTXATTR ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_LLISTXATTR ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_LREMOVEXATTR ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_LSEEK ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_LSETXATTR ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_LSTAT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_LUTIMES ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_MADVISE ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_MINCORE ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_MINHERIT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_MKDIR ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_MKDIRAT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_MKFIFO ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_MKFIFOAT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_MKNOD ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_MKNODAT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_MLOCK ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_MLOCKALL ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_MMAP ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_MODCTL ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_MOUNT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_MPROTECT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_MREMAP ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_MSGCTL ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_MSGGET ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_MSGRCV ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_MSGSND ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_MUNLOCK ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_MUNLOCKALL ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_MUNMAP ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_NANOSLEEP ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_NTP_ADJTIME ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_NTP_GETTIME ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_OPEN ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_OPENAT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_PACCEPT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_PATHCONF ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_PIPE ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_PIPE2 ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_PMC_CONTROL ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_PMC_GET_INFO ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_POLL ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_POLLTS ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_POSIX_FADVISE ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_POSIX_SPAWN ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_PREAD ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_PREADV ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_PROFIL ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_PSELECT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_PSET_ASSIGN ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_PSET_CREATE ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_PSET_DESTROY ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_PTRACE ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_PWRITE ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_PWRITEV ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_RASCTL ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_READ ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_READLINK ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_READLINKAT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_READV ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_REBOOT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_RECVFROM ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_RECVMMSG ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_RECVMSG ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_REMOVEXATTR ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_RENAME ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_RENAMEAT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_REVOKE ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_RMDIR ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_SBRK ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_SCHED_YIELD ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_SELECT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_SEMCONFIG ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_SEMGET ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_SEMOP ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_SENDMMSG ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_SENDMSG ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_SENDTO ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_SETCONTEXT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_SETEGID ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_SETEUID ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_SETGID ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_SETGROUPS ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_SETITIMER ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_SETPGID ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_SETPRIORITY ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_SETREGID ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_SETREUID ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_SETRLIMIT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_SETSID ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_SETSOCKOPT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_SETTIMEOFDAY ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_SETUID ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_SETXATTR ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_SHMAT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_SHMCTL ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_SHMDT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_SHMGET ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_SHUTDOWN ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_SIGQUEUEINFO ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_SOCKET ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_SOCKETPAIR ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_SSTK ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_STAT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_STATVFS1 ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_SWAPCTL ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_SYMLINK ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_SYMLINKAT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_SYNC ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_SYSARCH ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_TIMER_CREATE ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_TIMER_DELETE ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_TIMER_GETOVERRUN ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_TIMER_GETTIME ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_TIMER_SETTIME ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_TRUNCATE ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_UMASK ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_UNDELETE ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_UNLINK ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_UNLINKAT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_UNMOUNT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_UTIMENSAT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_UTIMES ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_UTRACE ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_UUIDGEN ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_VADVISE ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_VFORK ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_WAIT4 ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_WRITE ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS_WRITEV ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS__LWP_CONTINUE ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS__LWP_CREATE ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS__LWP_CTL ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS__LWP_DETACH ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS__LWP_EXIT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS__LWP_GETNAME ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS__LWP_GETPRIVATE ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS__LWP_KILL ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS__LWP_PARK ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS__LWP_SELF ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS__LWP_SETNAME ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS__LWP_SETPRIVATE ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS__LWP_SUSPEND ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS__LWP_UNPARK ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS__LWP_UNPARK_ALL ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS__LWP_WAIT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS__LWP_WAKEUP ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS__PSET_BIND ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS__SCHED_GETAFFINITY ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS__SCHED_GETPARAM ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS__SCHED_SETAFFINITY ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS__SCHED_SETPARAM ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS___CLONE ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS___GETCWD ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS___GETLOGIN ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS___POSIX_CHOWN ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS___POSIX_FCHOWN ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS___POSIX_LCHOWN ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS___POSIX_RENAME ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS___QUOTACTL ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS___SEMCTL ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS___SETLOGIN ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS___SIGACTION_SIGTRAMP ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS___SIGTIMEDWAIT ideal-int
-pkg syscall (netbsd-amd64-cgo), const SYS___SYSCTL ideal-int
-pkg syscall (netbsd-amd64-cgo), const S_ARCH1 ideal-int
-pkg syscall (netbsd-amd64-cgo), const S_ARCH2 ideal-int
-pkg syscall (netbsd-amd64-cgo), const S_BLKSIZE ideal-int
-pkg syscall (netbsd-amd64-cgo), const S_IEXEC ideal-int
-pkg syscall (netbsd-amd64-cgo), const S_IFWHT ideal-int
-pkg syscall (netbsd-amd64-cgo), const S_IREAD ideal-int
-pkg syscall (netbsd-amd64-cgo), const S_IRGRP ideal-int
-pkg syscall (netbsd-amd64-cgo), const S_IROTH ideal-int
-pkg syscall (netbsd-amd64-cgo), const S_IRWXG ideal-int
-pkg syscall (netbsd-amd64-cgo), const S_IRWXO ideal-int
-pkg syscall (netbsd-amd64-cgo), const S_IRWXU ideal-int
-pkg syscall (netbsd-amd64-cgo), const S_ISTXT ideal-int
-pkg syscall (netbsd-amd64-cgo), const S_IWGRP ideal-int
-pkg syscall (netbsd-amd64-cgo), const S_IWOTH ideal-int
-pkg syscall (netbsd-amd64-cgo), const S_IWRITE ideal-int
-pkg syscall (netbsd-amd64-cgo), const S_IXGRP ideal-int
-pkg syscall (netbsd-amd64-cgo), const S_IXOTH ideal-int
-pkg syscall (netbsd-amd64-cgo), const S_LOGIN_SET ideal-int
-pkg syscall (netbsd-amd64-cgo), const SizeofBpfHdr ideal-int
-pkg syscall (netbsd-amd64-cgo), const SizeofBpfInsn ideal-int
-pkg syscall (netbsd-amd64-cgo), const SizeofBpfProgram ideal-int
-pkg syscall (netbsd-amd64-cgo), const SizeofBpfStat ideal-int
-pkg syscall (netbsd-amd64-cgo), const SizeofBpfVersion ideal-int
-pkg syscall (netbsd-amd64-cgo), const SizeofCmsghdr ideal-int
-pkg syscall (netbsd-amd64-cgo), const SizeofICMPv6Filter = 32
-pkg syscall (netbsd-amd64-cgo), const SizeofICMPv6Filter ideal-int
-pkg syscall (netbsd-amd64-cgo), const SizeofIPMreq ideal-int
-pkg syscall (netbsd-amd64-cgo), const SizeofIPv6MTUInfo = 32
-pkg syscall (netbsd-amd64-cgo), const SizeofIPv6MTUInfo ideal-int
-pkg syscall (netbsd-amd64-cgo), const SizeofIPv6Mreq ideal-int
-pkg syscall (netbsd-amd64-cgo), const SizeofIfAnnounceMsghdr ideal-int
-pkg syscall (netbsd-amd64-cgo), const SizeofIfData ideal-int
-pkg syscall (netbsd-amd64-cgo), const SizeofIfMsghdr ideal-int
-pkg syscall (netbsd-amd64-cgo), const SizeofIfaMsghdr ideal-int
-pkg syscall (netbsd-amd64-cgo), const SizeofInet6Pktinfo ideal-int
-pkg syscall (netbsd-amd64-cgo), const SizeofLinger ideal-int
-pkg syscall (netbsd-amd64-cgo), const SizeofMsghdr ideal-int
-pkg syscall (netbsd-amd64-cgo), const SizeofRtMetrics ideal-int
-pkg syscall (netbsd-amd64-cgo), const SizeofRtMsghdr ideal-int
-pkg syscall (netbsd-amd64-cgo), const SizeofSockaddrAny ideal-int
-pkg syscall (netbsd-amd64-cgo), const SizeofSockaddrDatalink ideal-int
-pkg syscall (netbsd-amd64-cgo), const SizeofSockaddrInet4 ideal-int
-pkg syscall (netbsd-amd64-cgo), const SizeofSockaddrInet6 ideal-int
-pkg syscall (netbsd-amd64-cgo), const SizeofSockaddrUnix ideal-int
-pkg syscall (netbsd-amd64-cgo), const TCIFLUSH ideal-int
-pkg syscall (netbsd-amd64-cgo), const TCIOFLUSH ideal-int
-pkg syscall (netbsd-amd64-cgo), const TCOFLUSH ideal-int
-pkg syscall (netbsd-amd64-cgo), const TCP_CONGCTL ideal-int
-pkg syscall (netbsd-amd64-cgo), const TCP_KEEPCNT ideal-int
-pkg syscall (netbsd-amd64-cgo), const TCP_KEEPIDLE ideal-int
-pkg syscall (netbsd-amd64-cgo), const TCP_KEEPINIT ideal-int
-pkg syscall (netbsd-amd64-cgo), const TCP_KEEPINTVL ideal-int
-pkg syscall (netbsd-amd64-cgo), const TCP_MAXBURST ideal-int
-pkg syscall (netbsd-amd64-cgo), const TCP_MAXSEG ideal-int
-pkg syscall (netbsd-amd64-cgo), const TCP_MAXWIN ideal-int
-pkg syscall (netbsd-amd64-cgo), const TCP_MAX_WINSHIFT ideal-int
-pkg syscall (netbsd-amd64-cgo), const TCP_MD5SIG ideal-int
-pkg syscall (netbsd-amd64-cgo), const TCP_MINMSS ideal-int
-pkg syscall (netbsd-amd64-cgo), const TCP_MSS ideal-int
-pkg syscall (netbsd-amd64-cgo), const TCSAFLUSH ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCCBRK ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCCDTR ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCCONS ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCDCDTIMESTAMP ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCDRAIN ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCEXCL ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCEXT ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCFLAG_CDTRCTS ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCFLAG_CLOCAL ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCFLAG_CRTSCTS ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCFLAG_MDMBUF ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCFLAG_SOFTCAR ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCFLUSH ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCGETA ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCGETD ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCGFLAGS ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCGLINED ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCGPGRP ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCGQSIZE ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCGRANTPT ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCGSID ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCGSIZE ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCGWINSZ ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCMBIC ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCMBIS ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCMGET ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCMSET ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCM_CAR ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCM_CD ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCM_CTS ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCM_DSR ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCM_DTR ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCM_LE ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCM_RI ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCM_RNG ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCM_RTS ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCM_SR ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCM_ST ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCNOTTY ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCNXCL ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCOUTQ ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCPKT ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCPKT_DATA ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCPKT_DOSTOP ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCPKT_FLUSHREAD ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCPKT_FLUSHWRITE ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCPKT_IOCTL ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCPKT_NOSTOP ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCPKT_START ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCPKT_STOP ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCPTMGET ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCPTSNAME ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCRCVFRAME ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCREMOTE ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCSBRK ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCSCTTY ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCSDTR ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCSETA ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCSETAF ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCSETAW ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCSETD ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCSFLAGS ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCSIG ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCSLINED ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCSPGRP ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCSQSIZE ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCSSIZE ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCSTART ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCSTAT ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCSTI ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCSTOP ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCSWINSZ ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCUCNTL ideal-int
-pkg syscall (netbsd-amd64-cgo), const TIOCXMTFRAME ideal-int
-pkg syscall (netbsd-amd64-cgo), const TOSTOP ideal-int
-pkg syscall (netbsd-amd64-cgo), const VDISCARD ideal-int
-pkg syscall (netbsd-amd64-cgo), const VDSUSP ideal-int
-pkg syscall (netbsd-amd64-cgo), const VEOF ideal-int
-pkg syscall (netbsd-amd64-cgo), const VEOL ideal-int
-pkg syscall (netbsd-amd64-cgo), const VEOL2 ideal-int
-pkg syscall (netbsd-amd64-cgo), const VERASE ideal-int
-pkg syscall (netbsd-amd64-cgo), const VINTR ideal-int
-pkg syscall (netbsd-amd64-cgo), const VKILL ideal-int
-pkg syscall (netbsd-amd64-cgo), const VLNEXT ideal-int
-pkg syscall (netbsd-amd64-cgo), const VMIN ideal-int
-pkg syscall (netbsd-amd64-cgo), const VQUIT ideal-int
-pkg syscall (netbsd-amd64-cgo), const VREPRINT ideal-int
-pkg syscall (netbsd-amd64-cgo), const VSTART ideal-int
-pkg syscall (netbsd-amd64-cgo), const VSTATUS ideal-int
-pkg syscall (netbsd-amd64-cgo), const VSTOP ideal-int
-pkg syscall (netbsd-amd64-cgo), const VSUSP ideal-int
-pkg syscall (netbsd-amd64-cgo), const VTIME ideal-int
-pkg syscall (netbsd-amd64-cgo), const VWERASE ideal-int
-pkg syscall (netbsd-amd64-cgo), const WALL ideal-int
-pkg syscall (netbsd-amd64-cgo), const WALLSIG ideal-int
-pkg syscall (netbsd-amd64-cgo), const WALTSIG ideal-int
-pkg syscall (netbsd-amd64-cgo), const WCLONE ideal-int
-pkg syscall (netbsd-amd64-cgo), const WCOREFLAG ideal-int
-pkg syscall (netbsd-amd64-cgo), const WNOHANG ideal-int
-pkg syscall (netbsd-amd64-cgo), const WNOWAIT ideal-int
-pkg syscall (netbsd-amd64-cgo), const WNOZOMBIE ideal-int
-pkg syscall (netbsd-amd64-cgo), const WOPTSCHECKED ideal-int
-pkg syscall (netbsd-amd64-cgo), const WSTOPPED ideal-int
-pkg syscall (netbsd-amd64-cgo), const WUNTRACED ideal-int
-pkg syscall (netbsd-amd64-cgo), func Accept(int) (int, Sockaddr, error)
-pkg syscall (netbsd-amd64-cgo), func Access(string, uint32) error
-pkg syscall (netbsd-amd64-cgo), func Adjtime(*Timeval, *Timeval) error
-pkg syscall (netbsd-amd64-cgo), func Bind(int, Sockaddr) error
-pkg syscall (netbsd-amd64-cgo), func BpfBuflen(int) (int, error)
-pkg syscall (netbsd-amd64-cgo), func BpfDatalink(int) (int, error)
-pkg syscall (netbsd-amd64-cgo), func BpfHeadercmpl(int) (int, error)
-pkg syscall (netbsd-amd64-cgo), func BpfInterface(int, string) (string, error)
-pkg syscall (netbsd-amd64-cgo), func BpfJump(int, int, int, int) *BpfInsn
-pkg syscall (netbsd-amd64-cgo), func BpfStats(int) (*BpfStat, error)
-pkg syscall (netbsd-amd64-cgo), func BpfStmt(int, int) *BpfInsn
-pkg syscall (netbsd-amd64-cgo), func BpfTimeout(int) (*Timeval, error)
-pkg syscall (netbsd-amd64-cgo), func CheckBpfVersion(int) error
-pkg syscall (netbsd-amd64-cgo), func Chflags(string, int) error
-pkg syscall (netbsd-amd64-cgo), func Chroot(string) error
-pkg syscall (netbsd-amd64-cgo), func Close(int) error
-pkg syscall (netbsd-amd64-cgo), func CloseOnExec(int)
-pkg syscall (netbsd-amd64-cgo), func CmsgLen(int) int
-pkg syscall (netbsd-amd64-cgo), func CmsgSpace(int) int
-pkg syscall (netbsd-amd64-cgo), func Connect(int, Sockaddr) error
-pkg syscall (netbsd-amd64-cgo), func Dup(int) (int, error)
-pkg syscall (netbsd-amd64-cgo), func Dup2(int, int) error
-pkg syscall (netbsd-amd64-cgo), func Fchdir(int) error
-pkg syscall (netbsd-amd64-cgo), func Fchflags(int, int) error
-pkg syscall (netbsd-amd64-cgo), func Fchmod(int, uint32) error
-pkg syscall (netbsd-amd64-cgo), func Fchown(int, int, int) error
-pkg syscall (netbsd-amd64-cgo), func Flock(int, int) error
-pkg syscall (netbsd-amd64-cgo), func FlushBpf(int) error
-pkg syscall (netbsd-amd64-cgo), func ForkExec(string, []string, *ProcAttr) (int, error)
-pkg syscall (netbsd-amd64-cgo), func Fpathconf(int, int) (int, error)
-pkg syscall (netbsd-amd64-cgo), func Fstat(int, *Stat_t) error
-pkg syscall (netbsd-amd64-cgo), func Fsync(int) error
-pkg syscall (netbsd-amd64-cgo), func Ftruncate(int, int64) error
-pkg syscall (netbsd-amd64-cgo), func Futimes(int, []Timeval) error
-pkg syscall (netbsd-amd64-cgo), func Getdirentries(int, []uint8, *uintptr) (int, error)
-pkg syscall (netbsd-amd64-cgo), func Getpeername(int) (Sockaddr, error)
-pkg syscall (netbsd-amd64-cgo), func Getpgid(int) (int, error)
-pkg syscall (netbsd-amd64-cgo), func Getpgrp() int
-pkg syscall (netbsd-amd64-cgo), func Getpriority(int, int) (int, error)
-pkg syscall (netbsd-amd64-cgo), func Getrlimit(int, *Rlimit) error
-pkg syscall (netbsd-amd64-cgo), func Getrusage(int, *Rusage) error
-pkg syscall (netbsd-amd64-cgo), func Getsid(int) (int, error)
-pkg syscall (netbsd-amd64-cgo), func Getsockname(int) (Sockaddr, error)
-pkg syscall (netbsd-amd64-cgo), func GetsockoptByte(int, int, int) (uint8, error)
-pkg syscall (netbsd-amd64-cgo), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
-pkg syscall (netbsd-amd64-cgo), func GetsockoptIPMreq(int, int, int) (*IPMreq, error)
-pkg syscall (netbsd-amd64-cgo), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
-pkg syscall (netbsd-amd64-cgo), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error)
-pkg syscall (netbsd-amd64-cgo), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error)
-pkg syscall (netbsd-amd64-cgo), func GetsockoptInt(int, int, int) (int, error)
-pkg syscall (netbsd-amd64-cgo), func Issetugid() bool
-pkg syscall (netbsd-amd64-cgo), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error)
-pkg syscall (netbsd-amd64-cgo), func Kill(int, Signal) error
-pkg syscall (netbsd-amd64-cgo), func Kqueue() (int, error)
-pkg syscall (netbsd-amd64-cgo), func Listen(int, int) error
-pkg syscall (netbsd-amd64-cgo), func Lstat(string, *Stat_t) error
-pkg syscall (netbsd-amd64-cgo), func Mkfifo(string, uint32) error
-pkg syscall (netbsd-amd64-cgo), func Mknod(string, uint32, int) error
-pkg syscall (netbsd-amd64-cgo), func Mmap(int, int64, int, int, int) ([]uint8, error)
-pkg syscall (netbsd-amd64-cgo), func Munmap([]uint8) error
-pkg syscall (netbsd-amd64-cgo), func Nanosleep(*Timespec, *Timespec) error
-pkg syscall (netbsd-amd64-cgo), func Open(string, int, uint32) (int, error)
-pkg syscall (netbsd-amd64-cgo), func ParseDirent([]uint8, int, []string) (int, int, []string)
-pkg syscall (netbsd-amd64-cgo), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error)
-pkg syscall (netbsd-amd64-cgo), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error)
-pkg syscall (netbsd-amd64-cgo), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error)
-pkg syscall (netbsd-amd64-cgo), func ParseUnixRights(*SocketControlMessage) ([]int, error)
-pkg syscall (netbsd-amd64-cgo), func Pathconf(string, int) (int, error)
-pkg syscall (netbsd-amd64-cgo), func Pipe([]int) error
-pkg syscall (netbsd-amd64-cgo), func Pread(int, []uint8, int64) (int, error)
-pkg syscall (netbsd-amd64-cgo), func Pwrite(int, []uint8, int64) (int, error)
-pkg syscall (netbsd-amd64-cgo), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (netbsd-amd64-cgo), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (netbsd-amd64-cgo), func Read(int, []uint8) (int, error)
-pkg syscall (netbsd-amd64-cgo), func ReadDirent(int, []uint8) (int, error)
-pkg syscall (netbsd-amd64-cgo), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
-pkg syscall (netbsd-amd64-cgo), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
-pkg syscall (netbsd-amd64-cgo), func Revoke(string) error
-pkg syscall (netbsd-amd64-cgo), func RouteRIB(int, int) ([]uint8, error)
-pkg syscall (netbsd-amd64-cgo), func Seek(int, int64, int) (int64, error)
-pkg syscall (netbsd-amd64-cgo), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error
-pkg syscall (netbsd-amd64-cgo), func Sendfile(int, int, *int64, int) (int, error)
-pkg syscall (netbsd-amd64-cgo), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
-pkg syscall (netbsd-amd64-cgo), func Sendto(int, []uint8, int, Sockaddr) error
-pkg syscall (netbsd-amd64-cgo), func SetBpf(int, []BpfInsn) error
-pkg syscall (netbsd-amd64-cgo), func SetBpfBuflen(int, int) (int, error)
-pkg syscall (netbsd-amd64-cgo), func SetBpfDatalink(int, int) (int, error)
-pkg syscall (netbsd-amd64-cgo), func SetBpfHeadercmpl(int, int) error
-pkg syscall (netbsd-amd64-cgo), func SetBpfImmediate(int, int) error
-pkg syscall (netbsd-amd64-cgo), func SetBpfInterface(int, string) error
-pkg syscall (netbsd-amd64-cgo), func SetBpfPromisc(int, int) error
-pkg syscall (netbsd-amd64-cgo), func SetBpfTimeout(int, *Timeval) error
-pkg syscall (netbsd-amd64-cgo), func SetKevent(*Kevent_t, int, int, int)
-pkg syscall (netbsd-amd64-cgo), func SetNonblock(int, bool) error
-pkg syscall (netbsd-amd64-cgo), func Setegid(int) error
-pkg syscall (netbsd-amd64-cgo), func Seteuid(int) error
-pkg syscall (netbsd-amd64-cgo), func Setgid(int) error
-pkg syscall (netbsd-amd64-cgo), func Setgroups([]int) error
-pkg syscall (netbsd-amd64-cgo), func Setpgid(int, int) error
-pkg syscall (netbsd-amd64-cgo), func Setpriority(int, int, int) error
-pkg syscall (netbsd-amd64-cgo), func Setregid(int, int) error
-pkg syscall (netbsd-amd64-cgo), func Setreuid(int, int) error
-pkg syscall (netbsd-amd64-cgo), func Setrlimit(int, *Rlimit) error
-pkg syscall (netbsd-amd64-cgo), func Setsid() (int, error)
-pkg syscall (netbsd-amd64-cgo), func SetsockoptByte(int, int, int, uint8) error
-pkg syscall (netbsd-amd64-cgo), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
-pkg syscall (netbsd-amd64-cgo), func SetsockoptIPMreq(int, int, int, *IPMreq) error
-pkg syscall (netbsd-amd64-cgo), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error
-pkg syscall (netbsd-amd64-cgo), func SetsockoptInet4Addr(int, int, int, [4]uint8) error
-pkg syscall (netbsd-amd64-cgo), func SetsockoptInt(int, int, int, int) error
-pkg syscall (netbsd-amd64-cgo), func SetsockoptLinger(int, int, int, *Linger) error
-pkg syscall (netbsd-amd64-cgo), func SetsockoptString(int, int, int, string) error
-pkg syscall (netbsd-amd64-cgo), func SetsockoptTimeval(int, int, int, *Timeval) error
-pkg syscall (netbsd-amd64-cgo), func Settimeofday(*Timeval) error
-pkg syscall (netbsd-amd64-cgo), func Setuid(int) error
-pkg syscall (netbsd-amd64-cgo), func Shutdown(int, int) error
-pkg syscall (netbsd-amd64-cgo), func SlicePtrFromStrings([]string) ([]*uint8, error)
-pkg syscall (netbsd-amd64-cgo), func Socket(int, int, int) (int, error)
-pkg syscall (netbsd-amd64-cgo), func Socketpair(int, int, int) ([2]int, error)
-pkg syscall (netbsd-amd64-cgo), func Stat(string, *Stat_t) error
-pkg syscall (netbsd-amd64-cgo), func StringSlicePtr([]string) []*uint8
-pkg syscall (netbsd-amd64-cgo), func Sync() error
-pkg syscall (netbsd-amd64-cgo), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (netbsd-amd64-cgo), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (netbsd-amd64-cgo), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (netbsd-amd64-cgo), func Sysctl(string) (string, error)
-pkg syscall (netbsd-amd64-cgo), func SysctlUint32(string) (uint32, error)
-pkg syscall (netbsd-amd64-cgo), func TimevalToNsec(Timeval) int64
-pkg syscall (netbsd-amd64-cgo), func Truncate(string, int64) error
-pkg syscall (netbsd-amd64-cgo), func Umask(int) int
-pkg syscall (netbsd-amd64-cgo), func UnixRights(...int) []uint8
-pkg syscall (netbsd-amd64-cgo), func Unmount(string, int) error
-pkg syscall (netbsd-amd64-cgo), func Wait4(int, *WaitStatus, int, *Rusage) (int, error)
-pkg syscall (netbsd-amd64-cgo), func Write(int, []uint8) (int, error)
-pkg syscall (netbsd-amd64-cgo), method (*Cmsghdr) SetLen(int)
-pkg syscall (netbsd-amd64-cgo), method (*Iovec) SetLen(int)
-pkg syscall (netbsd-amd64-cgo), method (*Msghdr) SetControllen(int)
-pkg syscall (netbsd-amd64-cgo), type BpfHdr struct
-pkg syscall (netbsd-amd64-cgo), type BpfHdr struct, Caplen uint32
-pkg syscall (netbsd-amd64-cgo), type BpfHdr struct, Datalen uint32
-pkg syscall (netbsd-amd64-cgo), type BpfHdr struct, Hdrlen uint16
-pkg syscall (netbsd-amd64-cgo), type BpfHdr struct, Pad_cgo_0 [6]uint8
-pkg syscall (netbsd-amd64-cgo), type BpfHdr struct, Tstamp BpfTimeval
-pkg syscall (netbsd-amd64-cgo), type BpfInsn struct
-pkg syscall (netbsd-amd64-cgo), type BpfInsn struct, Code uint16
-pkg syscall (netbsd-amd64-cgo), type BpfInsn struct, Jf uint8
-pkg syscall (netbsd-amd64-cgo), type BpfInsn struct, Jt uint8
-pkg syscall (netbsd-amd64-cgo), type BpfInsn struct, K uint32
-pkg syscall (netbsd-amd64-cgo), type BpfProgram struct
-pkg syscall (netbsd-amd64-cgo), type BpfProgram struct, Insns *BpfInsn
-pkg syscall (netbsd-amd64-cgo), type BpfProgram struct, Len uint32
-pkg syscall (netbsd-amd64-cgo), type BpfProgram struct, Pad_cgo_0 [4]uint8
-pkg syscall (netbsd-amd64-cgo), type BpfStat struct
-pkg syscall (netbsd-amd64-cgo), type BpfStat struct, Capt uint64
-pkg syscall (netbsd-amd64-cgo), type BpfStat struct, Drop uint64
-pkg syscall (netbsd-amd64-cgo), type BpfStat struct, Padding [13]uint64
-pkg syscall (netbsd-amd64-cgo), type BpfStat struct, Recv uint64
-pkg syscall (netbsd-amd64-cgo), type BpfTimeval struct
-pkg syscall (netbsd-amd64-cgo), type BpfTimeval struct, Sec int64
-pkg syscall (netbsd-amd64-cgo), type BpfTimeval struct, Usec int64
-pkg syscall (netbsd-amd64-cgo), type BpfVersion struct
-pkg syscall (netbsd-amd64-cgo), type BpfVersion struct, Major uint16
-pkg syscall (netbsd-amd64-cgo), type BpfVersion struct, Minor uint16
-pkg syscall (netbsd-amd64-cgo), type Cmsghdr struct
-pkg syscall (netbsd-amd64-cgo), type Cmsghdr struct, Len uint32
-pkg syscall (netbsd-amd64-cgo), type Cmsghdr struct, Level int32
-pkg syscall (netbsd-amd64-cgo), type Cmsghdr struct, Type int32
-pkg syscall (netbsd-amd64-cgo), type Credential struct
-pkg syscall (netbsd-amd64-cgo), type Credential struct, Gid uint32
-pkg syscall (netbsd-amd64-cgo), type Credential struct, Groups []uint32
-pkg syscall (netbsd-amd64-cgo), type Credential struct, Uid uint32
-pkg syscall (netbsd-amd64-cgo), type Dirent struct
-pkg syscall (netbsd-amd64-cgo), type Dirent struct, Fileno uint64
-pkg syscall (netbsd-amd64-cgo), type Dirent struct, Name [512]int8
-pkg syscall (netbsd-amd64-cgo), type Dirent struct, Namlen uint16
-pkg syscall (netbsd-amd64-cgo), type Dirent struct, Pad_cgo_0 [3]uint8
-pkg syscall (netbsd-amd64-cgo), type Dirent struct, Reclen uint16
-pkg syscall (netbsd-amd64-cgo), type Dirent struct, Type uint8
-pkg syscall (netbsd-amd64-cgo), type FdSet struct
-pkg syscall (netbsd-amd64-cgo), type FdSet struct, Bits [8]uint32
-pkg syscall (netbsd-amd64-cgo), type Flock_t struct
-pkg syscall (netbsd-amd64-cgo), type Flock_t struct, Len int64
-pkg syscall (netbsd-amd64-cgo), type Flock_t struct, Pid int32
-pkg syscall (netbsd-amd64-cgo), type Flock_t struct, Start int64
-pkg syscall (netbsd-amd64-cgo), type Flock_t struct, Type int16
-pkg syscall (netbsd-amd64-cgo), type Flock_t struct, Whence int16
-pkg syscall (netbsd-amd64-cgo), type Fsid struct
-pkg syscall (netbsd-amd64-cgo), type Fsid struct, X__fsid_val [2]int32
-pkg syscall (netbsd-amd64-cgo), type ICMPv6Filter struct
-pkg syscall (netbsd-amd64-cgo), type ICMPv6Filter struct, Filt [8]uint32
-pkg syscall (netbsd-amd64-cgo), type IPv6MTUInfo struct
-pkg syscall (netbsd-amd64-cgo), type IPv6MTUInfo struct, Addr RawSockaddrInet6
-pkg syscall (netbsd-amd64-cgo), type IPv6MTUInfo struct, Mtu uint32
-pkg syscall (netbsd-amd64-cgo), type IfAnnounceMsghdr struct
-pkg syscall (netbsd-amd64-cgo), type IfAnnounceMsghdr struct, Index uint16
-pkg syscall (netbsd-amd64-cgo), type IfAnnounceMsghdr struct, Msglen uint16
-pkg syscall (netbsd-amd64-cgo), type IfAnnounceMsghdr struct, Name [16]int8
-pkg syscall (netbsd-amd64-cgo), type IfAnnounceMsghdr struct, Type uint8
-pkg syscall (netbsd-amd64-cgo), type IfAnnounceMsghdr struct, Version uint8
-pkg syscall (netbsd-amd64-cgo), type IfAnnounceMsghdr struct, What uint16
-pkg syscall (netbsd-amd64-cgo), type IfData struct
-pkg syscall (netbsd-amd64-cgo), type IfData struct, Addrlen uint8
-pkg syscall (netbsd-amd64-cgo), type IfData struct, Baudrate uint64
-pkg syscall (netbsd-amd64-cgo), type IfData struct, Collisions uint64
-pkg syscall (netbsd-amd64-cgo), type IfData struct, Hdrlen uint8
-pkg syscall (netbsd-amd64-cgo), type IfData struct, Ibytes uint64
-pkg syscall (netbsd-amd64-cgo), type IfData struct, Ierrors uint64
-pkg syscall (netbsd-amd64-cgo), type IfData struct, Imcasts uint64
-pkg syscall (netbsd-amd64-cgo), type IfData struct, Ipackets uint64
-pkg syscall (netbsd-amd64-cgo), type IfData struct, Iqdrops uint64
-pkg syscall (netbsd-amd64-cgo), type IfData struct, Lastchange Timespec
-pkg syscall (netbsd-amd64-cgo), type IfData struct, Link_state int32
-pkg syscall (netbsd-amd64-cgo), type IfData struct, Metric uint64
-pkg syscall (netbsd-amd64-cgo), type IfData struct, Mtu uint64
-pkg syscall (netbsd-amd64-cgo), type IfData struct, Noproto uint64
-pkg syscall (netbsd-amd64-cgo), type IfData struct, Obytes uint64
-pkg syscall (netbsd-amd64-cgo), type IfData struct, Oerrors uint64
-pkg syscall (netbsd-amd64-cgo), type IfData struct, Omcasts uint64
-pkg syscall (netbsd-amd64-cgo), type IfData struct, Opackets uint64
-pkg syscall (netbsd-amd64-cgo), type IfData struct, Pad_cgo_0 [1]uint8
-pkg syscall (netbsd-amd64-cgo), type IfData struct, Type uint8
-pkg syscall (netbsd-amd64-cgo), type IfMsghdr struct
-pkg syscall (netbsd-amd64-cgo), type IfMsghdr struct, Addrs int32
-pkg syscall (netbsd-amd64-cgo), type IfMsghdr struct, Data IfData
-pkg syscall (netbsd-amd64-cgo), type IfMsghdr struct, Flags int32
-pkg syscall (netbsd-amd64-cgo), type IfMsghdr struct, Index uint16
-pkg syscall (netbsd-amd64-cgo), type IfMsghdr struct, Msglen uint16
-pkg syscall (netbsd-amd64-cgo), type IfMsghdr struct, Pad_cgo_0 [2]uint8
-pkg syscall (netbsd-amd64-cgo), type IfMsghdr struct, Type uint8
-pkg syscall (netbsd-amd64-cgo), type IfMsghdr struct, Version uint8
-pkg syscall (netbsd-amd64-cgo), type IfaMsghdr struct
-pkg syscall (netbsd-amd64-cgo), type IfaMsghdr struct, Addrs int32
-pkg syscall (netbsd-amd64-cgo), type IfaMsghdr struct, Flags int32
-pkg syscall (netbsd-amd64-cgo), type IfaMsghdr struct, Index uint16
-pkg syscall (netbsd-amd64-cgo), type IfaMsghdr struct, Metric int32
-pkg syscall (netbsd-amd64-cgo), type IfaMsghdr struct, Msglen uint16
-pkg syscall (netbsd-amd64-cgo), type IfaMsghdr struct, Pad_cgo_0 [6]uint8
-pkg syscall (netbsd-amd64-cgo), type IfaMsghdr struct, Type uint8
-pkg syscall (netbsd-amd64-cgo), type IfaMsghdr struct, Version uint8
-pkg syscall (netbsd-amd64-cgo), type Inet6Pktinfo struct
-pkg syscall (netbsd-amd64-cgo), type Inet6Pktinfo struct, Addr [16]uint8
-pkg syscall (netbsd-amd64-cgo), type Inet6Pktinfo struct, Ifindex uint32
-pkg syscall (netbsd-amd64-cgo), type InterfaceAddrMessage struct
-pkg syscall (netbsd-amd64-cgo), type InterfaceAddrMessage struct, Data []uint8
-pkg syscall (netbsd-amd64-cgo), type InterfaceAddrMessage struct, Header IfaMsghdr
-pkg syscall (netbsd-amd64-cgo), type InterfaceAnnounceMessage struct
-pkg syscall (netbsd-amd64-cgo), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr
-pkg syscall (netbsd-amd64-cgo), type InterfaceMessage struct
-pkg syscall (netbsd-amd64-cgo), type InterfaceMessage struct, Data []uint8
-pkg syscall (netbsd-amd64-cgo), type InterfaceMessage struct, Header IfMsghdr
-pkg syscall (netbsd-amd64-cgo), type Iovec struct
-pkg syscall (netbsd-amd64-cgo), type Iovec struct, Base *uint8
-pkg syscall (netbsd-amd64-cgo), type Iovec struct, Len uint64
-pkg syscall (netbsd-amd64-cgo), type Kevent_t struct
-pkg syscall (netbsd-amd64-cgo), type Kevent_t struct, Data int64
-pkg syscall (netbsd-amd64-cgo), type Kevent_t struct, Fflags uint32
-pkg syscall (netbsd-amd64-cgo), type Kevent_t struct, Filter uint32
-pkg syscall (netbsd-amd64-cgo), type Kevent_t struct, Flags uint32
-pkg syscall (netbsd-amd64-cgo), type Kevent_t struct, Ident uint64
-pkg syscall (netbsd-amd64-cgo), type Kevent_t struct, Pad_cgo_0 [4]uint8
-pkg syscall (netbsd-amd64-cgo), type Kevent_t struct, Udata int64
-pkg syscall (netbsd-amd64-cgo), type Mclpool [0]uint8
-pkg syscall (netbsd-amd64-cgo), type Msghdr struct
-pkg syscall (netbsd-amd64-cgo), type Msghdr struct, Control *uint8
-pkg syscall (netbsd-amd64-cgo), type Msghdr struct, Controllen uint32
-pkg syscall (netbsd-amd64-cgo), type Msghdr struct, Flags int32
-pkg syscall (netbsd-amd64-cgo), type Msghdr struct, Iov *Iovec
-pkg syscall (netbsd-amd64-cgo), type Msghdr struct, Iovlen int32
-pkg syscall (netbsd-amd64-cgo), type Msghdr struct, Name *uint8
-pkg syscall (netbsd-amd64-cgo), type Msghdr struct, Namelen uint32
-pkg syscall (netbsd-amd64-cgo), type Msghdr struct, Pad_cgo_0 [4]uint8
-pkg syscall (netbsd-amd64-cgo), type Msghdr struct, Pad_cgo_1 [4]uint8
-pkg syscall (netbsd-amd64-cgo), type RawSockaddr struct, Data [14]int8
-pkg syscall (netbsd-amd64-cgo), type RawSockaddr struct, Family uint8
-pkg syscall (netbsd-amd64-cgo), type RawSockaddr struct, Len uint8
-pkg syscall (netbsd-amd64-cgo), type RawSockaddrAny struct, Pad [92]int8
-pkg syscall (netbsd-amd64-cgo), type RawSockaddrDatalink struct
-pkg syscall (netbsd-amd64-cgo), type RawSockaddrDatalink struct, Alen uint8
-pkg syscall (netbsd-amd64-cgo), type RawSockaddrDatalink struct, Data [12]int8
-pkg syscall (netbsd-amd64-cgo), type RawSockaddrDatalink struct, Family uint8
-pkg syscall (netbsd-amd64-cgo), type RawSockaddrDatalink struct, Index uint16
-pkg syscall (netbsd-amd64-cgo), type RawSockaddrDatalink struct, Len uint8
-pkg syscall (netbsd-amd64-cgo), type RawSockaddrDatalink struct, Nlen uint8
-pkg syscall (netbsd-amd64-cgo), type RawSockaddrDatalink struct, Slen uint8
-pkg syscall (netbsd-amd64-cgo), type RawSockaddrDatalink struct, Type uint8
-pkg syscall (netbsd-amd64-cgo), type RawSockaddrInet4 struct, Family uint8
-pkg syscall (netbsd-amd64-cgo), type RawSockaddrInet4 struct, Len uint8
-pkg syscall (netbsd-amd64-cgo), type RawSockaddrInet4 struct, Zero [8]int8
-pkg syscall (netbsd-amd64-cgo), type RawSockaddrInet6 struct, Family uint8
-pkg syscall (netbsd-amd64-cgo), type RawSockaddrInet6 struct, Len uint8
-pkg syscall (netbsd-amd64-cgo), type RawSockaddrUnix struct
-pkg syscall (netbsd-amd64-cgo), type RawSockaddrUnix struct, Family uint8
-pkg syscall (netbsd-amd64-cgo), type RawSockaddrUnix struct, Len uint8
-pkg syscall (netbsd-amd64-cgo), type RawSockaddrUnix struct, Path [104]int8
-pkg syscall (netbsd-amd64-cgo), type Rlimit struct
-pkg syscall (netbsd-amd64-cgo), type Rlimit struct, Cur uint64
-pkg syscall (netbsd-amd64-cgo), type Rlimit struct, Max uint64
-pkg syscall (netbsd-amd64-cgo), type RouteMessage struct
-pkg syscall (netbsd-amd64-cgo), type RouteMessage struct, Data []uint8
-pkg syscall (netbsd-amd64-cgo), type RouteMessage struct, Header RtMsghdr
-pkg syscall (netbsd-amd64-cgo), type RoutingMessage interface, unexported methods
-pkg syscall (netbsd-amd64-cgo), type RtMetrics struct
-pkg syscall (netbsd-amd64-cgo), type RtMetrics struct, Expire int64
-pkg syscall (netbsd-amd64-cgo), type RtMetrics struct, Hopcount uint64
-pkg syscall (netbsd-amd64-cgo), type RtMetrics struct, Locks uint64
-pkg syscall (netbsd-amd64-cgo), type RtMetrics struct, Mtu uint64
-pkg syscall (netbsd-amd64-cgo), type RtMetrics struct, Pksent int64
-pkg syscall (netbsd-amd64-cgo), type RtMetrics struct, Recvpipe uint64
-pkg syscall (netbsd-amd64-cgo), type RtMetrics struct, Rtt uint64
-pkg syscall (netbsd-amd64-cgo), type RtMetrics struct, Rttvar uint64
-pkg syscall (netbsd-amd64-cgo), type RtMetrics struct, Sendpipe uint64
-pkg syscall (netbsd-amd64-cgo), type RtMetrics struct, Ssthresh uint64
-pkg syscall (netbsd-amd64-cgo), type RtMsghdr struct
-pkg syscall (netbsd-amd64-cgo), type RtMsghdr struct, Addrs int32
-pkg syscall (netbsd-amd64-cgo), type RtMsghdr struct, Errno int32
-pkg syscall (netbsd-amd64-cgo), type RtMsghdr struct, Flags int32
-pkg syscall (netbsd-amd64-cgo), type RtMsghdr struct, Index uint16
-pkg syscall (netbsd-amd64-cgo), type RtMsghdr struct, Inits int32
-pkg syscall (netbsd-amd64-cgo), type RtMsghdr struct, Msglen uint16
-pkg syscall (netbsd-amd64-cgo), type RtMsghdr struct, Pad_cgo_0 [2]uint8
-pkg syscall (netbsd-amd64-cgo), type RtMsghdr struct, Pad_cgo_1 [4]uint8
-pkg syscall (netbsd-amd64-cgo), type RtMsghdr struct, Pid int32
-pkg syscall (netbsd-amd64-cgo), type RtMsghdr struct, Rmx RtMetrics
-pkg syscall (netbsd-amd64-cgo), type RtMsghdr struct, Seq int32
-pkg syscall (netbsd-amd64-cgo), type RtMsghdr struct, Type uint8
-pkg syscall (netbsd-amd64-cgo), type RtMsghdr struct, Use int32
-pkg syscall (netbsd-amd64-cgo), type RtMsghdr struct, Version uint8
-pkg syscall (netbsd-amd64-cgo), type Rusage struct, Idrss int64
-pkg syscall (netbsd-amd64-cgo), type Rusage struct, Inblock int64
-pkg syscall (netbsd-amd64-cgo), type Rusage struct, Isrss int64
-pkg syscall (netbsd-amd64-cgo), type Rusage struct, Ixrss int64
-pkg syscall (netbsd-amd64-cgo), type Rusage struct, Majflt int64
-pkg syscall (netbsd-amd64-cgo), type Rusage struct, Maxrss int64
-pkg syscall (netbsd-amd64-cgo), type Rusage struct, Minflt int64
-pkg syscall (netbsd-amd64-cgo), type Rusage struct, Msgrcv int64
-pkg syscall (netbsd-amd64-cgo), type Rusage struct, Msgsnd int64
-pkg syscall (netbsd-amd64-cgo), type Rusage struct, Nivcsw int64
-pkg syscall (netbsd-amd64-cgo), type Rusage struct, Nsignals int64
-pkg syscall (netbsd-amd64-cgo), type Rusage struct, Nswap int64
-pkg syscall (netbsd-amd64-cgo), type Rusage struct, Nvcsw int64
-pkg syscall (netbsd-amd64-cgo), type Rusage struct, Oublock int64
-pkg syscall (netbsd-amd64-cgo), type Rusage struct, Stime Timeval
-pkg syscall (netbsd-amd64-cgo), type Rusage struct, Utime Timeval
-pkg syscall (netbsd-amd64-cgo), type SockaddrDatalink struct
-pkg syscall (netbsd-amd64-cgo), type SockaddrDatalink struct, Alen uint8
-pkg syscall (netbsd-amd64-cgo), type SockaddrDatalink struct, Data [12]int8
-pkg syscall (netbsd-amd64-cgo), type SockaddrDatalink struct, Family uint8
-pkg syscall (netbsd-amd64-cgo), type SockaddrDatalink struct, Index uint16
-pkg syscall (netbsd-amd64-cgo), type SockaddrDatalink struct, Len uint8
-pkg syscall (netbsd-amd64-cgo), type SockaddrDatalink struct, Nlen uint8
-pkg syscall (netbsd-amd64-cgo), type SockaddrDatalink struct, Slen uint8
-pkg syscall (netbsd-amd64-cgo), type SockaddrDatalink struct, Type uint8
-pkg syscall (netbsd-amd64-cgo), type SocketControlMessage struct
-pkg syscall (netbsd-amd64-cgo), type SocketControlMessage struct, Data []uint8
-pkg syscall (netbsd-amd64-cgo), type SocketControlMessage struct, Header Cmsghdr
-pkg syscall (netbsd-amd64-cgo), type Stat_t struct
-pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Atimespec Timespec
-pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Birthtimespec Timespec
-pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Blksize uint32
-pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Blocks int64
-pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Ctimespec Timespec
-pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Dev uint64
-pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Flags uint32
-pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Gen uint32
-pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Gid uint32
-pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Ino uint64
-pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Mode uint32
-pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Mtimespec Timespec
-pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Nlink uint32
-pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Pad_cgo_0 [4]uint8
-pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Pad_cgo_1 [4]uint8
-pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Pad_cgo_2 [4]uint8
-pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Rdev uint64
-pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Size int64
-pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Spare [2]uint32
-pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Uid uint32
-pkg syscall (netbsd-amd64-cgo), type Statfs_t [0]uint8
-pkg syscall (netbsd-amd64-cgo), type SysProcAttr struct, Chroot string
-pkg syscall (netbsd-amd64-cgo), type SysProcAttr struct, Credential *Credential
-pkg syscall (netbsd-amd64-cgo), type SysProcAttr struct, Noctty bool
-pkg syscall (netbsd-amd64-cgo), type SysProcAttr struct, Ptrace bool
-pkg syscall (netbsd-amd64-cgo), type SysProcAttr struct, Setctty bool
-pkg syscall (netbsd-amd64-cgo), type SysProcAttr struct, Setpgid bool
-pkg syscall (netbsd-amd64-cgo), type SysProcAttr struct, Setsid bool
-pkg syscall (netbsd-amd64-cgo), type Sysctlnode struct
-pkg syscall (netbsd-amd64-cgo), type Sysctlnode struct, Flags uint32
-pkg syscall (netbsd-amd64-cgo), type Sysctlnode struct, Name [32]int8
-pkg syscall (netbsd-amd64-cgo), type Sysctlnode struct, Num int32
-pkg syscall (netbsd-amd64-cgo), type Sysctlnode struct, Un [16]uint8
-pkg syscall (netbsd-amd64-cgo), type Sysctlnode struct, Ver uint32
-pkg syscall (netbsd-amd64-cgo), type Sysctlnode struct, X__rsvd uint32
-pkg syscall (netbsd-amd64-cgo), type Sysctlnode struct, X_sysctl_desc [8]uint8
-pkg syscall (netbsd-amd64-cgo), type Sysctlnode struct, X_sysctl_func [8]uint8
-pkg syscall (netbsd-amd64-cgo), type Sysctlnode struct, X_sysctl_parent [8]uint8
-pkg syscall (netbsd-amd64-cgo), type Sysctlnode struct, X_sysctl_size [8]uint8
-pkg syscall (netbsd-amd64-cgo), type Timespec struct, Nsec int64
-pkg syscall (netbsd-amd64-cgo), type Timespec struct, Sec int64
-pkg syscall (netbsd-amd64-cgo), type Timeval struct, Pad_cgo_0 [4]uint8
-pkg syscall (netbsd-amd64-cgo), type Timeval struct, Sec int64
-pkg syscall (netbsd-amd64-cgo), type Timeval struct, Usec int32
-pkg syscall (netbsd-amd64-cgo), type WaitStatus uint32
-pkg syscall (netbsd-amd64-cgo), var Stderr int
-pkg syscall (netbsd-amd64-cgo), var Stdin int
-pkg syscall (netbsd-amd64-cgo), var Stdout int
-pkg syscall (netbsd-arm), const AF_APPLETALK ideal-int
-pkg syscall (netbsd-arm), const AF_ARP ideal-int
-pkg syscall (netbsd-arm), const AF_BLUETOOTH ideal-int
-pkg syscall (netbsd-arm), const AF_CCITT ideal-int
-pkg syscall (netbsd-arm), const AF_CHAOS ideal-int
-pkg syscall (netbsd-arm), const AF_CNT ideal-int
-pkg syscall (netbsd-arm), const AF_COIP ideal-int
-pkg syscall (netbsd-arm), const AF_DATAKIT ideal-int
-pkg syscall (netbsd-arm), const AF_DECnet ideal-int
-pkg syscall (netbsd-arm), const AF_DLI ideal-int
-pkg syscall (netbsd-arm), const AF_E164 ideal-int
-pkg syscall (netbsd-arm), const AF_ECMA ideal-int
-pkg syscall (netbsd-arm), const AF_HYLINK ideal-int
-pkg syscall (netbsd-arm), const AF_IEEE80211 ideal-int
-pkg syscall (netbsd-arm), const AF_IMPLINK ideal-int
-pkg syscall (netbsd-arm), const AF_IPX ideal-int
-pkg syscall (netbsd-arm), const AF_ISDN ideal-int
-pkg syscall (netbsd-arm), const AF_ISO ideal-int
-pkg syscall (netbsd-arm), const AF_LAT ideal-int
-pkg syscall (netbsd-arm), const AF_LINK ideal-int
-pkg syscall (netbsd-arm), const AF_LOCAL ideal-int
-pkg syscall (netbsd-arm), const AF_MAX ideal-int
-pkg syscall (netbsd-arm), const AF_MPLS ideal-int
-pkg syscall (netbsd-arm), const AF_NATM ideal-int
-pkg syscall (netbsd-arm), const AF_NS ideal-int
-pkg syscall (netbsd-arm), const AF_OROUTE ideal-int
-pkg syscall (netbsd-arm), const AF_OSI ideal-int
-pkg syscall (netbsd-arm), const AF_PUP ideal-int
-pkg syscall (netbsd-arm), const AF_ROUTE ideal-int
-pkg syscall (netbsd-arm), const AF_SNA ideal-int
-pkg syscall (netbsd-arm), const ARPHRD_ARCNET ideal-int
-pkg syscall (netbsd-arm), const ARPHRD_ETHER ideal-int
-pkg syscall (netbsd-arm), const ARPHRD_FRELAY ideal-int
-pkg syscall (netbsd-arm), const ARPHRD_IEEE1394 ideal-int
-pkg syscall (netbsd-arm), const ARPHRD_IEEE802 ideal-int
-pkg syscall (netbsd-arm), const ARPHRD_STRIP ideal-int
-pkg syscall (netbsd-arm), const B0 ideal-int
-pkg syscall (netbsd-arm), const B110 ideal-int
-pkg syscall (netbsd-arm), const B115200 ideal-int
-pkg syscall (netbsd-arm), const B1200 ideal-int
-pkg syscall (netbsd-arm), const B134 ideal-int
-pkg syscall (netbsd-arm), const B14400 ideal-int
-pkg syscall (netbsd-arm), const B150 ideal-int
-pkg syscall (netbsd-arm), const B1800 ideal-int
-pkg syscall (netbsd-arm), const B19200 ideal-int
-pkg syscall (netbsd-arm), const B200 ideal-int
-pkg syscall (netbsd-arm), const B230400 ideal-int
-pkg syscall (netbsd-arm), const B2400 ideal-int
-pkg syscall (netbsd-arm), const B28800 ideal-int
-pkg syscall (netbsd-arm), const B300 ideal-int
-pkg syscall (netbsd-arm), const B38400 ideal-int
-pkg syscall (netbsd-arm), const B460800 ideal-int
-pkg syscall (netbsd-arm), const B4800 ideal-int
-pkg syscall (netbsd-arm), const B50 ideal-int
-pkg syscall (netbsd-arm), const B57600 ideal-int
-pkg syscall (netbsd-arm), const B600 ideal-int
-pkg syscall (netbsd-arm), const B7200 ideal-int
-pkg syscall (netbsd-arm), const B75 ideal-int
-pkg syscall (netbsd-arm), const B76800 ideal-int
-pkg syscall (netbsd-arm), const B921600 ideal-int
-pkg syscall (netbsd-arm), const B9600 ideal-int
-pkg syscall (netbsd-arm), const BIOCFEEDBACK ideal-int
-pkg syscall (netbsd-arm), const BIOCFLUSH ideal-int
-pkg syscall (netbsd-arm), const BIOCGBLEN ideal-int
-pkg syscall (netbsd-arm), const BIOCGDLT ideal-int
-pkg syscall (netbsd-arm), const BIOCGDLTLIST ideal-int
-pkg syscall (netbsd-arm), const BIOCGETIF ideal-int
-pkg syscall (netbsd-arm), const BIOCGFEEDBACK ideal-int
-pkg syscall (netbsd-arm), const BIOCGHDRCMPLT ideal-int
-pkg syscall (netbsd-arm), const BIOCGRTIMEOUT ideal-int
-pkg syscall (netbsd-arm), const BIOCGSEESENT ideal-int
-pkg syscall (netbsd-arm), const BIOCGSTATS ideal-int
-pkg syscall (netbsd-arm), const BIOCGSTATSOLD ideal-int
-pkg syscall (netbsd-arm), const BIOCIMMEDIATE ideal-int
-pkg syscall (netbsd-arm), const BIOCPROMISC ideal-int
-pkg syscall (netbsd-arm), const BIOCSBLEN ideal-int
-pkg syscall (netbsd-arm), const BIOCSDLT ideal-int
-pkg syscall (netbsd-arm), const BIOCSETF ideal-int
-pkg syscall (netbsd-arm), const BIOCSETIF ideal-int
-pkg syscall (netbsd-arm), const BIOCSFEEDBACK ideal-int
-pkg syscall (netbsd-arm), const BIOCSHDRCMPLT ideal-int
-pkg syscall (netbsd-arm), const BIOCSRTIMEOUT ideal-int
-pkg syscall (netbsd-arm), const BIOCSSEESENT ideal-int
-pkg syscall (netbsd-arm), const BIOCSTCPF ideal-int
-pkg syscall (netbsd-arm), const BIOCSUDPF ideal-int
-pkg syscall (netbsd-arm), const BIOCVERSION ideal-int
-pkg syscall (netbsd-arm), const BPF_A ideal-int
-pkg syscall (netbsd-arm), const BPF_ABS ideal-int
-pkg syscall (netbsd-arm), const BPF_ADD ideal-int
-pkg syscall (netbsd-arm), const BPF_ALIGNMENT ideal-int
-pkg syscall (netbsd-arm), const BPF_ALIGNMENT32 ideal-int
-pkg syscall (netbsd-arm), const BPF_ALU ideal-int
-pkg syscall (netbsd-arm), const BPF_AND ideal-int
-pkg syscall (netbsd-arm), const BPF_B ideal-int
-pkg syscall (netbsd-arm), const BPF_DFLTBUFSIZE ideal-int
-pkg syscall (netbsd-arm), const BPF_DIV ideal-int
-pkg syscall (netbsd-arm), const BPF_H ideal-int
-pkg syscall (netbsd-arm), const BPF_IMM ideal-int
-pkg syscall (netbsd-arm), const BPF_IND ideal-int
-pkg syscall (netbsd-arm), const BPF_JA ideal-int
-pkg syscall (netbsd-arm), const BPF_JEQ ideal-int
-pkg syscall (netbsd-arm), const BPF_JGE ideal-int
-pkg syscall (netbsd-arm), const BPF_JGT ideal-int
-pkg syscall (netbsd-arm), const BPF_JMP ideal-int
-pkg syscall (netbsd-arm), const BPF_JSET ideal-int
-pkg syscall (netbsd-arm), const BPF_K ideal-int
-pkg syscall (netbsd-arm), const BPF_LD ideal-int
-pkg syscall (netbsd-arm), const BPF_LDX ideal-int
-pkg syscall (netbsd-arm), const BPF_LEN ideal-int
-pkg syscall (netbsd-arm), const BPF_LSH ideal-int
-pkg syscall (netbsd-arm), const BPF_MAJOR_VERSION ideal-int
-pkg syscall (netbsd-arm), const BPF_MAXBUFSIZE ideal-int
-pkg syscall (netbsd-arm), const BPF_MAXINSNS ideal-int
-pkg syscall (netbsd-arm), const BPF_MEM ideal-int
-pkg syscall (netbsd-arm), const BPF_MEMWORDS ideal-int
-pkg syscall (netbsd-arm), const BPF_MINBUFSIZE ideal-int
-pkg syscall (netbsd-arm), const BPF_MINOR_VERSION ideal-int
-pkg syscall (netbsd-arm), const BPF_MISC ideal-int
-pkg syscall (netbsd-arm), const BPF_MSH ideal-int
-pkg syscall (netbsd-arm), const BPF_MUL ideal-int
-pkg syscall (netbsd-arm), const BPF_NEG ideal-int
-pkg syscall (netbsd-arm), const BPF_OR ideal-int
-pkg syscall (netbsd-arm), const BPF_RELEASE ideal-int
-pkg syscall (netbsd-arm), const BPF_RET ideal-int
-pkg syscall (netbsd-arm), const BPF_RSH ideal-int
-pkg syscall (netbsd-arm), const BPF_ST ideal-int
-pkg syscall (netbsd-arm), const BPF_STX ideal-int
-pkg syscall (netbsd-arm), const BPF_SUB ideal-int
-pkg syscall (netbsd-arm), const BPF_TAX ideal-int
-pkg syscall (netbsd-arm), const BPF_TXA ideal-int
-pkg syscall (netbsd-arm), const BPF_W ideal-int
-pkg syscall (netbsd-arm), const BPF_X ideal-int
-pkg syscall (netbsd-arm), const BRKINT ideal-int
-pkg syscall (netbsd-arm), const CFLUSH ideal-int
-pkg syscall (netbsd-arm), const CLOCAL ideal-int
-pkg syscall (netbsd-arm), const CREAD ideal-int
-pkg syscall (netbsd-arm), const CS5 ideal-int
-pkg syscall (netbsd-arm), const CS6 ideal-int
-pkg syscall (netbsd-arm), const CS7 ideal-int
-pkg syscall (netbsd-arm), const CS8 ideal-int
-pkg syscall (netbsd-arm), const CSIZE ideal-int
-pkg syscall (netbsd-arm), const CSTART ideal-int
-pkg syscall (netbsd-arm), const CSTATUS ideal-int
-pkg syscall (netbsd-arm), const CSTOP ideal-int
-pkg syscall (netbsd-arm), const CSTOPB ideal-int
-pkg syscall (netbsd-arm), const CSUSP ideal-int
-pkg syscall (netbsd-arm), const CTL_MAXNAME ideal-int
-pkg syscall (netbsd-arm), const CTL_NET ideal-int
-pkg syscall (netbsd-arm), const CTL_QUERY ideal-int
-pkg syscall (netbsd-arm), const DIOCBSFLUSH ideal-int
-pkg syscall (netbsd-arm), const DLT_A429 ideal-int
-pkg syscall (netbsd-arm), const DLT_A653_ICM ideal-int
-pkg syscall (netbsd-arm), const DLT_AIRONET_HEADER ideal-int
-pkg syscall (netbsd-arm), const DLT_AOS ideal-int
-pkg syscall (netbsd-arm), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int
-pkg syscall (netbsd-arm), const DLT_ARCNET ideal-int
-pkg syscall (netbsd-arm), const DLT_ARCNET_LINUX ideal-int
-pkg syscall (netbsd-arm), const DLT_ATM_CLIP ideal-int
-pkg syscall (netbsd-arm), const DLT_ATM_RFC1483 ideal-int
-pkg syscall (netbsd-arm), const DLT_AURORA ideal-int
-pkg syscall (netbsd-arm), const DLT_AX25 ideal-int
-pkg syscall (netbsd-arm), const DLT_AX25_KISS ideal-int
-pkg syscall (netbsd-arm), const DLT_BACNET_MS_TP ideal-int
-pkg syscall (netbsd-arm), const DLT_BLUETOOTH_HCI_H4 ideal-int
-pkg syscall (netbsd-arm), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR ideal-int
-pkg syscall (netbsd-arm), const DLT_CAN20B ideal-int
-pkg syscall (netbsd-arm), const DLT_CAN_SOCKETCAN ideal-int
-pkg syscall (netbsd-arm), const DLT_CHAOS ideal-int
-pkg syscall (netbsd-arm), const DLT_CISCO_IOS ideal-int
-pkg syscall (netbsd-arm), const DLT_C_HDLC ideal-int
-pkg syscall (netbsd-arm), const DLT_C_HDLC_WITH_DIR ideal-int
-pkg syscall (netbsd-arm), const DLT_DECT ideal-int
-pkg syscall (netbsd-arm), const DLT_DOCSIS ideal-int
-pkg syscall (netbsd-arm), const DLT_ECONET ideal-int
-pkg syscall (netbsd-arm), const DLT_EN10MB ideal-int
-pkg syscall (netbsd-arm), const DLT_EN3MB ideal-int
-pkg syscall (netbsd-arm), const DLT_ENC ideal-int
-pkg syscall (netbsd-arm), const DLT_ERF ideal-int
-pkg syscall (netbsd-arm), const DLT_ERF_ETH ideal-int
-pkg syscall (netbsd-arm), const DLT_ERF_POS ideal-int
-pkg syscall (netbsd-arm), const DLT_FC_2 ideal-int
-pkg syscall (netbsd-arm), const DLT_FC_2_WITH_FRAME_DELIMS ideal-int
-pkg syscall (netbsd-arm), const DLT_FDDI ideal-int
-pkg syscall (netbsd-arm), const DLT_FLEXRAY ideal-int
-pkg syscall (netbsd-arm), const DLT_FRELAY ideal-int
-pkg syscall (netbsd-arm), const DLT_FRELAY_WITH_DIR ideal-int
-pkg syscall (netbsd-arm), const DLT_GCOM_SERIAL ideal-int
-pkg syscall (netbsd-arm), const DLT_GCOM_T1E1 ideal-int
-pkg syscall (netbsd-arm), const DLT_GPF_F ideal-int
-pkg syscall (netbsd-arm), const DLT_GPF_T ideal-int
-pkg syscall (netbsd-arm), const DLT_GPRS_LLC ideal-int
-pkg syscall (netbsd-arm), const DLT_GSMTAP_ABIS ideal-int
-pkg syscall (netbsd-arm), const DLT_GSMTAP_UM ideal-int
-pkg syscall (netbsd-arm), const DLT_HDLC ideal-int
-pkg syscall (netbsd-arm), const DLT_HHDLC ideal-int
-pkg syscall (netbsd-arm), const DLT_HIPPI ideal-int
-pkg syscall (netbsd-arm), const DLT_IBM_SN ideal-int
-pkg syscall (netbsd-arm), const DLT_IBM_SP ideal-int
-pkg syscall (netbsd-arm), const DLT_IEEE802 ideal-int
-pkg syscall (netbsd-arm), const DLT_IEEE802_11 ideal-int
-pkg syscall (netbsd-arm), const DLT_IEEE802_11_RADIO ideal-int
-pkg syscall (netbsd-arm), const DLT_IEEE802_11_RADIO_AVS ideal-int
-pkg syscall (netbsd-arm), const DLT_IEEE802_15_4 ideal-int
-pkg syscall (netbsd-arm), const DLT_IEEE802_15_4_LINUX ideal-int
-pkg syscall (netbsd-arm), const DLT_IEEE802_15_4_NONASK_PHY ideal-int
-pkg syscall (netbsd-arm), const DLT_IEEE802_16_MAC_CPS ideal-int
-pkg syscall (netbsd-arm), const DLT_IEEE802_16_MAC_CPS_RADIO ideal-int
-pkg syscall (netbsd-arm), const DLT_IPMB ideal-int
-pkg syscall (netbsd-arm), const DLT_IPMB_LINUX ideal-int
-pkg syscall (netbsd-arm), const DLT_IPNET ideal-int
-pkg syscall (netbsd-arm), const DLT_IPV4 ideal-int
-pkg syscall (netbsd-arm), const DLT_IPV6 ideal-int
-pkg syscall (netbsd-arm), const DLT_IP_OVER_FC ideal-int
-pkg syscall (netbsd-arm), const DLT_JUNIPER_ATM1 ideal-int
-pkg syscall (netbsd-arm), const DLT_JUNIPER_ATM2 ideal-int
-pkg syscall (netbsd-arm), const DLT_JUNIPER_CHDLC ideal-int
-pkg syscall (netbsd-arm), const DLT_JUNIPER_ES ideal-int
-pkg syscall (netbsd-arm), const DLT_JUNIPER_ETHER ideal-int
-pkg syscall (netbsd-arm), const DLT_JUNIPER_FRELAY ideal-int
-pkg syscall (netbsd-arm), const DLT_JUNIPER_GGSN ideal-int
-pkg syscall (netbsd-arm), const DLT_JUNIPER_ISM ideal-int
-pkg syscall (netbsd-arm), const DLT_JUNIPER_MFR ideal-int
-pkg syscall (netbsd-arm), const DLT_JUNIPER_MLFR ideal-int
-pkg syscall (netbsd-arm), const DLT_JUNIPER_MLPPP ideal-int
-pkg syscall (netbsd-arm), const DLT_JUNIPER_MONITOR ideal-int
-pkg syscall (netbsd-arm), const DLT_JUNIPER_PIC_PEER ideal-int
-pkg syscall (netbsd-arm), const DLT_JUNIPER_PPP ideal-int
-pkg syscall (netbsd-arm), const DLT_JUNIPER_PPPOE ideal-int
-pkg syscall (netbsd-arm), const DLT_JUNIPER_PPPOE_ATM ideal-int
-pkg syscall (netbsd-arm), const DLT_JUNIPER_SERVICES ideal-int
-pkg syscall (netbsd-arm), const DLT_JUNIPER_ST ideal-int
-pkg syscall (netbsd-arm), const DLT_JUNIPER_VP ideal-int
-pkg syscall (netbsd-arm), const DLT_LAPB_WITH_DIR ideal-int
-pkg syscall (netbsd-arm), const DLT_LAPD ideal-int
-pkg syscall (netbsd-arm), const DLT_LIN ideal-int
-pkg syscall (netbsd-arm), const DLT_LINUX_EVDEV ideal-int
-pkg syscall (netbsd-arm), const DLT_LINUX_IRDA ideal-int
-pkg syscall (netbsd-arm), const DLT_LINUX_LAPD ideal-int
-pkg syscall (netbsd-arm), const DLT_LINUX_SLL ideal-int
-pkg syscall (netbsd-arm), const DLT_LOOP ideal-int
-pkg syscall (netbsd-arm), const DLT_LTALK ideal-int
-pkg syscall (netbsd-arm), const DLT_MFR ideal-int
-pkg syscall (netbsd-arm), const DLT_MOST ideal-int
-pkg syscall (netbsd-arm), const DLT_MPLS ideal-int
-pkg syscall (netbsd-arm), const DLT_MTP2 ideal-int
-pkg syscall (netbsd-arm), const DLT_MTP2_WITH_PHDR ideal-int
-pkg syscall (netbsd-arm), const DLT_MTP3 ideal-int
-pkg syscall (netbsd-arm), const DLT_NULL ideal-int
-pkg syscall (netbsd-arm), const DLT_PCI_EXP ideal-int
-pkg syscall (netbsd-arm), const DLT_PFLOG ideal-int
-pkg syscall (netbsd-arm), const DLT_PFSYNC ideal-int
-pkg syscall (netbsd-arm), const DLT_PPI ideal-int
-pkg syscall (netbsd-arm), const DLT_PPP ideal-int
-pkg syscall (netbsd-arm), const DLT_PPP_BSDOS ideal-int
-pkg syscall (netbsd-arm), const DLT_PPP_ETHER ideal-int
-pkg syscall (netbsd-arm), const DLT_PPP_PPPD ideal-int
-pkg syscall (netbsd-arm), const DLT_PPP_SERIAL ideal-int
-pkg syscall (netbsd-arm), const DLT_PPP_WITH_DIR ideal-int
-pkg syscall (netbsd-arm), const DLT_PRISM_HEADER ideal-int
-pkg syscall (netbsd-arm), const DLT_PRONET ideal-int
-pkg syscall (netbsd-arm), const DLT_RAIF1 ideal-int
-pkg syscall (netbsd-arm), const DLT_RAW ideal-int
-pkg syscall (netbsd-arm), const DLT_RAWAF_MASK ideal-int
-pkg syscall (netbsd-arm), const DLT_RIO ideal-int
-pkg syscall (netbsd-arm), const DLT_SCCP ideal-int
-pkg syscall (netbsd-arm), const DLT_SITA ideal-int
-pkg syscall (netbsd-arm), const DLT_SLIP ideal-int
-pkg syscall (netbsd-arm), const DLT_SLIP_BSDOS ideal-int
-pkg syscall (netbsd-arm), const DLT_SUNATM ideal-int
-pkg syscall (netbsd-arm), const DLT_SYMANTEC_FIREWALL ideal-int
-pkg syscall (netbsd-arm), const DLT_TZSP ideal-int
-pkg syscall (netbsd-arm), const DLT_USB ideal-int
-pkg syscall (netbsd-arm), const DLT_USB_LINUX ideal-int
-pkg syscall (netbsd-arm), const DLT_USB_LINUX_MMAPPED ideal-int
-pkg syscall (netbsd-arm), const DLT_WIHART ideal-int
-pkg syscall (netbsd-arm), const DLT_X2E_SERIAL ideal-int
-pkg syscall (netbsd-arm), const DLT_X2E_XORAYA ideal-int
-pkg syscall (netbsd-arm), const DT_BLK ideal-int
-pkg syscall (netbsd-arm), const DT_CHR ideal-int
-pkg syscall (netbsd-arm), const DT_DIR ideal-int
-pkg syscall (netbsd-arm), const DT_FIFO ideal-int
-pkg syscall (netbsd-arm), const DT_LNK ideal-int
-pkg syscall (netbsd-arm), const DT_REG ideal-int
-pkg syscall (netbsd-arm), const DT_SOCK ideal-int
-pkg syscall (netbsd-arm), const DT_UNKNOWN ideal-int
-pkg syscall (netbsd-arm), const DT_WHT ideal-int
-pkg syscall (netbsd-arm), const EAUTH Errno
-pkg syscall (netbsd-arm), const EBADMSG Errno
-pkg syscall (netbsd-arm), const EBADRPC Errno
-pkg syscall (netbsd-arm), const ECHO ideal-int
-pkg syscall (netbsd-arm), const ECHOCTL ideal-int
-pkg syscall (netbsd-arm), const ECHOE ideal-int
-pkg syscall (netbsd-arm), const ECHOK ideal-int
-pkg syscall (netbsd-arm), const ECHOKE ideal-int
-pkg syscall (netbsd-arm), const ECHONL ideal-int
-pkg syscall (netbsd-arm), const ECHOPRT ideal-int
-pkg syscall (netbsd-arm), const EFTYPE Errno
-pkg syscall (netbsd-arm), const ELAST Errno
-pkg syscall (netbsd-arm), const EMULTIHOP Errno
-pkg syscall (netbsd-arm), const EMUL_LINUX ideal-int
-pkg syscall (netbsd-arm), const EMUL_LINUX32 ideal-int
-pkg syscall (netbsd-arm), const EMUL_MAXID ideal-int
-pkg syscall (netbsd-arm), const ENEEDAUTH Errno
-pkg syscall (netbsd-arm), const ENOATTR Errno
-pkg syscall (netbsd-arm), const ENODATA Errno
-pkg syscall (netbsd-arm), const ENOLINK Errno
-pkg syscall (netbsd-arm), const ENOSR Errno
-pkg syscall (netbsd-arm), const ENOSTR Errno
-pkg syscall (netbsd-arm), const EPROCLIM Errno
-pkg syscall (netbsd-arm), const EPROCUNAVAIL Errno
-pkg syscall (netbsd-arm), const EPROGMISMATCH Errno
-pkg syscall (netbsd-arm), const EPROGUNAVAIL Errno
-pkg syscall (netbsd-arm), const EPROTO Errno
-pkg syscall (netbsd-arm), const ERPCMISMATCH Errno
-pkg syscall (netbsd-arm), const ETHERCAP_JUMBO_MTU ideal-int
-pkg syscall (netbsd-arm), const ETHERCAP_VLAN_HWTAGGING ideal-int
-pkg syscall (netbsd-arm), const ETHERCAP_VLAN_MTU ideal-int
-pkg syscall (netbsd-arm), const ETHERMIN ideal-int
-pkg syscall (netbsd-arm), const ETHERMTU ideal-int
-pkg syscall (netbsd-arm), const ETHERMTU_JUMBO ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_8023 ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_AARP ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_ACCTON ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_AEONIC ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_ALPHA ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_AMBER ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_AMOEBA ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_APOLLO ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_APOLLODOMAIN ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_APPLETALK ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_APPLITEK ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_ARGONAUT ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_ARP ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_AT ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_ATALK ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_ATOMIC ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_ATT ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_ATTSTANFORD ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_AUTOPHON ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_AXIS ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_BCLOOP ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_BOFL ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_CABLETRON ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_CHAOS ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_COMDESIGN ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_COMPUGRAPHIC ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_COUNTERPOINT ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_CRONUS ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_CRONUSVLN ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_DCA ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_DDE ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_DEBNI ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_DECAM ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_DECCUST ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_DECDIAG ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_DECDNS ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_DECDTS ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_DECEXPER ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_DECLAST ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_DECLTM ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_DECMUMPS ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_DECNETBIOS ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_DELTACON ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_DIDDLE ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_DLOG1 ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_DLOG2 ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_DN ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_DOGFIGHT ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_DSMD ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_ECMA ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_ENCRYPT ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_ES ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_EXCELAN ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_EXPERDATA ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_FLIP ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_FLOWCONTROL ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_FRARP ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_GENDYN ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_HAYES ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_HIPPI_FP ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_HITACHI ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_HP ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_IEEEPUP ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_IEEEPUPAT ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_IMLBL ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_IMLBLDIAG ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_IP ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_IPAS ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_IPV6 ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_IPX ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_IPXNEW ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_KALPANA ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_LANBRIDGE ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_LANPROBE ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_LAT ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_LBACK ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_LITTLE ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_LOGICRAFT ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_LOOPBACK ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_MATRA ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_MAX ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_MERIT ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_MICP ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_MOPDL ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_MOPRC ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_MOTOROLA ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_MPLS ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_MPLS_MCAST ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_MUMPS ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_NBPCC ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_NBPCLAIM ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_NBPCLREQ ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_NBPCLRSP ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_NBPCREQ ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_NBPCRSP ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_NBPDG ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_NBPDGB ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_NBPDLTE ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_NBPRAR ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_NBPRAS ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_NBPRST ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_NBPSCD ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_NBPVCD ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_NBS ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_NCD ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_NESTAR ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_NETBEUI ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_NOVELL ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_NS ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_NSAT ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_NSCOMPAT ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_NTRAILER ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_OS9 ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_OS9NET ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_PACER ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_PAE ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_PCS ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_PLANNING ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_PPP ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_PPPOE ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_PPPOEDISC ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_PRIMENTS ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_PUP ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_PUPAT ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_RACAL ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_RATIONAL ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_RAWFR ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_RCL ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_RDP ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_RETIX ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_REVARP ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_SCA ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_SECTRA ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_SECUREDATA ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_SGITW ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_SG_BOUNCE ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_SG_DIAG ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_SG_NETGAMES ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_SG_RESV ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_SIMNET ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_SLOWPROTOCOLS ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_SNA ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_SNMP ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_SONIX ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_SPIDER ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_SPRITE ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_STP ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_TALARIS ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_TALARISMC ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_TCPCOMP ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_TCPSM ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_TEC ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_TIGAN ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_TRAIL ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_TRANSETHER ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_TYMSHARE ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_UBBST ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_UBDEBUG ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_UBDIAGLOOP ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_UBDL ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_UBNIU ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_UBNMC ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_VALID ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_VARIAN ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_VAXELN ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_VEECO ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_VEXP ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_VGLAB ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_VINES ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_VINESECHO ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_VINESLOOP ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_VITAL ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_VLAN ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_VLTLMAN ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_VPROD ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_VURESERVED ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_WATERLOO ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_WELLFLEET ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_X25 ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_X75 ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_XNSSM ideal-int
-pkg syscall (netbsd-arm), const ETHERTYPE_XTP ideal-int
-pkg syscall (netbsd-arm), const ETHER_ADDR_LEN ideal-int
-pkg syscall (netbsd-arm), const ETHER_CRC_LEN ideal-int
-pkg syscall (netbsd-arm), const ETHER_CRC_POLY_BE ideal-int
-pkg syscall (netbsd-arm), const ETHER_CRC_POLY_LE ideal-int
-pkg syscall (netbsd-arm), const ETHER_HDR_LEN ideal-int
-pkg syscall (netbsd-arm), const ETHER_MAX_LEN ideal-int
-pkg syscall (netbsd-arm), const ETHER_MAX_LEN_JUMBO ideal-int
-pkg syscall (netbsd-arm), const ETHER_MIN_LEN ideal-int
-pkg syscall (netbsd-arm), const ETHER_PPPOE_ENCAP_LEN ideal-int
-pkg syscall (netbsd-arm), const ETHER_TYPE_LEN ideal-int
-pkg syscall (netbsd-arm), const ETHER_VLAN_ENCAP_LEN ideal-int
-pkg syscall (netbsd-arm), const ETIME Errno
-pkg syscall (netbsd-arm), const EVFILT_AIO ideal-int
-pkg syscall (netbsd-arm), const EVFILT_PROC ideal-int
-pkg syscall (netbsd-arm), const EVFILT_READ ideal-int
-pkg syscall (netbsd-arm), const EVFILT_SIGNAL ideal-int
-pkg syscall (netbsd-arm), const EVFILT_SYSCOUNT ideal-int
-pkg syscall (netbsd-arm), const EVFILT_TIMER ideal-int
-pkg syscall (netbsd-arm), const EVFILT_VNODE ideal-int
-pkg syscall (netbsd-arm), const EVFILT_WRITE ideal-int
-pkg syscall (netbsd-arm), const EV_ADD ideal-int
-pkg syscall (netbsd-arm), const EV_CLEAR ideal-int
-pkg syscall (netbsd-arm), const EV_DELETE ideal-int
-pkg syscall (netbsd-arm), const EV_DISABLE ideal-int
-pkg syscall (netbsd-arm), const EV_ENABLE ideal-int
-pkg syscall (netbsd-arm), const EV_EOF ideal-int
-pkg syscall (netbsd-arm), const EV_ERROR ideal-int
-pkg syscall (netbsd-arm), const EV_FLAG1 ideal-int
-pkg syscall (netbsd-arm), const EV_ONESHOT ideal-int
-pkg syscall (netbsd-arm), const EV_SYSFLAGS ideal-int
-pkg syscall (netbsd-arm), const EXTA ideal-int
-pkg syscall (netbsd-arm), const EXTB ideal-int
-pkg syscall (netbsd-arm), const EXTPROC ideal-int
-pkg syscall (netbsd-arm), const FD_CLOEXEC ideal-int
-pkg syscall (netbsd-arm), const FD_SETSIZE ideal-int
-pkg syscall (netbsd-arm), const FLUSHO ideal-int
-pkg syscall (netbsd-arm), const F_CLOSEM ideal-int
-pkg syscall (netbsd-arm), const F_DUPFD ideal-int
-pkg syscall (netbsd-arm), const F_DUPFD_CLOEXEC ideal-int
-pkg syscall (netbsd-arm), const F_FSCTL ideal-int
-pkg syscall (netbsd-arm), const F_FSDIRMASK ideal-int
-pkg syscall (netbsd-arm), const F_FSIN ideal-int
-pkg syscall (netbsd-arm), const F_FSINOUT ideal-int
-pkg syscall (netbsd-arm), const F_FSOUT ideal-int
-pkg syscall (netbsd-arm), const F_FSPRIV ideal-int
-pkg syscall (netbsd-arm), const F_FSVOID ideal-int
-pkg syscall (netbsd-arm), const F_GETFD ideal-int
-pkg syscall (netbsd-arm), const F_GETFL ideal-int
-pkg syscall (netbsd-arm), const F_GETLK ideal-int
-pkg syscall (netbsd-arm), const F_GETNOSIGPIPE ideal-int
-pkg syscall (netbsd-arm), const F_GETOWN ideal-int
-pkg syscall (netbsd-arm), const F_MAXFD ideal-int
-pkg syscall (netbsd-arm), const F_OK ideal-int
-pkg syscall (netbsd-arm), const F_PARAM_MASK ideal-int
-pkg syscall (netbsd-arm), const F_PARAM_MAX ideal-int
-pkg syscall (netbsd-arm), const F_RDLCK ideal-int
-pkg syscall (netbsd-arm), const F_SETFD ideal-int
-pkg syscall (netbsd-arm), const F_SETFL ideal-int
-pkg syscall (netbsd-arm), const F_SETLK ideal-int
-pkg syscall (netbsd-arm), const F_SETLKW ideal-int
-pkg syscall (netbsd-arm), const F_SETNOSIGPIPE ideal-int
-pkg syscall (netbsd-arm), const F_SETOWN ideal-int
-pkg syscall (netbsd-arm), const F_UNLCK ideal-int
-pkg syscall (netbsd-arm), const F_WRLCK ideal-int
-pkg syscall (netbsd-arm), const HUPCL ideal-int
-pkg syscall (netbsd-arm), const ICANON ideal-int
-pkg syscall (netbsd-arm), const ICMP6_FILTER = 18
-pkg syscall (netbsd-arm), const ICMP6_FILTER ideal-int
-pkg syscall (netbsd-arm), const ICRNL ideal-int
-pkg syscall (netbsd-arm), const IEXTEN ideal-int
-pkg syscall (netbsd-arm), const IFAN_ARRIVAL ideal-int
-pkg syscall (netbsd-arm), const IFAN_DEPARTURE ideal-int
-pkg syscall (netbsd-arm), const IFA_ROUTE ideal-int
-pkg syscall (netbsd-arm), const IFF_ALLMULTI ideal-int
-pkg syscall (netbsd-arm), const IFF_CANTCHANGE ideal-int
-pkg syscall (netbsd-arm), const IFF_DEBUG ideal-int
-pkg syscall (netbsd-arm), const IFF_LINK0 ideal-int
-pkg syscall (netbsd-arm), const IFF_LINK1 ideal-int
-pkg syscall (netbsd-arm), const IFF_LINK2 ideal-int
-pkg syscall (netbsd-arm), const IFF_NOARP ideal-int
-pkg syscall (netbsd-arm), const IFF_NOTRAILERS ideal-int
-pkg syscall (netbsd-arm), const IFF_OACTIVE ideal-int
-pkg syscall (netbsd-arm), const IFF_POINTOPOINT ideal-int
-pkg syscall (netbsd-arm), const IFF_PROMISC ideal-int
-pkg syscall (netbsd-arm), const IFF_RUNNING ideal-int
-pkg syscall (netbsd-arm), const IFF_SIMPLEX ideal-int
-pkg syscall (netbsd-arm), const IFNAMSIZ ideal-int
-pkg syscall (netbsd-arm), const IFT_1822 ideal-int
-pkg syscall (netbsd-arm), const IFT_A12MPPSWITCH ideal-int
-pkg syscall (netbsd-arm), const IFT_AAL2 ideal-int
-pkg syscall (netbsd-arm), const IFT_AAL5 ideal-int
-pkg syscall (netbsd-arm), const IFT_ADSL ideal-int
-pkg syscall (netbsd-arm), const IFT_AFLANE8023 ideal-int
-pkg syscall (netbsd-arm), const IFT_AFLANE8025 ideal-int
-pkg syscall (netbsd-arm), const IFT_ARAP ideal-int
-pkg syscall (netbsd-arm), const IFT_ARCNET ideal-int
-pkg syscall (netbsd-arm), const IFT_ARCNETPLUS ideal-int
-pkg syscall (netbsd-arm), const IFT_ASYNC ideal-int
-pkg syscall (netbsd-arm), const IFT_ATM ideal-int
-pkg syscall (netbsd-arm), const IFT_ATMDXI ideal-int
-pkg syscall (netbsd-arm), const IFT_ATMFUNI ideal-int
-pkg syscall (netbsd-arm), const IFT_ATMIMA ideal-int
-pkg syscall (netbsd-arm), const IFT_ATMLOGICAL ideal-int
-pkg syscall (netbsd-arm), const IFT_ATMRADIO ideal-int
-pkg syscall (netbsd-arm), const IFT_ATMSUBINTERFACE ideal-int
-pkg syscall (netbsd-arm), const IFT_ATMVCIENDPT ideal-int
-pkg syscall (netbsd-arm), const IFT_ATMVIRTUAL ideal-int
-pkg syscall (netbsd-arm), const IFT_BGPPOLICYACCOUNTING ideal-int
-pkg syscall (netbsd-arm), const IFT_BRIDGE ideal-int
-pkg syscall (netbsd-arm), const IFT_BSC ideal-int
-pkg syscall (netbsd-arm), const IFT_CARP ideal-int
-pkg syscall (netbsd-arm), const IFT_CCTEMUL ideal-int
-pkg syscall (netbsd-arm), const IFT_CEPT ideal-int
-pkg syscall (netbsd-arm), const IFT_CES ideal-int
-pkg syscall (netbsd-arm), const IFT_CHANNEL ideal-int
-pkg syscall (netbsd-arm), const IFT_CNR ideal-int
-pkg syscall (netbsd-arm), const IFT_COFFEE ideal-int
-pkg syscall (netbsd-arm), const IFT_COMPOSITELINK ideal-int
-pkg syscall (netbsd-arm), const IFT_DCN ideal-int
-pkg syscall (netbsd-arm), const IFT_DIGITALPOWERLINE ideal-int
-pkg syscall (netbsd-arm), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int
-pkg syscall (netbsd-arm), const IFT_DLSW ideal-int
-pkg syscall (netbsd-arm), const IFT_DOCSCABLEDOWNSTREAM ideal-int
-pkg syscall (netbsd-arm), const IFT_DOCSCABLEMACLAYER ideal-int
-pkg syscall (netbsd-arm), const IFT_DOCSCABLEUPSTREAM ideal-int
-pkg syscall (netbsd-arm), const IFT_DOCSCABLEUPSTREAMCHANNEL ideal-int
-pkg syscall (netbsd-arm), const IFT_DS0 ideal-int
-pkg syscall (netbsd-arm), const IFT_DS0BUNDLE ideal-int
-pkg syscall (netbsd-arm), const IFT_DS1FDL ideal-int
-pkg syscall (netbsd-arm), const IFT_DS3 ideal-int
-pkg syscall (netbsd-arm), const IFT_DTM ideal-int
-pkg syscall (netbsd-arm), const IFT_DVBASILN ideal-int
-pkg syscall (netbsd-arm), const IFT_DVBASIOUT ideal-int
-pkg syscall (netbsd-arm), const IFT_DVBRCCDOWNSTREAM ideal-int
-pkg syscall (netbsd-arm), const IFT_DVBRCCMACLAYER ideal-int
-pkg syscall (netbsd-arm), const IFT_DVBRCCUPSTREAM ideal-int
-pkg syscall (netbsd-arm), const IFT_ECONET ideal-int
-pkg syscall (netbsd-arm), const IFT_EON ideal-int
-pkg syscall (netbsd-arm), const IFT_EPLRS ideal-int
-pkg syscall (netbsd-arm), const IFT_ESCON ideal-int
-pkg syscall (netbsd-arm), const IFT_ETHER ideal-int
-pkg syscall (netbsd-arm), const IFT_FAITH ideal-int
-pkg syscall (netbsd-arm), const IFT_FAST ideal-int
-pkg syscall (netbsd-arm), const IFT_FASTETHER ideal-int
-pkg syscall (netbsd-arm), const IFT_FASTETHERFX ideal-int
-pkg syscall (netbsd-arm), const IFT_FDDI ideal-int
-pkg syscall (netbsd-arm), const IFT_FIBRECHANNEL ideal-int
-pkg syscall (netbsd-arm), const IFT_FRAMERELAYINTERCONNECT ideal-int
-pkg syscall (netbsd-arm), const IFT_FRAMERELAYMPI ideal-int
-pkg syscall (netbsd-arm), const IFT_FRDLCIENDPT ideal-int
-pkg syscall (netbsd-arm), const IFT_FRELAY ideal-int
-pkg syscall (netbsd-arm), const IFT_FRELAYDCE ideal-int
-pkg syscall (netbsd-arm), const IFT_FRF16MFRBUNDLE ideal-int
-pkg syscall (netbsd-arm), const IFT_FRFORWARD ideal-int
-pkg syscall (netbsd-arm), const IFT_G703AT2MB ideal-int
-pkg syscall (netbsd-arm), const IFT_G703AT64K ideal-int
-pkg syscall (netbsd-arm), const IFT_GIF ideal-int
-pkg syscall (netbsd-arm), const IFT_GIGABITETHERNET ideal-int
-pkg syscall (netbsd-arm), const IFT_GR303IDT ideal-int
-pkg syscall (netbsd-arm), const IFT_GR303RDT ideal-int
-pkg syscall (netbsd-arm), const IFT_H323GATEKEEPER ideal-int
-pkg syscall (netbsd-arm), const IFT_H323PROXY ideal-int
-pkg syscall (netbsd-arm), const IFT_HDH1822 ideal-int
-pkg syscall (netbsd-arm), const IFT_HDLC ideal-int
-pkg syscall (netbsd-arm), const IFT_HDSL2 ideal-int
-pkg syscall (netbsd-arm), const IFT_HIPERLAN2 ideal-int
-pkg syscall (netbsd-arm), const IFT_HIPPI ideal-int
-pkg syscall (netbsd-arm), const IFT_HIPPIINTERFACE ideal-int
-pkg syscall (netbsd-arm), const IFT_HOSTPAD ideal-int
-pkg syscall (netbsd-arm), const IFT_HSSI ideal-int
-pkg syscall (netbsd-arm), const IFT_HY ideal-int
-pkg syscall (netbsd-arm), const IFT_IBM370PARCHAN ideal-int
-pkg syscall (netbsd-arm), const IFT_IDSL ideal-int
-pkg syscall (netbsd-arm), const IFT_IEEE1394 ideal-int
-pkg syscall (netbsd-arm), const IFT_IEEE80211 ideal-int
-pkg syscall (netbsd-arm), const IFT_IEEE80212 ideal-int
-pkg syscall (netbsd-arm), const IFT_IEEE8023ADLAG ideal-int
-pkg syscall (netbsd-arm), const IFT_IFGSN ideal-int
-pkg syscall (netbsd-arm), const IFT_IMT ideal-int
-pkg syscall (netbsd-arm), const IFT_INFINIBAND ideal-int
-pkg syscall (netbsd-arm), const IFT_INTERLEAVE ideal-int
-pkg syscall (netbsd-arm), const IFT_IP ideal-int
-pkg syscall (netbsd-arm), const IFT_IPFORWARD ideal-int
-pkg syscall (netbsd-arm), const IFT_IPOVERATM ideal-int
-pkg syscall (netbsd-arm), const IFT_IPOVERCDLC ideal-int
-pkg syscall (netbsd-arm), const IFT_IPOVERCLAW ideal-int
-pkg syscall (netbsd-arm), const IFT_IPSWITCH ideal-int
-pkg syscall (netbsd-arm), const IFT_ISDN ideal-int
-pkg syscall (netbsd-arm), const IFT_ISDNBASIC ideal-int
-pkg syscall (netbsd-arm), const IFT_ISDNPRIMARY ideal-int
-pkg syscall (netbsd-arm), const IFT_ISDNS ideal-int
-pkg syscall (netbsd-arm), const IFT_ISDNU ideal-int
-pkg syscall (netbsd-arm), const IFT_ISO88022LLC ideal-int
-pkg syscall (netbsd-arm), const IFT_ISO88023 ideal-int
-pkg syscall (netbsd-arm), const IFT_ISO88024 ideal-int
-pkg syscall (netbsd-arm), const IFT_ISO88025 ideal-int
-pkg syscall (netbsd-arm), const IFT_ISO88025CRFPINT ideal-int
-pkg syscall (netbsd-arm), const IFT_ISO88025DTR ideal-int
-pkg syscall (netbsd-arm), const IFT_ISO88025FIBER ideal-int
-pkg syscall (netbsd-arm), const IFT_ISO88026 ideal-int
-pkg syscall (netbsd-arm), const IFT_ISUP ideal-int
-pkg syscall (netbsd-arm), const IFT_L2VLAN ideal-int
-pkg syscall (netbsd-arm), const IFT_L3IPVLAN ideal-int
-pkg syscall (netbsd-arm), const IFT_L3IPXVLAN ideal-int
-pkg syscall (netbsd-arm), const IFT_LAPB ideal-int
-pkg syscall (netbsd-arm), const IFT_LAPD ideal-int
-pkg syscall (netbsd-arm), const IFT_LAPF ideal-int
-pkg syscall (netbsd-arm), const IFT_LINEGROUP ideal-int
-pkg syscall (netbsd-arm), const IFT_LOCALTALK ideal-int
-pkg syscall (netbsd-arm), const IFT_LOOP ideal-int
-pkg syscall (netbsd-arm), const IFT_MEDIAMAILOVERIP ideal-int
-pkg syscall (netbsd-arm), const IFT_MFSIGLINK ideal-int
-pkg syscall (netbsd-arm), const IFT_MIOX25 ideal-int
-pkg syscall (netbsd-arm), const IFT_MODEM ideal-int
-pkg syscall (netbsd-arm), const IFT_MPC ideal-int
-pkg syscall (netbsd-arm), const IFT_MPLS ideal-int
-pkg syscall (netbsd-arm), const IFT_MPLSTUNNEL ideal-int
-pkg syscall (netbsd-arm), const IFT_MSDSL ideal-int
-pkg syscall (netbsd-arm), const IFT_MVL ideal-int
-pkg syscall (netbsd-arm), const IFT_MYRINET ideal-int
-pkg syscall (netbsd-arm), const IFT_NFAS ideal-int
-pkg syscall (netbsd-arm), const IFT_NSIP ideal-int
-pkg syscall (netbsd-arm), const IFT_OPTICALCHANNEL ideal-int
-pkg syscall (netbsd-arm), const IFT_OPTICALTRANSPORT ideal-int
-pkg syscall (netbsd-arm), const IFT_OTHER ideal-int
-pkg syscall (netbsd-arm), const IFT_P10 ideal-int
-pkg syscall (netbsd-arm), const IFT_P80 ideal-int
-pkg syscall (netbsd-arm), const IFT_PARA ideal-int
-pkg syscall (netbsd-arm), const IFT_PFLOG ideal-int
-pkg syscall (netbsd-arm), const IFT_PFSYNC ideal-int
-pkg syscall (netbsd-arm), const IFT_PLC ideal-int
-pkg syscall (netbsd-arm), const IFT_PON155 ideal-int
-pkg syscall (netbsd-arm), const IFT_PON622 ideal-int
-pkg syscall (netbsd-arm), const IFT_POS ideal-int
-pkg syscall (netbsd-arm), const IFT_PPP ideal-int
-pkg syscall (netbsd-arm), const IFT_PPPMULTILINKBUNDLE ideal-int
-pkg syscall (netbsd-arm), const IFT_PROPATM ideal-int
-pkg syscall (netbsd-arm), const IFT_PROPBWAP2MP ideal-int
-pkg syscall (netbsd-arm), const IFT_PROPCNLS ideal-int
-pkg syscall (netbsd-arm), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int
-pkg syscall (netbsd-arm), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int
-pkg syscall (netbsd-arm), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int
-pkg syscall (netbsd-arm), const IFT_PROPMUX ideal-int
-pkg syscall (netbsd-arm), const IFT_PROPVIRTUAL ideal-int
-pkg syscall (netbsd-arm), const IFT_PROPWIRELESSP2P ideal-int
-pkg syscall (netbsd-arm), const IFT_PTPSERIAL ideal-int
-pkg syscall (netbsd-arm), const IFT_PVC ideal-int
-pkg syscall (netbsd-arm), const IFT_Q2931 ideal-int
-pkg syscall (netbsd-arm), const IFT_QLLC ideal-int
-pkg syscall (netbsd-arm), const IFT_RADIOMAC ideal-int
-pkg syscall (netbsd-arm), const IFT_RADSL ideal-int
-pkg syscall (netbsd-arm), const IFT_REACHDSL ideal-int
-pkg syscall (netbsd-arm), const IFT_RFC1483 ideal-int
-pkg syscall (netbsd-arm), const IFT_RS232 ideal-int
-pkg syscall (netbsd-arm), const IFT_RSRB ideal-int
-pkg syscall (netbsd-arm), const IFT_SDLC ideal-int
-pkg syscall (netbsd-arm), const IFT_SDSL ideal-int
-pkg syscall (netbsd-arm), const IFT_SHDSL ideal-int
-pkg syscall (netbsd-arm), const IFT_SIP ideal-int
-pkg syscall (netbsd-arm), const IFT_SIPSIG ideal-int
-pkg syscall (netbsd-arm), const IFT_SIPTG ideal-int
-pkg syscall (netbsd-arm), const IFT_SLIP ideal-int
-pkg syscall (netbsd-arm), const IFT_SMDSDXI ideal-int
-pkg syscall (netbsd-arm), const IFT_SMDSICIP ideal-int
-pkg syscall (netbsd-arm), const IFT_SONET ideal-int
-pkg syscall (netbsd-arm), const IFT_SONETOVERHEADCHANNEL ideal-int
-pkg syscall (netbsd-arm), const IFT_SONETPATH ideal-int
-pkg syscall (netbsd-arm), const IFT_SONETVT ideal-int
-pkg syscall (netbsd-arm), const IFT_SRP ideal-int
-pkg syscall (netbsd-arm), const IFT_SS7SIGLINK ideal-int
-pkg syscall (netbsd-arm), const IFT_STACKTOSTACK ideal-int
-pkg syscall (netbsd-arm), const IFT_STARLAN ideal-int
-pkg syscall (netbsd-arm), const IFT_STF ideal-int
-pkg syscall (netbsd-arm), const IFT_T1 ideal-int
-pkg syscall (netbsd-arm), const IFT_TDLC ideal-int
-pkg syscall (netbsd-arm), const IFT_TELINK ideal-int
-pkg syscall (netbsd-arm), const IFT_TERMPAD ideal-int
-pkg syscall (netbsd-arm), const IFT_TR008 ideal-int
-pkg syscall (netbsd-arm), const IFT_TRANSPHDLC ideal-int
-pkg syscall (netbsd-arm), const IFT_TUNNEL ideal-int
-pkg syscall (netbsd-arm), const IFT_ULTRA ideal-int
-pkg syscall (netbsd-arm), const IFT_USB ideal-int
-pkg syscall (netbsd-arm), const IFT_V11 ideal-int
-pkg syscall (netbsd-arm), const IFT_V35 ideal-int
-pkg syscall (netbsd-arm), const IFT_V36 ideal-int
-pkg syscall (netbsd-arm), const IFT_V37 ideal-int
-pkg syscall (netbsd-arm), const IFT_VDSL ideal-int
-pkg syscall (netbsd-arm), const IFT_VIRTUALIPADDRESS ideal-int
-pkg syscall (netbsd-arm), const IFT_VIRTUALTG ideal-int
-pkg syscall (netbsd-arm), const IFT_VOICEDID ideal-int
-pkg syscall (netbsd-arm), const IFT_VOICEEM ideal-int
-pkg syscall (netbsd-arm), const IFT_VOICEEMFGD ideal-int
-pkg syscall (netbsd-arm), const IFT_VOICEENCAP ideal-int
-pkg syscall (netbsd-arm), const IFT_VOICEFGDEANA ideal-int
-pkg syscall (netbsd-arm), const IFT_VOICEFXO ideal-int
-pkg syscall (netbsd-arm), const IFT_VOICEFXS ideal-int
-pkg syscall (netbsd-arm), const IFT_VOICEOVERATM ideal-int
-pkg syscall (netbsd-arm), const IFT_VOICEOVERCABLE ideal-int
-pkg syscall (netbsd-arm), const IFT_VOICEOVERFRAMERELAY ideal-int
-pkg syscall (netbsd-arm), const IFT_VOICEOVERIP ideal-int
-pkg syscall (netbsd-arm), const IFT_X213 ideal-int
-pkg syscall (netbsd-arm), const IFT_X25 ideal-int
-pkg syscall (netbsd-arm), const IFT_X25DDN ideal-int
-pkg syscall (netbsd-arm), const IFT_X25HUNTGROUP ideal-int
-pkg syscall (netbsd-arm), const IFT_X25MLP ideal-int
-pkg syscall (netbsd-arm), const IFT_X25PLE ideal-int
-pkg syscall (netbsd-arm), const IFT_XETHER ideal-int
-pkg syscall (netbsd-arm), const IGNBRK ideal-int
-pkg syscall (netbsd-arm), const IGNCR ideal-int
-pkg syscall (netbsd-arm), const IGNPAR ideal-int
-pkg syscall (netbsd-arm), const IMAXBEL ideal-int
-pkg syscall (netbsd-arm), const INLCR ideal-int
-pkg syscall (netbsd-arm), const INPCK ideal-int
-pkg syscall (netbsd-arm), const IN_CLASSA_HOST ideal-int
-pkg syscall (netbsd-arm), const IN_CLASSA_MAX ideal-int
-pkg syscall (netbsd-arm), const IN_CLASSA_NET ideal-int
-pkg syscall (netbsd-arm), const IN_CLASSA_NSHIFT ideal-int
-pkg syscall (netbsd-arm), const IN_CLASSB_HOST ideal-int
-pkg syscall (netbsd-arm), const IN_CLASSB_MAX ideal-int
-pkg syscall (netbsd-arm), const IN_CLASSB_NET ideal-int
-pkg syscall (netbsd-arm), const IN_CLASSB_NSHIFT ideal-int
-pkg syscall (netbsd-arm), const IN_CLASSC_HOST ideal-int
-pkg syscall (netbsd-arm), const IN_CLASSC_NET ideal-int
-pkg syscall (netbsd-arm), const IN_CLASSC_NSHIFT ideal-int
-pkg syscall (netbsd-arm), const IN_CLASSD_HOST ideal-int
-pkg syscall (netbsd-arm), const IN_CLASSD_NET ideal-int
-pkg syscall (netbsd-arm), const IN_CLASSD_NSHIFT ideal-int
-pkg syscall (netbsd-arm), const IN_LOOPBACKNET ideal-int
-pkg syscall (netbsd-arm), const IPPROTO_AH ideal-int
-pkg syscall (netbsd-arm), const IPPROTO_CARP ideal-int
-pkg syscall (netbsd-arm), const IPPROTO_DONE ideal-int
-pkg syscall (netbsd-arm), const IPPROTO_DSTOPTS ideal-int
-pkg syscall (netbsd-arm), const IPPROTO_EGP ideal-int
-pkg syscall (netbsd-arm), const IPPROTO_ENCAP ideal-int
-pkg syscall (netbsd-arm), const IPPROTO_EON ideal-int
-pkg syscall (netbsd-arm), const IPPROTO_ESP ideal-int
-pkg syscall (netbsd-arm), const IPPROTO_ETHERIP ideal-int
-pkg syscall (netbsd-arm), const IPPROTO_FRAGMENT ideal-int
-pkg syscall (netbsd-arm), const IPPROTO_GGP ideal-int
-pkg syscall (netbsd-arm), const IPPROTO_GRE ideal-int
-pkg syscall (netbsd-arm), const IPPROTO_HOPOPTS ideal-int
-pkg syscall (netbsd-arm), const IPPROTO_ICMP ideal-int
-pkg syscall (netbsd-arm), const IPPROTO_ICMPV6 ideal-int
-pkg syscall (netbsd-arm), const IPPROTO_IDP ideal-int
-pkg syscall (netbsd-arm), const IPPROTO_IGMP ideal-int
-pkg syscall (netbsd-arm), const IPPROTO_IPCOMP ideal-int
-pkg syscall (netbsd-arm), const IPPROTO_IPIP ideal-int
-pkg syscall (netbsd-arm), const IPPROTO_IPV4 ideal-int
-pkg syscall (netbsd-arm), const IPPROTO_IPV6_ICMP ideal-int
-pkg syscall (netbsd-arm), const IPPROTO_MAX ideal-int
-pkg syscall (netbsd-arm), const IPPROTO_MAXID ideal-int
-pkg syscall (netbsd-arm), const IPPROTO_MOBILE ideal-int
-pkg syscall (netbsd-arm), const IPPROTO_NONE ideal-int
-pkg syscall (netbsd-arm), const IPPROTO_PFSYNC ideal-int
-pkg syscall (netbsd-arm), const IPPROTO_PIM ideal-int
-pkg syscall (netbsd-arm), const IPPROTO_PUP ideal-int
-pkg syscall (netbsd-arm), const IPPROTO_RAW ideal-int
-pkg syscall (netbsd-arm), const IPPROTO_ROUTING ideal-int
-pkg syscall (netbsd-arm), const IPPROTO_RSVP ideal-int
-pkg syscall (netbsd-arm), const IPPROTO_TP ideal-int
-pkg syscall (netbsd-arm), const IPPROTO_VRRP ideal-int
-pkg syscall (netbsd-arm), const IPV6_CHECKSUM ideal-int
-pkg syscall (netbsd-arm), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int
-pkg syscall (netbsd-arm), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int
-pkg syscall (netbsd-arm), const IPV6_DEFHLIM ideal-int
-pkg syscall (netbsd-arm), const IPV6_DONTFRAG ideal-int
-pkg syscall (netbsd-arm), const IPV6_DSTOPTS ideal-int
-pkg syscall (netbsd-arm), const IPV6_FAITH ideal-int
-pkg syscall (netbsd-arm), const IPV6_FLOWINFO_MASK ideal-int
-pkg syscall (netbsd-arm), const IPV6_FLOWLABEL_MASK ideal-int
-pkg syscall (netbsd-arm), const IPV6_FRAGTTL ideal-int
-pkg syscall (netbsd-arm), const IPV6_HLIMDEC ideal-int
-pkg syscall (netbsd-arm), const IPV6_HOPLIMIT ideal-int
-pkg syscall (netbsd-arm), const IPV6_HOPOPTS ideal-int
-pkg syscall (netbsd-arm), const IPV6_IPSEC_POLICY ideal-int
-pkg syscall (netbsd-arm), const IPV6_MAXHLIM ideal-int
-pkg syscall (netbsd-arm), const IPV6_MAXPACKET ideal-int
-pkg syscall (netbsd-arm), const IPV6_MMTU ideal-int
-pkg syscall (netbsd-arm), const IPV6_NEXTHOP ideal-int
-pkg syscall (netbsd-arm), const IPV6_PATHMTU ideal-int
-pkg syscall (netbsd-arm), const IPV6_PKTINFO ideal-int
-pkg syscall (netbsd-arm), const IPV6_PORTRANGE ideal-int
-pkg syscall (netbsd-arm), const IPV6_PORTRANGE_DEFAULT ideal-int
-pkg syscall (netbsd-arm), const IPV6_PORTRANGE_HIGH ideal-int
-pkg syscall (netbsd-arm), const IPV6_PORTRANGE_LOW ideal-int
-pkg syscall (netbsd-arm), const IPV6_RECVDSTOPTS ideal-int
-pkg syscall (netbsd-arm), const IPV6_RECVHOPLIMIT ideal-int
-pkg syscall (netbsd-arm), const IPV6_RECVHOPOPTS ideal-int
-pkg syscall (netbsd-arm), const IPV6_RECVPATHMTU ideal-int
-pkg syscall (netbsd-arm), const IPV6_RECVPKTINFO ideal-int
-pkg syscall (netbsd-arm), const IPV6_RECVRTHDR ideal-int
-pkg syscall (netbsd-arm), const IPV6_RECVTCLASS ideal-int
-pkg syscall (netbsd-arm), const IPV6_RTHDR ideal-int
-pkg syscall (netbsd-arm), const IPV6_RTHDRDSTOPTS ideal-int
-pkg syscall (netbsd-arm), const IPV6_RTHDR_LOOSE ideal-int
-pkg syscall (netbsd-arm), const IPV6_RTHDR_STRICT ideal-int
-pkg syscall (netbsd-arm), const IPV6_RTHDR_TYPE_0 ideal-int
-pkg syscall (netbsd-arm), const IPV6_SOCKOPT_RESERVED1 ideal-int
-pkg syscall (netbsd-arm), const IPV6_TCLASS ideal-int
-pkg syscall (netbsd-arm), const IPV6_USE_MIN_MTU ideal-int
-pkg syscall (netbsd-arm), const IPV6_VERSION ideal-int
-pkg syscall (netbsd-arm), const IPV6_VERSION_MASK ideal-int
-pkg syscall (netbsd-arm), const IP_DEFAULT_MULTICAST_LOOP ideal-int
-pkg syscall (netbsd-arm), const IP_DEFAULT_MULTICAST_TTL ideal-int
-pkg syscall (netbsd-arm), const IP_DF ideal-int
-pkg syscall (netbsd-arm), const IP_EF ideal-int
-pkg syscall (netbsd-arm), const IP_ERRORMTU ideal-int
-pkg syscall (netbsd-arm), const IP_HDRINCL ideal-int
-pkg syscall (netbsd-arm), const IP_IPSEC_POLICY ideal-int
-pkg syscall (netbsd-arm), const IP_MAXPACKET ideal-int
-pkg syscall (netbsd-arm), const IP_MAX_MEMBERSHIPS ideal-int
-pkg syscall (netbsd-arm), const IP_MF ideal-int
-pkg syscall (netbsd-arm), const IP_MINFRAGSIZE ideal-int
-pkg syscall (netbsd-arm), const IP_MINTTL ideal-int
-pkg syscall (netbsd-arm), const IP_MSS ideal-int
-pkg syscall (netbsd-arm), const IP_OFFMASK ideal-int
-pkg syscall (netbsd-arm), const IP_OPTIONS ideal-int
-pkg syscall (netbsd-arm), const IP_PORTRANGE ideal-int
-pkg syscall (netbsd-arm), const IP_PORTRANGE_DEFAULT ideal-int
-pkg syscall (netbsd-arm), const IP_PORTRANGE_HIGH ideal-int
-pkg syscall (netbsd-arm), const IP_PORTRANGE_LOW ideal-int
-pkg syscall (netbsd-arm), const IP_RECVDSTADDR ideal-int
-pkg syscall (netbsd-arm), const IP_RECVIF ideal-int
-pkg syscall (netbsd-arm), const IP_RECVOPTS ideal-int
-pkg syscall (netbsd-arm), const IP_RECVRETOPTS ideal-int
-pkg syscall (netbsd-arm), const IP_RECVTTL ideal-int
-pkg syscall (netbsd-arm), const IP_RETOPTS ideal-int
-pkg syscall (netbsd-arm), const IP_RF ideal-int
-pkg syscall (netbsd-arm), const ISIG ideal-int
-pkg syscall (netbsd-arm), const ISTRIP ideal-int
-pkg syscall (netbsd-arm), const IXANY ideal-int
-pkg syscall (netbsd-arm), const IXOFF ideal-int
-pkg syscall (netbsd-arm), const IXON ideal-int
-pkg syscall (netbsd-arm), const LOCK_EX ideal-int
-pkg syscall (netbsd-arm), const LOCK_NB ideal-int
-pkg syscall (netbsd-arm), const LOCK_SH ideal-int
-pkg syscall (netbsd-arm), const LOCK_UN ideal-int
-pkg syscall (netbsd-arm), const MSG_BCAST ideal-int
-pkg syscall (netbsd-arm), const MSG_CMSG_CLOEXEC ideal-int
-pkg syscall (netbsd-arm), const MSG_CONTROLMBUF ideal-int
-pkg syscall (netbsd-arm), const MSG_CTRUNC ideal-int
-pkg syscall (netbsd-arm), const MSG_DONTROUTE ideal-int
-pkg syscall (netbsd-arm), const MSG_DONTWAIT ideal-int
-pkg syscall (netbsd-arm), const MSG_EOR ideal-int
-pkg syscall (netbsd-arm), const MSG_IOVUSRSPACE ideal-int
-pkg syscall (netbsd-arm), const MSG_LENUSRSPACE ideal-int
-pkg syscall (netbsd-arm), const MSG_MCAST ideal-int
-pkg syscall (netbsd-arm), const MSG_NAMEMBUF ideal-int
-pkg syscall (netbsd-arm), const MSG_NBIO ideal-int
-pkg syscall (netbsd-arm), const MSG_NOSIGNAL ideal-int
-pkg syscall (netbsd-arm), const MSG_OOB ideal-int
-pkg syscall (netbsd-arm), const MSG_PEEK ideal-int
-pkg syscall (netbsd-arm), const MSG_TRUNC ideal-int
-pkg syscall (netbsd-arm), const MSG_USERFLAGS ideal-int
-pkg syscall (netbsd-arm), const MSG_WAITALL ideal-int
-pkg syscall (netbsd-arm), const NAME_MAX ideal-int
-pkg syscall (netbsd-arm), const NET_RT_DUMP ideal-int
-pkg syscall (netbsd-arm), const NET_RT_FLAGS ideal-int
-pkg syscall (netbsd-arm), const NET_RT_IFLIST ideal-int
-pkg syscall (netbsd-arm), const NET_RT_MAXID ideal-int
-pkg syscall (netbsd-arm), const NET_RT_OIFLIST ideal-int
-pkg syscall (netbsd-arm), const NET_RT_OOIFLIST ideal-int
-pkg syscall (netbsd-arm), const NOFLSH ideal-int
-pkg syscall (netbsd-arm), const NOTE_ATTRIB ideal-int
-pkg syscall (netbsd-arm), const NOTE_CHILD ideal-int
-pkg syscall (netbsd-arm), const NOTE_DELETE ideal-int
-pkg syscall (netbsd-arm), const NOTE_EXEC ideal-int
-pkg syscall (netbsd-arm), const NOTE_EXIT ideal-int
-pkg syscall (netbsd-arm), const NOTE_EXTEND ideal-int
-pkg syscall (netbsd-arm), const NOTE_FORK ideal-int
-pkg syscall (netbsd-arm), const NOTE_LINK ideal-int
-pkg syscall (netbsd-arm), const NOTE_LOWAT ideal-int
-pkg syscall (netbsd-arm), const NOTE_PCTRLMASK ideal-int
-pkg syscall (netbsd-arm), const NOTE_PDATAMASK ideal-int
-pkg syscall (netbsd-arm), const NOTE_RENAME ideal-int
-pkg syscall (netbsd-arm), const NOTE_REVOKE ideal-int
-pkg syscall (netbsd-arm), const NOTE_TRACK ideal-int
-pkg syscall (netbsd-arm), const NOTE_TRACKERR ideal-int
-pkg syscall (netbsd-arm), const NOTE_WRITE ideal-int
-pkg syscall (netbsd-arm), const OCRNL ideal-int
-pkg syscall (netbsd-arm), const OFIOGETBMAP ideal-int
-pkg syscall (netbsd-arm), const ONLCR ideal-int
-pkg syscall (netbsd-arm), const ONLRET ideal-int
-pkg syscall (netbsd-arm), const ONOCR ideal-int
-pkg syscall (netbsd-arm), const ONOEOT ideal-int
-pkg syscall (netbsd-arm), const OPOST ideal-int
-pkg syscall (netbsd-arm), const O_ACCMODE ideal-int
-pkg syscall (netbsd-arm), const O_ALT_IO ideal-int
-pkg syscall (netbsd-arm), const O_DIRECT ideal-int
-pkg syscall (netbsd-arm), const O_DIRECTORY ideal-int
-pkg syscall (netbsd-arm), const O_DSYNC ideal-int
-pkg syscall (netbsd-arm), const O_EXLOCK ideal-int
-pkg syscall (netbsd-arm), const O_FSYNC ideal-int
-pkg syscall (netbsd-arm), const O_NDELAY ideal-int
-pkg syscall (netbsd-arm), const O_NOFOLLOW ideal-int
-pkg syscall (netbsd-arm), const O_NOSIGPIPE ideal-int
-pkg syscall (netbsd-arm), const O_RSYNC ideal-int
-pkg syscall (netbsd-arm), const O_SHLOCK ideal-int
-pkg syscall (netbsd-arm), const PARENB ideal-int
-pkg syscall (netbsd-arm), const PARMRK ideal-int
-pkg syscall (netbsd-arm), const PARODD ideal-int
-pkg syscall (netbsd-arm), const PENDIN ideal-int
-pkg syscall (netbsd-arm), const PRIO_PGRP = 1
-pkg syscall (netbsd-arm), const PRIO_PGRP ideal-int
-pkg syscall (netbsd-arm), const PRIO_PROCESS = 0
-pkg syscall (netbsd-arm), const PRIO_PROCESS ideal-int
-pkg syscall (netbsd-arm), const PRIO_USER = 2
-pkg syscall (netbsd-arm), const PRIO_USER ideal-int
-pkg syscall (netbsd-arm), const PRI_IOFLUSH ideal-int
-pkg syscall (netbsd-arm), const PTRACE_CONT ideal-int
-pkg syscall (netbsd-arm), const PTRACE_KILL ideal-int
-pkg syscall (netbsd-arm), const PTRACE_TRACEME ideal-int
-pkg syscall (netbsd-arm), const RLIMIT_AS ideal-int
-pkg syscall (netbsd-arm), const RLIMIT_CORE ideal-int
-pkg syscall (netbsd-arm), const RLIMIT_CPU ideal-int
-pkg syscall (netbsd-arm), const RLIMIT_DATA ideal-int
-pkg syscall (netbsd-arm), const RLIMIT_FSIZE ideal-int
-pkg syscall (netbsd-arm), const RLIMIT_NOFILE ideal-int
-pkg syscall (netbsd-arm), const RLIMIT_STACK ideal-int
-pkg syscall (netbsd-arm), const RLIM_INFINITY ideal-int
-pkg syscall (netbsd-arm), const RTAX_AUTHOR ideal-int
-pkg syscall (netbsd-arm), const RTAX_BRD ideal-int
-pkg syscall (netbsd-arm), const RTAX_DST ideal-int
-pkg syscall (netbsd-arm), const RTAX_GATEWAY ideal-int
-pkg syscall (netbsd-arm), const RTAX_GENMASK ideal-int
-pkg syscall (netbsd-arm), const RTAX_IFA ideal-int
-pkg syscall (netbsd-arm), const RTAX_IFP ideal-int
-pkg syscall (netbsd-arm), const RTAX_MAX ideal-int
-pkg syscall (netbsd-arm), const RTAX_NETMASK ideal-int
-pkg syscall (netbsd-arm), const RTAX_TAG ideal-int
-pkg syscall (netbsd-arm), const RTA_AUTHOR ideal-int
-pkg syscall (netbsd-arm), const RTA_BRD ideal-int
-pkg syscall (netbsd-arm), const RTA_DST ideal-int
-pkg syscall (netbsd-arm), const RTA_GATEWAY ideal-int
-pkg syscall (netbsd-arm), const RTA_GENMASK ideal-int
-pkg syscall (netbsd-arm), const RTA_IFA ideal-int
-pkg syscall (netbsd-arm), const RTA_IFP ideal-int
-pkg syscall (netbsd-arm), const RTA_NETMASK ideal-int
-pkg syscall (netbsd-arm), const RTA_TAG ideal-int
-pkg syscall (netbsd-arm), const RTF_ANNOUNCE ideal-int
-pkg syscall (netbsd-arm), const RTF_BLACKHOLE ideal-int
-pkg syscall (netbsd-arm), const RTF_CLONED ideal-int
-pkg syscall (netbsd-arm), const RTF_CLONING ideal-int
-pkg syscall (netbsd-arm), const RTF_DONE ideal-int
-pkg syscall (netbsd-arm), const RTF_DYNAMIC ideal-int
-pkg syscall (netbsd-arm), const RTF_GATEWAY ideal-int
-pkg syscall (netbsd-arm), const RTF_HOST ideal-int
-pkg syscall (netbsd-arm), const RTF_LLINFO ideal-int
-pkg syscall (netbsd-arm), const RTF_MASK ideal-int
-pkg syscall (netbsd-arm), const RTF_MODIFIED ideal-int
-pkg syscall (netbsd-arm), const RTF_PROTO1 ideal-int
-pkg syscall (netbsd-arm), const RTF_PROTO2 ideal-int
-pkg syscall (netbsd-arm), const RTF_REJECT ideal-int
-pkg syscall (netbsd-arm), const RTF_SRC ideal-int
-pkg syscall (netbsd-arm), const RTF_STATIC ideal-int
-pkg syscall (netbsd-arm), const RTF_UP ideal-int
-pkg syscall (netbsd-arm), const RTF_XRESOLVE ideal-int
-pkg syscall (netbsd-arm), const RTM_ADD ideal-int
-pkg syscall (netbsd-arm), const RTM_CHANGE ideal-int
-pkg syscall (netbsd-arm), const RTM_CHGADDR ideal-int
-pkg syscall (netbsd-arm), const RTM_DELADDR ideal-int
-pkg syscall (netbsd-arm), const RTM_DELETE ideal-int
-pkg syscall (netbsd-arm), const RTM_GET ideal-int
-pkg syscall (netbsd-arm), const RTM_IEEE80211 ideal-int
-pkg syscall (netbsd-arm), const RTM_IFANNOUNCE ideal-int
-pkg syscall (netbsd-arm), const RTM_IFINFO ideal-int
-pkg syscall (netbsd-arm), const RTM_LLINFO_UPD ideal-int
-pkg syscall (netbsd-arm), const RTM_LOCK ideal-int
-pkg syscall (netbsd-arm), const RTM_LOSING ideal-int
-pkg syscall (netbsd-arm), const RTM_MISS ideal-int
-pkg syscall (netbsd-arm), const RTM_NEWADDR ideal-int
-pkg syscall (netbsd-arm), const RTM_OIFINFO ideal-int
-pkg syscall (netbsd-arm), const RTM_OLDADD ideal-int
-pkg syscall (netbsd-arm), const RTM_OLDDEL ideal-int
-pkg syscall (netbsd-arm), const RTM_OOIFINFO ideal-int
-pkg syscall (netbsd-arm), const RTM_REDIRECT ideal-int
-pkg syscall (netbsd-arm), const RTM_RESOLVE ideal-int
-pkg syscall (netbsd-arm), const RTM_RTTUNIT ideal-int
-pkg syscall (netbsd-arm), const RTM_SETGATE ideal-int
-pkg syscall (netbsd-arm), const RTM_VERSION ideal-int
-pkg syscall (netbsd-arm), const RTV_EXPIRE ideal-int
-pkg syscall (netbsd-arm), const RTV_HOPCOUNT ideal-int
-pkg syscall (netbsd-arm), const RTV_MTU ideal-int
-pkg syscall (netbsd-arm), const RTV_RPIPE ideal-int
-pkg syscall (netbsd-arm), const RTV_RTT ideal-int
-pkg syscall (netbsd-arm), const RTV_RTTVAR ideal-int
-pkg syscall (netbsd-arm), const RTV_SPIPE ideal-int
-pkg syscall (netbsd-arm), const RTV_SSTHRESH ideal-int
-pkg syscall (netbsd-arm), const RUSAGE_CHILDREN ideal-int
-pkg syscall (netbsd-arm), const RUSAGE_SELF ideal-int
-pkg syscall (netbsd-arm), const SCM_CREDS ideal-int
-pkg syscall (netbsd-arm), const SCM_RIGHTS ideal-int
-pkg syscall (netbsd-arm), const SCM_TIMESTAMP ideal-int
-pkg syscall (netbsd-arm), const SIGCHLD Signal
-pkg syscall (netbsd-arm), const SIGCONT Signal
-pkg syscall (netbsd-arm), const SIGEMT Signal
-pkg syscall (netbsd-arm), const SIGINFO Signal
-pkg syscall (netbsd-arm), const SIGIO Signal
-pkg syscall (netbsd-arm), const SIGIOT Signal
-pkg syscall (netbsd-arm), const SIGPROF Signal
-pkg syscall (netbsd-arm), const SIGPWR Signal
-pkg syscall (netbsd-arm), const SIGSTOP Signal
-pkg syscall (netbsd-arm), const SIGSYS Signal
-pkg syscall (netbsd-arm), const SIGTSTP Signal
-pkg syscall (netbsd-arm), const SIGTTIN Signal
-pkg syscall (netbsd-arm), const SIGTTOU Signal
-pkg syscall (netbsd-arm), const SIGURG Signal
-pkg syscall (netbsd-arm), const SIGUSR1 Signal
-pkg syscall (netbsd-arm), const SIGUSR2 Signal
-pkg syscall (netbsd-arm), const SIGVTALRM Signal
-pkg syscall (netbsd-arm), const SIGWINCH Signal
-pkg syscall (netbsd-arm), const SIGXCPU Signal
-pkg syscall (netbsd-arm), const SIGXFSZ Signal
-pkg syscall (netbsd-arm), const SIOCADDMULTI ideal-int
-pkg syscall (netbsd-arm), const SIOCADDRT ideal-int
-pkg syscall (netbsd-arm), const SIOCAIFADDR ideal-int
-pkg syscall (netbsd-arm), const SIOCALIFADDR ideal-int
-pkg syscall (netbsd-arm), const SIOCATMARK ideal-int
-pkg syscall (netbsd-arm), const SIOCDELMULTI ideal-int
-pkg syscall (netbsd-arm), const SIOCDELRT ideal-int
-pkg syscall (netbsd-arm), const SIOCDIFADDR ideal-int
-pkg syscall (netbsd-arm), const SIOCDIFPHYADDR ideal-int
-pkg syscall (netbsd-arm), const SIOCDLIFADDR ideal-int
-pkg syscall (netbsd-arm), const SIOCGDRVSPEC ideal-int
-pkg syscall (netbsd-arm), const SIOCGETPFSYNC ideal-int
-pkg syscall (netbsd-arm), const SIOCGETSGCNT ideal-int
-pkg syscall (netbsd-arm), const SIOCGETVIFCNT ideal-int
-pkg syscall (netbsd-arm), const SIOCGHIWAT ideal-int
-pkg syscall (netbsd-arm), const SIOCGIFADDR ideal-int
-pkg syscall (netbsd-arm), const SIOCGIFADDRPREF ideal-int
-pkg syscall (netbsd-arm), const SIOCGIFALIAS ideal-int
-pkg syscall (netbsd-arm), const SIOCGIFBRDADDR ideal-int
-pkg syscall (netbsd-arm), const SIOCGIFCAP ideal-int
-pkg syscall (netbsd-arm), const SIOCGIFCONF ideal-int
-pkg syscall (netbsd-arm), const SIOCGIFDATA ideal-int
-pkg syscall (netbsd-arm), const SIOCGIFDLT ideal-int
-pkg syscall (netbsd-arm), const SIOCGIFDSTADDR ideal-int
-pkg syscall (netbsd-arm), const SIOCGIFFLAGS ideal-int
-pkg syscall (netbsd-arm), const SIOCGIFGENERIC ideal-int
-pkg syscall (netbsd-arm), const SIOCGIFMEDIA ideal-int
-pkg syscall (netbsd-arm), const SIOCGIFMETRIC ideal-int
-pkg syscall (netbsd-arm), const SIOCGIFMTU ideal-int
-pkg syscall (netbsd-arm), const SIOCGIFNETMASK ideal-int
-pkg syscall (netbsd-arm), const SIOCGIFPDSTADDR ideal-int
-pkg syscall (netbsd-arm), const SIOCGIFPSRCADDR ideal-int
-pkg syscall (netbsd-arm), const SIOCGLIFADDR ideal-int
-pkg syscall (netbsd-arm), const SIOCGLIFPHYADDR ideal-int
-pkg syscall (netbsd-arm), const SIOCGLINKSTR ideal-int
-pkg syscall (netbsd-arm), const SIOCGLOWAT ideal-int
-pkg syscall (netbsd-arm), const SIOCGPGRP ideal-int
-pkg syscall (netbsd-arm), const SIOCGVH ideal-int
-pkg syscall (netbsd-arm), const SIOCIFCREATE ideal-int
-pkg syscall (netbsd-arm), const SIOCIFDESTROY ideal-int
-pkg syscall (netbsd-arm), const SIOCIFGCLONERS ideal-int
-pkg syscall (netbsd-arm), const SIOCINITIFADDR ideal-int
-pkg syscall (netbsd-arm), const SIOCSDRVSPEC ideal-int
-pkg syscall (netbsd-arm), const SIOCSETPFSYNC ideal-int
-pkg syscall (netbsd-arm), const SIOCSHIWAT ideal-int
-pkg syscall (netbsd-arm), const SIOCSIFADDR ideal-int
-pkg syscall (netbsd-arm), const SIOCSIFADDRPREF ideal-int
-pkg syscall (netbsd-arm), const SIOCSIFBRDADDR ideal-int
-pkg syscall (netbsd-arm), const SIOCSIFCAP ideal-int
-pkg syscall (netbsd-arm), const SIOCSIFDSTADDR ideal-int
-pkg syscall (netbsd-arm), const SIOCSIFFLAGS ideal-int
-pkg syscall (netbsd-arm), const SIOCSIFGENERIC ideal-int
-pkg syscall (netbsd-arm), const SIOCSIFMEDIA ideal-int
-pkg syscall (netbsd-arm), const SIOCSIFMETRIC ideal-int
-pkg syscall (netbsd-arm), const SIOCSIFMTU ideal-int
-pkg syscall (netbsd-arm), const SIOCSIFNETMASK ideal-int
-pkg syscall (netbsd-arm), const SIOCSIFPHYADDR ideal-int
-pkg syscall (netbsd-arm), const SIOCSLIFPHYADDR ideal-int
-pkg syscall (netbsd-arm), const SIOCSLINKSTR ideal-int
-pkg syscall (netbsd-arm), const SIOCSLOWAT ideal-int
-pkg syscall (netbsd-arm), const SIOCSPGRP ideal-int
-pkg syscall (netbsd-arm), const SIOCSVH ideal-int
-pkg syscall (netbsd-arm), const SIOCZIFDATA ideal-int
-pkg syscall (netbsd-arm), const SOCK_CLOEXEC ideal-int
-pkg syscall (netbsd-arm), const SOCK_FLAGS_MASK ideal-int
-pkg syscall (netbsd-arm), const SOCK_NONBLOCK ideal-int
-pkg syscall (netbsd-arm), const SOCK_NOSIGPIPE ideal-int
-pkg syscall (netbsd-arm), const SOCK_RDM ideal-int
-pkg syscall (netbsd-arm), const SO_ACCEPTCONN ideal-int
-pkg syscall (netbsd-arm), const SO_ACCEPTFILTER ideal-int
-pkg syscall (netbsd-arm), const SO_DEBUG ideal-int
-pkg syscall (netbsd-arm), const SO_ERROR ideal-int
-pkg syscall (netbsd-arm), const SO_NOHEADER ideal-int
-pkg syscall (netbsd-arm), const SO_NOSIGPIPE ideal-int
-pkg syscall (netbsd-arm), const SO_OOBINLINE ideal-int
-pkg syscall (netbsd-arm), const SO_OVERFLOWED ideal-int
-pkg syscall (netbsd-arm), const SO_RCVLOWAT ideal-int
-pkg syscall (netbsd-arm), const SO_RCVTIMEO ideal-int
-pkg syscall (netbsd-arm), const SO_REUSEPORT ideal-int
-pkg syscall (netbsd-arm), const SO_SNDLOWAT ideal-int
-pkg syscall (netbsd-arm), const SO_SNDTIMEO ideal-int
-pkg syscall (netbsd-arm), const SO_TIMESTAMP ideal-int
-pkg syscall (netbsd-arm), const SO_TYPE ideal-int
-pkg syscall (netbsd-arm), const SO_USELOOPBACK ideal-int
-pkg syscall (netbsd-arm), const SYSCTL_VERSION ideal-int
-pkg syscall (netbsd-arm), const SYSCTL_VERS_0 ideal-int
-pkg syscall (netbsd-arm), const SYSCTL_VERS_1 ideal-int
-pkg syscall (netbsd-arm), const SYSCTL_VERS_MASK ideal-int
-pkg syscall (netbsd-arm), const SYS_ACCEPT ideal-int
-pkg syscall (netbsd-arm), const SYS_ACCESS ideal-int
-pkg syscall (netbsd-arm), const SYS_ACCT ideal-int
-pkg syscall (netbsd-arm), const SYS_ADJTIME ideal-int
-pkg syscall (netbsd-arm), const SYS_BIND ideal-int
-pkg syscall (netbsd-arm), const SYS_BREAK ideal-int
-pkg syscall (netbsd-arm), const SYS_CHDIR ideal-int
-pkg syscall (netbsd-arm), const SYS_CHFLAGS ideal-int
-pkg syscall (netbsd-arm), const SYS_CHMOD ideal-int
-pkg syscall (netbsd-arm), const SYS_CHOWN ideal-int
-pkg syscall (netbsd-arm), const SYS_CHROOT ideal-int
-pkg syscall (netbsd-arm), const SYS_CLOCK_GETRES ideal-int
-pkg syscall (netbsd-arm), const SYS_CLOCK_GETTIME ideal-int
-pkg syscall (netbsd-arm), const SYS_CLOCK_SETTIME ideal-int
-pkg syscall (netbsd-arm), const SYS_CLOSE ideal-int
-pkg syscall (netbsd-arm), const SYS_CONNECT ideal-int
-pkg syscall (netbsd-arm), const SYS_DUP ideal-int
-pkg syscall (netbsd-arm), const SYS_DUP2 ideal-int
-pkg syscall (netbsd-arm), const SYS_DUP3 ideal-int
-pkg syscall (netbsd-arm), const SYS_EXECVE ideal-int
-pkg syscall (netbsd-arm), const SYS_EXIT ideal-int
-pkg syscall (netbsd-arm), const SYS_EXTATTRCTL ideal-int
-pkg syscall (netbsd-arm), const SYS_EXTATTR_DELETE_FD ideal-int
-pkg syscall (netbsd-arm), const SYS_EXTATTR_DELETE_FILE ideal-int
-pkg syscall (netbsd-arm), const SYS_EXTATTR_DELETE_LINK ideal-int
-pkg syscall (netbsd-arm), const SYS_EXTATTR_GET_FD ideal-int
-pkg syscall (netbsd-arm), const SYS_EXTATTR_GET_FILE ideal-int
-pkg syscall (netbsd-arm), const SYS_EXTATTR_GET_LINK ideal-int
-pkg syscall (netbsd-arm), const SYS_EXTATTR_LIST_FD ideal-int
-pkg syscall (netbsd-arm), const SYS_EXTATTR_LIST_FILE ideal-int
-pkg syscall (netbsd-arm), const SYS_EXTATTR_LIST_LINK ideal-int
-pkg syscall (netbsd-arm), const SYS_EXTATTR_SET_FD ideal-int
-pkg syscall (netbsd-arm), const SYS_EXTATTR_SET_FILE ideal-int
-pkg syscall (netbsd-arm), const SYS_EXTATTR_SET_LINK ideal-int
-pkg syscall (netbsd-arm), const SYS_FACCESSAT ideal-int
-pkg syscall (netbsd-arm), const SYS_FCHDIR ideal-int
-pkg syscall (netbsd-arm), const SYS_FCHFLAGS ideal-int
-pkg syscall (netbsd-arm), const SYS_FCHMOD ideal-int
-pkg syscall (netbsd-arm), const SYS_FCHMODAT ideal-int
-pkg syscall (netbsd-arm), const SYS_FCHOWN ideal-int
-pkg syscall (netbsd-arm), const SYS_FCHOWNAT ideal-int
-pkg syscall (netbsd-arm), const SYS_FCHROOT ideal-int
-pkg syscall (netbsd-arm), const SYS_FCNTL ideal-int
-pkg syscall (netbsd-arm), const SYS_FDATASYNC ideal-int
-pkg syscall (netbsd-arm), const SYS_FEXECVE ideal-int
-pkg syscall (netbsd-arm), const SYS_FGETXATTR ideal-int
-pkg syscall (netbsd-arm), const SYS_FHSTAT ideal-int
-pkg syscall (netbsd-arm), const SYS_FKTRACE ideal-int
-pkg syscall (netbsd-arm), const SYS_FLISTXATTR ideal-int
-pkg syscall (netbsd-arm), const SYS_FLOCK ideal-int
-pkg syscall (netbsd-arm), const SYS_FORK ideal-int
-pkg syscall (netbsd-arm), const SYS_FPATHCONF ideal-int
-pkg syscall (netbsd-arm), const SYS_FREMOVEXATTR ideal-int
-pkg syscall (netbsd-arm), const SYS_FSETXATTR ideal-int
-pkg syscall (netbsd-arm), const SYS_FSTAT ideal-int
-pkg syscall (netbsd-arm), const SYS_FSTATAT ideal-int
-pkg syscall (netbsd-arm), const SYS_FSTATVFS1 ideal-int
-pkg syscall (netbsd-arm), const SYS_FSYNC ideal-int
-pkg syscall (netbsd-arm), const SYS_FSYNC_RANGE ideal-int
-pkg syscall (netbsd-arm), const SYS_FTRUNCATE ideal-int
-pkg syscall (netbsd-arm), const SYS_FUTIMENS ideal-int
-pkg syscall (netbsd-arm), const SYS_FUTIMES ideal-int
-pkg syscall (netbsd-arm), const SYS_GETCONTEXT ideal-int
-pkg syscall (netbsd-arm), const SYS_GETDENTS ideal-int
-pkg syscall (netbsd-arm), const SYS_GETEGID ideal-int
-pkg syscall (netbsd-arm), const SYS_GETEUID ideal-int
-pkg syscall (netbsd-arm), const SYS_GETFH ideal-int
-pkg syscall (netbsd-arm), const SYS_GETGID ideal-int
-pkg syscall (netbsd-arm), const SYS_GETGROUPS ideal-int
-pkg syscall (netbsd-arm), const SYS_GETITIMER ideal-int
-pkg syscall (netbsd-arm), const SYS_GETPEERNAME ideal-int
-pkg syscall (netbsd-arm), const SYS_GETPGID ideal-int
-pkg syscall (netbsd-arm), const SYS_GETPGRP ideal-int
-pkg syscall (netbsd-arm), const SYS_GETPID ideal-int
-pkg syscall (netbsd-arm), const SYS_GETPPID ideal-int
-pkg syscall (netbsd-arm), const SYS_GETPRIORITY ideal-int
-pkg syscall (netbsd-arm), const SYS_GETRLIMIT ideal-int
-pkg syscall (netbsd-arm), const SYS_GETRUSAGE ideal-int
-pkg syscall (netbsd-arm), const SYS_GETSID ideal-int
-pkg syscall (netbsd-arm), const SYS_GETSOCKNAME ideal-int
-pkg syscall (netbsd-arm), const SYS_GETSOCKOPT ideal-int
-pkg syscall (netbsd-arm), const SYS_GETTIMEOFDAY ideal-int
-pkg syscall (netbsd-arm), const SYS_GETUID ideal-int
-pkg syscall (netbsd-arm), const SYS_GETVFSSTAT ideal-int
-pkg syscall (netbsd-arm), const SYS_GETXATTR ideal-int
-pkg syscall (netbsd-arm), const SYS_IOCTL ideal-int
-pkg syscall (netbsd-arm), const SYS_ISSETUGID ideal-int
-pkg syscall (netbsd-arm), const SYS_KEVENT ideal-int
-pkg syscall (netbsd-arm), const SYS_KILL ideal-int
-pkg syscall (netbsd-arm), const SYS_KQUEUE ideal-int
-pkg syscall (netbsd-arm), const SYS_KQUEUE1 ideal-int
-pkg syscall (netbsd-arm), const SYS_KTRACE ideal-int
-pkg syscall (netbsd-arm), const SYS_LCHFLAGS ideal-int
-pkg syscall (netbsd-arm), const SYS_LCHMOD ideal-int
-pkg syscall (netbsd-arm), const SYS_LCHOWN ideal-int
-pkg syscall (netbsd-arm), const SYS_LGETXATTR ideal-int
-pkg syscall (netbsd-arm), const SYS_LINK ideal-int
-pkg syscall (netbsd-arm), const SYS_LINKAT ideal-int
-pkg syscall (netbsd-arm), const SYS_LISTEN ideal-int
-pkg syscall (netbsd-arm), const SYS_LISTXATTR ideal-int
-pkg syscall (netbsd-arm), const SYS_LLISTXATTR ideal-int
-pkg syscall (netbsd-arm), const SYS_LREMOVEXATTR ideal-int
-pkg syscall (netbsd-arm), const SYS_LSEEK ideal-int
-pkg syscall (netbsd-arm), const SYS_LSETXATTR ideal-int
-pkg syscall (netbsd-arm), const SYS_LSTAT ideal-int
-pkg syscall (netbsd-arm), const SYS_LUTIMES ideal-int
-pkg syscall (netbsd-arm), const SYS_MADVISE ideal-int
-pkg syscall (netbsd-arm), const SYS_MINCORE ideal-int
-pkg syscall (netbsd-arm), const SYS_MINHERIT ideal-int
-pkg syscall (netbsd-arm), const SYS_MKDIR ideal-int
-pkg syscall (netbsd-arm), const SYS_MKDIRAT ideal-int
-pkg syscall (netbsd-arm), const SYS_MKFIFO ideal-int
-pkg syscall (netbsd-arm), const SYS_MKFIFOAT ideal-int
-pkg syscall (netbsd-arm), const SYS_MKNOD ideal-int
-pkg syscall (netbsd-arm), const SYS_MKNODAT ideal-int
-pkg syscall (netbsd-arm), const SYS_MLOCK ideal-int
-pkg syscall (netbsd-arm), const SYS_MLOCKALL ideal-int
-pkg syscall (netbsd-arm), const SYS_MMAP ideal-int
-pkg syscall (netbsd-arm), const SYS_MODCTL ideal-int
-pkg syscall (netbsd-arm), const SYS_MOUNT ideal-int
-pkg syscall (netbsd-arm), const SYS_MPROTECT ideal-int
-pkg syscall (netbsd-arm), const SYS_MREMAP ideal-int
-pkg syscall (netbsd-arm), const SYS_MSGCTL ideal-int
-pkg syscall (netbsd-arm), const SYS_MSGGET ideal-int
-pkg syscall (netbsd-arm), const SYS_MSGRCV ideal-int
-pkg syscall (netbsd-arm), const SYS_MSGSND ideal-int
-pkg syscall (netbsd-arm), const SYS_MUNLOCK ideal-int
-pkg syscall (netbsd-arm), const SYS_MUNLOCKALL ideal-int
-pkg syscall (netbsd-arm), const SYS_MUNMAP ideal-int
-pkg syscall (netbsd-arm), const SYS_NANOSLEEP ideal-int
-pkg syscall (netbsd-arm), const SYS_NTP_ADJTIME ideal-int
-pkg syscall (netbsd-arm), const SYS_NTP_GETTIME ideal-int
-pkg syscall (netbsd-arm), const SYS_OPEN ideal-int
-pkg syscall (netbsd-arm), const SYS_OPENAT ideal-int
-pkg syscall (netbsd-arm), const SYS_PACCEPT ideal-int
-pkg syscall (netbsd-arm), const SYS_PATHCONF ideal-int
-pkg syscall (netbsd-arm), const SYS_PIPE ideal-int
-pkg syscall (netbsd-arm), const SYS_PIPE2 ideal-int
-pkg syscall (netbsd-arm), const SYS_PMC_CONTROL ideal-int
-pkg syscall (netbsd-arm), const SYS_PMC_GET_INFO ideal-int
-pkg syscall (netbsd-arm), const SYS_POLL ideal-int
-pkg syscall (netbsd-arm), const SYS_POLLTS ideal-int
-pkg syscall (netbsd-arm), const SYS_POSIX_FADVISE ideal-int
-pkg syscall (netbsd-arm), const SYS_POSIX_SPAWN ideal-int
-pkg syscall (netbsd-arm), const SYS_PREAD ideal-int
-pkg syscall (netbsd-arm), const SYS_PREADV ideal-int
-pkg syscall (netbsd-arm), const SYS_PROFIL ideal-int
-pkg syscall (netbsd-arm), const SYS_PSELECT ideal-int
-pkg syscall (netbsd-arm), const SYS_PSET_ASSIGN ideal-int
-pkg syscall (netbsd-arm), const SYS_PSET_CREATE ideal-int
-pkg syscall (netbsd-arm), const SYS_PSET_DESTROY ideal-int
-pkg syscall (netbsd-arm), const SYS_PTRACE ideal-int
-pkg syscall (netbsd-arm), const SYS_PWRITE ideal-int
-pkg syscall (netbsd-arm), const SYS_PWRITEV ideal-int
-pkg syscall (netbsd-arm), const SYS_RASCTL ideal-int
-pkg syscall (netbsd-arm), const SYS_READ ideal-int
-pkg syscall (netbsd-arm), const SYS_READLINK ideal-int
-pkg syscall (netbsd-arm), const SYS_READLINKAT ideal-int
-pkg syscall (netbsd-arm), const SYS_READV ideal-int
-pkg syscall (netbsd-arm), const SYS_REBOOT ideal-int
-pkg syscall (netbsd-arm), const SYS_RECVFROM ideal-int
-pkg syscall (netbsd-arm), const SYS_RECVMMSG ideal-int
-pkg syscall (netbsd-arm), const SYS_RECVMSG ideal-int
-pkg syscall (netbsd-arm), const SYS_REMOVEXATTR ideal-int
-pkg syscall (netbsd-arm), const SYS_RENAME ideal-int
-pkg syscall (netbsd-arm), const SYS_RENAMEAT ideal-int
-pkg syscall (netbsd-arm), const SYS_REVOKE ideal-int
-pkg syscall (netbsd-arm), const SYS_RMDIR ideal-int
-pkg syscall (netbsd-arm), const SYS_SBRK ideal-int
-pkg syscall (netbsd-arm), const SYS_SCHED_YIELD ideal-int
-pkg syscall (netbsd-arm), const SYS_SELECT ideal-int
-pkg syscall (netbsd-arm), const SYS_SEMCONFIG ideal-int
-pkg syscall (netbsd-arm), const SYS_SEMGET ideal-int
-pkg syscall (netbsd-arm), const SYS_SEMOP ideal-int
-pkg syscall (netbsd-arm), const SYS_SENDMMSG ideal-int
-pkg syscall (netbsd-arm), const SYS_SENDMSG ideal-int
-pkg syscall (netbsd-arm), const SYS_SENDTO ideal-int
-pkg syscall (netbsd-arm), const SYS_SETCONTEXT ideal-int
-pkg syscall (netbsd-arm), const SYS_SETEGID ideal-int
-pkg syscall (netbsd-arm), const SYS_SETEUID ideal-int
-pkg syscall (netbsd-arm), const SYS_SETGID ideal-int
-pkg syscall (netbsd-arm), const SYS_SETGROUPS ideal-int
-pkg syscall (netbsd-arm), const SYS_SETITIMER ideal-int
-pkg syscall (netbsd-arm), const SYS_SETPGID ideal-int
-pkg syscall (netbsd-arm), const SYS_SETPRIORITY ideal-int
-pkg syscall (netbsd-arm), const SYS_SETREGID ideal-int
-pkg syscall (netbsd-arm), const SYS_SETREUID ideal-int
-pkg syscall (netbsd-arm), const SYS_SETRLIMIT ideal-int
-pkg syscall (netbsd-arm), const SYS_SETSID ideal-int
-pkg syscall (netbsd-arm), const SYS_SETSOCKOPT ideal-int
-pkg syscall (netbsd-arm), const SYS_SETTIMEOFDAY ideal-int
-pkg syscall (netbsd-arm), const SYS_SETUID ideal-int
-pkg syscall (netbsd-arm), const SYS_SETXATTR ideal-int
-pkg syscall (netbsd-arm), const SYS_SHMAT ideal-int
-pkg syscall (netbsd-arm), const SYS_SHMCTL ideal-int
-pkg syscall (netbsd-arm), const SYS_SHMDT ideal-int
-pkg syscall (netbsd-arm), const SYS_SHMGET ideal-int
-pkg syscall (netbsd-arm), const SYS_SHUTDOWN ideal-int
-pkg syscall (netbsd-arm), const SYS_SIGQUEUEINFO ideal-int
-pkg syscall (netbsd-arm), const SYS_SOCKET ideal-int
-pkg syscall (netbsd-arm), const SYS_SOCKETPAIR ideal-int
-pkg syscall (netbsd-arm), const SYS_SSTK ideal-int
-pkg syscall (netbsd-arm), const SYS_STAT ideal-int
-pkg syscall (netbsd-arm), const SYS_STATVFS1 ideal-int
-pkg syscall (netbsd-arm), const SYS_SWAPCTL ideal-int
-pkg syscall (netbsd-arm), const SYS_SYMLINK ideal-int
-pkg syscall (netbsd-arm), const SYS_SYMLINKAT ideal-int
-pkg syscall (netbsd-arm), const SYS_SYNC ideal-int
-pkg syscall (netbsd-arm), const SYS_SYSARCH ideal-int
-pkg syscall (netbsd-arm), const SYS_TIMER_CREATE ideal-int
-pkg syscall (netbsd-arm), const SYS_TIMER_DELETE ideal-int
-pkg syscall (netbsd-arm), const SYS_TIMER_GETOVERRUN ideal-int
-pkg syscall (netbsd-arm), const SYS_TIMER_GETTIME ideal-int
-pkg syscall (netbsd-arm), const SYS_TIMER_SETTIME ideal-int
-pkg syscall (netbsd-arm), const SYS_TRUNCATE ideal-int
-pkg syscall (netbsd-arm), const SYS_UMASK ideal-int
-pkg syscall (netbsd-arm), const SYS_UNDELETE ideal-int
-pkg syscall (netbsd-arm), const SYS_UNLINK ideal-int
-pkg syscall (netbsd-arm), const SYS_UNLINKAT ideal-int
-pkg syscall (netbsd-arm), const SYS_UNMOUNT ideal-int
-pkg syscall (netbsd-arm), const SYS_UTIMENSAT ideal-int
-pkg syscall (netbsd-arm), const SYS_UTIMES ideal-int
-pkg syscall (netbsd-arm), const SYS_UTRACE ideal-int
-pkg syscall (netbsd-arm), const SYS_UUIDGEN ideal-int
-pkg syscall (netbsd-arm), const SYS_VADVISE ideal-int
-pkg syscall (netbsd-arm), const SYS_VFORK ideal-int
-pkg syscall (netbsd-arm), const SYS_WAIT4 ideal-int
-pkg syscall (netbsd-arm), const SYS_WRITE ideal-int
-pkg syscall (netbsd-arm), const SYS_WRITEV ideal-int
-pkg syscall (netbsd-arm), const SYS__LWP_CONTINUE ideal-int
-pkg syscall (netbsd-arm), const SYS__LWP_CREATE ideal-int
-pkg syscall (netbsd-arm), const SYS__LWP_CTL ideal-int
-pkg syscall (netbsd-arm), const SYS__LWP_DETACH ideal-int
-pkg syscall (netbsd-arm), const SYS__LWP_EXIT ideal-int
-pkg syscall (netbsd-arm), const SYS__LWP_GETNAME ideal-int
-pkg syscall (netbsd-arm), const SYS__LWP_GETPRIVATE ideal-int
-pkg syscall (netbsd-arm), const SYS__LWP_KILL ideal-int
-pkg syscall (netbsd-arm), const SYS__LWP_PARK ideal-int
-pkg syscall (netbsd-arm), const SYS__LWP_SELF ideal-int
-pkg syscall (netbsd-arm), const SYS__LWP_SETNAME ideal-int
-pkg syscall (netbsd-arm), const SYS__LWP_SETPRIVATE ideal-int
-pkg syscall (netbsd-arm), const SYS__LWP_SUSPEND ideal-int
-pkg syscall (netbsd-arm), const SYS__LWP_UNPARK ideal-int
-pkg syscall (netbsd-arm), const SYS__LWP_UNPARK_ALL ideal-int
-pkg syscall (netbsd-arm), const SYS__LWP_WAIT ideal-int
-pkg syscall (netbsd-arm), const SYS__LWP_WAKEUP ideal-int
-pkg syscall (netbsd-arm), const SYS__PSET_BIND ideal-int
-pkg syscall (netbsd-arm), const SYS__SCHED_GETAFFINITY ideal-int
-pkg syscall (netbsd-arm), const SYS__SCHED_GETPARAM ideal-int
-pkg syscall (netbsd-arm), const SYS__SCHED_SETAFFINITY ideal-int
-pkg syscall (netbsd-arm), const SYS__SCHED_SETPARAM ideal-int
-pkg syscall (netbsd-arm), const SYS___CLONE ideal-int
-pkg syscall (netbsd-arm), const SYS___GETCWD ideal-int
-pkg syscall (netbsd-arm), const SYS___GETLOGIN ideal-int
-pkg syscall (netbsd-arm), const SYS___POSIX_CHOWN ideal-int
-pkg syscall (netbsd-arm), const SYS___POSIX_FCHOWN ideal-int
-pkg syscall (netbsd-arm), const SYS___POSIX_LCHOWN ideal-int
-pkg syscall (netbsd-arm), const SYS___POSIX_RENAME ideal-int
-pkg syscall (netbsd-arm), const SYS___QUOTACTL ideal-int
-pkg syscall (netbsd-arm), const SYS___SEMCTL ideal-int
-pkg syscall (netbsd-arm), const SYS___SETLOGIN ideal-int
-pkg syscall (netbsd-arm), const SYS___SIGACTION_SIGTRAMP ideal-int
-pkg syscall (netbsd-arm), const SYS___SIGTIMEDWAIT ideal-int
-pkg syscall (netbsd-arm), const SYS___SYSCTL ideal-int
-pkg syscall (netbsd-arm), const S_ARCH1 ideal-int
-pkg syscall (netbsd-arm), const S_ARCH2 ideal-int
-pkg syscall (netbsd-arm), const S_BLKSIZE ideal-int
-pkg syscall (netbsd-arm), const S_IEXEC ideal-int
-pkg syscall (netbsd-arm), const S_IFWHT ideal-int
-pkg syscall (netbsd-arm), const S_IREAD ideal-int
-pkg syscall (netbsd-arm), const S_IRGRP ideal-int
-pkg syscall (netbsd-arm), const S_IROTH ideal-int
-pkg syscall (netbsd-arm), const S_IRWXG ideal-int
-pkg syscall (netbsd-arm), const S_IRWXO ideal-int
-pkg syscall (netbsd-arm), const S_IRWXU ideal-int
-pkg syscall (netbsd-arm), const S_ISTXT ideal-int
-pkg syscall (netbsd-arm), const S_IWGRP ideal-int
-pkg syscall (netbsd-arm), const S_IWOTH ideal-int
-pkg syscall (netbsd-arm), const S_IWRITE ideal-int
-pkg syscall (netbsd-arm), const S_IXGRP ideal-int
-pkg syscall (netbsd-arm), const S_IXOTH ideal-int
-pkg syscall (netbsd-arm), const SizeofBpfHdr ideal-int
-pkg syscall (netbsd-arm), const SizeofBpfInsn ideal-int
-pkg syscall (netbsd-arm), const SizeofBpfProgram ideal-int
-pkg syscall (netbsd-arm), const SizeofBpfStat ideal-int
-pkg syscall (netbsd-arm), const SizeofBpfVersion ideal-int
-pkg syscall (netbsd-arm), const SizeofCmsghdr ideal-int
-pkg syscall (netbsd-arm), const SizeofICMPv6Filter = 32
-pkg syscall (netbsd-arm), const SizeofICMPv6Filter ideal-int
-pkg syscall (netbsd-arm), const SizeofIPMreq ideal-int
-pkg syscall (netbsd-arm), const SizeofIPv6MTUInfo = 32
-pkg syscall (netbsd-arm), const SizeofIPv6MTUInfo ideal-int
-pkg syscall (netbsd-arm), const SizeofIPv6Mreq ideal-int
-pkg syscall (netbsd-arm), const SizeofIfAnnounceMsghdr ideal-int
-pkg syscall (netbsd-arm), const SizeofIfData ideal-int
-pkg syscall (netbsd-arm), const SizeofIfMsghdr ideal-int
-pkg syscall (netbsd-arm), const SizeofIfaMsghdr ideal-int
-pkg syscall (netbsd-arm), const SizeofInet6Pktinfo ideal-int
-pkg syscall (netbsd-arm), const SizeofLinger ideal-int
-pkg syscall (netbsd-arm), const SizeofMsghdr ideal-int
-pkg syscall (netbsd-arm), const SizeofRtMetrics ideal-int
-pkg syscall (netbsd-arm), const SizeofRtMsghdr ideal-int
-pkg syscall (netbsd-arm), const SizeofSockaddrAny ideal-int
-pkg syscall (netbsd-arm), const SizeofSockaddrDatalink ideal-int
-pkg syscall (netbsd-arm), const SizeofSockaddrInet4 ideal-int
-pkg syscall (netbsd-arm), const SizeofSockaddrInet6 ideal-int
-pkg syscall (netbsd-arm), const SizeofSockaddrUnix ideal-int
-pkg syscall (netbsd-arm), const TCIFLUSH ideal-int
-pkg syscall (netbsd-arm), const TCIOFLUSH ideal-int
-pkg syscall (netbsd-arm), const TCOFLUSH ideal-int
-pkg syscall (netbsd-arm), const TCP_CONGCTL ideal-int
-pkg syscall (netbsd-arm), const TCP_KEEPCNT ideal-int
-pkg syscall (netbsd-arm), const TCP_KEEPIDLE ideal-int
-pkg syscall (netbsd-arm), const TCP_KEEPINIT ideal-int
-pkg syscall (netbsd-arm), const TCP_KEEPINTVL ideal-int
-pkg syscall (netbsd-arm), const TCP_MAXBURST ideal-int
-pkg syscall (netbsd-arm), const TCP_MAXSEG ideal-int
-pkg syscall (netbsd-arm), const TCP_MAXWIN ideal-int
-pkg syscall (netbsd-arm), const TCP_MAX_WINSHIFT ideal-int
-pkg syscall (netbsd-arm), const TCP_MD5SIG ideal-int
-pkg syscall (netbsd-arm), const TCP_MINMSS ideal-int
-pkg syscall (netbsd-arm), const TCP_MSS ideal-int
-pkg syscall (netbsd-arm), const TCSAFLUSH ideal-int
-pkg syscall (netbsd-arm), const TIOCCBRK ideal-int
-pkg syscall (netbsd-arm), const TIOCCDTR ideal-int
-pkg syscall (netbsd-arm), const TIOCCONS ideal-int
-pkg syscall (netbsd-arm), const TIOCDCDTIMESTAMP ideal-int
-pkg syscall (netbsd-arm), const TIOCDRAIN ideal-int
-pkg syscall (netbsd-arm), const TIOCEXCL ideal-int
-pkg syscall (netbsd-arm), const TIOCEXT ideal-int
-pkg syscall (netbsd-arm), const TIOCFLAG_CDTRCTS ideal-int
-pkg syscall (netbsd-arm), const TIOCFLAG_CLOCAL ideal-int
-pkg syscall (netbsd-arm), const TIOCFLAG_CRTSCTS ideal-int
-pkg syscall (netbsd-arm), const TIOCFLAG_MDMBUF ideal-int
-pkg syscall (netbsd-arm), const TIOCFLAG_SOFTCAR ideal-int
-pkg syscall (netbsd-arm), const TIOCFLUSH ideal-int
-pkg syscall (netbsd-arm), const TIOCGETA ideal-int
-pkg syscall (netbsd-arm), const TIOCGETD ideal-int
-pkg syscall (netbsd-arm), const TIOCGFLAGS ideal-int
-pkg syscall (netbsd-arm), const TIOCGLINED ideal-int
-pkg syscall (netbsd-arm), const TIOCGPGRP ideal-int
-pkg syscall (netbsd-arm), const TIOCGQSIZE ideal-int
-pkg syscall (netbsd-arm), const TIOCGRANTPT ideal-int
-pkg syscall (netbsd-arm), const TIOCGSID ideal-int
-pkg syscall (netbsd-arm), const TIOCGSIZE ideal-int
-pkg syscall (netbsd-arm), const TIOCGWINSZ ideal-int
-pkg syscall (netbsd-arm), const TIOCMBIC ideal-int
-pkg syscall (netbsd-arm), const TIOCMBIS ideal-int
-pkg syscall (netbsd-arm), const TIOCMGET ideal-int
-pkg syscall (netbsd-arm), const TIOCMSET ideal-int
-pkg syscall (netbsd-arm), const TIOCM_CAR ideal-int
-pkg syscall (netbsd-arm), const TIOCM_CD ideal-int
-pkg syscall (netbsd-arm), const TIOCM_CTS ideal-int
-pkg syscall (netbsd-arm), const TIOCM_DSR ideal-int
-pkg syscall (netbsd-arm), const TIOCM_DTR ideal-int
-pkg syscall (netbsd-arm), const TIOCM_LE ideal-int
-pkg syscall (netbsd-arm), const TIOCM_RI ideal-int
-pkg syscall (netbsd-arm), const TIOCM_RNG ideal-int
-pkg syscall (netbsd-arm), const TIOCM_RTS ideal-int
-pkg syscall (netbsd-arm), const TIOCM_SR ideal-int
-pkg syscall (netbsd-arm), const TIOCM_ST ideal-int
-pkg syscall (netbsd-arm), const TIOCNOTTY ideal-int
-pkg syscall (netbsd-arm), const TIOCNXCL ideal-int
-pkg syscall (netbsd-arm), const TIOCOUTQ ideal-int
-pkg syscall (netbsd-arm), const TIOCPKT ideal-int
-pkg syscall (netbsd-arm), const TIOCPKT_DATA ideal-int
-pkg syscall (netbsd-arm), const TIOCPKT_DOSTOP ideal-int
-pkg syscall (netbsd-arm), const TIOCPKT_FLUSHREAD ideal-int
-pkg syscall (netbsd-arm), const TIOCPKT_FLUSHWRITE ideal-int
-pkg syscall (netbsd-arm), const TIOCPKT_IOCTL ideal-int
-pkg syscall (netbsd-arm), const TIOCPKT_NOSTOP ideal-int
-pkg syscall (netbsd-arm), const TIOCPKT_START ideal-int
-pkg syscall (netbsd-arm), const TIOCPKT_STOP ideal-int
-pkg syscall (netbsd-arm), const TIOCPTMGET ideal-int
-pkg syscall (netbsd-arm), const TIOCPTSNAME ideal-int
-pkg syscall (netbsd-arm), const TIOCRCVFRAME ideal-int
-pkg syscall (netbsd-arm), const TIOCREMOTE ideal-int
-pkg syscall (netbsd-arm), const TIOCSBRK ideal-int
-pkg syscall (netbsd-arm), const TIOCSCTTY ideal-int
-pkg syscall (netbsd-arm), const TIOCSDTR ideal-int
-pkg syscall (netbsd-arm), const TIOCSETA ideal-int
-pkg syscall (netbsd-arm), const TIOCSETAF ideal-int
-pkg syscall (netbsd-arm), const TIOCSETAW ideal-int
-pkg syscall (netbsd-arm), const TIOCSETD ideal-int
-pkg syscall (netbsd-arm), const TIOCSFLAGS ideal-int
-pkg syscall (netbsd-arm), const TIOCSIG ideal-int
-pkg syscall (netbsd-arm), const TIOCSLINED ideal-int
-pkg syscall (netbsd-arm), const TIOCSPGRP ideal-int
-pkg syscall (netbsd-arm), const TIOCSQSIZE ideal-int
-pkg syscall (netbsd-arm), const TIOCSSIZE ideal-int
-pkg syscall (netbsd-arm), const TIOCSTART ideal-int
-pkg syscall (netbsd-arm), const TIOCSTAT ideal-int
-pkg syscall (netbsd-arm), const TIOCSTI ideal-int
-pkg syscall (netbsd-arm), const TIOCSTOP ideal-int
-pkg syscall (netbsd-arm), const TIOCSWINSZ ideal-int
-pkg syscall (netbsd-arm), const TIOCUCNTL ideal-int
-pkg syscall (netbsd-arm), const TIOCXMTFRAME ideal-int
-pkg syscall (netbsd-arm), const TOSTOP ideal-int
-pkg syscall (netbsd-arm), const VDISCARD ideal-int
-pkg syscall (netbsd-arm), const VDSUSP ideal-int
-pkg syscall (netbsd-arm), const VEOF ideal-int
-pkg syscall (netbsd-arm), const VEOL ideal-int
-pkg syscall (netbsd-arm), const VEOL2 ideal-int
-pkg syscall (netbsd-arm), const VERASE ideal-int
-pkg syscall (netbsd-arm), const VINTR ideal-int
-pkg syscall (netbsd-arm), const VKILL ideal-int
-pkg syscall (netbsd-arm), const VLNEXT ideal-int
-pkg syscall (netbsd-arm), const VMIN ideal-int
-pkg syscall (netbsd-arm), const VQUIT ideal-int
-pkg syscall (netbsd-arm), const VREPRINT ideal-int
-pkg syscall (netbsd-arm), const VSTART ideal-int
-pkg syscall (netbsd-arm), const VSTATUS ideal-int
-pkg syscall (netbsd-arm), const VSTOP ideal-int
-pkg syscall (netbsd-arm), const VSUSP ideal-int
-pkg syscall (netbsd-arm), const VTIME ideal-int
-pkg syscall (netbsd-arm), const VWERASE ideal-int
-pkg syscall (netbsd-arm), const WALL ideal-int
-pkg syscall (netbsd-arm), const WALLSIG ideal-int
-pkg syscall (netbsd-arm), const WALTSIG ideal-int
-pkg syscall (netbsd-arm), const WCLONE ideal-int
-pkg syscall (netbsd-arm), const WCOREFLAG ideal-int
-pkg syscall (netbsd-arm), const WNOHANG ideal-int
-pkg syscall (netbsd-arm), const WNOWAIT ideal-int
-pkg syscall (netbsd-arm), const WNOZOMBIE ideal-int
-pkg syscall (netbsd-arm), const WOPTSCHECKED ideal-int
-pkg syscall (netbsd-arm), const WSTOPPED ideal-int
-pkg syscall (netbsd-arm), const WUNTRACED ideal-int
-pkg syscall (netbsd-arm), func Accept(int) (int, Sockaddr, error)
-pkg syscall (netbsd-arm), func Access(string, uint32) error
-pkg syscall (netbsd-arm), func Adjtime(*Timeval, *Timeval) error
-pkg syscall (netbsd-arm), func Bind(int, Sockaddr) error
-pkg syscall (netbsd-arm), func BpfBuflen(int) (int, error)
-pkg syscall (netbsd-arm), func BpfDatalink(int) (int, error)
-pkg syscall (netbsd-arm), func BpfHeadercmpl(int) (int, error)
-pkg syscall (netbsd-arm), func BpfInterface(int, string) (string, error)
-pkg syscall (netbsd-arm), func BpfJump(int, int, int, int) *BpfInsn
-pkg syscall (netbsd-arm), func BpfStats(int) (*BpfStat, error)
-pkg syscall (netbsd-arm), func BpfStmt(int, int) *BpfInsn
-pkg syscall (netbsd-arm), func BpfTimeout(int) (*Timeval, error)
-pkg syscall (netbsd-arm), func CheckBpfVersion(int) error
-pkg syscall (netbsd-arm), func Chflags(string, int) error
-pkg syscall (netbsd-arm), func Chroot(string) error
-pkg syscall (netbsd-arm), func Close(int) error
-pkg syscall (netbsd-arm), func CloseOnExec(int)
-pkg syscall (netbsd-arm), func CmsgLen(int) int
-pkg syscall (netbsd-arm), func CmsgSpace(int) int
-pkg syscall (netbsd-arm), func Connect(int, Sockaddr) error
-pkg syscall (netbsd-arm), func Dup(int) (int, error)
-pkg syscall (netbsd-arm), func Dup2(int, int) error
-pkg syscall (netbsd-arm), func Fchdir(int) error
-pkg syscall (netbsd-arm), func Fchflags(string, int) error
-pkg syscall (netbsd-arm), func Fchmod(int, uint32) error
-pkg syscall (netbsd-arm), func Fchown(int, int, int) error
-pkg syscall (netbsd-arm), func Flock(int, int) error
-pkg syscall (netbsd-arm), func FlushBpf(int) error
-pkg syscall (netbsd-arm), func ForkExec(string, []string, *ProcAttr) (int, error)
-pkg syscall (netbsd-arm), func Fpathconf(int, int) (int, error)
-pkg syscall (netbsd-arm), func Fstat(int, *Stat_t) error
-pkg syscall (netbsd-arm), func Fsync(int) error
-pkg syscall (netbsd-arm), func Ftruncate(int, int64) error
-pkg syscall (netbsd-arm), func Futimes(int, []Timeval) error
-pkg syscall (netbsd-arm), func Getdirentries(int, []uint8, *uintptr) (int, error)
-pkg syscall (netbsd-arm), func Getpeername(int) (Sockaddr, error)
-pkg syscall (netbsd-arm), func Getpgid(int) (int, error)
-pkg syscall (netbsd-arm), func Getpgrp() int
-pkg syscall (netbsd-arm), func Getpriority(int, int) (int, error)
-pkg syscall (netbsd-arm), func Getrlimit(int, *Rlimit) error
-pkg syscall (netbsd-arm), func Getrusage(int, *Rusage) error
-pkg syscall (netbsd-arm), func Getsid(int) (int, error)
-pkg syscall (netbsd-arm), func Getsockname(int) (Sockaddr, error)
-pkg syscall (netbsd-arm), func GetsockoptByte(int, int, int) (uint8, error)
-pkg syscall (netbsd-arm), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
-pkg syscall (netbsd-arm), func GetsockoptIPMreq(int, int, int) (*IPMreq, error)
-pkg syscall (netbsd-arm), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
-pkg syscall (netbsd-arm), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error)
-pkg syscall (netbsd-arm), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error)
-pkg syscall (netbsd-arm), func GetsockoptInt(int, int, int) (int, error)
-pkg syscall (netbsd-arm), func Issetugid() bool
-pkg syscall (netbsd-arm), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error)
-pkg syscall (netbsd-arm), func Kill(int, Signal) error
-pkg syscall (netbsd-arm), func Kqueue() (int, error)
-pkg syscall (netbsd-arm), func Listen(int, int) error
-pkg syscall (netbsd-arm), func Lstat(string, *Stat_t) error
-pkg syscall (netbsd-arm), func Mkfifo(string, uint32) error
-pkg syscall (netbsd-arm), func Mknod(string, uint32, int) error
-pkg syscall (netbsd-arm), func Mmap(int, int64, int, int, int) ([]uint8, error)
-pkg syscall (netbsd-arm), func Munmap([]uint8) error
-pkg syscall (netbsd-arm), func Nanosleep(*Timespec, *Timespec) error
-pkg syscall (netbsd-arm), func Open(string, int, uint32) (int, error)
-pkg syscall (netbsd-arm), func ParseDirent([]uint8, int, []string) (int, int, []string)
-pkg syscall (netbsd-arm), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error)
-pkg syscall (netbsd-arm), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error)
-pkg syscall (netbsd-arm), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error)
-pkg syscall (netbsd-arm), func ParseUnixRights(*SocketControlMessage) ([]int, error)
-pkg syscall (netbsd-arm), func Pathconf(string, int) (int, error)
-pkg syscall (netbsd-arm), func Pipe([]int) error
-pkg syscall (netbsd-arm), func Pread(int, []uint8, int64) (int, error)
-pkg syscall (netbsd-arm), func Pwrite(int, []uint8, int64) (int, error)
-pkg syscall (netbsd-arm), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (netbsd-arm), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (netbsd-arm), func Read(int, []uint8) (int, error)
-pkg syscall (netbsd-arm), func ReadDirent(int, []uint8) (int, error)
-pkg syscall (netbsd-arm), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
-pkg syscall (netbsd-arm), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
-pkg syscall (netbsd-arm), func Revoke(string) error
-pkg syscall (netbsd-arm), func RouteRIB(int, int) ([]uint8, error)
-pkg syscall (netbsd-arm), func Seek(int, int64, int) (int64, error)
-pkg syscall (netbsd-arm), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error
-pkg syscall (netbsd-arm), func Sendfile(int, int, *int64, int) (int, error)
-pkg syscall (netbsd-arm), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
-pkg syscall (netbsd-arm), func Sendto(int, []uint8, int, Sockaddr) error
-pkg syscall (netbsd-arm), func SetBpf(int, []BpfInsn) error
-pkg syscall (netbsd-arm), func SetBpfBuflen(int, int) (int, error)
-pkg syscall (netbsd-arm), func SetBpfDatalink(int, int) (int, error)
-pkg syscall (netbsd-arm), func SetBpfHeadercmpl(int, int) error
-pkg syscall (netbsd-arm), func SetBpfImmediate(int, int) error
-pkg syscall (netbsd-arm), func SetBpfInterface(int, string) error
-pkg syscall (netbsd-arm), func SetBpfPromisc(int, int) error
-pkg syscall (netbsd-arm), func SetBpfTimeout(int, *Timeval) error
-pkg syscall (netbsd-arm), func SetKevent(*Kevent_t, int, int, int)
-pkg syscall (netbsd-arm), func SetNonblock(int, bool) error
-pkg syscall (netbsd-arm), func Setegid(int) error
-pkg syscall (netbsd-arm), func Seteuid(int) error
-pkg syscall (netbsd-arm), func Setgid(int) error
-pkg syscall (netbsd-arm), func Setgroups([]int) error
-pkg syscall (netbsd-arm), func Setpgid(int, int) error
-pkg syscall (netbsd-arm), func Setpriority(int, int, int) error
-pkg syscall (netbsd-arm), func Setregid(int, int) error
-pkg syscall (netbsd-arm), func Setreuid(int, int) error
-pkg syscall (netbsd-arm), func Setrlimit(int, *Rlimit) error
-pkg syscall (netbsd-arm), func Setsid() (int, error)
-pkg syscall (netbsd-arm), func SetsockoptByte(int, int, int, uint8) error
-pkg syscall (netbsd-arm), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
-pkg syscall (netbsd-arm), func SetsockoptIPMreq(int, int, int, *IPMreq) error
-pkg syscall (netbsd-arm), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error
-pkg syscall (netbsd-arm), func SetsockoptInet4Addr(int, int, int, [4]uint8) error
-pkg syscall (netbsd-arm), func SetsockoptInt(int, int, int, int) error
-pkg syscall (netbsd-arm), func SetsockoptLinger(int, int, int, *Linger) error
-pkg syscall (netbsd-arm), func SetsockoptString(int, int, int, string) error
-pkg syscall (netbsd-arm), func SetsockoptTimeval(int, int, int, *Timeval) error
-pkg syscall (netbsd-arm), func Settimeofday(*Timeval) error
-pkg syscall (netbsd-arm), func Setuid(int) error
-pkg syscall (netbsd-arm), func Shutdown(int, int) error
-pkg syscall (netbsd-arm), func SlicePtrFromStrings([]string) ([]*uint8, error)
-pkg syscall (netbsd-arm), func Socket(int, int, int) (int, error)
-pkg syscall (netbsd-arm), func Socketpair(int, int, int) ([2]int, error)
-pkg syscall (netbsd-arm), func Stat(string, *Stat_t) error
-pkg syscall (netbsd-arm), func StringSlicePtr([]string) []*uint8
-pkg syscall (netbsd-arm), func Sync() error
-pkg syscall (netbsd-arm), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (netbsd-arm), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (netbsd-arm), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (netbsd-arm), func Sysctl(string) (string, error)
-pkg syscall (netbsd-arm), func SysctlUint32(string) (uint32, error)
-pkg syscall (netbsd-arm), func TimevalToNsec(Timeval) int64
-pkg syscall (netbsd-arm), func Truncate(string, int64) error
-pkg syscall (netbsd-arm), func Umask(int) int
-pkg syscall (netbsd-arm), func UnixRights(...int) []uint8
-pkg syscall (netbsd-arm), func Unmount(string, int) error
-pkg syscall (netbsd-arm), func Wait4(int, *WaitStatus, int, *Rusage) (int, error)
-pkg syscall (netbsd-arm), func Write(int, []uint8) (int, error)
-pkg syscall (netbsd-arm), method (*Cmsghdr) SetLen(int)
-pkg syscall (netbsd-arm), method (*Iovec) SetLen(int)
-pkg syscall (netbsd-arm), method (*Msghdr) SetControllen(int)
-pkg syscall (netbsd-arm), type BpfHdr struct
-pkg syscall (netbsd-arm), type BpfHdr struct, Caplen uint32
-pkg syscall (netbsd-arm), type BpfHdr struct, Datalen uint32
-pkg syscall (netbsd-arm), type BpfHdr struct, Hdrlen uint16
-pkg syscall (netbsd-arm), type BpfHdr struct, Pad_cgo_0 [2]uint8
-pkg syscall (netbsd-arm), type BpfHdr struct, Tstamp BpfTimeval
-pkg syscall (netbsd-arm), type BpfInsn struct
-pkg syscall (netbsd-arm), type BpfInsn struct, Code uint16
-pkg syscall (netbsd-arm), type BpfInsn struct, Jf uint8
-pkg syscall (netbsd-arm), type BpfInsn struct, Jt uint8
-pkg syscall (netbsd-arm), type BpfInsn struct, K uint32
-pkg syscall (netbsd-arm), type BpfProgram struct
-pkg syscall (netbsd-arm), type BpfProgram struct, Insns *BpfInsn
-pkg syscall (netbsd-arm), type BpfProgram struct, Len uint32
-pkg syscall (netbsd-arm), type BpfStat struct
-pkg syscall (netbsd-arm), type BpfStat struct, Capt uint64
-pkg syscall (netbsd-arm), type BpfStat struct, Drop uint64
-pkg syscall (netbsd-arm), type BpfStat struct, Padding [13]uint64
-pkg syscall (netbsd-arm), type BpfStat struct, Recv uint64
-pkg syscall (netbsd-arm), type BpfTimeval struct
-pkg syscall (netbsd-arm), type BpfTimeval struct, Sec int32
-pkg syscall (netbsd-arm), type BpfTimeval struct, Usec int32
-pkg syscall (netbsd-arm), type BpfVersion struct
-pkg syscall (netbsd-arm), type BpfVersion struct, Major uint16
-pkg syscall (netbsd-arm), type BpfVersion struct, Minor uint16
-pkg syscall (netbsd-arm), type Cmsghdr struct
-pkg syscall (netbsd-arm), type Cmsghdr struct, Len uint32
-pkg syscall (netbsd-arm), type Cmsghdr struct, Level int32
-pkg syscall (netbsd-arm), type Cmsghdr struct, Type int32
-pkg syscall (netbsd-arm), type Credential struct
-pkg syscall (netbsd-arm), type Credential struct, Gid uint32
-pkg syscall (netbsd-arm), type Credential struct, Groups []uint32
-pkg syscall (netbsd-arm), type Credential struct, Uid uint32
-pkg syscall (netbsd-arm), type Dirent struct
-pkg syscall (netbsd-arm), type Dirent struct, Fileno uint64
-pkg syscall (netbsd-arm), type Dirent struct, Name [512]int8
-pkg syscall (netbsd-arm), type Dirent struct, Namlen uint16
-pkg syscall (netbsd-arm), type Dirent struct, Pad_cgo_0 [3]uint8
-pkg syscall (netbsd-arm), type Dirent struct, Reclen uint16
-pkg syscall (netbsd-arm), type Dirent struct, Type uint8
-pkg syscall (netbsd-arm), type FdSet struct
-pkg syscall (netbsd-arm), type FdSet struct, Bits [8]uint32
-pkg syscall (netbsd-arm), type Flock_t struct
-pkg syscall (netbsd-arm), type Flock_t struct, Len int64
-pkg syscall (netbsd-arm), type Flock_t struct, Pid int32
-pkg syscall (netbsd-arm), type Flock_t struct, Start int64
-pkg syscall (netbsd-arm), type Flock_t struct, Type int16
-pkg syscall (netbsd-arm), type Flock_t struct, Whence int16
-pkg syscall (netbsd-arm), type Fsid struct
-pkg syscall (netbsd-arm), type Fsid struct, X__fsid_val [2]int32
-pkg syscall (netbsd-arm), type ICMPv6Filter struct
-pkg syscall (netbsd-arm), type ICMPv6Filter struct, Filt [8]uint32
-pkg syscall (netbsd-arm), type IPv6MTUInfo struct
-pkg syscall (netbsd-arm), type IPv6MTUInfo struct, Addr RawSockaddrInet6
-pkg syscall (netbsd-arm), type IPv6MTUInfo struct, Mtu uint32
-pkg syscall (netbsd-arm), type IfAnnounceMsghdr struct
-pkg syscall (netbsd-arm), type IfAnnounceMsghdr struct, Index uint16
-pkg syscall (netbsd-arm), type IfAnnounceMsghdr struct, Msglen uint16
-pkg syscall (netbsd-arm), type IfAnnounceMsghdr struct, Name [16]int8
-pkg syscall (netbsd-arm), type IfAnnounceMsghdr struct, Type uint8
-pkg syscall (netbsd-arm), type IfAnnounceMsghdr struct, Version uint8
-pkg syscall (netbsd-arm), type IfAnnounceMsghdr struct, What uint16
-pkg syscall (netbsd-arm), type IfData struct
-pkg syscall (netbsd-arm), type IfData struct, Addrlen uint8
-pkg syscall (netbsd-arm), type IfData struct, Baudrate uint64
-pkg syscall (netbsd-arm), type IfData struct, Collisions uint64
-pkg syscall (netbsd-arm), type IfData struct, Hdrlen uint8
-pkg syscall (netbsd-arm), type IfData struct, Ibytes uint64
-pkg syscall (netbsd-arm), type IfData struct, Ierrors uint64
-pkg syscall (netbsd-arm), type IfData struct, Imcasts uint64
-pkg syscall (netbsd-arm), type IfData struct, Ipackets uint64
-pkg syscall (netbsd-arm), type IfData struct, Iqdrops uint64
-pkg syscall (netbsd-arm), type IfData struct, Lastchange Timespec
-pkg syscall (netbsd-arm), type IfData struct, Link_state int32
-pkg syscall (netbsd-arm), type IfData struct, Metric uint64
-pkg syscall (netbsd-arm), type IfData struct, Mtu uint64
-pkg syscall (netbsd-arm), type IfData struct, Noproto uint64
-pkg syscall (netbsd-arm), type IfData struct, Obytes uint64
-pkg syscall (netbsd-arm), type IfData struct, Oerrors uint64
-pkg syscall (netbsd-arm), type IfData struct, Omcasts uint64
-pkg syscall (netbsd-arm), type IfData struct, Opackets uint64
-pkg syscall (netbsd-arm), type IfData struct, Pad_cgo_0 [1]uint8
-pkg syscall (netbsd-arm), type IfData struct, Type uint8
-pkg syscall (netbsd-arm), type IfMsghdr struct
-pkg syscall (netbsd-arm), type IfMsghdr struct, Addrs int32
-pkg syscall (netbsd-arm), type IfMsghdr struct, Data IfData
-pkg syscall (netbsd-arm), type IfMsghdr struct, Flags int32
-pkg syscall (netbsd-arm), type IfMsghdr struct, Index uint16
-pkg syscall (netbsd-arm), type IfMsghdr struct, Msglen uint16
-pkg syscall (netbsd-arm), type IfMsghdr struct, Pad_cgo_0 [2]uint8
-pkg syscall (netbsd-arm), type IfMsghdr struct, Pad_cgo_1 [4]uint8
-pkg syscall (netbsd-arm), type IfMsghdr struct, Type uint8
-pkg syscall (netbsd-arm), type IfMsghdr struct, Version uint8
-pkg syscall (netbsd-arm), type IfaMsghdr struct
-pkg syscall (netbsd-arm), type IfaMsghdr struct, Addrs int32
-pkg syscall (netbsd-arm), type IfaMsghdr struct, Flags int32
-pkg syscall (netbsd-arm), type IfaMsghdr struct, Index uint16
-pkg syscall (netbsd-arm), type IfaMsghdr struct, Metric int32
-pkg syscall (netbsd-arm), type IfaMsghdr struct, Msglen uint16
-pkg syscall (netbsd-arm), type IfaMsghdr struct, Pad_cgo_0 [6]uint8
-pkg syscall (netbsd-arm), type IfaMsghdr struct, Type uint8
-pkg syscall (netbsd-arm), type IfaMsghdr struct, Version uint8
-pkg syscall (netbsd-arm), type Inet6Pktinfo struct
-pkg syscall (netbsd-arm), type Inet6Pktinfo struct, Addr [16]uint8
-pkg syscall (netbsd-arm), type Inet6Pktinfo struct, Ifindex uint32
-pkg syscall (netbsd-arm), type InterfaceAddrMessage struct
-pkg syscall (netbsd-arm), type InterfaceAddrMessage struct, Data []uint8
-pkg syscall (netbsd-arm), type InterfaceAddrMessage struct, Header IfaMsghdr
-pkg syscall (netbsd-arm), type InterfaceAnnounceMessage struct
-pkg syscall (netbsd-arm), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr
-pkg syscall (netbsd-arm), type InterfaceMessage struct
-pkg syscall (netbsd-arm), type InterfaceMessage struct, Data []uint8
-pkg syscall (netbsd-arm), type InterfaceMessage struct, Header IfMsghdr
-pkg syscall (netbsd-arm), type Iovec struct
-pkg syscall (netbsd-arm), type Iovec struct, Base *uint8
-pkg syscall (netbsd-arm), type Iovec struct, Len uint32
-pkg syscall (netbsd-arm), type Kevent_t struct
-pkg syscall (netbsd-arm), type Kevent_t struct, Data int64
-pkg syscall (netbsd-arm), type Kevent_t struct, Fflags uint32
-pkg syscall (netbsd-arm), type Kevent_t struct, Filter uint32
-pkg syscall (netbsd-arm), type Kevent_t struct, Flags uint32
-pkg syscall (netbsd-arm), type Kevent_t struct, Ident uint32
-pkg syscall (netbsd-arm), type Kevent_t struct, Udata int32
-pkg syscall (netbsd-arm), type Mclpool [0]uint8
-pkg syscall (netbsd-arm), type Msghdr struct
-pkg syscall (netbsd-arm), type Msghdr struct, Control *uint8
-pkg syscall (netbsd-arm), type Msghdr struct, Controllen uint32
-pkg syscall (netbsd-arm), type Msghdr struct, Flags int32
-pkg syscall (netbsd-arm), type Msghdr struct, Iov *Iovec
-pkg syscall (netbsd-arm), type Msghdr struct, Iovlen int32
-pkg syscall (netbsd-arm), type Msghdr struct, Name *uint8
-pkg syscall (netbsd-arm), type Msghdr struct, Namelen uint32
-pkg syscall (netbsd-arm), type RawSockaddr struct, Data [14]int8
-pkg syscall (netbsd-arm), type RawSockaddr struct, Family uint8
-pkg syscall (netbsd-arm), type RawSockaddr struct, Len uint8
-pkg syscall (netbsd-arm), type RawSockaddrAny struct, Pad [92]int8
-pkg syscall (netbsd-arm), type RawSockaddrDatalink struct
-pkg syscall (netbsd-arm), type RawSockaddrDatalink struct, Alen uint8
-pkg syscall (netbsd-arm), type RawSockaddrDatalink struct, Data [12]int8
-pkg syscall (netbsd-arm), type RawSockaddrDatalink struct, Family uint8
-pkg syscall (netbsd-arm), type RawSockaddrDatalink struct, Index uint16
-pkg syscall (netbsd-arm), type RawSockaddrDatalink struct, Len uint8
-pkg syscall (netbsd-arm), type RawSockaddrDatalink struct, Nlen uint8
-pkg syscall (netbsd-arm), type RawSockaddrDatalink struct, Slen uint8
-pkg syscall (netbsd-arm), type RawSockaddrDatalink struct, Type uint8
-pkg syscall (netbsd-arm), type RawSockaddrInet4 struct, Family uint8
-pkg syscall (netbsd-arm), type RawSockaddrInet4 struct, Len uint8
-pkg syscall (netbsd-arm), type RawSockaddrInet4 struct, Zero [8]int8
-pkg syscall (netbsd-arm), type RawSockaddrInet6 struct, Family uint8
-pkg syscall (netbsd-arm), type RawSockaddrInet6 struct, Len uint8
-pkg syscall (netbsd-arm), type RawSockaddrUnix struct
-pkg syscall (netbsd-arm), type RawSockaddrUnix struct, Family uint8
-pkg syscall (netbsd-arm), type RawSockaddrUnix struct, Len uint8
-pkg syscall (netbsd-arm), type RawSockaddrUnix struct, Path [104]int8
-pkg syscall (netbsd-arm), type Rlimit struct
-pkg syscall (netbsd-arm), type Rlimit struct, Cur uint64
-pkg syscall (netbsd-arm), type Rlimit struct, Max uint64
-pkg syscall (netbsd-arm), type RouteMessage struct
-pkg syscall (netbsd-arm), type RouteMessage struct, Data []uint8
-pkg syscall (netbsd-arm), type RouteMessage struct, Header RtMsghdr
-pkg syscall (netbsd-arm), type RoutingMessage interface, unexported methods
-pkg syscall (netbsd-arm), type RtMetrics struct
-pkg syscall (netbsd-arm), type RtMetrics struct, Expire int64
-pkg syscall (netbsd-arm), type RtMetrics struct, Hopcount uint64
-pkg syscall (netbsd-arm), type RtMetrics struct, Locks uint64
-pkg syscall (netbsd-arm), type RtMetrics struct, Mtu uint64
-pkg syscall (netbsd-arm), type RtMetrics struct, Pksent int64
-pkg syscall (netbsd-arm), type RtMetrics struct, Recvpipe uint64
-pkg syscall (netbsd-arm), type RtMetrics struct, Rtt uint64
-pkg syscall (netbsd-arm), type RtMetrics struct, Rttvar uint64
-pkg syscall (netbsd-arm), type RtMetrics struct, Sendpipe uint64
-pkg syscall (netbsd-arm), type RtMetrics struct, Ssthresh uint64
-pkg syscall (netbsd-arm), type RtMsghdr struct
-pkg syscall (netbsd-arm), type RtMsghdr struct, Addrs int32
-pkg syscall (netbsd-arm), type RtMsghdr struct, Errno int32
-pkg syscall (netbsd-arm), type RtMsghdr struct, Flags int32
-pkg syscall (netbsd-arm), type RtMsghdr struct, Index uint16
-pkg syscall (netbsd-arm), type RtMsghdr struct, Inits int32
-pkg syscall (netbsd-arm), type RtMsghdr struct, Msglen uint16
-pkg syscall (netbsd-arm), type RtMsghdr struct, Pad_cgo_0 [2]uint8
-pkg syscall (netbsd-arm), type RtMsghdr struct, Pad_cgo_1 [4]uint8
-pkg syscall (netbsd-arm), type RtMsghdr struct, Pid int32
-pkg syscall (netbsd-arm), type RtMsghdr struct, Rmx RtMetrics
-pkg syscall (netbsd-arm), type RtMsghdr struct, Seq int32
-pkg syscall (netbsd-arm), type RtMsghdr struct, Type uint8
-pkg syscall (netbsd-arm), type RtMsghdr struct, Use int32
-pkg syscall (netbsd-arm), type RtMsghdr struct, Version uint8
-pkg syscall (netbsd-arm), type Rusage struct, Idrss int32
-pkg syscall (netbsd-arm), type Rusage struct, Inblock int32
-pkg syscall (netbsd-arm), type Rusage struct, Isrss int32
-pkg syscall (netbsd-arm), type Rusage struct, Ixrss int32
-pkg syscall (netbsd-arm), type Rusage struct, Majflt int32
-pkg syscall (netbsd-arm), type Rusage struct, Maxrss int32
-pkg syscall (netbsd-arm), type Rusage struct, Minflt int32
-pkg syscall (netbsd-arm), type Rusage struct, Msgrcv int32
-pkg syscall (netbsd-arm), type Rusage struct, Msgsnd int32
-pkg syscall (netbsd-arm), type Rusage struct, Nivcsw int32
-pkg syscall (netbsd-arm), type Rusage struct, Nsignals int32
-pkg syscall (netbsd-arm), type Rusage struct, Nswap int32
-pkg syscall (netbsd-arm), type Rusage struct, Nvcsw int32
-pkg syscall (netbsd-arm), type Rusage struct, Oublock int32
-pkg syscall (netbsd-arm), type Rusage struct, Stime Timeval
-pkg syscall (netbsd-arm), type Rusage struct, Utime Timeval
-pkg syscall (netbsd-arm), type SockaddrDatalink struct
-pkg syscall (netbsd-arm), type SockaddrDatalink struct, Alen uint8
-pkg syscall (netbsd-arm), type SockaddrDatalink struct, Data [12]int8
-pkg syscall (netbsd-arm), type SockaddrDatalink struct, Family uint8
-pkg syscall (netbsd-arm), type SockaddrDatalink struct, Index uint16
-pkg syscall (netbsd-arm), type SockaddrDatalink struct, Len uint8
-pkg syscall (netbsd-arm), type SockaddrDatalink struct, Nlen uint8
-pkg syscall (netbsd-arm), type SockaddrDatalink struct, Slen uint8
-pkg syscall (netbsd-arm), type SockaddrDatalink struct, Type uint8
-pkg syscall (netbsd-arm), type SocketControlMessage struct
-pkg syscall (netbsd-arm), type SocketControlMessage struct, Data []uint8
-pkg syscall (netbsd-arm), type SocketControlMessage struct, Header Cmsghdr
-pkg syscall (netbsd-arm), type Stat_t struct
-pkg syscall (netbsd-arm), type Stat_t struct, Atimespec Timespec
-pkg syscall (netbsd-arm), type Stat_t struct, Birthtimespec Timespec
-pkg syscall (netbsd-arm), type Stat_t struct, Blksize uint32
-pkg syscall (netbsd-arm), type Stat_t struct, Blocks int64
-pkg syscall (netbsd-arm), type Stat_t struct, Ctimespec Timespec
-pkg syscall (netbsd-arm), type Stat_t struct, Dev uint64
-pkg syscall (netbsd-arm), type Stat_t struct, Flags uint32
-pkg syscall (netbsd-arm), type Stat_t struct, Gen uint32
-pkg syscall (netbsd-arm), type Stat_t struct, Gid uint32
-pkg syscall (netbsd-arm), type Stat_t struct, Ino uint64
-pkg syscall (netbsd-arm), type Stat_t struct, Mode uint32
-pkg syscall (netbsd-arm), type Stat_t struct, Mtimespec Timespec
-pkg syscall (netbsd-arm), type Stat_t struct, Nlink uint32
-pkg syscall (netbsd-arm), type Stat_t struct, Rdev uint64
-pkg syscall (netbsd-arm), type Stat_t struct, Size int64
-pkg syscall (netbsd-arm), type Stat_t struct, Spare [2]uint32
-pkg syscall (netbsd-arm), type Stat_t struct, Uid uint32
-pkg syscall (netbsd-arm), type Statfs_t [0]uint8
-pkg syscall (netbsd-arm), type SysProcAttr struct, Chroot string
-pkg syscall (netbsd-arm), type SysProcAttr struct, Credential *Credential
-pkg syscall (netbsd-arm), type SysProcAttr struct, Noctty bool
-pkg syscall (netbsd-arm), type SysProcAttr struct, Ptrace bool
-pkg syscall (netbsd-arm), type SysProcAttr struct, Setctty bool
-pkg syscall (netbsd-arm), type SysProcAttr struct, Setpgid bool
-pkg syscall (netbsd-arm), type SysProcAttr struct, Setsid bool
-pkg syscall (netbsd-arm), type Sysctlnode struct
-pkg syscall (netbsd-arm), type Sysctlnode struct, Flags uint32
-pkg syscall (netbsd-arm), type Sysctlnode struct, Name [32]int8
-pkg syscall (netbsd-arm), type Sysctlnode struct, Num int32
-pkg syscall (netbsd-arm), type Sysctlnode struct, Un [16]uint8
-pkg syscall (netbsd-arm), type Sysctlnode struct, Ver uint32
-pkg syscall (netbsd-arm), type Sysctlnode struct, X__rsvd uint32
-pkg syscall (netbsd-arm), type Sysctlnode struct, X_sysctl_desc [8]uint8
-pkg syscall (netbsd-arm), type Sysctlnode struct, X_sysctl_func [8]uint8
-pkg syscall (netbsd-arm), type Sysctlnode struct, X_sysctl_parent [8]uint8
-pkg syscall (netbsd-arm), type Sysctlnode struct, X_sysctl_size [8]uint8
-pkg syscall (netbsd-arm), type Timespec struct, Nsec int32
-pkg syscall (netbsd-arm), type Timespec struct, Sec int64
-pkg syscall (netbsd-arm), type Timeval struct, Sec int64
-pkg syscall (netbsd-arm), type Timeval struct, Usec int32
-pkg syscall (netbsd-arm), type WaitStatus uint32
-pkg syscall (netbsd-arm), var Stderr int
-pkg syscall (netbsd-arm), var Stdin int
-pkg syscall (netbsd-arm), var Stdout int
-pkg syscall (netbsd-arm-cgo), const AF_APPLETALK ideal-int
-pkg syscall (netbsd-arm-cgo), const AF_ARP ideal-int
-pkg syscall (netbsd-arm-cgo), const AF_BLUETOOTH ideal-int
-pkg syscall (netbsd-arm-cgo), const AF_CCITT ideal-int
-pkg syscall (netbsd-arm-cgo), const AF_CHAOS ideal-int
-pkg syscall (netbsd-arm-cgo), const AF_CNT ideal-int
-pkg syscall (netbsd-arm-cgo), const AF_COIP ideal-int
-pkg syscall (netbsd-arm-cgo), const AF_DATAKIT ideal-int
-pkg syscall (netbsd-arm-cgo), const AF_DECnet ideal-int
-pkg syscall (netbsd-arm-cgo), const AF_DLI ideal-int
-pkg syscall (netbsd-arm-cgo), const AF_E164 ideal-int
-pkg syscall (netbsd-arm-cgo), const AF_ECMA ideal-int
-pkg syscall (netbsd-arm-cgo), const AF_HYLINK ideal-int
-pkg syscall (netbsd-arm-cgo), const AF_IEEE80211 ideal-int
-pkg syscall (netbsd-arm-cgo), const AF_IMPLINK ideal-int
-pkg syscall (netbsd-arm-cgo), const AF_IPX ideal-int
-pkg syscall (netbsd-arm-cgo), const AF_ISDN ideal-int
-pkg syscall (netbsd-arm-cgo), const AF_ISO ideal-int
-pkg syscall (netbsd-arm-cgo), const AF_LAT ideal-int
-pkg syscall (netbsd-arm-cgo), const AF_LINK ideal-int
-pkg syscall (netbsd-arm-cgo), const AF_LOCAL ideal-int
-pkg syscall (netbsd-arm-cgo), const AF_MAX ideal-int
-pkg syscall (netbsd-arm-cgo), const AF_MPLS ideal-int
-pkg syscall (netbsd-arm-cgo), const AF_NATM ideal-int
-pkg syscall (netbsd-arm-cgo), const AF_NS ideal-int
-pkg syscall (netbsd-arm-cgo), const AF_OROUTE ideal-int
-pkg syscall (netbsd-arm-cgo), const AF_OSI ideal-int
-pkg syscall (netbsd-arm-cgo), const AF_PUP ideal-int
-pkg syscall (netbsd-arm-cgo), const AF_ROUTE ideal-int
-pkg syscall (netbsd-arm-cgo), const AF_SNA ideal-int
-pkg syscall (netbsd-arm-cgo), const ARPHRD_ARCNET ideal-int
-pkg syscall (netbsd-arm-cgo), const ARPHRD_ETHER ideal-int
-pkg syscall (netbsd-arm-cgo), const ARPHRD_FRELAY ideal-int
-pkg syscall (netbsd-arm-cgo), const ARPHRD_IEEE1394 ideal-int
-pkg syscall (netbsd-arm-cgo), const ARPHRD_IEEE802 ideal-int
-pkg syscall (netbsd-arm-cgo), const ARPHRD_STRIP ideal-int
-pkg syscall (netbsd-arm-cgo), const B0 ideal-int
-pkg syscall (netbsd-arm-cgo), const B110 ideal-int
-pkg syscall (netbsd-arm-cgo), const B115200 ideal-int
-pkg syscall (netbsd-arm-cgo), const B1200 ideal-int
-pkg syscall (netbsd-arm-cgo), const B134 ideal-int
-pkg syscall (netbsd-arm-cgo), const B14400 ideal-int
-pkg syscall (netbsd-arm-cgo), const B150 ideal-int
-pkg syscall (netbsd-arm-cgo), const B1800 ideal-int
-pkg syscall (netbsd-arm-cgo), const B19200 ideal-int
-pkg syscall (netbsd-arm-cgo), const B200 ideal-int
-pkg syscall (netbsd-arm-cgo), const B230400 ideal-int
-pkg syscall (netbsd-arm-cgo), const B2400 ideal-int
-pkg syscall (netbsd-arm-cgo), const B28800 ideal-int
-pkg syscall (netbsd-arm-cgo), const B300 ideal-int
-pkg syscall (netbsd-arm-cgo), const B38400 ideal-int
-pkg syscall (netbsd-arm-cgo), const B460800 ideal-int
-pkg syscall (netbsd-arm-cgo), const B4800 ideal-int
-pkg syscall (netbsd-arm-cgo), const B50 ideal-int
-pkg syscall (netbsd-arm-cgo), const B57600 ideal-int
-pkg syscall (netbsd-arm-cgo), const B600 ideal-int
-pkg syscall (netbsd-arm-cgo), const B7200 ideal-int
-pkg syscall (netbsd-arm-cgo), const B75 ideal-int
-pkg syscall (netbsd-arm-cgo), const B76800 ideal-int
-pkg syscall (netbsd-arm-cgo), const B921600 ideal-int
-pkg syscall (netbsd-arm-cgo), const B9600 ideal-int
-pkg syscall (netbsd-arm-cgo), const BIOCFEEDBACK ideal-int
-pkg syscall (netbsd-arm-cgo), const BIOCFLUSH ideal-int
-pkg syscall (netbsd-arm-cgo), const BIOCGBLEN ideal-int
-pkg syscall (netbsd-arm-cgo), const BIOCGDLT ideal-int
-pkg syscall (netbsd-arm-cgo), const BIOCGDLTLIST ideal-int
-pkg syscall (netbsd-arm-cgo), const BIOCGETIF ideal-int
-pkg syscall (netbsd-arm-cgo), const BIOCGFEEDBACK ideal-int
-pkg syscall (netbsd-arm-cgo), const BIOCGHDRCMPLT ideal-int
-pkg syscall (netbsd-arm-cgo), const BIOCGRTIMEOUT ideal-int
-pkg syscall (netbsd-arm-cgo), const BIOCGSEESENT ideal-int
-pkg syscall (netbsd-arm-cgo), const BIOCGSTATS ideal-int
-pkg syscall (netbsd-arm-cgo), const BIOCGSTATSOLD ideal-int
-pkg syscall (netbsd-arm-cgo), const BIOCIMMEDIATE ideal-int
-pkg syscall (netbsd-arm-cgo), const BIOCPROMISC ideal-int
-pkg syscall (netbsd-arm-cgo), const BIOCSBLEN ideal-int
-pkg syscall (netbsd-arm-cgo), const BIOCSDLT ideal-int
-pkg syscall (netbsd-arm-cgo), const BIOCSETF ideal-int
-pkg syscall (netbsd-arm-cgo), const BIOCSETIF ideal-int
-pkg syscall (netbsd-arm-cgo), const BIOCSFEEDBACK ideal-int
-pkg syscall (netbsd-arm-cgo), const BIOCSHDRCMPLT ideal-int
-pkg syscall (netbsd-arm-cgo), const BIOCSRTIMEOUT ideal-int
-pkg syscall (netbsd-arm-cgo), const BIOCSSEESENT ideal-int
-pkg syscall (netbsd-arm-cgo), const BIOCSTCPF ideal-int
-pkg syscall (netbsd-arm-cgo), const BIOCSUDPF ideal-int
-pkg syscall (netbsd-arm-cgo), const BIOCVERSION ideal-int
-pkg syscall (netbsd-arm-cgo), const BPF_A ideal-int
-pkg syscall (netbsd-arm-cgo), const BPF_ABS ideal-int
-pkg syscall (netbsd-arm-cgo), const BPF_ADD ideal-int
-pkg syscall (netbsd-arm-cgo), const BPF_ALIGNMENT ideal-int
-pkg syscall (netbsd-arm-cgo), const BPF_ALIGNMENT32 ideal-int
-pkg syscall (netbsd-arm-cgo), const BPF_ALU ideal-int
-pkg syscall (netbsd-arm-cgo), const BPF_AND ideal-int
-pkg syscall (netbsd-arm-cgo), const BPF_B ideal-int
-pkg syscall (netbsd-arm-cgo), const BPF_DFLTBUFSIZE ideal-int
-pkg syscall (netbsd-arm-cgo), const BPF_DIV ideal-int
-pkg syscall (netbsd-arm-cgo), const BPF_H ideal-int
-pkg syscall (netbsd-arm-cgo), const BPF_IMM ideal-int
-pkg syscall (netbsd-arm-cgo), const BPF_IND ideal-int
-pkg syscall (netbsd-arm-cgo), const BPF_JA ideal-int
-pkg syscall (netbsd-arm-cgo), const BPF_JEQ ideal-int
-pkg syscall (netbsd-arm-cgo), const BPF_JGE ideal-int
-pkg syscall (netbsd-arm-cgo), const BPF_JGT ideal-int
-pkg syscall (netbsd-arm-cgo), const BPF_JMP ideal-int
-pkg syscall (netbsd-arm-cgo), const BPF_JSET ideal-int
-pkg syscall (netbsd-arm-cgo), const BPF_K ideal-int
-pkg syscall (netbsd-arm-cgo), const BPF_LD ideal-int
-pkg syscall (netbsd-arm-cgo), const BPF_LDX ideal-int
-pkg syscall (netbsd-arm-cgo), const BPF_LEN ideal-int
-pkg syscall (netbsd-arm-cgo), const BPF_LSH ideal-int
-pkg syscall (netbsd-arm-cgo), const BPF_MAJOR_VERSION ideal-int
-pkg syscall (netbsd-arm-cgo), const BPF_MAXBUFSIZE ideal-int
-pkg syscall (netbsd-arm-cgo), const BPF_MAXINSNS ideal-int
-pkg syscall (netbsd-arm-cgo), const BPF_MEM ideal-int
-pkg syscall (netbsd-arm-cgo), const BPF_MEMWORDS ideal-int
-pkg syscall (netbsd-arm-cgo), const BPF_MINBUFSIZE ideal-int
-pkg syscall (netbsd-arm-cgo), const BPF_MINOR_VERSION ideal-int
-pkg syscall (netbsd-arm-cgo), const BPF_MISC ideal-int
-pkg syscall (netbsd-arm-cgo), const BPF_MSH ideal-int
-pkg syscall (netbsd-arm-cgo), const BPF_MUL ideal-int
-pkg syscall (netbsd-arm-cgo), const BPF_NEG ideal-int
-pkg syscall (netbsd-arm-cgo), const BPF_OR ideal-int
-pkg syscall (netbsd-arm-cgo), const BPF_RELEASE ideal-int
-pkg syscall (netbsd-arm-cgo), const BPF_RET ideal-int
-pkg syscall (netbsd-arm-cgo), const BPF_RSH ideal-int
-pkg syscall (netbsd-arm-cgo), const BPF_ST ideal-int
-pkg syscall (netbsd-arm-cgo), const BPF_STX ideal-int
-pkg syscall (netbsd-arm-cgo), const BPF_SUB ideal-int
-pkg syscall (netbsd-arm-cgo), const BPF_TAX ideal-int
-pkg syscall (netbsd-arm-cgo), const BPF_TXA ideal-int
-pkg syscall (netbsd-arm-cgo), const BPF_W ideal-int
-pkg syscall (netbsd-arm-cgo), const BPF_X ideal-int
-pkg syscall (netbsd-arm-cgo), const BRKINT ideal-int
-pkg syscall (netbsd-arm-cgo), const CFLUSH ideal-int
-pkg syscall (netbsd-arm-cgo), const CLOCAL ideal-int
-pkg syscall (netbsd-arm-cgo), const CREAD ideal-int
-pkg syscall (netbsd-arm-cgo), const CS5 ideal-int
-pkg syscall (netbsd-arm-cgo), const CS6 ideal-int
-pkg syscall (netbsd-arm-cgo), const CS7 ideal-int
-pkg syscall (netbsd-arm-cgo), const CS8 ideal-int
-pkg syscall (netbsd-arm-cgo), const CSIZE ideal-int
-pkg syscall (netbsd-arm-cgo), const CSTART ideal-int
-pkg syscall (netbsd-arm-cgo), const CSTATUS ideal-int
-pkg syscall (netbsd-arm-cgo), const CSTOP ideal-int
-pkg syscall (netbsd-arm-cgo), const CSTOPB ideal-int
-pkg syscall (netbsd-arm-cgo), const CSUSP ideal-int
-pkg syscall (netbsd-arm-cgo), const CTL_MAXNAME ideal-int
-pkg syscall (netbsd-arm-cgo), const CTL_NET ideal-int
-pkg syscall (netbsd-arm-cgo), const CTL_QUERY ideal-int
-pkg syscall (netbsd-arm-cgo), const DIOCBSFLUSH ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_A429 ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_A653_ICM ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_AIRONET_HEADER ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_AOS ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_ARCNET ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_ARCNET_LINUX ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_ATM_CLIP ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_ATM_RFC1483 ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_AURORA ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_AX25 ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_AX25_KISS ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_BACNET_MS_TP ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_BLUETOOTH_HCI_H4 ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_CAN20B ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_CAN_SOCKETCAN ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_CHAOS ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_CISCO_IOS ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_C_HDLC ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_C_HDLC_WITH_DIR ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_DECT ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_DOCSIS ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_ECONET ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_EN10MB ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_EN3MB ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_ENC ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_ERF ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_ERF_ETH ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_ERF_POS ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_FC_2 ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_FC_2_WITH_FRAME_DELIMS ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_FDDI ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_FLEXRAY ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_FRELAY ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_FRELAY_WITH_DIR ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_GCOM_SERIAL ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_GCOM_T1E1 ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_GPF_F ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_GPF_T ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_GPRS_LLC ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_GSMTAP_ABIS ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_GSMTAP_UM ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_HDLC ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_HHDLC ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_HIPPI ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_IBM_SN ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_IBM_SP ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_IEEE802 ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_IEEE802_11 ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_IEEE802_11_RADIO ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_IEEE802_11_RADIO_AVS ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_IEEE802_15_4 ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_IEEE802_15_4_LINUX ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_IEEE802_15_4_NONASK_PHY ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_IEEE802_16_MAC_CPS ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_IEEE802_16_MAC_CPS_RADIO ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_IPMB ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_IPMB_LINUX ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_IPNET ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_IPV4 ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_IPV6 ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_IP_OVER_FC ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_ATM1 ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_ATM2 ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_CHDLC ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_ES ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_ETHER ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_FRELAY ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_GGSN ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_ISM ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_MFR ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_MLFR ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_MLPPP ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_MONITOR ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_PIC_PEER ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_PPP ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_PPPOE ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_PPPOE_ATM ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_SERVICES ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_ST ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_VP ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_LAPB_WITH_DIR ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_LAPD ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_LIN ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_LINUX_EVDEV ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_LINUX_IRDA ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_LINUX_LAPD ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_LINUX_SLL ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_LOOP ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_LTALK ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_MFR ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_MOST ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_MPLS ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_MTP2 ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_MTP2_WITH_PHDR ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_MTP3 ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_NULL ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_PCI_EXP ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_PFLOG ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_PFSYNC ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_PPI ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_PPP ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_PPP_BSDOS ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_PPP_ETHER ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_PPP_PPPD ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_PPP_SERIAL ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_PPP_WITH_DIR ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_PRISM_HEADER ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_PRONET ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_RAIF1 ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_RAW ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_RAWAF_MASK ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_RIO ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_SCCP ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_SITA ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_SLIP ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_SLIP_BSDOS ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_SUNATM ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_SYMANTEC_FIREWALL ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_TZSP ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_USB ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_USB_LINUX ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_USB_LINUX_MMAPPED ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_WIHART ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_X2E_SERIAL ideal-int
-pkg syscall (netbsd-arm-cgo), const DLT_X2E_XORAYA ideal-int
-pkg syscall (netbsd-arm-cgo), const DT_BLK ideal-int
-pkg syscall (netbsd-arm-cgo), const DT_CHR ideal-int
-pkg syscall (netbsd-arm-cgo), const DT_DIR ideal-int
-pkg syscall (netbsd-arm-cgo), const DT_FIFO ideal-int
-pkg syscall (netbsd-arm-cgo), const DT_LNK ideal-int
-pkg syscall (netbsd-arm-cgo), const DT_REG ideal-int
-pkg syscall (netbsd-arm-cgo), const DT_SOCK ideal-int
-pkg syscall (netbsd-arm-cgo), const DT_UNKNOWN ideal-int
-pkg syscall (netbsd-arm-cgo), const DT_WHT ideal-int
-pkg syscall (netbsd-arm-cgo), const EAUTH Errno
-pkg syscall (netbsd-arm-cgo), const EBADMSG Errno
-pkg syscall (netbsd-arm-cgo), const EBADRPC Errno
-pkg syscall (netbsd-arm-cgo), const ECHO ideal-int
-pkg syscall (netbsd-arm-cgo), const ECHOCTL ideal-int
-pkg syscall (netbsd-arm-cgo), const ECHOE ideal-int
-pkg syscall (netbsd-arm-cgo), const ECHOK ideal-int
-pkg syscall (netbsd-arm-cgo), const ECHOKE ideal-int
-pkg syscall (netbsd-arm-cgo), const ECHONL ideal-int
-pkg syscall (netbsd-arm-cgo), const ECHOPRT ideal-int
-pkg syscall (netbsd-arm-cgo), const EFTYPE Errno
-pkg syscall (netbsd-arm-cgo), const ELAST Errno
-pkg syscall (netbsd-arm-cgo), const EMULTIHOP Errno
-pkg syscall (netbsd-arm-cgo), const EMUL_LINUX ideal-int
-pkg syscall (netbsd-arm-cgo), const EMUL_LINUX32 ideal-int
-pkg syscall (netbsd-arm-cgo), const EMUL_MAXID ideal-int
-pkg syscall (netbsd-arm-cgo), const ENEEDAUTH Errno
-pkg syscall (netbsd-arm-cgo), const ENOATTR Errno
-pkg syscall (netbsd-arm-cgo), const ENODATA Errno
-pkg syscall (netbsd-arm-cgo), const ENOLINK Errno
-pkg syscall (netbsd-arm-cgo), const ENOSR Errno
-pkg syscall (netbsd-arm-cgo), const ENOSTR Errno
-pkg syscall (netbsd-arm-cgo), const EPROCLIM Errno
-pkg syscall (netbsd-arm-cgo), const EPROCUNAVAIL Errno
-pkg syscall (netbsd-arm-cgo), const EPROGMISMATCH Errno
-pkg syscall (netbsd-arm-cgo), const EPROGUNAVAIL Errno
-pkg syscall (netbsd-arm-cgo), const EPROTO Errno
-pkg syscall (netbsd-arm-cgo), const ERPCMISMATCH Errno
-pkg syscall (netbsd-arm-cgo), const ETHERCAP_JUMBO_MTU ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERCAP_VLAN_HWTAGGING ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERCAP_VLAN_MTU ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERMIN ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERMTU ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERMTU_JUMBO ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_8023 ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_AARP ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_ACCTON ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_AEONIC ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_ALPHA ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_AMBER ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_AMOEBA ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_APOLLO ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_APOLLODOMAIN ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_APPLETALK ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_APPLITEK ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_ARGONAUT ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_ARP ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_AT ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_ATALK ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_ATOMIC ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_ATT ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_ATTSTANFORD ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_AUTOPHON ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_AXIS ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_BCLOOP ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_BOFL ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_CABLETRON ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_CHAOS ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_COMDESIGN ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_COMPUGRAPHIC ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_COUNTERPOINT ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_CRONUS ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_CRONUSVLN ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DCA ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DDE ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DEBNI ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DECAM ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DECCUST ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DECDIAG ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DECDNS ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DECDTS ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DECEXPER ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DECLAST ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DECLTM ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DECMUMPS ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DECNETBIOS ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DELTACON ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DIDDLE ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DLOG1 ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DLOG2 ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DN ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DOGFIGHT ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DSMD ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_ECMA ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_ENCRYPT ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_ES ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_EXCELAN ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_EXPERDATA ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_FLIP ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_FLOWCONTROL ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_FRARP ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_GENDYN ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_HAYES ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_HIPPI_FP ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_HITACHI ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_HP ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_IEEEPUP ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_IEEEPUPAT ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_IMLBL ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_IMLBLDIAG ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_IP ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_IPAS ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_IPV6 ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_IPX ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_IPXNEW ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_KALPANA ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_LANBRIDGE ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_LANPROBE ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_LAT ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_LBACK ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_LITTLE ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_LOGICRAFT ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_LOOPBACK ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_MATRA ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_MAX ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_MERIT ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_MICP ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_MOPDL ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_MOPRC ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_MOTOROLA ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_MPLS ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_MPLS_MCAST ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_MUMPS ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPCC ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPCLAIM ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPCLREQ ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPCLRSP ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPCREQ ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPCRSP ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPDG ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPDGB ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPDLTE ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPRAR ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPRAS ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPRST ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPSCD ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPVCD ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBS ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NCD ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NESTAR ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NETBEUI ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NOVELL ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NS ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NSAT ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NSCOMPAT ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NTRAILER ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_OS9 ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_OS9NET ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_PACER ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_PAE ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_PCS ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_PLANNING ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_PPP ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_PPPOE ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_PPPOEDISC ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_PRIMENTS ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_PUP ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_PUPAT ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_RACAL ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_RATIONAL ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_RAWFR ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_RCL ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_RDP ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_RETIX ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_REVARP ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SCA ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SECTRA ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SECUREDATA ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SGITW ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SG_BOUNCE ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SG_DIAG ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SG_NETGAMES ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SG_RESV ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SIMNET ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SLOWPROTOCOLS ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SNA ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SNMP ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SONIX ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SPIDER ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SPRITE ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_STP ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_TALARIS ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_TALARISMC ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_TCPCOMP ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_TCPSM ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_TEC ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_TIGAN ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_TRAIL ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_TRANSETHER ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_TYMSHARE ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_UBBST ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_UBDEBUG ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_UBDIAGLOOP ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_UBDL ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_UBNIU ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_UBNMC ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VALID ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VARIAN ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VAXELN ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VEECO ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VEXP ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VGLAB ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VINES ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VINESECHO ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VINESLOOP ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VITAL ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VLAN ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VLTLMAN ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VPROD ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VURESERVED ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_WATERLOO ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_WELLFLEET ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_X25 ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_X75 ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_XNSSM ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHERTYPE_XTP ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHER_ADDR_LEN ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHER_CRC_LEN ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHER_CRC_POLY_BE ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHER_CRC_POLY_LE ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHER_HDR_LEN ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHER_MAX_LEN ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHER_MAX_LEN_JUMBO ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHER_MIN_LEN ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHER_PPPOE_ENCAP_LEN ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHER_TYPE_LEN ideal-int
-pkg syscall (netbsd-arm-cgo), const ETHER_VLAN_ENCAP_LEN ideal-int
-pkg syscall (netbsd-arm-cgo), const ETIME Errno
-pkg syscall (netbsd-arm-cgo), const EVFILT_AIO ideal-int
-pkg syscall (netbsd-arm-cgo), const EVFILT_PROC ideal-int
-pkg syscall (netbsd-arm-cgo), const EVFILT_READ ideal-int
-pkg syscall (netbsd-arm-cgo), const EVFILT_SIGNAL ideal-int
-pkg syscall (netbsd-arm-cgo), const EVFILT_SYSCOUNT ideal-int
-pkg syscall (netbsd-arm-cgo), const EVFILT_TIMER ideal-int
-pkg syscall (netbsd-arm-cgo), const EVFILT_VNODE ideal-int
-pkg syscall (netbsd-arm-cgo), const EVFILT_WRITE ideal-int
-pkg syscall (netbsd-arm-cgo), const EV_ADD ideal-int
-pkg syscall (netbsd-arm-cgo), const EV_CLEAR ideal-int
-pkg syscall (netbsd-arm-cgo), const EV_DELETE ideal-int
-pkg syscall (netbsd-arm-cgo), const EV_DISABLE ideal-int
-pkg syscall (netbsd-arm-cgo), const EV_ENABLE ideal-int
-pkg syscall (netbsd-arm-cgo), const EV_EOF ideal-int
-pkg syscall (netbsd-arm-cgo), const EV_ERROR ideal-int
-pkg syscall (netbsd-arm-cgo), const EV_FLAG1 ideal-int
-pkg syscall (netbsd-arm-cgo), const EV_ONESHOT ideal-int
-pkg syscall (netbsd-arm-cgo), const EV_SYSFLAGS ideal-int
-pkg syscall (netbsd-arm-cgo), const EXTA ideal-int
-pkg syscall (netbsd-arm-cgo), const EXTB ideal-int
-pkg syscall (netbsd-arm-cgo), const EXTPROC ideal-int
-pkg syscall (netbsd-arm-cgo), const FD_CLOEXEC ideal-int
-pkg syscall (netbsd-arm-cgo), const FD_SETSIZE ideal-int
-pkg syscall (netbsd-arm-cgo), const FLUSHO ideal-int
-pkg syscall (netbsd-arm-cgo), const F_CLOSEM ideal-int
-pkg syscall (netbsd-arm-cgo), const F_DUPFD ideal-int
-pkg syscall (netbsd-arm-cgo), const F_DUPFD_CLOEXEC ideal-int
-pkg syscall (netbsd-arm-cgo), const F_FSCTL ideal-int
-pkg syscall (netbsd-arm-cgo), const F_FSDIRMASK ideal-int
-pkg syscall (netbsd-arm-cgo), const F_FSIN ideal-int
-pkg syscall (netbsd-arm-cgo), const F_FSINOUT ideal-int
-pkg syscall (netbsd-arm-cgo), const F_FSOUT ideal-int
-pkg syscall (netbsd-arm-cgo), const F_FSPRIV ideal-int
-pkg syscall (netbsd-arm-cgo), const F_FSVOID ideal-int
-pkg syscall (netbsd-arm-cgo), const F_GETFD ideal-int
-pkg syscall (netbsd-arm-cgo), const F_GETFL ideal-int
-pkg syscall (netbsd-arm-cgo), const F_GETLK ideal-int
-pkg syscall (netbsd-arm-cgo), const F_GETNOSIGPIPE ideal-int
-pkg syscall (netbsd-arm-cgo), const F_GETOWN ideal-int
-pkg syscall (netbsd-arm-cgo), const F_MAXFD ideal-int
-pkg syscall (netbsd-arm-cgo), const F_OK ideal-int
-pkg syscall (netbsd-arm-cgo), const F_PARAM_MASK ideal-int
-pkg syscall (netbsd-arm-cgo), const F_PARAM_MAX ideal-int
-pkg syscall (netbsd-arm-cgo), const F_RDLCK ideal-int
-pkg syscall (netbsd-arm-cgo), const F_SETFD ideal-int
-pkg syscall (netbsd-arm-cgo), const F_SETFL ideal-int
-pkg syscall (netbsd-arm-cgo), const F_SETLK ideal-int
-pkg syscall (netbsd-arm-cgo), const F_SETLKW ideal-int
-pkg syscall (netbsd-arm-cgo), const F_SETNOSIGPIPE ideal-int
-pkg syscall (netbsd-arm-cgo), const F_SETOWN ideal-int
-pkg syscall (netbsd-arm-cgo), const F_UNLCK ideal-int
-pkg syscall (netbsd-arm-cgo), const F_WRLCK ideal-int
-pkg syscall (netbsd-arm-cgo), const HUPCL ideal-int
-pkg syscall (netbsd-arm-cgo), const ICANON ideal-int
-pkg syscall (netbsd-arm-cgo), const ICMP6_FILTER = 18
-pkg syscall (netbsd-arm-cgo), const ICMP6_FILTER ideal-int
-pkg syscall (netbsd-arm-cgo), const ICRNL ideal-int
-pkg syscall (netbsd-arm-cgo), const IEXTEN ideal-int
-pkg syscall (netbsd-arm-cgo), const IFAN_ARRIVAL ideal-int
-pkg syscall (netbsd-arm-cgo), const IFAN_DEPARTURE ideal-int
-pkg syscall (netbsd-arm-cgo), const IFA_ROUTE ideal-int
-pkg syscall (netbsd-arm-cgo), const IFF_ALLMULTI ideal-int
-pkg syscall (netbsd-arm-cgo), const IFF_CANTCHANGE ideal-int
-pkg syscall (netbsd-arm-cgo), const IFF_DEBUG ideal-int
-pkg syscall (netbsd-arm-cgo), const IFF_LINK0 ideal-int
-pkg syscall (netbsd-arm-cgo), const IFF_LINK1 ideal-int
-pkg syscall (netbsd-arm-cgo), const IFF_LINK2 ideal-int
-pkg syscall (netbsd-arm-cgo), const IFF_NOARP ideal-int
-pkg syscall (netbsd-arm-cgo), const IFF_NOTRAILERS ideal-int
-pkg syscall (netbsd-arm-cgo), const IFF_OACTIVE ideal-int
-pkg syscall (netbsd-arm-cgo), const IFF_POINTOPOINT ideal-int
-pkg syscall (netbsd-arm-cgo), const IFF_PROMISC ideal-int
-pkg syscall (netbsd-arm-cgo), const IFF_RUNNING ideal-int
-pkg syscall (netbsd-arm-cgo), const IFF_SIMPLEX ideal-int
-pkg syscall (netbsd-arm-cgo), const IFNAMSIZ ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_1822 ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_A12MPPSWITCH ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_AAL2 ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_AAL5 ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_ADSL ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_AFLANE8023 ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_AFLANE8025 ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_ARAP ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_ARCNET ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_ARCNETPLUS ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_ASYNC ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_ATM ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_ATMDXI ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_ATMFUNI ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_ATMIMA ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_ATMLOGICAL ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_ATMRADIO ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_ATMSUBINTERFACE ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_ATMVCIENDPT ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_ATMVIRTUAL ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_BGPPOLICYACCOUNTING ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_BRIDGE ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_BSC ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_CARP ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_CCTEMUL ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_CEPT ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_CES ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_CHANNEL ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_CNR ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_COFFEE ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_COMPOSITELINK ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_DCN ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_DIGITALPOWERLINE ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_DLSW ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_DOCSCABLEDOWNSTREAM ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_DOCSCABLEMACLAYER ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_DOCSCABLEUPSTREAM ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_DOCSCABLEUPSTREAMCHANNEL ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_DS0 ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_DS0BUNDLE ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_DS1FDL ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_DS3 ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_DTM ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_DVBASILN ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_DVBASIOUT ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_DVBRCCDOWNSTREAM ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_DVBRCCMACLAYER ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_DVBRCCUPSTREAM ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_ECONET ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_EON ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_EPLRS ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_ESCON ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_ETHER ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_FAITH ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_FAST ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_FASTETHER ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_FASTETHERFX ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_FDDI ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_FIBRECHANNEL ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_FRAMERELAYINTERCONNECT ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_FRAMERELAYMPI ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_FRDLCIENDPT ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_FRELAY ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_FRELAYDCE ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_FRF16MFRBUNDLE ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_FRFORWARD ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_G703AT2MB ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_G703AT64K ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_GIF ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_GIGABITETHERNET ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_GR303IDT ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_GR303RDT ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_H323GATEKEEPER ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_H323PROXY ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_HDH1822 ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_HDLC ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_HDSL2 ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_HIPERLAN2 ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_HIPPI ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_HIPPIINTERFACE ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_HOSTPAD ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_HSSI ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_HY ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_IBM370PARCHAN ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_IDSL ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_IEEE1394 ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_IEEE80211 ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_IEEE80212 ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_IEEE8023ADLAG ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_IFGSN ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_IMT ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_INFINIBAND ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_INTERLEAVE ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_IP ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_IPFORWARD ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_IPOVERATM ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_IPOVERCDLC ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_IPOVERCLAW ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_IPSWITCH ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_ISDN ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_ISDNBASIC ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_ISDNPRIMARY ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_ISDNS ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_ISDNU ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_ISO88022LLC ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_ISO88023 ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_ISO88024 ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_ISO88025 ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_ISO88025CRFPINT ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_ISO88025DTR ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_ISO88025FIBER ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_ISO88026 ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_ISUP ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_L2VLAN ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_L3IPVLAN ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_L3IPXVLAN ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_LAPB ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_LAPD ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_LAPF ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_LINEGROUP ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_LOCALTALK ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_LOOP ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_MEDIAMAILOVERIP ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_MFSIGLINK ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_MIOX25 ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_MODEM ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_MPC ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_MPLS ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_MPLSTUNNEL ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_MSDSL ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_MVL ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_MYRINET ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_NFAS ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_NSIP ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_OPTICALCHANNEL ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_OPTICALTRANSPORT ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_OTHER ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_P10 ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_P80 ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_PARA ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_PFLOG ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_PFSYNC ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_PLC ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_PON155 ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_PON622 ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_POS ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_PPP ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_PPPMULTILINKBUNDLE ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_PROPATM ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_PROPBWAP2MP ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_PROPCNLS ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_PROPMUX ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_PROPVIRTUAL ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_PROPWIRELESSP2P ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_PTPSERIAL ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_PVC ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_Q2931 ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_QLLC ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_RADIOMAC ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_RADSL ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_REACHDSL ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_RFC1483 ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_RS232 ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_RSRB ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_SDLC ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_SDSL ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_SHDSL ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_SIP ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_SIPSIG ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_SIPTG ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_SLIP ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_SMDSDXI ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_SMDSICIP ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_SONET ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_SONETOVERHEADCHANNEL ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_SONETPATH ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_SONETVT ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_SRP ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_SS7SIGLINK ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_STACKTOSTACK ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_STARLAN ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_STF ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_T1 ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_TDLC ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_TELINK ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_TERMPAD ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_TR008 ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_TRANSPHDLC ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_TUNNEL ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_ULTRA ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_USB ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_V11 ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_V35 ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_V36 ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_V37 ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_VDSL ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_VIRTUALIPADDRESS ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_VIRTUALTG ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_VOICEDID ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_VOICEEM ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_VOICEEMFGD ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_VOICEENCAP ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_VOICEFGDEANA ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_VOICEFXO ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_VOICEFXS ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_VOICEOVERATM ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_VOICEOVERCABLE ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_VOICEOVERFRAMERELAY ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_VOICEOVERIP ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_X213 ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_X25 ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_X25DDN ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_X25HUNTGROUP ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_X25MLP ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_X25PLE ideal-int
-pkg syscall (netbsd-arm-cgo), const IFT_XETHER ideal-int
-pkg syscall (netbsd-arm-cgo), const IGNBRK ideal-int
-pkg syscall (netbsd-arm-cgo), const IGNCR ideal-int
-pkg syscall (netbsd-arm-cgo), const IGNPAR ideal-int
-pkg syscall (netbsd-arm-cgo), const IMAXBEL ideal-int
-pkg syscall (netbsd-arm-cgo), const INLCR ideal-int
-pkg syscall (netbsd-arm-cgo), const INPCK ideal-int
-pkg syscall (netbsd-arm-cgo), const IN_CLASSA_HOST ideal-int
-pkg syscall (netbsd-arm-cgo), const IN_CLASSA_MAX ideal-int
-pkg syscall (netbsd-arm-cgo), const IN_CLASSA_NET ideal-int
-pkg syscall (netbsd-arm-cgo), const IN_CLASSA_NSHIFT ideal-int
-pkg syscall (netbsd-arm-cgo), const IN_CLASSB_HOST ideal-int
-pkg syscall (netbsd-arm-cgo), const IN_CLASSB_MAX ideal-int
-pkg syscall (netbsd-arm-cgo), const IN_CLASSB_NET ideal-int
-pkg syscall (netbsd-arm-cgo), const IN_CLASSB_NSHIFT ideal-int
-pkg syscall (netbsd-arm-cgo), const IN_CLASSC_HOST ideal-int
-pkg syscall (netbsd-arm-cgo), const IN_CLASSC_NET ideal-int
-pkg syscall (netbsd-arm-cgo), const IN_CLASSC_NSHIFT ideal-int
-pkg syscall (netbsd-arm-cgo), const IN_CLASSD_HOST ideal-int
-pkg syscall (netbsd-arm-cgo), const IN_CLASSD_NET ideal-int
-pkg syscall (netbsd-arm-cgo), const IN_CLASSD_NSHIFT ideal-int
-pkg syscall (netbsd-arm-cgo), const IN_LOOPBACKNET ideal-int
-pkg syscall (netbsd-arm-cgo), const IPPROTO_AH ideal-int
-pkg syscall (netbsd-arm-cgo), const IPPROTO_CARP ideal-int
-pkg syscall (netbsd-arm-cgo), const IPPROTO_DONE ideal-int
-pkg syscall (netbsd-arm-cgo), const IPPROTO_DSTOPTS ideal-int
-pkg syscall (netbsd-arm-cgo), const IPPROTO_EGP ideal-int
-pkg syscall (netbsd-arm-cgo), const IPPROTO_ENCAP ideal-int
-pkg syscall (netbsd-arm-cgo), const IPPROTO_EON ideal-int
-pkg syscall (netbsd-arm-cgo), const IPPROTO_ESP ideal-int
-pkg syscall (netbsd-arm-cgo), const IPPROTO_ETHERIP ideal-int
-pkg syscall (netbsd-arm-cgo), const IPPROTO_FRAGMENT ideal-int
-pkg syscall (netbsd-arm-cgo), const IPPROTO_GGP ideal-int
-pkg syscall (netbsd-arm-cgo), const IPPROTO_GRE ideal-int
-pkg syscall (netbsd-arm-cgo), const IPPROTO_HOPOPTS ideal-int
-pkg syscall (netbsd-arm-cgo), const IPPROTO_ICMP ideal-int
-pkg syscall (netbsd-arm-cgo), const IPPROTO_ICMPV6 ideal-int
-pkg syscall (netbsd-arm-cgo), const IPPROTO_IDP ideal-int
-pkg syscall (netbsd-arm-cgo), const IPPROTO_IGMP ideal-int
-pkg syscall (netbsd-arm-cgo), const IPPROTO_IPCOMP ideal-int
-pkg syscall (netbsd-arm-cgo), const IPPROTO_IPIP ideal-int
-pkg syscall (netbsd-arm-cgo), const IPPROTO_IPV4 ideal-int
-pkg syscall (netbsd-arm-cgo), const IPPROTO_IPV6_ICMP ideal-int
-pkg syscall (netbsd-arm-cgo), const IPPROTO_MAX ideal-int
-pkg syscall (netbsd-arm-cgo), const IPPROTO_MAXID ideal-int
-pkg syscall (netbsd-arm-cgo), const IPPROTO_MOBILE ideal-int
-pkg syscall (netbsd-arm-cgo), const IPPROTO_NONE ideal-int
-pkg syscall (netbsd-arm-cgo), const IPPROTO_PFSYNC ideal-int
-pkg syscall (netbsd-arm-cgo), const IPPROTO_PIM ideal-int
-pkg syscall (netbsd-arm-cgo), const IPPROTO_PUP ideal-int
-pkg syscall (netbsd-arm-cgo), const IPPROTO_RAW ideal-int
-pkg syscall (netbsd-arm-cgo), const IPPROTO_ROUTING ideal-int
-pkg syscall (netbsd-arm-cgo), const IPPROTO_RSVP ideal-int
-pkg syscall (netbsd-arm-cgo), const IPPROTO_TP ideal-int
-pkg syscall (netbsd-arm-cgo), const IPPROTO_VRRP ideal-int
-pkg syscall (netbsd-arm-cgo), const IPV6_CHECKSUM ideal-int
-pkg syscall (netbsd-arm-cgo), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int
-pkg syscall (netbsd-arm-cgo), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int
-pkg syscall (netbsd-arm-cgo), const IPV6_DEFHLIM ideal-int
-pkg syscall (netbsd-arm-cgo), const IPV6_DONTFRAG ideal-int
-pkg syscall (netbsd-arm-cgo), const IPV6_DSTOPTS ideal-int
-pkg syscall (netbsd-arm-cgo), const IPV6_FAITH ideal-int
-pkg syscall (netbsd-arm-cgo), const IPV6_FLOWINFO_MASK ideal-int
-pkg syscall (netbsd-arm-cgo), const IPV6_FLOWLABEL_MASK ideal-int
-pkg syscall (netbsd-arm-cgo), const IPV6_FRAGTTL ideal-int
-pkg syscall (netbsd-arm-cgo), const IPV6_HLIMDEC ideal-int
-pkg syscall (netbsd-arm-cgo), const IPV6_HOPLIMIT ideal-int
-pkg syscall (netbsd-arm-cgo), const IPV6_HOPOPTS ideal-int
-pkg syscall (netbsd-arm-cgo), const IPV6_IPSEC_POLICY ideal-int
-pkg syscall (netbsd-arm-cgo), const IPV6_MAXHLIM ideal-int
-pkg syscall (netbsd-arm-cgo), const IPV6_MAXPACKET ideal-int
-pkg syscall (netbsd-arm-cgo), const IPV6_MMTU ideal-int
-pkg syscall (netbsd-arm-cgo), const IPV6_NEXTHOP ideal-int
-pkg syscall (netbsd-arm-cgo), const IPV6_PATHMTU ideal-int
-pkg syscall (netbsd-arm-cgo), const IPV6_PKTINFO ideal-int
-pkg syscall (netbsd-arm-cgo), const IPV6_PORTRANGE ideal-int
-pkg syscall (netbsd-arm-cgo), const IPV6_PORTRANGE_DEFAULT ideal-int
-pkg syscall (netbsd-arm-cgo), const IPV6_PORTRANGE_HIGH ideal-int
-pkg syscall (netbsd-arm-cgo), const IPV6_PORTRANGE_LOW ideal-int
-pkg syscall (netbsd-arm-cgo), const IPV6_RECVDSTOPTS ideal-int
-pkg syscall (netbsd-arm-cgo), const IPV6_RECVHOPLIMIT ideal-int
-pkg syscall (netbsd-arm-cgo), const IPV6_RECVHOPOPTS ideal-int
-pkg syscall (netbsd-arm-cgo), const IPV6_RECVPATHMTU ideal-int
-pkg syscall (netbsd-arm-cgo), const IPV6_RECVPKTINFO ideal-int
-pkg syscall (netbsd-arm-cgo), const IPV6_RECVRTHDR ideal-int
-pkg syscall (netbsd-arm-cgo), const IPV6_RECVTCLASS ideal-int
-pkg syscall (netbsd-arm-cgo), const IPV6_RTHDR ideal-int
-pkg syscall (netbsd-arm-cgo), const IPV6_RTHDRDSTOPTS ideal-int
-pkg syscall (netbsd-arm-cgo), const IPV6_RTHDR_LOOSE ideal-int
-pkg syscall (netbsd-arm-cgo), const IPV6_RTHDR_STRICT ideal-int
-pkg syscall (netbsd-arm-cgo), const IPV6_RTHDR_TYPE_0 ideal-int
-pkg syscall (netbsd-arm-cgo), const IPV6_SOCKOPT_RESERVED1 ideal-int
-pkg syscall (netbsd-arm-cgo), const IPV6_TCLASS ideal-int
-pkg syscall (netbsd-arm-cgo), const IPV6_USE_MIN_MTU ideal-int
-pkg syscall (netbsd-arm-cgo), const IPV6_VERSION ideal-int
-pkg syscall (netbsd-arm-cgo), const IPV6_VERSION_MASK ideal-int
-pkg syscall (netbsd-arm-cgo), const IP_DEFAULT_MULTICAST_LOOP ideal-int
-pkg syscall (netbsd-arm-cgo), const IP_DEFAULT_MULTICAST_TTL ideal-int
-pkg syscall (netbsd-arm-cgo), const IP_DF ideal-int
-pkg syscall (netbsd-arm-cgo), const IP_EF ideal-int
-pkg syscall (netbsd-arm-cgo), const IP_ERRORMTU ideal-int
-pkg syscall (netbsd-arm-cgo), const IP_HDRINCL ideal-int
-pkg syscall (netbsd-arm-cgo), const IP_IPSEC_POLICY ideal-int
-pkg syscall (netbsd-arm-cgo), const IP_MAXPACKET ideal-int
-pkg syscall (netbsd-arm-cgo), const IP_MAX_MEMBERSHIPS ideal-int
-pkg syscall (netbsd-arm-cgo), const IP_MF ideal-int
-pkg syscall (netbsd-arm-cgo), const IP_MINFRAGSIZE ideal-int
-pkg syscall (netbsd-arm-cgo), const IP_MINTTL ideal-int
-pkg syscall (netbsd-arm-cgo), const IP_MSS ideal-int
-pkg syscall (netbsd-arm-cgo), const IP_OFFMASK ideal-int
-pkg syscall (netbsd-arm-cgo), const IP_OPTIONS ideal-int
-pkg syscall (netbsd-arm-cgo), const IP_PORTRANGE ideal-int
-pkg syscall (netbsd-arm-cgo), const IP_PORTRANGE_DEFAULT ideal-int
-pkg syscall (netbsd-arm-cgo), const IP_PORTRANGE_HIGH ideal-int
-pkg syscall (netbsd-arm-cgo), const IP_PORTRANGE_LOW ideal-int
-pkg syscall (netbsd-arm-cgo), const IP_RECVDSTADDR ideal-int
-pkg syscall (netbsd-arm-cgo), const IP_RECVIF ideal-int
-pkg syscall (netbsd-arm-cgo), const IP_RECVOPTS ideal-int
-pkg syscall (netbsd-arm-cgo), const IP_RECVRETOPTS ideal-int
-pkg syscall (netbsd-arm-cgo), const IP_RECVTTL ideal-int
-pkg syscall (netbsd-arm-cgo), const IP_RETOPTS ideal-int
-pkg syscall (netbsd-arm-cgo), const IP_RF ideal-int
-pkg syscall (netbsd-arm-cgo), const ISIG ideal-int
-pkg syscall (netbsd-arm-cgo), const ISTRIP ideal-int
-pkg syscall (netbsd-arm-cgo), const IXANY ideal-int
-pkg syscall (netbsd-arm-cgo), const IXOFF ideal-int
-pkg syscall (netbsd-arm-cgo), const IXON ideal-int
-pkg syscall (netbsd-arm-cgo), const LOCK_EX ideal-int
-pkg syscall (netbsd-arm-cgo), const LOCK_NB ideal-int
-pkg syscall (netbsd-arm-cgo), const LOCK_SH ideal-int
-pkg syscall (netbsd-arm-cgo), const LOCK_UN ideal-int
-pkg syscall (netbsd-arm-cgo), const MSG_BCAST ideal-int
-pkg syscall (netbsd-arm-cgo), const MSG_CMSG_CLOEXEC ideal-int
-pkg syscall (netbsd-arm-cgo), const MSG_CONTROLMBUF ideal-int
-pkg syscall (netbsd-arm-cgo), const MSG_CTRUNC ideal-int
-pkg syscall (netbsd-arm-cgo), const MSG_DONTROUTE ideal-int
-pkg syscall (netbsd-arm-cgo), const MSG_DONTWAIT ideal-int
-pkg syscall (netbsd-arm-cgo), const MSG_EOR ideal-int
-pkg syscall (netbsd-arm-cgo), const MSG_IOVUSRSPACE ideal-int
-pkg syscall (netbsd-arm-cgo), const MSG_LENUSRSPACE ideal-int
-pkg syscall (netbsd-arm-cgo), const MSG_MCAST ideal-int
-pkg syscall (netbsd-arm-cgo), const MSG_NAMEMBUF ideal-int
-pkg syscall (netbsd-arm-cgo), const MSG_NBIO ideal-int
-pkg syscall (netbsd-arm-cgo), const MSG_NOSIGNAL ideal-int
-pkg syscall (netbsd-arm-cgo), const MSG_OOB ideal-int
-pkg syscall (netbsd-arm-cgo), const MSG_PEEK ideal-int
-pkg syscall (netbsd-arm-cgo), const MSG_TRUNC ideal-int
-pkg syscall (netbsd-arm-cgo), const MSG_USERFLAGS ideal-int
-pkg syscall (netbsd-arm-cgo), const MSG_WAITALL ideal-int
-pkg syscall (netbsd-arm-cgo), const NAME_MAX ideal-int
-pkg syscall (netbsd-arm-cgo), const NET_RT_DUMP ideal-int
-pkg syscall (netbsd-arm-cgo), const NET_RT_FLAGS ideal-int
-pkg syscall (netbsd-arm-cgo), const NET_RT_IFLIST ideal-int
-pkg syscall (netbsd-arm-cgo), const NET_RT_MAXID ideal-int
-pkg syscall (netbsd-arm-cgo), const NET_RT_OIFLIST ideal-int
-pkg syscall (netbsd-arm-cgo), const NET_RT_OOIFLIST ideal-int
-pkg syscall (netbsd-arm-cgo), const NOFLSH ideal-int
-pkg syscall (netbsd-arm-cgo), const NOTE_ATTRIB ideal-int
-pkg syscall (netbsd-arm-cgo), const NOTE_CHILD ideal-int
-pkg syscall (netbsd-arm-cgo), const NOTE_DELETE ideal-int
-pkg syscall (netbsd-arm-cgo), const NOTE_EXEC ideal-int
-pkg syscall (netbsd-arm-cgo), const NOTE_EXIT ideal-int
-pkg syscall (netbsd-arm-cgo), const NOTE_EXTEND ideal-int
-pkg syscall (netbsd-arm-cgo), const NOTE_FORK ideal-int
-pkg syscall (netbsd-arm-cgo), const NOTE_LINK ideal-int
-pkg syscall (netbsd-arm-cgo), const NOTE_LOWAT ideal-int
-pkg syscall (netbsd-arm-cgo), const NOTE_PCTRLMASK ideal-int
-pkg syscall (netbsd-arm-cgo), const NOTE_PDATAMASK ideal-int
-pkg syscall (netbsd-arm-cgo), const NOTE_RENAME ideal-int
-pkg syscall (netbsd-arm-cgo), const NOTE_REVOKE ideal-int
-pkg syscall (netbsd-arm-cgo), const NOTE_TRACK ideal-int
-pkg syscall (netbsd-arm-cgo), const NOTE_TRACKERR ideal-int
-pkg syscall (netbsd-arm-cgo), const NOTE_WRITE ideal-int
-pkg syscall (netbsd-arm-cgo), const OCRNL ideal-int
-pkg syscall (netbsd-arm-cgo), const OFIOGETBMAP ideal-int
-pkg syscall (netbsd-arm-cgo), const ONLCR ideal-int
-pkg syscall (netbsd-arm-cgo), const ONLRET ideal-int
-pkg syscall (netbsd-arm-cgo), const ONOCR ideal-int
-pkg syscall (netbsd-arm-cgo), const ONOEOT ideal-int
-pkg syscall (netbsd-arm-cgo), const OPOST ideal-int
-pkg syscall (netbsd-arm-cgo), const O_ACCMODE ideal-int
-pkg syscall (netbsd-arm-cgo), const O_ALT_IO ideal-int
-pkg syscall (netbsd-arm-cgo), const O_DIRECT ideal-int
-pkg syscall (netbsd-arm-cgo), const O_DIRECTORY ideal-int
-pkg syscall (netbsd-arm-cgo), const O_DSYNC ideal-int
-pkg syscall (netbsd-arm-cgo), const O_EXLOCK ideal-int
-pkg syscall (netbsd-arm-cgo), const O_FSYNC ideal-int
-pkg syscall (netbsd-arm-cgo), const O_NDELAY ideal-int
-pkg syscall (netbsd-arm-cgo), const O_NOFOLLOW ideal-int
-pkg syscall (netbsd-arm-cgo), const O_NOSIGPIPE ideal-int
-pkg syscall (netbsd-arm-cgo), const O_RSYNC ideal-int
-pkg syscall (netbsd-arm-cgo), const O_SHLOCK ideal-int
-pkg syscall (netbsd-arm-cgo), const PARENB ideal-int
-pkg syscall (netbsd-arm-cgo), const PARMRK ideal-int
-pkg syscall (netbsd-arm-cgo), const PARODD ideal-int
-pkg syscall (netbsd-arm-cgo), const PENDIN ideal-int
-pkg syscall (netbsd-arm-cgo), const PRIO_PGRP = 1
-pkg syscall (netbsd-arm-cgo), const PRIO_PGRP ideal-int
-pkg syscall (netbsd-arm-cgo), const PRIO_PROCESS = 0
-pkg syscall (netbsd-arm-cgo), const PRIO_PROCESS ideal-int
-pkg syscall (netbsd-arm-cgo), const PRIO_USER = 2
-pkg syscall (netbsd-arm-cgo), const PRIO_USER ideal-int
-pkg syscall (netbsd-arm-cgo), const PRI_IOFLUSH ideal-int
-pkg syscall (netbsd-arm-cgo), const PTRACE_CONT ideal-int
-pkg syscall (netbsd-arm-cgo), const PTRACE_KILL ideal-int
-pkg syscall (netbsd-arm-cgo), const PTRACE_TRACEME ideal-int
-pkg syscall (netbsd-arm-cgo), const RLIMIT_AS ideal-int
-pkg syscall (netbsd-arm-cgo), const RLIMIT_CORE ideal-int
-pkg syscall (netbsd-arm-cgo), const RLIMIT_CPU ideal-int
-pkg syscall (netbsd-arm-cgo), const RLIMIT_DATA ideal-int
-pkg syscall (netbsd-arm-cgo), const RLIMIT_FSIZE ideal-int
-pkg syscall (netbsd-arm-cgo), const RLIMIT_NOFILE ideal-int
-pkg syscall (netbsd-arm-cgo), const RLIMIT_STACK ideal-int
-pkg syscall (netbsd-arm-cgo), const RLIM_INFINITY ideal-int
-pkg syscall (netbsd-arm-cgo), const RTAX_AUTHOR ideal-int
-pkg syscall (netbsd-arm-cgo), const RTAX_BRD ideal-int
-pkg syscall (netbsd-arm-cgo), const RTAX_DST ideal-int
-pkg syscall (netbsd-arm-cgo), const RTAX_GATEWAY ideal-int
-pkg syscall (netbsd-arm-cgo), const RTAX_GENMASK ideal-int
-pkg syscall (netbsd-arm-cgo), const RTAX_IFA ideal-int
-pkg syscall (netbsd-arm-cgo), const RTAX_IFP ideal-int
-pkg syscall (netbsd-arm-cgo), const RTAX_MAX ideal-int
-pkg syscall (netbsd-arm-cgo), const RTAX_NETMASK ideal-int
-pkg syscall (netbsd-arm-cgo), const RTAX_TAG ideal-int
-pkg syscall (netbsd-arm-cgo), const RTA_AUTHOR ideal-int
-pkg syscall (netbsd-arm-cgo), const RTA_BRD ideal-int
-pkg syscall (netbsd-arm-cgo), const RTA_DST ideal-int
-pkg syscall (netbsd-arm-cgo), const RTA_GATEWAY ideal-int
-pkg syscall (netbsd-arm-cgo), const RTA_GENMASK ideal-int
-pkg syscall (netbsd-arm-cgo), const RTA_IFA ideal-int
-pkg syscall (netbsd-arm-cgo), const RTA_IFP ideal-int
-pkg syscall (netbsd-arm-cgo), const RTA_NETMASK ideal-int
-pkg syscall (netbsd-arm-cgo), const RTA_TAG ideal-int
-pkg syscall (netbsd-arm-cgo), const RTF_ANNOUNCE ideal-int
-pkg syscall (netbsd-arm-cgo), const RTF_BLACKHOLE ideal-int
-pkg syscall (netbsd-arm-cgo), const RTF_CLONED ideal-int
-pkg syscall (netbsd-arm-cgo), const RTF_CLONING ideal-int
-pkg syscall (netbsd-arm-cgo), const RTF_DONE ideal-int
-pkg syscall (netbsd-arm-cgo), const RTF_DYNAMIC ideal-int
-pkg syscall (netbsd-arm-cgo), const RTF_GATEWAY ideal-int
-pkg syscall (netbsd-arm-cgo), const RTF_HOST ideal-int
-pkg syscall (netbsd-arm-cgo), const RTF_LLINFO ideal-int
-pkg syscall (netbsd-arm-cgo), const RTF_MASK ideal-int
-pkg syscall (netbsd-arm-cgo), const RTF_MODIFIED ideal-int
-pkg syscall (netbsd-arm-cgo), const RTF_PROTO1 ideal-int
-pkg syscall (netbsd-arm-cgo), const RTF_PROTO2 ideal-int
-pkg syscall (netbsd-arm-cgo), const RTF_REJECT ideal-int
-pkg syscall (netbsd-arm-cgo), const RTF_SRC ideal-int
-pkg syscall (netbsd-arm-cgo), const RTF_STATIC ideal-int
-pkg syscall (netbsd-arm-cgo), const RTF_UP ideal-int
-pkg syscall (netbsd-arm-cgo), const RTF_XRESOLVE ideal-int
-pkg syscall (netbsd-arm-cgo), const RTM_ADD ideal-int
-pkg syscall (netbsd-arm-cgo), const RTM_CHANGE ideal-int
-pkg syscall (netbsd-arm-cgo), const RTM_CHGADDR ideal-int
-pkg syscall (netbsd-arm-cgo), const RTM_DELADDR ideal-int
-pkg syscall (netbsd-arm-cgo), const RTM_DELETE ideal-int
-pkg syscall (netbsd-arm-cgo), const RTM_GET ideal-int
-pkg syscall (netbsd-arm-cgo), const RTM_IEEE80211 ideal-int
-pkg syscall (netbsd-arm-cgo), const RTM_IFANNOUNCE ideal-int
-pkg syscall (netbsd-arm-cgo), const RTM_IFINFO ideal-int
-pkg syscall (netbsd-arm-cgo), const RTM_LLINFO_UPD ideal-int
-pkg syscall (netbsd-arm-cgo), const RTM_LOCK ideal-int
-pkg syscall (netbsd-arm-cgo), const RTM_LOSING ideal-int
-pkg syscall (netbsd-arm-cgo), const RTM_MISS ideal-int
-pkg syscall (netbsd-arm-cgo), const RTM_NEWADDR ideal-int
-pkg syscall (netbsd-arm-cgo), const RTM_OIFINFO ideal-int
-pkg syscall (netbsd-arm-cgo), const RTM_OLDADD ideal-int
-pkg syscall (netbsd-arm-cgo), const RTM_OLDDEL ideal-int
-pkg syscall (netbsd-arm-cgo), const RTM_OOIFINFO ideal-int
-pkg syscall (netbsd-arm-cgo), const RTM_REDIRECT ideal-int
-pkg syscall (netbsd-arm-cgo), const RTM_RESOLVE ideal-int
-pkg syscall (netbsd-arm-cgo), const RTM_RTTUNIT ideal-int
-pkg syscall (netbsd-arm-cgo), const RTM_SETGATE ideal-int
-pkg syscall (netbsd-arm-cgo), const RTM_VERSION ideal-int
-pkg syscall (netbsd-arm-cgo), const RTV_EXPIRE ideal-int
-pkg syscall (netbsd-arm-cgo), const RTV_HOPCOUNT ideal-int
-pkg syscall (netbsd-arm-cgo), const RTV_MTU ideal-int
-pkg syscall (netbsd-arm-cgo), const RTV_RPIPE ideal-int
-pkg syscall (netbsd-arm-cgo), const RTV_RTT ideal-int
-pkg syscall (netbsd-arm-cgo), const RTV_RTTVAR ideal-int
-pkg syscall (netbsd-arm-cgo), const RTV_SPIPE ideal-int
-pkg syscall (netbsd-arm-cgo), const RTV_SSTHRESH ideal-int
-pkg syscall (netbsd-arm-cgo), const RUSAGE_CHILDREN ideal-int
-pkg syscall (netbsd-arm-cgo), const RUSAGE_SELF ideal-int
-pkg syscall (netbsd-arm-cgo), const SCM_CREDS ideal-int
-pkg syscall (netbsd-arm-cgo), const SCM_RIGHTS ideal-int
-pkg syscall (netbsd-arm-cgo), const SCM_TIMESTAMP ideal-int
-pkg syscall (netbsd-arm-cgo), const SIGCHLD Signal
-pkg syscall (netbsd-arm-cgo), const SIGCONT Signal
-pkg syscall (netbsd-arm-cgo), const SIGEMT Signal
-pkg syscall (netbsd-arm-cgo), const SIGINFO Signal
-pkg syscall (netbsd-arm-cgo), const SIGIO Signal
-pkg syscall (netbsd-arm-cgo), const SIGIOT Signal
-pkg syscall (netbsd-arm-cgo), const SIGPROF Signal
-pkg syscall (netbsd-arm-cgo), const SIGPWR Signal
-pkg syscall (netbsd-arm-cgo), const SIGSTOP Signal
-pkg syscall (netbsd-arm-cgo), const SIGSYS Signal
-pkg syscall (netbsd-arm-cgo), const SIGTSTP Signal
-pkg syscall (netbsd-arm-cgo), const SIGTTIN Signal
-pkg syscall (netbsd-arm-cgo), const SIGTTOU Signal
-pkg syscall (netbsd-arm-cgo), const SIGURG Signal
-pkg syscall (netbsd-arm-cgo), const SIGUSR1 Signal
-pkg syscall (netbsd-arm-cgo), const SIGUSR2 Signal
-pkg syscall (netbsd-arm-cgo), const SIGVTALRM Signal
-pkg syscall (netbsd-arm-cgo), const SIGWINCH Signal
-pkg syscall (netbsd-arm-cgo), const SIGXCPU Signal
-pkg syscall (netbsd-arm-cgo), const SIGXFSZ Signal
-pkg syscall (netbsd-arm-cgo), const SIOCADDMULTI ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCADDRT ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCAIFADDR ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCALIFADDR ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCATMARK ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCDELMULTI ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCDELRT ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCDIFADDR ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCDIFPHYADDR ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCDLIFADDR ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCGDRVSPEC ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCGETPFSYNC ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCGETSGCNT ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCGETVIFCNT ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCGHIWAT ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCGIFADDR ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCGIFADDRPREF ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCGIFALIAS ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCGIFBRDADDR ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCGIFCAP ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCGIFCONF ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCGIFDATA ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCGIFDLT ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCGIFDSTADDR ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCGIFFLAGS ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCGIFGENERIC ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCGIFMEDIA ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCGIFMETRIC ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCGIFMTU ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCGIFNETMASK ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCGIFPDSTADDR ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCGIFPSRCADDR ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCGLIFADDR ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCGLIFPHYADDR ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCGLINKSTR ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCGLOWAT ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCGPGRP ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCGVH ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCIFCREATE ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCIFDESTROY ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCIFGCLONERS ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCINITIFADDR ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCSDRVSPEC ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCSETPFSYNC ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCSHIWAT ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCSIFADDR ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCSIFADDRPREF ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCSIFBRDADDR ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCSIFCAP ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCSIFDSTADDR ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCSIFFLAGS ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCSIFGENERIC ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCSIFMEDIA ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCSIFMETRIC ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCSIFMTU ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCSIFNETMASK ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCSIFPHYADDR ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCSLIFPHYADDR ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCSLINKSTR ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCSLOWAT ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCSPGRP ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCSVH ideal-int
-pkg syscall (netbsd-arm-cgo), const SIOCZIFDATA ideal-int
-pkg syscall (netbsd-arm-cgo), const SOCK_CLOEXEC ideal-int
-pkg syscall (netbsd-arm-cgo), const SOCK_FLAGS_MASK ideal-int
-pkg syscall (netbsd-arm-cgo), const SOCK_NONBLOCK ideal-int
-pkg syscall (netbsd-arm-cgo), const SOCK_NOSIGPIPE ideal-int
-pkg syscall (netbsd-arm-cgo), const SOCK_RDM ideal-int
-pkg syscall (netbsd-arm-cgo), const SO_ACCEPTCONN ideal-int
-pkg syscall (netbsd-arm-cgo), const SO_ACCEPTFILTER ideal-int
-pkg syscall (netbsd-arm-cgo), const SO_DEBUG ideal-int
-pkg syscall (netbsd-arm-cgo), const SO_ERROR ideal-int
-pkg syscall (netbsd-arm-cgo), const SO_NOHEADER ideal-int
-pkg syscall (netbsd-arm-cgo), const SO_NOSIGPIPE ideal-int
-pkg syscall (netbsd-arm-cgo), const SO_OOBINLINE ideal-int
-pkg syscall (netbsd-arm-cgo), const SO_OVERFLOWED ideal-int
-pkg syscall (netbsd-arm-cgo), const SO_RCVLOWAT ideal-int
-pkg syscall (netbsd-arm-cgo), const SO_RCVTIMEO ideal-int
-pkg syscall (netbsd-arm-cgo), const SO_REUSEPORT ideal-int
-pkg syscall (netbsd-arm-cgo), const SO_SNDLOWAT ideal-int
-pkg syscall (netbsd-arm-cgo), const SO_SNDTIMEO ideal-int
-pkg syscall (netbsd-arm-cgo), const SO_TIMESTAMP ideal-int
-pkg syscall (netbsd-arm-cgo), const SO_TYPE ideal-int
-pkg syscall (netbsd-arm-cgo), const SO_USELOOPBACK ideal-int
-pkg syscall (netbsd-arm-cgo), const SYSCTL_VERSION ideal-int
-pkg syscall (netbsd-arm-cgo), const SYSCTL_VERS_0 ideal-int
-pkg syscall (netbsd-arm-cgo), const SYSCTL_VERS_1 ideal-int
-pkg syscall (netbsd-arm-cgo), const SYSCTL_VERS_MASK ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_ACCEPT ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_ACCESS ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_ACCT ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_ADJTIME ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_BIND ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_BREAK ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_CHDIR ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_CHFLAGS ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_CHMOD ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_CHOWN ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_CHROOT ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_CLOCK_GETRES ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_CLOCK_GETTIME ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_CLOCK_SETTIME ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_CLOSE ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_CONNECT ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_DUP ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_DUP2 ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_DUP3 ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_EXECVE ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_EXIT ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_EXTATTRCTL ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_EXTATTR_DELETE_FD ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_EXTATTR_DELETE_FILE ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_EXTATTR_DELETE_LINK ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_EXTATTR_GET_FD ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_EXTATTR_GET_FILE ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_EXTATTR_GET_LINK ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_EXTATTR_LIST_FD ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_EXTATTR_LIST_FILE ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_EXTATTR_LIST_LINK ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_EXTATTR_SET_FD ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_EXTATTR_SET_FILE ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_EXTATTR_SET_LINK ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_FACCESSAT ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_FCHDIR ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_FCHFLAGS ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_FCHMOD ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_FCHMODAT ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_FCHOWN ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_FCHOWNAT ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_FCHROOT ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_FCNTL ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_FDATASYNC ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_FEXECVE ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_FGETXATTR ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_FHSTAT ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_FKTRACE ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_FLISTXATTR ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_FLOCK ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_FORK ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_FPATHCONF ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_FREMOVEXATTR ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_FSETXATTR ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_FSTAT ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_FSTATAT ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_FSTATVFS1 ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_FSYNC ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_FSYNC_RANGE ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_FTRUNCATE ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_FUTIMENS ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_FUTIMES ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_GETCONTEXT ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_GETDENTS ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_GETEGID ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_GETEUID ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_GETFH ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_GETGID ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_GETGROUPS ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_GETITIMER ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_GETPEERNAME ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_GETPGID ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_GETPGRP ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_GETPID ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_GETPPID ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_GETPRIORITY ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_GETRLIMIT ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_GETRUSAGE ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_GETSID ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_GETSOCKNAME ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_GETSOCKOPT ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_GETTIMEOFDAY ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_GETUID ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_GETVFSSTAT ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_GETXATTR ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_IOCTL ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_ISSETUGID ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_KEVENT ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_KILL ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_KQUEUE ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_KQUEUE1 ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_KTRACE ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_LCHFLAGS ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_LCHMOD ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_LCHOWN ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_LGETXATTR ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_LINK ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_LINKAT ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_LISTEN ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_LISTXATTR ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_LLISTXATTR ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_LREMOVEXATTR ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_LSEEK ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_LSETXATTR ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_LSTAT ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_LUTIMES ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_MADVISE ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_MINCORE ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_MINHERIT ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_MKDIR ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_MKDIRAT ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_MKFIFO ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_MKFIFOAT ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_MKNOD ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_MKNODAT ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_MLOCK ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_MLOCKALL ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_MMAP ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_MODCTL ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_MOUNT ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_MPROTECT ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_MREMAP ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_MSGCTL ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_MSGGET ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_MSGRCV ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_MSGSND ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_MUNLOCK ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_MUNLOCKALL ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_MUNMAP ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_NANOSLEEP ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_NTP_ADJTIME ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_NTP_GETTIME ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_OPEN ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_OPENAT ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_PACCEPT ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_PATHCONF ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_PIPE ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_PIPE2 ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_PMC_CONTROL ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_PMC_GET_INFO ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_POLL ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_POLLTS ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_POSIX_FADVISE ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_POSIX_SPAWN ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_PREAD ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_PREADV ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_PROFIL ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_PSELECT ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_PSET_ASSIGN ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_PSET_CREATE ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_PSET_DESTROY ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_PTRACE ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_PWRITE ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_PWRITEV ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_RASCTL ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_READ ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_READLINK ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_READLINKAT ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_READV ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_REBOOT ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_RECVFROM ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_RECVMMSG ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_RECVMSG ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_REMOVEXATTR ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_RENAME ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_RENAMEAT ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_REVOKE ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_RMDIR ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_SBRK ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_SCHED_YIELD ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_SELECT ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_SEMCONFIG ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_SEMGET ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_SEMOP ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_SENDMMSG ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_SENDMSG ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_SENDTO ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_SETCONTEXT ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_SETEGID ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_SETEUID ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_SETGID ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_SETGROUPS ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_SETITIMER ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_SETPGID ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_SETPRIORITY ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_SETREGID ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_SETREUID ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_SETRLIMIT ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_SETSID ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_SETSOCKOPT ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_SETTIMEOFDAY ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_SETUID ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_SETXATTR ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_SHMAT ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_SHMCTL ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_SHMDT ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_SHMGET ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_SHUTDOWN ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_SIGQUEUEINFO ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_SOCKET ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_SOCKETPAIR ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_SSTK ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_STAT ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_STATVFS1 ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_SWAPCTL ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_SYMLINK ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_SYMLINKAT ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_SYNC ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_SYSARCH ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_TIMER_CREATE ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_TIMER_DELETE ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_TIMER_GETOVERRUN ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_TIMER_GETTIME ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_TIMER_SETTIME ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_TRUNCATE ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_UMASK ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_UNDELETE ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_UNLINK ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_UNLINKAT ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_UNMOUNT ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_UTIMENSAT ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_UTIMES ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_UTRACE ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_UUIDGEN ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_VADVISE ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_VFORK ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_WAIT4 ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_WRITE ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS_WRITEV ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS__LWP_CONTINUE ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS__LWP_CREATE ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS__LWP_CTL ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS__LWP_DETACH ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS__LWP_EXIT ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS__LWP_GETNAME ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS__LWP_GETPRIVATE ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS__LWP_KILL ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS__LWP_PARK ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS__LWP_SELF ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS__LWP_SETNAME ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS__LWP_SETPRIVATE ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS__LWP_SUSPEND ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS__LWP_UNPARK ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS__LWP_UNPARK_ALL ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS__LWP_WAIT ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS__LWP_WAKEUP ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS__PSET_BIND ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS__SCHED_GETAFFINITY ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS__SCHED_GETPARAM ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS__SCHED_SETAFFINITY ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS__SCHED_SETPARAM ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS___CLONE ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS___GETCWD ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS___GETLOGIN ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS___POSIX_CHOWN ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS___POSIX_FCHOWN ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS___POSIX_LCHOWN ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS___POSIX_RENAME ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS___QUOTACTL ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS___SEMCTL ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS___SETLOGIN ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS___SIGACTION_SIGTRAMP ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS___SIGTIMEDWAIT ideal-int
-pkg syscall (netbsd-arm-cgo), const SYS___SYSCTL ideal-int
-pkg syscall (netbsd-arm-cgo), const S_ARCH1 ideal-int
-pkg syscall (netbsd-arm-cgo), const S_ARCH2 ideal-int
-pkg syscall (netbsd-arm-cgo), const S_BLKSIZE ideal-int
-pkg syscall (netbsd-arm-cgo), const S_IEXEC ideal-int
-pkg syscall (netbsd-arm-cgo), const S_IFWHT ideal-int
-pkg syscall (netbsd-arm-cgo), const S_IREAD ideal-int
-pkg syscall (netbsd-arm-cgo), const S_IRGRP ideal-int
-pkg syscall (netbsd-arm-cgo), const S_IROTH ideal-int
-pkg syscall (netbsd-arm-cgo), const S_IRWXG ideal-int
-pkg syscall (netbsd-arm-cgo), const S_IRWXO ideal-int
-pkg syscall (netbsd-arm-cgo), const S_IRWXU ideal-int
-pkg syscall (netbsd-arm-cgo), const S_ISTXT ideal-int
-pkg syscall (netbsd-arm-cgo), const S_IWGRP ideal-int
-pkg syscall (netbsd-arm-cgo), const S_IWOTH ideal-int
-pkg syscall (netbsd-arm-cgo), const S_IWRITE ideal-int
-pkg syscall (netbsd-arm-cgo), const S_IXGRP ideal-int
-pkg syscall (netbsd-arm-cgo), const S_IXOTH ideal-int
-pkg syscall (netbsd-arm-cgo), const SizeofBpfHdr ideal-int
-pkg syscall (netbsd-arm-cgo), const SizeofBpfInsn ideal-int
-pkg syscall (netbsd-arm-cgo), const SizeofBpfProgram ideal-int
-pkg syscall (netbsd-arm-cgo), const SizeofBpfStat ideal-int
-pkg syscall (netbsd-arm-cgo), const SizeofBpfVersion ideal-int
-pkg syscall (netbsd-arm-cgo), const SizeofCmsghdr ideal-int
-pkg syscall (netbsd-arm-cgo), const SizeofICMPv6Filter = 32
-pkg syscall (netbsd-arm-cgo), const SizeofICMPv6Filter ideal-int
-pkg syscall (netbsd-arm-cgo), const SizeofIPMreq ideal-int
-pkg syscall (netbsd-arm-cgo), const SizeofIPv6MTUInfo = 32
-pkg syscall (netbsd-arm-cgo), const SizeofIPv6MTUInfo ideal-int
-pkg syscall (netbsd-arm-cgo), const SizeofIPv6Mreq ideal-int
-pkg syscall (netbsd-arm-cgo), const SizeofIfAnnounceMsghdr ideal-int
-pkg syscall (netbsd-arm-cgo), const SizeofIfData ideal-int
-pkg syscall (netbsd-arm-cgo), const SizeofIfMsghdr ideal-int
-pkg syscall (netbsd-arm-cgo), const SizeofIfaMsghdr ideal-int
-pkg syscall (netbsd-arm-cgo), const SizeofInet6Pktinfo ideal-int
-pkg syscall (netbsd-arm-cgo), const SizeofLinger ideal-int
-pkg syscall (netbsd-arm-cgo), const SizeofMsghdr ideal-int
-pkg syscall (netbsd-arm-cgo), const SizeofRtMetrics ideal-int
-pkg syscall (netbsd-arm-cgo), const SizeofRtMsghdr ideal-int
-pkg syscall (netbsd-arm-cgo), const SizeofSockaddrAny ideal-int
-pkg syscall (netbsd-arm-cgo), const SizeofSockaddrDatalink ideal-int
-pkg syscall (netbsd-arm-cgo), const SizeofSockaddrInet4 ideal-int
-pkg syscall (netbsd-arm-cgo), const SizeofSockaddrInet6 ideal-int
-pkg syscall (netbsd-arm-cgo), const SizeofSockaddrUnix ideal-int
-pkg syscall (netbsd-arm-cgo), const TCIFLUSH ideal-int
-pkg syscall (netbsd-arm-cgo), const TCIOFLUSH ideal-int
-pkg syscall (netbsd-arm-cgo), const TCOFLUSH ideal-int
-pkg syscall (netbsd-arm-cgo), const TCP_CONGCTL ideal-int
-pkg syscall (netbsd-arm-cgo), const TCP_KEEPCNT ideal-int
-pkg syscall (netbsd-arm-cgo), const TCP_KEEPIDLE ideal-int
-pkg syscall (netbsd-arm-cgo), const TCP_KEEPINIT ideal-int
-pkg syscall (netbsd-arm-cgo), const TCP_KEEPINTVL ideal-int
-pkg syscall (netbsd-arm-cgo), const TCP_MAXBURST ideal-int
-pkg syscall (netbsd-arm-cgo), const TCP_MAXSEG ideal-int
-pkg syscall (netbsd-arm-cgo), const TCP_MAXWIN ideal-int
-pkg syscall (netbsd-arm-cgo), const TCP_MAX_WINSHIFT ideal-int
-pkg syscall (netbsd-arm-cgo), const TCP_MD5SIG ideal-int
-pkg syscall (netbsd-arm-cgo), const TCP_MINMSS ideal-int
-pkg syscall (netbsd-arm-cgo), const TCP_MSS ideal-int
-pkg syscall (netbsd-arm-cgo), const TCSAFLUSH ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCCBRK ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCCDTR ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCCONS ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCDCDTIMESTAMP ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCDRAIN ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCEXCL ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCEXT ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCFLAG_CDTRCTS ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCFLAG_CLOCAL ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCFLAG_CRTSCTS ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCFLAG_MDMBUF ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCFLAG_SOFTCAR ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCFLUSH ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCGETA ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCGETD ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCGFLAGS ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCGLINED ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCGPGRP ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCGQSIZE ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCGRANTPT ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCGSID ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCGSIZE ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCGWINSZ ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCMBIC ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCMBIS ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCMGET ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCMSET ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCM_CAR ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCM_CD ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCM_CTS ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCM_DSR ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCM_DTR ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCM_LE ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCM_RI ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCM_RNG ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCM_RTS ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCM_SR ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCM_ST ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCNOTTY ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCNXCL ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCOUTQ ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCPKT ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCPKT_DATA ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCPKT_DOSTOP ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCPKT_FLUSHREAD ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCPKT_FLUSHWRITE ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCPKT_IOCTL ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCPKT_NOSTOP ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCPKT_START ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCPKT_STOP ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCPTMGET ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCPTSNAME ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCRCVFRAME ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCREMOTE ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCSBRK ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCSCTTY ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCSDTR ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCSETA ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCSETAF ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCSETAW ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCSETD ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCSFLAGS ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCSIG ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCSLINED ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCSPGRP ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCSQSIZE ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCSSIZE ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCSTART ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCSTAT ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCSTI ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCSTOP ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCSWINSZ ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCUCNTL ideal-int
-pkg syscall (netbsd-arm-cgo), const TIOCXMTFRAME ideal-int
-pkg syscall (netbsd-arm-cgo), const TOSTOP ideal-int
-pkg syscall (netbsd-arm-cgo), const VDISCARD ideal-int
-pkg syscall (netbsd-arm-cgo), const VDSUSP ideal-int
-pkg syscall (netbsd-arm-cgo), const VEOF ideal-int
-pkg syscall (netbsd-arm-cgo), const VEOL ideal-int
-pkg syscall (netbsd-arm-cgo), const VEOL2 ideal-int
-pkg syscall (netbsd-arm-cgo), const VERASE ideal-int
-pkg syscall (netbsd-arm-cgo), const VINTR ideal-int
-pkg syscall (netbsd-arm-cgo), const VKILL ideal-int
-pkg syscall (netbsd-arm-cgo), const VLNEXT ideal-int
-pkg syscall (netbsd-arm-cgo), const VMIN ideal-int
-pkg syscall (netbsd-arm-cgo), const VQUIT ideal-int
-pkg syscall (netbsd-arm-cgo), const VREPRINT ideal-int
-pkg syscall (netbsd-arm-cgo), const VSTART ideal-int
-pkg syscall (netbsd-arm-cgo), const VSTATUS ideal-int
-pkg syscall (netbsd-arm-cgo), const VSTOP ideal-int
-pkg syscall (netbsd-arm-cgo), const VSUSP ideal-int
-pkg syscall (netbsd-arm-cgo), const VTIME ideal-int
-pkg syscall (netbsd-arm-cgo), const VWERASE ideal-int
-pkg syscall (netbsd-arm-cgo), const WALL ideal-int
-pkg syscall (netbsd-arm-cgo), const WALLSIG ideal-int
-pkg syscall (netbsd-arm-cgo), const WALTSIG ideal-int
-pkg syscall (netbsd-arm-cgo), const WCLONE ideal-int
-pkg syscall (netbsd-arm-cgo), const WCOREFLAG ideal-int
-pkg syscall (netbsd-arm-cgo), const WNOHANG ideal-int
-pkg syscall (netbsd-arm-cgo), const WNOWAIT ideal-int
-pkg syscall (netbsd-arm-cgo), const WNOZOMBIE ideal-int
-pkg syscall (netbsd-arm-cgo), const WOPTSCHECKED ideal-int
-pkg syscall (netbsd-arm-cgo), const WSTOPPED ideal-int
-pkg syscall (netbsd-arm-cgo), const WUNTRACED ideal-int
-pkg syscall (netbsd-arm-cgo), func Accept(int) (int, Sockaddr, error)
-pkg syscall (netbsd-arm-cgo), func Access(string, uint32) error
-pkg syscall (netbsd-arm-cgo), func Adjtime(*Timeval, *Timeval) error
-pkg syscall (netbsd-arm-cgo), func Bind(int, Sockaddr) error
-pkg syscall (netbsd-arm-cgo), func BpfBuflen(int) (int, error)
-pkg syscall (netbsd-arm-cgo), func BpfDatalink(int) (int, error)
-pkg syscall (netbsd-arm-cgo), func BpfHeadercmpl(int) (int, error)
-pkg syscall (netbsd-arm-cgo), func BpfInterface(int, string) (string, error)
-pkg syscall (netbsd-arm-cgo), func BpfJump(int, int, int, int) *BpfInsn
-pkg syscall (netbsd-arm-cgo), func BpfStats(int) (*BpfStat, error)
-pkg syscall (netbsd-arm-cgo), func BpfStmt(int, int) *BpfInsn
-pkg syscall (netbsd-arm-cgo), func BpfTimeout(int) (*Timeval, error)
-pkg syscall (netbsd-arm-cgo), func CheckBpfVersion(int) error
-pkg syscall (netbsd-arm-cgo), func Chflags(string, int) error
-pkg syscall (netbsd-arm-cgo), func Chroot(string) error
-pkg syscall (netbsd-arm-cgo), func Close(int) error
-pkg syscall (netbsd-arm-cgo), func CloseOnExec(int)
-pkg syscall (netbsd-arm-cgo), func CmsgLen(int) int
-pkg syscall (netbsd-arm-cgo), func CmsgSpace(int) int
-pkg syscall (netbsd-arm-cgo), func Connect(int, Sockaddr) error
-pkg syscall (netbsd-arm-cgo), func Dup(int) (int, error)
-pkg syscall (netbsd-arm-cgo), func Dup2(int, int) error
-pkg syscall (netbsd-arm-cgo), func Fchdir(int) error
-pkg syscall (netbsd-arm-cgo), func Fchflags(string, int) error
-pkg syscall (netbsd-arm-cgo), func Fchmod(int, uint32) error
-pkg syscall (netbsd-arm-cgo), func Fchown(int, int, int) error
-pkg syscall (netbsd-arm-cgo), func Flock(int, int) error
-pkg syscall (netbsd-arm-cgo), func FlushBpf(int) error
-pkg syscall (netbsd-arm-cgo), func ForkExec(string, []string, *ProcAttr) (int, error)
-pkg syscall (netbsd-arm-cgo), func Fpathconf(int, int) (int, error)
-pkg syscall (netbsd-arm-cgo), func Fstat(int, *Stat_t) error
-pkg syscall (netbsd-arm-cgo), func Fsync(int) error
-pkg syscall (netbsd-arm-cgo), func Ftruncate(int, int64) error
-pkg syscall (netbsd-arm-cgo), func Futimes(int, []Timeval) error
-pkg syscall (netbsd-arm-cgo), func Getdirentries(int, []uint8, *uintptr) (int, error)
-pkg syscall (netbsd-arm-cgo), func Getpeername(int) (Sockaddr, error)
-pkg syscall (netbsd-arm-cgo), func Getpgid(int) (int, error)
-pkg syscall (netbsd-arm-cgo), func Getpgrp() int
-pkg syscall (netbsd-arm-cgo), func Getpriority(int, int) (int, error)
-pkg syscall (netbsd-arm-cgo), func Getrlimit(int, *Rlimit) error
-pkg syscall (netbsd-arm-cgo), func Getrusage(int, *Rusage) error
-pkg syscall (netbsd-arm-cgo), func Getsid(int) (int, error)
-pkg syscall (netbsd-arm-cgo), func Getsockname(int) (Sockaddr, error)
-pkg syscall (netbsd-arm-cgo), func GetsockoptByte(int, int, int) (uint8, error)
-pkg syscall (netbsd-arm-cgo), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
-pkg syscall (netbsd-arm-cgo), func GetsockoptIPMreq(int, int, int) (*IPMreq, error)
-pkg syscall (netbsd-arm-cgo), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
-pkg syscall (netbsd-arm-cgo), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error)
-pkg syscall (netbsd-arm-cgo), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error)
-pkg syscall (netbsd-arm-cgo), func GetsockoptInt(int, int, int) (int, error)
-pkg syscall (netbsd-arm-cgo), func Issetugid() bool
-pkg syscall (netbsd-arm-cgo), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error)
-pkg syscall (netbsd-arm-cgo), func Kill(int, Signal) error
-pkg syscall (netbsd-arm-cgo), func Kqueue() (int, error)
-pkg syscall (netbsd-arm-cgo), func Listen(int, int) error
-pkg syscall (netbsd-arm-cgo), func Lstat(string, *Stat_t) error
-pkg syscall (netbsd-arm-cgo), func Mkfifo(string, uint32) error
-pkg syscall (netbsd-arm-cgo), func Mknod(string, uint32, int) error
-pkg syscall (netbsd-arm-cgo), func Mmap(int, int64, int, int, int) ([]uint8, error)
-pkg syscall (netbsd-arm-cgo), func Munmap([]uint8) error
-pkg syscall (netbsd-arm-cgo), func Nanosleep(*Timespec, *Timespec) error
-pkg syscall (netbsd-arm-cgo), func Open(string, int, uint32) (int, error)
-pkg syscall (netbsd-arm-cgo), func ParseDirent([]uint8, int, []string) (int, int, []string)
-pkg syscall (netbsd-arm-cgo), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error)
-pkg syscall (netbsd-arm-cgo), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error)
-pkg syscall (netbsd-arm-cgo), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error)
-pkg syscall (netbsd-arm-cgo), func ParseUnixRights(*SocketControlMessage) ([]int, error)
-pkg syscall (netbsd-arm-cgo), func Pathconf(string, int) (int, error)
-pkg syscall (netbsd-arm-cgo), func Pipe([]int) error
-pkg syscall (netbsd-arm-cgo), func Pread(int, []uint8, int64) (int, error)
-pkg syscall (netbsd-arm-cgo), func Pwrite(int, []uint8, int64) (int, error)
-pkg syscall (netbsd-arm-cgo), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (netbsd-arm-cgo), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (netbsd-arm-cgo), func Read(int, []uint8) (int, error)
-pkg syscall (netbsd-arm-cgo), func ReadDirent(int, []uint8) (int, error)
-pkg syscall (netbsd-arm-cgo), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
-pkg syscall (netbsd-arm-cgo), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
-pkg syscall (netbsd-arm-cgo), func Revoke(string) error
-pkg syscall (netbsd-arm-cgo), func RouteRIB(int, int) ([]uint8, error)
-pkg syscall (netbsd-arm-cgo), func Seek(int, int64, int) (int64, error)
-pkg syscall (netbsd-arm-cgo), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error
-pkg syscall (netbsd-arm-cgo), func Sendfile(int, int, *int64, int) (int, error)
-pkg syscall (netbsd-arm-cgo), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
-pkg syscall (netbsd-arm-cgo), func Sendto(int, []uint8, int, Sockaddr) error
-pkg syscall (netbsd-arm-cgo), func SetBpf(int, []BpfInsn) error
-pkg syscall (netbsd-arm-cgo), func SetBpfBuflen(int, int) (int, error)
-pkg syscall (netbsd-arm-cgo), func SetBpfDatalink(int, int) (int, error)
-pkg syscall (netbsd-arm-cgo), func SetBpfHeadercmpl(int, int) error
-pkg syscall (netbsd-arm-cgo), func SetBpfImmediate(int, int) error
-pkg syscall (netbsd-arm-cgo), func SetBpfInterface(int, string) error
-pkg syscall (netbsd-arm-cgo), func SetBpfPromisc(int, int) error
-pkg syscall (netbsd-arm-cgo), func SetBpfTimeout(int, *Timeval) error
-pkg syscall (netbsd-arm-cgo), func SetKevent(*Kevent_t, int, int, int)
-pkg syscall (netbsd-arm-cgo), func SetNonblock(int, bool) error
-pkg syscall (netbsd-arm-cgo), func Setegid(int) error
-pkg syscall (netbsd-arm-cgo), func Seteuid(int) error
-pkg syscall (netbsd-arm-cgo), func Setgid(int) error
-pkg syscall (netbsd-arm-cgo), func Setgroups([]int) error
-pkg syscall (netbsd-arm-cgo), func Setpgid(int, int) error
-pkg syscall (netbsd-arm-cgo), func Setpriority(int, int, int) error
-pkg syscall (netbsd-arm-cgo), func Setregid(int, int) error
-pkg syscall (netbsd-arm-cgo), func Setreuid(int, int) error
-pkg syscall (netbsd-arm-cgo), func Setrlimit(int, *Rlimit) error
-pkg syscall (netbsd-arm-cgo), func Setsid() (int, error)
-pkg syscall (netbsd-arm-cgo), func SetsockoptByte(int, int, int, uint8) error
-pkg syscall (netbsd-arm-cgo), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
-pkg syscall (netbsd-arm-cgo), func SetsockoptIPMreq(int, int, int, *IPMreq) error
-pkg syscall (netbsd-arm-cgo), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error
-pkg syscall (netbsd-arm-cgo), func SetsockoptInet4Addr(int, int, int, [4]uint8) error
-pkg syscall (netbsd-arm-cgo), func SetsockoptInt(int, int, int, int) error
-pkg syscall (netbsd-arm-cgo), func SetsockoptLinger(int, int, int, *Linger) error
-pkg syscall (netbsd-arm-cgo), func SetsockoptString(int, int, int, string) error
-pkg syscall (netbsd-arm-cgo), func SetsockoptTimeval(int, int, int, *Timeval) error
-pkg syscall (netbsd-arm-cgo), func Settimeofday(*Timeval) error
-pkg syscall (netbsd-arm-cgo), func Setuid(int) error
-pkg syscall (netbsd-arm-cgo), func Shutdown(int, int) error
-pkg syscall (netbsd-arm-cgo), func SlicePtrFromStrings([]string) ([]*uint8, error)
-pkg syscall (netbsd-arm-cgo), func Socket(int, int, int) (int, error)
-pkg syscall (netbsd-arm-cgo), func Socketpair(int, int, int) ([2]int, error)
-pkg syscall (netbsd-arm-cgo), func Stat(string, *Stat_t) error
-pkg syscall (netbsd-arm-cgo), func StringSlicePtr([]string) []*uint8
-pkg syscall (netbsd-arm-cgo), func Sync() error
-pkg syscall (netbsd-arm-cgo), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (netbsd-arm-cgo), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (netbsd-arm-cgo), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (netbsd-arm-cgo), func Sysctl(string) (string, error)
-pkg syscall (netbsd-arm-cgo), func SysctlUint32(string) (uint32, error)
-pkg syscall (netbsd-arm-cgo), func TimevalToNsec(Timeval) int64
-pkg syscall (netbsd-arm-cgo), func Truncate(string, int64) error
-pkg syscall (netbsd-arm-cgo), func Umask(int) int
-pkg syscall (netbsd-arm-cgo), func UnixRights(...int) []uint8
-pkg syscall (netbsd-arm-cgo), func Unmount(string, int) error
-pkg syscall (netbsd-arm-cgo), func Wait4(int, *WaitStatus, int, *Rusage) (int, error)
-pkg syscall (netbsd-arm-cgo), func Write(int, []uint8) (int, error)
-pkg syscall (netbsd-arm-cgo), method (*Cmsghdr) SetLen(int)
-pkg syscall (netbsd-arm-cgo), method (*Iovec) SetLen(int)
-pkg syscall (netbsd-arm-cgo), method (*Msghdr) SetControllen(int)
-pkg syscall (netbsd-arm-cgo), type BpfHdr struct
-pkg syscall (netbsd-arm-cgo), type BpfHdr struct, Caplen uint32
-pkg syscall (netbsd-arm-cgo), type BpfHdr struct, Datalen uint32
-pkg syscall (netbsd-arm-cgo), type BpfHdr struct, Hdrlen uint16
-pkg syscall (netbsd-arm-cgo), type BpfHdr struct, Pad_cgo_0 [2]uint8
-pkg syscall (netbsd-arm-cgo), type BpfHdr struct, Tstamp BpfTimeval
-pkg syscall (netbsd-arm-cgo), type BpfInsn struct
-pkg syscall (netbsd-arm-cgo), type BpfInsn struct, Code uint16
-pkg syscall (netbsd-arm-cgo), type BpfInsn struct, Jf uint8
-pkg syscall (netbsd-arm-cgo), type BpfInsn struct, Jt uint8
-pkg syscall (netbsd-arm-cgo), type BpfInsn struct, K uint32
-pkg syscall (netbsd-arm-cgo), type BpfProgram struct
-pkg syscall (netbsd-arm-cgo), type BpfProgram struct, Insns *BpfInsn
-pkg syscall (netbsd-arm-cgo), type BpfProgram struct, Len uint32
-pkg syscall (netbsd-arm-cgo), type BpfStat struct
-pkg syscall (netbsd-arm-cgo), type BpfStat struct, Capt uint64
-pkg syscall (netbsd-arm-cgo), type BpfStat struct, Drop uint64
-pkg syscall (netbsd-arm-cgo), type BpfStat struct, Padding [13]uint64
-pkg syscall (netbsd-arm-cgo), type BpfStat struct, Recv uint64
-pkg syscall (netbsd-arm-cgo), type BpfTimeval struct
-pkg syscall (netbsd-arm-cgo), type BpfTimeval struct, Sec int32
-pkg syscall (netbsd-arm-cgo), type BpfTimeval struct, Usec int32
-pkg syscall (netbsd-arm-cgo), type BpfVersion struct
-pkg syscall (netbsd-arm-cgo), type BpfVersion struct, Major uint16
-pkg syscall (netbsd-arm-cgo), type BpfVersion struct, Minor uint16
-pkg syscall (netbsd-arm-cgo), type Cmsghdr struct
-pkg syscall (netbsd-arm-cgo), type Cmsghdr struct, Len uint32
-pkg syscall (netbsd-arm-cgo), type Cmsghdr struct, Level int32
-pkg syscall (netbsd-arm-cgo), type Cmsghdr struct, Type int32
-pkg syscall (netbsd-arm-cgo), type Credential struct
-pkg syscall (netbsd-arm-cgo), type Credential struct, Gid uint32
-pkg syscall (netbsd-arm-cgo), type Credential struct, Groups []uint32
-pkg syscall (netbsd-arm-cgo), type Credential struct, Uid uint32
-pkg syscall (netbsd-arm-cgo), type Dirent struct
-pkg syscall (netbsd-arm-cgo), type Dirent struct, Fileno uint64
-pkg syscall (netbsd-arm-cgo), type Dirent struct, Name [512]int8
-pkg syscall (netbsd-arm-cgo), type Dirent struct, Namlen uint16
-pkg syscall (netbsd-arm-cgo), type Dirent struct, Pad_cgo_0 [3]uint8
-pkg syscall (netbsd-arm-cgo), type Dirent struct, Reclen uint16
-pkg syscall (netbsd-arm-cgo), type Dirent struct, Type uint8
-pkg syscall (netbsd-arm-cgo), type FdSet struct
-pkg syscall (netbsd-arm-cgo), type FdSet struct, Bits [8]uint32
-pkg syscall (netbsd-arm-cgo), type Flock_t struct
-pkg syscall (netbsd-arm-cgo), type Flock_t struct, Len int64
-pkg syscall (netbsd-arm-cgo), type Flock_t struct, Pid int32
-pkg syscall (netbsd-arm-cgo), type Flock_t struct, Start int64
-pkg syscall (netbsd-arm-cgo), type Flock_t struct, Type int16
-pkg syscall (netbsd-arm-cgo), type Flock_t struct, Whence int16
-pkg syscall (netbsd-arm-cgo), type Fsid struct
-pkg syscall (netbsd-arm-cgo), type Fsid struct, X__fsid_val [2]int32
-pkg syscall (netbsd-arm-cgo), type ICMPv6Filter struct
-pkg syscall (netbsd-arm-cgo), type ICMPv6Filter struct, Filt [8]uint32
-pkg syscall (netbsd-arm-cgo), type IPv6MTUInfo struct
-pkg syscall (netbsd-arm-cgo), type IPv6MTUInfo struct, Addr RawSockaddrInet6
-pkg syscall (netbsd-arm-cgo), type IPv6MTUInfo struct, Mtu uint32
-pkg syscall (netbsd-arm-cgo), type IfAnnounceMsghdr struct
-pkg syscall (netbsd-arm-cgo), type IfAnnounceMsghdr struct, Index uint16
-pkg syscall (netbsd-arm-cgo), type IfAnnounceMsghdr struct, Msglen uint16
-pkg syscall (netbsd-arm-cgo), type IfAnnounceMsghdr struct, Name [16]int8
-pkg syscall (netbsd-arm-cgo), type IfAnnounceMsghdr struct, Type uint8
-pkg syscall (netbsd-arm-cgo), type IfAnnounceMsghdr struct, Version uint8
-pkg syscall (netbsd-arm-cgo), type IfAnnounceMsghdr struct, What uint16
-pkg syscall (netbsd-arm-cgo), type IfData struct
-pkg syscall (netbsd-arm-cgo), type IfData struct, Addrlen uint8
-pkg syscall (netbsd-arm-cgo), type IfData struct, Baudrate uint64
-pkg syscall (netbsd-arm-cgo), type IfData struct, Collisions uint64
-pkg syscall (netbsd-arm-cgo), type IfData struct, Hdrlen uint8
-pkg syscall (netbsd-arm-cgo), type IfData struct, Ibytes uint64
-pkg syscall (netbsd-arm-cgo), type IfData struct, Ierrors uint64
-pkg syscall (netbsd-arm-cgo), type IfData struct, Imcasts uint64
-pkg syscall (netbsd-arm-cgo), type IfData struct, Ipackets uint64
-pkg syscall (netbsd-arm-cgo), type IfData struct, Iqdrops uint64
-pkg syscall (netbsd-arm-cgo), type IfData struct, Lastchange Timespec
-pkg syscall (netbsd-arm-cgo), type IfData struct, Link_state int32
-pkg syscall (netbsd-arm-cgo), type IfData struct, Metric uint64
-pkg syscall (netbsd-arm-cgo), type IfData struct, Mtu uint64
-pkg syscall (netbsd-arm-cgo), type IfData struct, Noproto uint64
-pkg syscall (netbsd-arm-cgo), type IfData struct, Obytes uint64
-pkg syscall (netbsd-arm-cgo), type IfData struct, Oerrors uint64
-pkg syscall (netbsd-arm-cgo), type IfData struct, Omcasts uint64
-pkg syscall (netbsd-arm-cgo), type IfData struct, Opackets uint64
-pkg syscall (netbsd-arm-cgo), type IfData struct, Pad_cgo_0 [1]uint8
-pkg syscall (netbsd-arm-cgo), type IfData struct, Type uint8
-pkg syscall (netbsd-arm-cgo), type IfMsghdr struct
-pkg syscall (netbsd-arm-cgo), type IfMsghdr struct, Addrs int32
-pkg syscall (netbsd-arm-cgo), type IfMsghdr struct, Data IfData
-pkg syscall (netbsd-arm-cgo), type IfMsghdr struct, Flags int32
-pkg syscall (netbsd-arm-cgo), type IfMsghdr struct, Index uint16
-pkg syscall (netbsd-arm-cgo), type IfMsghdr struct, Msglen uint16
-pkg syscall (netbsd-arm-cgo), type IfMsghdr struct, Pad_cgo_0 [2]uint8
-pkg syscall (netbsd-arm-cgo), type IfMsghdr struct, Pad_cgo_1 [4]uint8
-pkg syscall (netbsd-arm-cgo), type IfMsghdr struct, Type uint8
-pkg syscall (netbsd-arm-cgo), type IfMsghdr struct, Version uint8
-pkg syscall (netbsd-arm-cgo), type IfaMsghdr struct
-pkg syscall (netbsd-arm-cgo), type IfaMsghdr struct, Addrs int32
-pkg syscall (netbsd-arm-cgo), type IfaMsghdr struct, Flags int32
-pkg syscall (netbsd-arm-cgo), type IfaMsghdr struct, Index uint16
-pkg syscall (netbsd-arm-cgo), type IfaMsghdr struct, Metric int32
-pkg syscall (netbsd-arm-cgo), type IfaMsghdr struct, Msglen uint16
-pkg syscall (netbsd-arm-cgo), type IfaMsghdr struct, Pad_cgo_0 [6]uint8
-pkg syscall (netbsd-arm-cgo), type IfaMsghdr struct, Type uint8
-pkg syscall (netbsd-arm-cgo), type IfaMsghdr struct, Version uint8
-pkg syscall (netbsd-arm-cgo), type Inet6Pktinfo struct
-pkg syscall (netbsd-arm-cgo), type Inet6Pktinfo struct, Addr [16]uint8
-pkg syscall (netbsd-arm-cgo), type Inet6Pktinfo struct, Ifindex uint32
-pkg syscall (netbsd-arm-cgo), type InterfaceAddrMessage struct
-pkg syscall (netbsd-arm-cgo), type InterfaceAddrMessage struct, Data []uint8
-pkg syscall (netbsd-arm-cgo), type InterfaceAddrMessage struct, Header IfaMsghdr
-pkg syscall (netbsd-arm-cgo), type InterfaceAnnounceMessage struct
-pkg syscall (netbsd-arm-cgo), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr
-pkg syscall (netbsd-arm-cgo), type InterfaceMessage struct
-pkg syscall (netbsd-arm-cgo), type InterfaceMessage struct, Data []uint8
-pkg syscall (netbsd-arm-cgo), type InterfaceMessage struct, Header IfMsghdr
-pkg syscall (netbsd-arm-cgo), type Iovec struct
-pkg syscall (netbsd-arm-cgo), type Iovec struct, Base *uint8
-pkg syscall (netbsd-arm-cgo), type Iovec struct, Len uint32
-pkg syscall (netbsd-arm-cgo), type Kevent_t struct
-pkg syscall (netbsd-arm-cgo), type Kevent_t struct, Data int64
-pkg syscall (netbsd-arm-cgo), type Kevent_t struct, Fflags uint32
-pkg syscall (netbsd-arm-cgo), type Kevent_t struct, Filter uint32
-pkg syscall (netbsd-arm-cgo), type Kevent_t struct, Flags uint32
-pkg syscall (netbsd-arm-cgo), type Kevent_t struct, Ident uint32
-pkg syscall (netbsd-arm-cgo), type Kevent_t struct, Udata int32
-pkg syscall (netbsd-arm-cgo), type Mclpool [0]uint8
-pkg syscall (netbsd-arm-cgo), type Msghdr struct
-pkg syscall (netbsd-arm-cgo), type Msghdr struct, Control *uint8
-pkg syscall (netbsd-arm-cgo), type Msghdr struct, Controllen uint32
-pkg syscall (netbsd-arm-cgo), type Msghdr struct, Flags int32
-pkg syscall (netbsd-arm-cgo), type Msghdr struct, Iov *Iovec
-pkg syscall (netbsd-arm-cgo), type Msghdr struct, Iovlen int32
-pkg syscall (netbsd-arm-cgo), type Msghdr struct, Name *uint8
-pkg syscall (netbsd-arm-cgo), type Msghdr struct, Namelen uint32
-pkg syscall (netbsd-arm-cgo), type RawSockaddr struct, Data [14]int8
-pkg syscall (netbsd-arm-cgo), type RawSockaddr struct, Family uint8
-pkg syscall (netbsd-arm-cgo), type RawSockaddr struct, Len uint8
-pkg syscall (netbsd-arm-cgo), type RawSockaddrAny struct, Pad [92]int8
-pkg syscall (netbsd-arm-cgo), type RawSockaddrDatalink struct
-pkg syscall (netbsd-arm-cgo), type RawSockaddrDatalink struct, Alen uint8
-pkg syscall (netbsd-arm-cgo), type RawSockaddrDatalink struct, Data [12]int8
-pkg syscall (netbsd-arm-cgo), type RawSockaddrDatalink struct, Family uint8
-pkg syscall (netbsd-arm-cgo), type RawSockaddrDatalink struct, Index uint16
-pkg syscall (netbsd-arm-cgo), type RawSockaddrDatalink struct, Len uint8
-pkg syscall (netbsd-arm-cgo), type RawSockaddrDatalink struct, Nlen uint8
-pkg syscall (netbsd-arm-cgo), type RawSockaddrDatalink struct, Slen uint8
-pkg syscall (netbsd-arm-cgo), type RawSockaddrDatalink struct, Type uint8
-pkg syscall (netbsd-arm-cgo), type RawSockaddrInet4 struct, Family uint8
-pkg syscall (netbsd-arm-cgo), type RawSockaddrInet4 struct, Len uint8
-pkg syscall (netbsd-arm-cgo), type RawSockaddrInet4 struct, Zero [8]int8
-pkg syscall (netbsd-arm-cgo), type RawSockaddrInet6 struct, Family uint8
-pkg syscall (netbsd-arm-cgo), type RawSockaddrInet6 struct, Len uint8
-pkg syscall (netbsd-arm-cgo), type RawSockaddrUnix struct
-pkg syscall (netbsd-arm-cgo), type RawSockaddrUnix struct, Family uint8
-pkg syscall (netbsd-arm-cgo), type RawSockaddrUnix struct, Len uint8
-pkg syscall (netbsd-arm-cgo), type RawSockaddrUnix struct, Path [104]int8
-pkg syscall (netbsd-arm-cgo), type Rlimit struct
-pkg syscall (netbsd-arm-cgo), type Rlimit struct, Cur uint64
-pkg syscall (netbsd-arm-cgo), type Rlimit struct, Max uint64
-pkg syscall (netbsd-arm-cgo), type RouteMessage struct
-pkg syscall (netbsd-arm-cgo), type RouteMessage struct, Data []uint8
-pkg syscall (netbsd-arm-cgo), type RouteMessage struct, Header RtMsghdr
-pkg syscall (netbsd-arm-cgo), type RoutingMessage interface, unexported methods
-pkg syscall (netbsd-arm-cgo), type RtMetrics struct
-pkg syscall (netbsd-arm-cgo), type RtMetrics struct, Expire int64
-pkg syscall (netbsd-arm-cgo), type RtMetrics struct, Hopcount uint64
-pkg syscall (netbsd-arm-cgo), type RtMetrics struct, Locks uint64
-pkg syscall (netbsd-arm-cgo), type RtMetrics struct, Mtu uint64
-pkg syscall (netbsd-arm-cgo), type RtMetrics struct, Pksent int64
-pkg syscall (netbsd-arm-cgo), type RtMetrics struct, Recvpipe uint64
-pkg syscall (netbsd-arm-cgo), type RtMetrics struct, Rtt uint64
-pkg syscall (netbsd-arm-cgo), type RtMetrics struct, Rttvar uint64
-pkg syscall (netbsd-arm-cgo), type RtMetrics struct, Sendpipe uint64
-pkg syscall (netbsd-arm-cgo), type RtMetrics struct, Ssthresh uint64
-pkg syscall (netbsd-arm-cgo), type RtMsghdr struct
-pkg syscall (netbsd-arm-cgo), type RtMsghdr struct, Addrs int32
-pkg syscall (netbsd-arm-cgo), type RtMsghdr struct, Errno int32
-pkg syscall (netbsd-arm-cgo), type RtMsghdr struct, Flags int32
-pkg syscall (netbsd-arm-cgo), type RtMsghdr struct, Index uint16
-pkg syscall (netbsd-arm-cgo), type RtMsghdr struct, Inits int32
-pkg syscall (netbsd-arm-cgo), type RtMsghdr struct, Msglen uint16
-pkg syscall (netbsd-arm-cgo), type RtMsghdr struct, Pad_cgo_0 [2]uint8
-pkg syscall (netbsd-arm-cgo), type RtMsghdr struct, Pad_cgo_1 [4]uint8
-pkg syscall (netbsd-arm-cgo), type RtMsghdr struct, Pid int32
-pkg syscall (netbsd-arm-cgo), type RtMsghdr struct, Rmx RtMetrics
-pkg syscall (netbsd-arm-cgo), type RtMsghdr struct, Seq int32
-pkg syscall (netbsd-arm-cgo), type RtMsghdr struct, Type uint8
-pkg syscall (netbsd-arm-cgo), type RtMsghdr struct, Use int32
-pkg syscall (netbsd-arm-cgo), type RtMsghdr struct, Version uint8
-pkg syscall (netbsd-arm-cgo), type Rusage struct, Idrss int32
-pkg syscall (netbsd-arm-cgo), type Rusage struct, Inblock int32
-pkg syscall (netbsd-arm-cgo), type Rusage struct, Isrss int32
-pkg syscall (netbsd-arm-cgo), type Rusage struct, Ixrss int32
-pkg syscall (netbsd-arm-cgo), type Rusage struct, Majflt int32
-pkg syscall (netbsd-arm-cgo), type Rusage struct, Maxrss int32
-pkg syscall (netbsd-arm-cgo), type Rusage struct, Minflt int32
-pkg syscall (netbsd-arm-cgo), type Rusage struct, Msgrcv int32
-pkg syscall (netbsd-arm-cgo), type Rusage struct, Msgsnd int32
-pkg syscall (netbsd-arm-cgo), type Rusage struct, Nivcsw int32
-pkg syscall (netbsd-arm-cgo), type Rusage struct, Nsignals int32
-pkg syscall (netbsd-arm-cgo), type Rusage struct, Nswap int32
-pkg syscall (netbsd-arm-cgo), type Rusage struct, Nvcsw int32
-pkg syscall (netbsd-arm-cgo), type Rusage struct, Oublock int32
-pkg syscall (netbsd-arm-cgo), type Rusage struct, Stime Timeval
-pkg syscall (netbsd-arm-cgo), type Rusage struct, Utime Timeval
-pkg syscall (netbsd-arm-cgo), type SockaddrDatalink struct
-pkg syscall (netbsd-arm-cgo), type SockaddrDatalink struct, Alen uint8
-pkg syscall (netbsd-arm-cgo), type SockaddrDatalink struct, Data [12]int8
-pkg syscall (netbsd-arm-cgo), type SockaddrDatalink struct, Family uint8
-pkg syscall (netbsd-arm-cgo), type SockaddrDatalink struct, Index uint16
-pkg syscall (netbsd-arm-cgo), type SockaddrDatalink struct, Len uint8
-pkg syscall (netbsd-arm-cgo), type SockaddrDatalink struct, Nlen uint8
-pkg syscall (netbsd-arm-cgo), type SockaddrDatalink struct, Slen uint8
-pkg syscall (netbsd-arm-cgo), type SockaddrDatalink struct, Type uint8
-pkg syscall (netbsd-arm-cgo), type SocketControlMessage struct
-pkg syscall (netbsd-arm-cgo), type SocketControlMessage struct, Data []uint8
-pkg syscall (netbsd-arm-cgo), type SocketControlMessage struct, Header Cmsghdr
-pkg syscall (netbsd-arm-cgo), type Stat_t struct
-pkg syscall (netbsd-arm-cgo), type Stat_t struct, Atimespec Timespec
-pkg syscall (netbsd-arm-cgo), type Stat_t struct, Birthtimespec Timespec
-pkg syscall (netbsd-arm-cgo), type Stat_t struct, Blksize uint32
-pkg syscall (netbsd-arm-cgo), type Stat_t struct, Blocks int64
-pkg syscall (netbsd-arm-cgo), type Stat_t struct, Ctimespec Timespec
-pkg syscall (netbsd-arm-cgo), type Stat_t struct, Dev uint64
-pkg syscall (netbsd-arm-cgo), type Stat_t struct, Flags uint32
-pkg syscall (netbsd-arm-cgo), type Stat_t struct, Gen uint32
-pkg syscall (netbsd-arm-cgo), type Stat_t struct, Gid uint32
-pkg syscall (netbsd-arm-cgo), type Stat_t struct, Ino uint64
-pkg syscall (netbsd-arm-cgo), type Stat_t struct, Mode uint32
-pkg syscall (netbsd-arm-cgo), type Stat_t struct, Mtimespec Timespec
-pkg syscall (netbsd-arm-cgo), type Stat_t struct, Nlink uint32
-pkg syscall (netbsd-arm-cgo), type Stat_t struct, Rdev uint64
-pkg syscall (netbsd-arm-cgo), type Stat_t struct, Size int64
-pkg syscall (netbsd-arm-cgo), type Stat_t struct, Spare [2]uint32
-pkg syscall (netbsd-arm-cgo), type Stat_t struct, Uid uint32
-pkg syscall (netbsd-arm-cgo), type Statfs_t [0]uint8
-pkg syscall (netbsd-arm-cgo), type SysProcAttr struct, Chroot string
-pkg syscall (netbsd-arm-cgo), type SysProcAttr struct, Credential *Credential
-pkg syscall (netbsd-arm-cgo), type SysProcAttr struct, Noctty bool
-pkg syscall (netbsd-arm-cgo), type SysProcAttr struct, Ptrace bool
-pkg syscall (netbsd-arm-cgo), type SysProcAttr struct, Setctty bool
-pkg syscall (netbsd-arm-cgo), type SysProcAttr struct, Setpgid bool
-pkg syscall (netbsd-arm-cgo), type SysProcAttr struct, Setsid bool
-pkg syscall (netbsd-arm-cgo), type Sysctlnode struct
-pkg syscall (netbsd-arm-cgo), type Sysctlnode struct, Flags uint32
-pkg syscall (netbsd-arm-cgo), type Sysctlnode struct, Name [32]int8
-pkg syscall (netbsd-arm-cgo), type Sysctlnode struct, Num int32
-pkg syscall (netbsd-arm-cgo), type Sysctlnode struct, Un [16]uint8
-pkg syscall (netbsd-arm-cgo), type Sysctlnode struct, Ver uint32
-pkg syscall (netbsd-arm-cgo), type Sysctlnode struct, X__rsvd uint32
-pkg syscall (netbsd-arm-cgo), type Sysctlnode struct, X_sysctl_desc [8]uint8
-pkg syscall (netbsd-arm-cgo), type Sysctlnode struct, X_sysctl_func [8]uint8
-pkg syscall (netbsd-arm-cgo), type Sysctlnode struct, X_sysctl_parent [8]uint8
-pkg syscall (netbsd-arm-cgo), type Sysctlnode struct, X_sysctl_size [8]uint8
-pkg syscall (netbsd-arm-cgo), type Timespec struct, Nsec int32
-pkg syscall (netbsd-arm-cgo), type Timespec struct, Sec int64
-pkg syscall (netbsd-arm-cgo), type Timeval struct, Sec int64
-pkg syscall (netbsd-arm-cgo), type Timeval struct, Usec int32
-pkg syscall (netbsd-arm-cgo), type WaitStatus uint32
-pkg syscall (netbsd-arm-cgo), var Stderr int
-pkg syscall (netbsd-arm-cgo), var Stdin int
-pkg syscall (netbsd-arm-cgo), var Stdout int
-pkg syscall (openbsd-386), const AF_APPLETALK ideal-int
-pkg syscall (openbsd-386), const AF_BLUETOOTH ideal-int
-pkg syscall (openbsd-386), const AF_CCITT ideal-int
-pkg syscall (openbsd-386), const AF_CHAOS ideal-int
-pkg syscall (openbsd-386), const AF_CNT ideal-int
-pkg syscall (openbsd-386), const AF_COIP ideal-int
-pkg syscall (openbsd-386), const AF_DATAKIT ideal-int
-pkg syscall (openbsd-386), const AF_DECnet ideal-int
-pkg syscall (openbsd-386), const AF_DLI ideal-int
-pkg syscall (openbsd-386), const AF_E164 ideal-int
-pkg syscall (openbsd-386), const AF_ECMA ideal-int
-pkg syscall (openbsd-386), const AF_ENCAP ideal-int
-pkg syscall (openbsd-386), const AF_HYLINK ideal-int
-pkg syscall (openbsd-386), const AF_IMPLINK ideal-int
-pkg syscall (openbsd-386), const AF_IPX ideal-int
-pkg syscall (openbsd-386), const AF_ISDN ideal-int
-pkg syscall (openbsd-386), const AF_ISO ideal-int
-pkg syscall (openbsd-386), const AF_KEY ideal-int
-pkg syscall (openbsd-386), const AF_LAT ideal-int
-pkg syscall (openbsd-386), const AF_LINK ideal-int
-pkg syscall (openbsd-386), const AF_LOCAL ideal-int
-pkg syscall (openbsd-386), const AF_MAX ideal-int
-pkg syscall (openbsd-386), const AF_MPLS ideal-int
-pkg syscall (openbsd-386), const AF_NATM ideal-int
-pkg syscall (openbsd-386), const AF_NS ideal-int
-pkg syscall (openbsd-386), const AF_OSI ideal-int
-pkg syscall (openbsd-386), const AF_PUP ideal-int
-pkg syscall (openbsd-386), const AF_ROUTE ideal-int
-pkg syscall (openbsd-386), const AF_SIP ideal-int
-pkg syscall (openbsd-386), const AF_SNA ideal-int
-pkg syscall (openbsd-386), const ARPHRD_ETHER ideal-int
-pkg syscall (openbsd-386), const ARPHRD_FRELAY ideal-int
-pkg syscall (openbsd-386), const ARPHRD_IEEE1394 ideal-int
-pkg syscall (openbsd-386), const ARPHRD_IEEE802 ideal-int
-pkg syscall (openbsd-386), const B0 ideal-int
-pkg syscall (openbsd-386), const B110 ideal-int
-pkg syscall (openbsd-386), const B115200 ideal-int
-pkg syscall (openbsd-386), const B1200 ideal-int
-pkg syscall (openbsd-386), const B134 ideal-int
-pkg syscall (openbsd-386), const B14400 ideal-int
-pkg syscall (openbsd-386), const B150 ideal-int
-pkg syscall (openbsd-386), const B1800 ideal-int
-pkg syscall (openbsd-386), const B19200 ideal-int
-pkg syscall (openbsd-386), const B200 ideal-int
-pkg syscall (openbsd-386), const B230400 ideal-int
-pkg syscall (openbsd-386), const B2400 ideal-int
-pkg syscall (openbsd-386), const B28800 ideal-int
-pkg syscall (openbsd-386), const B300 ideal-int
-pkg syscall (openbsd-386), const B38400 ideal-int
-pkg syscall (openbsd-386), const B4800 ideal-int
-pkg syscall (openbsd-386), const B50 ideal-int
-pkg syscall (openbsd-386), const B57600 ideal-int
-pkg syscall (openbsd-386), const B600 ideal-int
-pkg syscall (openbsd-386), const B7200 ideal-int
-pkg syscall (openbsd-386), const B75 ideal-int
-pkg syscall (openbsd-386), const B76800 ideal-int
-pkg syscall (openbsd-386), const B9600 ideal-int
-pkg syscall (openbsd-386), const BIOCFLUSH ideal-int
-pkg syscall (openbsd-386), const BIOCGBLEN ideal-int
-pkg syscall (openbsd-386), const BIOCGDIRFILT ideal-int
-pkg syscall (openbsd-386), const BIOCGDLT ideal-int
-pkg syscall (openbsd-386), const BIOCGDLTLIST ideal-int
-pkg syscall (openbsd-386), const BIOCGETIF ideal-int
-pkg syscall (openbsd-386), const BIOCGFILDROP ideal-int
-pkg syscall (openbsd-386), const BIOCGHDRCMPLT ideal-int
-pkg syscall (openbsd-386), const BIOCGRSIG ideal-int
-pkg syscall (openbsd-386), const BIOCGRTIMEOUT ideal-int
-pkg syscall (openbsd-386), const BIOCGSTATS ideal-int
-pkg syscall (openbsd-386), const BIOCIMMEDIATE ideal-int
-pkg syscall (openbsd-386), const BIOCLOCK ideal-int
-pkg syscall (openbsd-386), const BIOCPROMISC ideal-int
-pkg syscall (openbsd-386), const BIOCSBLEN ideal-int
-pkg syscall (openbsd-386), const BIOCSDIRFILT ideal-int
-pkg syscall (openbsd-386), const BIOCSDLT ideal-int
-pkg syscall (openbsd-386), const BIOCSETF ideal-int
-pkg syscall (openbsd-386), const BIOCSETIF ideal-int
-pkg syscall (openbsd-386), const BIOCSETWF ideal-int
-pkg syscall (openbsd-386), const BIOCSFILDROP ideal-int
-pkg syscall (openbsd-386), const BIOCSHDRCMPLT ideal-int
-pkg syscall (openbsd-386), const BIOCSRSIG ideal-int
-pkg syscall (openbsd-386), const BIOCSRTIMEOUT ideal-int
-pkg syscall (openbsd-386), const BIOCVERSION ideal-int
-pkg syscall (openbsd-386), const BPF_A ideal-int
-pkg syscall (openbsd-386), const BPF_ABS ideal-int
-pkg syscall (openbsd-386), const BPF_ADD ideal-int
-pkg syscall (openbsd-386), const BPF_ALIGNMENT ideal-int
-pkg syscall (openbsd-386), const BPF_ALU ideal-int
-pkg syscall (openbsd-386), const BPF_AND ideal-int
-pkg syscall (openbsd-386), const BPF_B ideal-int
-pkg syscall (openbsd-386), const BPF_DIRECTION_IN ideal-int
-pkg syscall (openbsd-386), const BPF_DIRECTION_OUT ideal-int
-pkg syscall (openbsd-386), const BPF_DIV ideal-int
-pkg syscall (openbsd-386), const BPF_H ideal-int
-pkg syscall (openbsd-386), const BPF_IMM ideal-int
-pkg syscall (openbsd-386), const BPF_IND ideal-int
-pkg syscall (openbsd-386), const BPF_JA ideal-int
-pkg syscall (openbsd-386), const BPF_JEQ ideal-int
-pkg syscall (openbsd-386), const BPF_JGE ideal-int
-pkg syscall (openbsd-386), const BPF_JGT ideal-int
-pkg syscall (openbsd-386), const BPF_JMP ideal-int
-pkg syscall (openbsd-386), const BPF_JSET ideal-int
-pkg syscall (openbsd-386), const BPF_K ideal-int
-pkg syscall (openbsd-386), const BPF_LD ideal-int
-pkg syscall (openbsd-386), const BPF_LDX ideal-int
-pkg syscall (openbsd-386), const BPF_LEN ideal-int
-pkg syscall (openbsd-386), const BPF_LSH ideal-int
-pkg syscall (openbsd-386), const BPF_MAJOR_VERSION ideal-int
-pkg syscall (openbsd-386), const BPF_MAXBUFSIZE ideal-int
-pkg syscall (openbsd-386), const BPF_MAXINSNS ideal-int
-pkg syscall (openbsd-386), const BPF_MEM ideal-int
-pkg syscall (openbsd-386), const BPF_MEMWORDS ideal-int
-pkg syscall (openbsd-386), const BPF_MINBUFSIZE ideal-int
-pkg syscall (openbsd-386), const BPF_MINOR_VERSION ideal-int
-pkg syscall (openbsd-386), const BPF_MISC ideal-int
-pkg syscall (openbsd-386), const BPF_MSH ideal-int
-pkg syscall (openbsd-386), const BPF_MUL ideal-int
-pkg syscall (openbsd-386), const BPF_NEG ideal-int
-pkg syscall (openbsd-386), const BPF_OR ideal-int
-pkg syscall (openbsd-386), const BPF_RELEASE ideal-int
-pkg syscall (openbsd-386), const BPF_RET ideal-int
-pkg syscall (openbsd-386), const BPF_RSH ideal-int
-pkg syscall (openbsd-386), const BPF_ST ideal-int
-pkg syscall (openbsd-386), const BPF_STX ideal-int
-pkg syscall (openbsd-386), const BPF_SUB ideal-int
-pkg syscall (openbsd-386), const BPF_TAX ideal-int
-pkg syscall (openbsd-386), const BPF_TXA ideal-int
-pkg syscall (openbsd-386), const BPF_W ideal-int
-pkg syscall (openbsd-386), const BPF_X ideal-int
-pkg syscall (openbsd-386), const BRKINT ideal-int
-pkg syscall (openbsd-386), const CFLUSH ideal-int
-pkg syscall (openbsd-386), const CLOCAL ideal-int
-pkg syscall (openbsd-386), const CREAD ideal-int
-pkg syscall (openbsd-386), const CS5 ideal-int
-pkg syscall (openbsd-386), const CS6 ideal-int
-pkg syscall (openbsd-386), const CS7 ideal-int
-pkg syscall (openbsd-386), const CS8 ideal-int
-pkg syscall (openbsd-386), const CSIZE ideal-int
-pkg syscall (openbsd-386), const CSTART ideal-int
-pkg syscall (openbsd-386), const CSTATUS ideal-int
-pkg syscall (openbsd-386), const CSTOP ideal-int
-pkg syscall (openbsd-386), const CSTOPB ideal-int
-pkg syscall (openbsd-386), const CSUSP ideal-int
-pkg syscall (openbsd-386), const CTL_MAXNAME ideal-int
-pkg syscall (openbsd-386), const CTL_NET ideal-int
-pkg syscall (openbsd-386), const DIOCOSFPFLUSH ideal-int
-pkg syscall (openbsd-386), const DLT_ARCNET ideal-int
-pkg syscall (openbsd-386), const DLT_ATM_RFC1483 ideal-int
-pkg syscall (openbsd-386), const DLT_AX25 ideal-int
-pkg syscall (openbsd-386), const DLT_CHAOS ideal-int
-pkg syscall (openbsd-386), const DLT_C_HDLC ideal-int
-pkg syscall (openbsd-386), const DLT_EN10MB ideal-int
-pkg syscall (openbsd-386), const DLT_EN3MB ideal-int
-pkg syscall (openbsd-386), const DLT_ENC ideal-int
-pkg syscall (openbsd-386), const DLT_FDDI ideal-int
-pkg syscall (openbsd-386), const DLT_IEEE802 ideal-int
-pkg syscall (openbsd-386), const DLT_IEEE802_11 ideal-int
-pkg syscall (openbsd-386), const DLT_IEEE802_11_RADIO ideal-int
-pkg syscall (openbsd-386), const DLT_LOOP ideal-int
-pkg syscall (openbsd-386), const DLT_MPLS ideal-int
-pkg syscall (openbsd-386), const DLT_NULL ideal-int
-pkg syscall (openbsd-386), const DLT_PFLOG ideal-int
-pkg syscall (openbsd-386), const DLT_PFSYNC ideal-int
-pkg syscall (openbsd-386), const DLT_PPP ideal-int
-pkg syscall (openbsd-386), const DLT_PPP_BSDOS ideal-int
-pkg syscall (openbsd-386), const DLT_PPP_ETHER ideal-int
-pkg syscall (openbsd-386), const DLT_PPP_SERIAL ideal-int
-pkg syscall (openbsd-386), const DLT_PRONET ideal-int
-pkg syscall (openbsd-386), const DLT_RAW ideal-int
-pkg syscall (openbsd-386), const DLT_SLIP ideal-int
-pkg syscall (openbsd-386), const DLT_SLIP_BSDOS ideal-int
-pkg syscall (openbsd-386), const DT_BLK ideal-int
-pkg syscall (openbsd-386), const DT_CHR ideal-int
-pkg syscall (openbsd-386), const DT_DIR ideal-int
-pkg syscall (openbsd-386), const DT_FIFO ideal-int
-pkg syscall (openbsd-386), const DT_LNK ideal-int
-pkg syscall (openbsd-386), const DT_REG ideal-int
-pkg syscall (openbsd-386), const DT_SOCK ideal-int
-pkg syscall (openbsd-386), const DT_UNKNOWN ideal-int
-pkg syscall (openbsd-386), const EAUTH Errno
-pkg syscall (openbsd-386), const EBADRPC Errno
-pkg syscall (openbsd-386), const ECHO ideal-int
-pkg syscall (openbsd-386), const ECHOCTL ideal-int
-pkg syscall (openbsd-386), const ECHOE ideal-int
-pkg syscall (openbsd-386), const ECHOK ideal-int
-pkg syscall (openbsd-386), const ECHOKE ideal-int
-pkg syscall (openbsd-386), const ECHONL ideal-int
-pkg syscall (openbsd-386), const ECHOPRT ideal-int
-pkg syscall (openbsd-386), const EFTYPE Errno
-pkg syscall (openbsd-386), const EIPSEC Errno
-pkg syscall (openbsd-386), const ELAST Errno
-pkg syscall (openbsd-386), const EMEDIUMTYPE Errno
-pkg syscall (openbsd-386), const EMT_TAGOVF ideal-int
-pkg syscall (openbsd-386), const EMUL_ENABLED ideal-int
-pkg syscall (openbsd-386), const EMUL_NATIVE ideal-int
-pkg syscall (openbsd-386), const ENDRUNDISC ideal-int
-pkg syscall (openbsd-386), const ENEEDAUTH Errno
-pkg syscall (openbsd-386), const ENOATTR Errno
-pkg syscall (openbsd-386), const ENOMEDIUM Errno
-pkg syscall (openbsd-386), const EPROCLIM Errno
-pkg syscall (openbsd-386), const EPROCUNAVAIL Errno
-pkg syscall (openbsd-386), const EPROGMISMATCH Errno
-pkg syscall (openbsd-386), const EPROGUNAVAIL Errno
-pkg syscall (openbsd-386), const ERPCMISMATCH Errno
-pkg syscall (openbsd-386), const ETHERMIN ideal-int
-pkg syscall (openbsd-386), const ETHERMTU ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_8023 ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_AARP ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_ACCTON ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_AEONIC ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_ALPHA ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_AMBER ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_AMOEBA ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_AOE ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_APOLLO ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_APOLLODOMAIN ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_APPLETALK ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_APPLITEK ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_ARGONAUT ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_ARP ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_AT ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_ATALK ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_ATOMIC ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_ATT ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_ATTSTANFORD ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_AUTOPHON ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_AXIS ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_BCLOOP ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_BOFL ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_CABLETRON ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_CHAOS ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_COMDESIGN ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_COMPUGRAPHIC ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_COUNTERPOINT ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_CRONUS ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_CRONUSVLN ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_DCA ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_DDE ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_DEBNI ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_DECAM ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_DECCUST ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_DECDIAG ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_DECDNS ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_DECDTS ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_DECEXPER ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_DECLAST ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_DECLTM ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_DECMUMPS ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_DECNETBIOS ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_DELTACON ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_DIDDLE ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_DLOG1 ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_DLOG2 ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_DN ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_DOGFIGHT ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_DSMD ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_ECMA ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_ENCRYPT ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_ES ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_EXCELAN ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_EXPERDATA ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_FLIP ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_FLOWCONTROL ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_FRARP ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_GENDYN ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_HAYES ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_HIPPI_FP ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_HITACHI ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_HP ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_IEEEPUP ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_IEEEPUPAT ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_IMLBL ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_IMLBLDIAG ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_IP ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_IPAS ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_IPV6 ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_IPX ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_IPXNEW ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_KALPANA ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_LANBRIDGE ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_LANPROBE ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_LAT ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_LBACK ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_LITTLE ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_LLDP ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_LOGICRAFT ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_LOOPBACK ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_MATRA ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_MAX ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_MERIT ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_MICP ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_MOPDL ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_MOPRC ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_MOTOROLA ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_MPLS ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_MPLS_MCAST ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_MUMPS ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_NBPCC ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_NBPCLAIM ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_NBPCLREQ ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_NBPCLRSP ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_NBPCREQ ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_NBPCRSP ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_NBPDG ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_NBPDGB ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_NBPDLTE ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_NBPRAR ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_NBPRAS ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_NBPRST ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_NBPSCD ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_NBPVCD ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_NBS ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_NCD ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_NESTAR ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_NETBEUI ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_NOVELL ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_NS ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_NSAT ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_NSCOMPAT ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_NTRAILER ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_OS9 ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_OS9NET ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_PACER ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_PAE ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_PCS ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_PLANNING ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_PPP ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_PPPOE ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_PPPOEDISC ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_PRIMENTS ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_PUP ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_PUPAT ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_QINQ ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_RACAL ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_RATIONAL ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_RAWFR ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_RCL ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_RDP ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_RETIX ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_REVARP ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_SCA ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_SECTRA ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_SECUREDATA ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_SGITW ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_SG_BOUNCE ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_SG_DIAG ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_SG_NETGAMES ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_SG_RESV ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_SIMNET ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_SLOW ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_SNA ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_SNMP ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_SONIX ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_SPIDER ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_SPRITE ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_STP ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_TALARIS ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_TALARISMC ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_TCPCOMP ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_TCPSM ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_TEC ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_TIGAN ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_TRAIL ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_TRANSETHER ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_TYMSHARE ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_UBBST ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_UBDEBUG ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_UBDIAGLOOP ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_UBDL ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_UBNIU ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_UBNMC ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_VALID ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_VARIAN ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_VAXELN ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_VEECO ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_VEXP ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_VGLAB ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_VINES ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_VINESECHO ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_VINESLOOP ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_VITAL ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_VLAN ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_VLTLMAN ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_VPROD ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_VURESERVED ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_WATERLOO ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_WELLFLEET ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_X25 ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_X75 ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_XNSSM ideal-int
-pkg syscall (openbsd-386), const ETHERTYPE_XTP ideal-int
-pkg syscall (openbsd-386), const ETHER_ADDR_LEN ideal-int
-pkg syscall (openbsd-386), const ETHER_ALIGN ideal-int
-pkg syscall (openbsd-386), const ETHER_CRC_LEN ideal-int
-pkg syscall (openbsd-386), const ETHER_CRC_POLY_BE ideal-int
-pkg syscall (openbsd-386), const ETHER_CRC_POLY_LE ideal-int
-pkg syscall (openbsd-386), const ETHER_HDR_LEN ideal-int
-pkg syscall (openbsd-386), const ETHER_MAX_DIX_LEN ideal-int
-pkg syscall (openbsd-386), const ETHER_MAX_LEN ideal-int
-pkg syscall (openbsd-386), const ETHER_MIN_LEN ideal-int
-pkg syscall (openbsd-386), const ETHER_TYPE_LEN ideal-int
-pkg syscall (openbsd-386), const ETHER_VLAN_ENCAP_LEN ideal-int
-pkg syscall (openbsd-386), const EVFILT_AIO ideal-int
-pkg syscall (openbsd-386), const EVFILT_PROC ideal-int
-pkg syscall (openbsd-386), const EVFILT_READ ideal-int
-pkg syscall (openbsd-386), const EVFILT_SIGNAL ideal-int
-pkg syscall (openbsd-386), const EVFILT_SYSCOUNT ideal-int
-pkg syscall (openbsd-386), const EVFILT_TIMER ideal-int
-pkg syscall (openbsd-386), const EVFILT_VNODE ideal-int
-pkg syscall (openbsd-386), const EVFILT_WRITE ideal-int
-pkg syscall (openbsd-386), const EV_ADD ideal-int
-pkg syscall (openbsd-386), const EV_CLEAR ideal-int
-pkg syscall (openbsd-386), const EV_DELETE ideal-int
-pkg syscall (openbsd-386), const EV_DISABLE ideal-int
-pkg syscall (openbsd-386), const EV_ENABLE ideal-int
-pkg syscall (openbsd-386), const EV_EOF ideal-int
-pkg syscall (openbsd-386), const EV_ERROR ideal-int
-pkg syscall (openbsd-386), const EV_FLAG1 ideal-int
-pkg syscall (openbsd-386), const EV_ONESHOT ideal-int
-pkg syscall (openbsd-386), const EV_SYSFLAGS ideal-int
-pkg syscall (openbsd-386), const EXTA ideal-int
-pkg syscall (openbsd-386), const EXTB ideal-int
-pkg syscall (openbsd-386), const EXTPROC ideal-int
-pkg syscall (openbsd-386), const FD_CLOEXEC ideal-int
-pkg syscall (openbsd-386), const FD_SETSIZE ideal-int
-pkg syscall (openbsd-386), const FLUSHO ideal-int
-pkg syscall (openbsd-386), const F_DUPFD ideal-int
-pkg syscall (openbsd-386), const F_DUPFD_CLOEXEC ideal-int
-pkg syscall (openbsd-386), const F_GETFD ideal-int
-pkg syscall (openbsd-386), const F_GETFL ideal-int
-pkg syscall (openbsd-386), const F_GETLK ideal-int
-pkg syscall (openbsd-386), const F_GETOWN ideal-int
-pkg syscall (openbsd-386), const F_OK ideal-int
-pkg syscall (openbsd-386), const F_RDLCK ideal-int
-pkg syscall (openbsd-386), const F_SETFD ideal-int
-pkg syscall (openbsd-386), const F_SETFL ideal-int
-pkg syscall (openbsd-386), const F_SETLK ideal-int
-pkg syscall (openbsd-386), const F_SETLKW ideal-int
-pkg syscall (openbsd-386), const F_SETOWN ideal-int
-pkg syscall (openbsd-386), const F_UNLCK ideal-int
-pkg syscall (openbsd-386), const F_WRLCK ideal-int
-pkg syscall (openbsd-386), const HUPCL ideal-int
-pkg syscall (openbsd-386), const ICANON ideal-int
-pkg syscall (openbsd-386), const ICMP6_FILTER = 18
-pkg syscall (openbsd-386), const ICMP6_FILTER ideal-int
-pkg syscall (openbsd-386), const ICRNL ideal-int
-pkg syscall (openbsd-386), const IEXTEN ideal-int
-pkg syscall (openbsd-386), const IFAN_ARRIVAL ideal-int
-pkg syscall (openbsd-386), const IFAN_DEPARTURE ideal-int
-pkg syscall (openbsd-386), const IFA_ROUTE ideal-int
-pkg syscall (openbsd-386), const IFF_ALLMULTI ideal-int
-pkg syscall (openbsd-386), const IFF_CANTCHANGE ideal-int
-pkg syscall (openbsd-386), const IFF_DEBUG ideal-int
-pkg syscall (openbsd-386), const IFF_LINK0 ideal-int
-pkg syscall (openbsd-386), const IFF_LINK1 ideal-int
-pkg syscall (openbsd-386), const IFF_LINK2 ideal-int
-pkg syscall (openbsd-386), const IFF_NOARP ideal-int
-pkg syscall (openbsd-386), const IFF_NOTRAILERS ideal-int
-pkg syscall (openbsd-386), const IFF_OACTIVE ideal-int
-pkg syscall (openbsd-386), const IFF_POINTOPOINT ideal-int
-pkg syscall (openbsd-386), const IFF_PROMISC ideal-int
-pkg syscall (openbsd-386), const IFF_RUNNING ideal-int
-pkg syscall (openbsd-386), const IFF_SIMPLEX ideal-int
-pkg syscall (openbsd-386), const IFNAMSIZ ideal-int
-pkg syscall (openbsd-386), const IFT_1822 ideal-int
-pkg syscall (openbsd-386), const IFT_A12MPPSWITCH ideal-int
-pkg syscall (openbsd-386), const IFT_AAL2 ideal-int
-pkg syscall (openbsd-386), const IFT_AAL5 ideal-int
-pkg syscall (openbsd-386), const IFT_ADSL ideal-int
-pkg syscall (openbsd-386), const IFT_AFLANE8023 ideal-int
-pkg syscall (openbsd-386), const IFT_AFLANE8025 ideal-int
-pkg syscall (openbsd-386), const IFT_ARAP ideal-int
-pkg syscall (openbsd-386), const IFT_ARCNET ideal-int
-pkg syscall (openbsd-386), const IFT_ARCNETPLUS ideal-int
-pkg syscall (openbsd-386), const IFT_ASYNC ideal-int
-pkg syscall (openbsd-386), const IFT_ATM ideal-int
-pkg syscall (openbsd-386), const IFT_ATMDXI ideal-int
-pkg syscall (openbsd-386), const IFT_ATMFUNI ideal-int
-pkg syscall (openbsd-386), const IFT_ATMIMA ideal-int
-pkg syscall (openbsd-386), const IFT_ATMLOGICAL ideal-int
-pkg syscall (openbsd-386), const IFT_ATMRADIO ideal-int
-pkg syscall (openbsd-386), const IFT_ATMSUBINTERFACE ideal-int
-pkg syscall (openbsd-386), const IFT_ATMVCIENDPT ideal-int
-pkg syscall (openbsd-386), const IFT_ATMVIRTUAL ideal-int
-pkg syscall (openbsd-386), const IFT_BGPPOLICYACCOUNTING ideal-int
-pkg syscall (openbsd-386), const IFT_BLUETOOTH ideal-int
-pkg syscall (openbsd-386), const IFT_BRIDGE ideal-int
-pkg syscall (openbsd-386), const IFT_BSC ideal-int
-pkg syscall (openbsd-386), const IFT_CARP ideal-int
-pkg syscall (openbsd-386), const IFT_CCTEMUL ideal-int
-pkg syscall (openbsd-386), const IFT_CEPT ideal-int
-pkg syscall (openbsd-386), const IFT_CES ideal-int
-pkg syscall (openbsd-386), const IFT_CHANNEL ideal-int
-pkg syscall (openbsd-386), const IFT_CNR ideal-int
-pkg syscall (openbsd-386), const IFT_COFFEE ideal-int
-pkg syscall (openbsd-386), const IFT_COMPOSITELINK ideal-int
-pkg syscall (openbsd-386), const IFT_DCN ideal-int
-pkg syscall (openbsd-386), const IFT_DIGITALPOWERLINE ideal-int
-pkg syscall (openbsd-386), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int
-pkg syscall (openbsd-386), const IFT_DLSW ideal-int
-pkg syscall (openbsd-386), const IFT_DOCSCABLEDOWNSTREAM ideal-int
-pkg syscall (openbsd-386), const IFT_DOCSCABLEMACLAYER ideal-int
-pkg syscall (openbsd-386), const IFT_DOCSCABLEUPSTREAM ideal-int
-pkg syscall (openbsd-386), const IFT_DOCSCABLEUPSTREAMCHANNEL ideal-int
-pkg syscall (openbsd-386), const IFT_DS0 ideal-int
-pkg syscall (openbsd-386), const IFT_DS0BUNDLE ideal-int
-pkg syscall (openbsd-386), const IFT_DS1FDL ideal-int
-pkg syscall (openbsd-386), const IFT_DS3 ideal-int
-pkg syscall (openbsd-386), const IFT_DTM ideal-int
-pkg syscall (openbsd-386), const IFT_DUMMY ideal-int
-pkg syscall (openbsd-386), const IFT_DVBASILN ideal-int
-pkg syscall (openbsd-386), const IFT_DVBASIOUT ideal-int
-pkg syscall (openbsd-386), const IFT_DVBRCCDOWNSTREAM ideal-int
-pkg syscall (openbsd-386), const IFT_DVBRCCMACLAYER ideal-int
-pkg syscall (openbsd-386), const IFT_DVBRCCUPSTREAM ideal-int
-pkg syscall (openbsd-386), const IFT_ECONET ideal-int
-pkg syscall (openbsd-386), const IFT_ENC ideal-int
-pkg syscall (openbsd-386), const IFT_EON ideal-int
-pkg syscall (openbsd-386), const IFT_EPLRS ideal-int
-pkg syscall (openbsd-386), const IFT_ESCON ideal-int
-pkg syscall (openbsd-386), const IFT_ETHER ideal-int
-pkg syscall (openbsd-386), const IFT_FAITH ideal-int
-pkg syscall (openbsd-386), const IFT_FAST ideal-int
-pkg syscall (openbsd-386), const IFT_FASTETHER ideal-int
-pkg syscall (openbsd-386), const IFT_FASTETHERFX ideal-int
-pkg syscall (openbsd-386), const IFT_FDDI ideal-int
-pkg syscall (openbsd-386), const IFT_FIBRECHANNEL ideal-int
-pkg syscall (openbsd-386), const IFT_FRAMERELAYINTERCONNECT ideal-int
-pkg syscall (openbsd-386), const IFT_FRAMERELAYMPI ideal-int
-pkg syscall (openbsd-386), const IFT_FRDLCIENDPT ideal-int
-pkg syscall (openbsd-386), const IFT_FRELAY ideal-int
-pkg syscall (openbsd-386), const IFT_FRELAYDCE ideal-int
-pkg syscall (openbsd-386), const IFT_FRF16MFRBUNDLE ideal-int
-pkg syscall (openbsd-386), const IFT_FRFORWARD ideal-int
-pkg syscall (openbsd-386), const IFT_G703AT2MB ideal-int
-pkg syscall (openbsd-386), const IFT_G703AT64K ideal-int
-pkg syscall (openbsd-386), const IFT_GIF ideal-int
-pkg syscall (openbsd-386), const IFT_GIGABITETHERNET ideal-int
-pkg syscall (openbsd-386), const IFT_GR303IDT ideal-int
-pkg syscall (openbsd-386), const IFT_GR303RDT ideal-int
-pkg syscall (openbsd-386), const IFT_H323GATEKEEPER ideal-int
-pkg syscall (openbsd-386), const IFT_H323PROXY ideal-int
-pkg syscall (openbsd-386), const IFT_HDH1822 ideal-int
-pkg syscall (openbsd-386), const IFT_HDLC ideal-int
-pkg syscall (openbsd-386), const IFT_HDSL2 ideal-int
-pkg syscall (openbsd-386), const IFT_HIPERLAN2 ideal-int
-pkg syscall (openbsd-386), const IFT_HIPPI ideal-int
-pkg syscall (openbsd-386), const IFT_HIPPIINTERFACE ideal-int
-pkg syscall (openbsd-386), const IFT_HOSTPAD ideal-int
-pkg syscall (openbsd-386), const IFT_HSSI ideal-int
-pkg syscall (openbsd-386), const IFT_HY ideal-int
-pkg syscall (openbsd-386), const IFT_IBM370PARCHAN ideal-int
-pkg syscall (openbsd-386), const IFT_IDSL ideal-int
-pkg syscall (openbsd-386), const IFT_IEEE1394 ideal-int
-pkg syscall (openbsd-386), const IFT_IEEE80211 ideal-int
-pkg syscall (openbsd-386), const IFT_IEEE80212 ideal-int
-pkg syscall (openbsd-386), const IFT_IEEE8023ADLAG ideal-int
-pkg syscall (openbsd-386), const IFT_IFGSN ideal-int
-pkg syscall (openbsd-386), const IFT_IMT ideal-int
-pkg syscall (openbsd-386), const IFT_INFINIBAND ideal-int
-pkg syscall (openbsd-386), const IFT_INTERLEAVE ideal-int
-pkg syscall (openbsd-386), const IFT_IP ideal-int
-pkg syscall (openbsd-386), const IFT_IPFORWARD ideal-int
-pkg syscall (openbsd-386), const IFT_IPOVERATM ideal-int
-pkg syscall (openbsd-386), const IFT_IPOVERCDLC ideal-int
-pkg syscall (openbsd-386), const IFT_IPOVERCLAW ideal-int
-pkg syscall (openbsd-386), const IFT_IPSWITCH ideal-int
-pkg syscall (openbsd-386), const IFT_ISDN ideal-int
-pkg syscall (openbsd-386), const IFT_ISDNBASIC ideal-int
-pkg syscall (openbsd-386), const IFT_ISDNPRIMARY ideal-int
-pkg syscall (openbsd-386), const IFT_ISDNS ideal-int
-pkg syscall (openbsd-386), const IFT_ISDNU ideal-int
-pkg syscall (openbsd-386), const IFT_ISO88022LLC ideal-int
-pkg syscall (openbsd-386), const IFT_ISO88023 ideal-int
-pkg syscall (openbsd-386), const IFT_ISO88024 ideal-int
-pkg syscall (openbsd-386), const IFT_ISO88025 ideal-int
-pkg syscall (openbsd-386), const IFT_ISO88025CRFPINT ideal-int
-pkg syscall (openbsd-386), const IFT_ISO88025DTR ideal-int
-pkg syscall (openbsd-386), const IFT_ISO88025FIBER ideal-int
-pkg syscall (openbsd-386), const IFT_ISO88026 ideal-int
-pkg syscall (openbsd-386), const IFT_ISUP ideal-int
-pkg syscall (openbsd-386), const IFT_L2VLAN ideal-int
-pkg syscall (openbsd-386), const IFT_L3IPVLAN ideal-int
-pkg syscall (openbsd-386), const IFT_L3IPXVLAN ideal-int
-pkg syscall (openbsd-386), const IFT_LAPB ideal-int
-pkg syscall (openbsd-386), const IFT_LAPD ideal-int
-pkg syscall (openbsd-386), const IFT_LAPF ideal-int
-pkg syscall (openbsd-386), const IFT_LINEGROUP ideal-int
-pkg syscall (openbsd-386), const IFT_LOCALTALK ideal-int
-pkg syscall (openbsd-386), const IFT_LOOP ideal-int
-pkg syscall (openbsd-386), const IFT_MEDIAMAILOVERIP ideal-int
-pkg syscall (openbsd-386), const IFT_MFSIGLINK ideal-int
-pkg syscall (openbsd-386), const IFT_MIOX25 ideal-int
-pkg syscall (openbsd-386), const IFT_MODEM ideal-int
-pkg syscall (openbsd-386), const IFT_MPC ideal-int
-pkg syscall (openbsd-386), const IFT_MPLS ideal-int
-pkg syscall (openbsd-386), const IFT_MPLSTUNNEL ideal-int
-pkg syscall (openbsd-386), const IFT_MSDSL ideal-int
-pkg syscall (openbsd-386), const IFT_MVL ideal-int
-pkg syscall (openbsd-386), const IFT_MYRINET ideal-int
-pkg syscall (openbsd-386), const IFT_NFAS ideal-int
-pkg syscall (openbsd-386), const IFT_NSIP ideal-int
-pkg syscall (openbsd-386), const IFT_OPTICALCHANNEL ideal-int
-pkg syscall (openbsd-386), const IFT_OPTICALTRANSPORT ideal-int
-pkg syscall (openbsd-386), const IFT_OTHER ideal-int
-pkg syscall (openbsd-386), const IFT_P10 ideal-int
-pkg syscall (openbsd-386), const IFT_P80 ideal-int
-pkg syscall (openbsd-386), const IFT_PARA ideal-int
-pkg syscall (openbsd-386), const IFT_PFLOG ideal-int
-pkg syscall (openbsd-386), const IFT_PFLOW ideal-int
-pkg syscall (openbsd-386), const IFT_PFSYNC ideal-int
-pkg syscall (openbsd-386), const IFT_PLC ideal-int
-pkg syscall (openbsd-386), const IFT_PON155 ideal-int
-pkg syscall (openbsd-386), const IFT_PON622 ideal-int
-pkg syscall (openbsd-386), const IFT_POS ideal-int
-pkg syscall (openbsd-386), const IFT_PPP ideal-int
-pkg syscall (openbsd-386), const IFT_PPPMULTILINKBUNDLE ideal-int
-pkg syscall (openbsd-386), const IFT_PROPATM ideal-int
-pkg syscall (openbsd-386), const IFT_PROPBWAP2MP ideal-int
-pkg syscall (openbsd-386), const IFT_PROPCNLS ideal-int
-pkg syscall (openbsd-386), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int
-pkg syscall (openbsd-386), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int
-pkg syscall (openbsd-386), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int
-pkg syscall (openbsd-386), const IFT_PROPMUX ideal-int
-pkg syscall (openbsd-386), const IFT_PROPVIRTUAL ideal-int
-pkg syscall (openbsd-386), const IFT_PROPWIRELESSP2P ideal-int
-pkg syscall (openbsd-386), const IFT_PTPSERIAL ideal-int
-pkg syscall (openbsd-386), const IFT_PVC ideal-int
-pkg syscall (openbsd-386), const IFT_Q2931 ideal-int
-pkg syscall (openbsd-386), const IFT_QLLC ideal-int
-pkg syscall (openbsd-386), const IFT_RADIOMAC ideal-int
-pkg syscall (openbsd-386), const IFT_RADSL ideal-int
-pkg syscall (openbsd-386), const IFT_REACHDSL ideal-int
-pkg syscall (openbsd-386), const IFT_RFC1483 ideal-int
-pkg syscall (openbsd-386), const IFT_RS232 ideal-int
-pkg syscall (openbsd-386), const IFT_RSRB ideal-int
-pkg syscall (openbsd-386), const IFT_SDLC ideal-int
-pkg syscall (openbsd-386), const IFT_SDSL ideal-int
-pkg syscall (openbsd-386), const IFT_SHDSL ideal-int
-pkg syscall (openbsd-386), const IFT_SIP ideal-int
-pkg syscall (openbsd-386), const IFT_SIPSIG ideal-int
-pkg syscall (openbsd-386), const IFT_SIPTG ideal-int
-pkg syscall (openbsd-386), const IFT_SLIP ideal-int
-pkg syscall (openbsd-386), const IFT_SMDSDXI ideal-int
-pkg syscall (openbsd-386), const IFT_SMDSICIP ideal-int
-pkg syscall (openbsd-386), const IFT_SONET ideal-int
-pkg syscall (openbsd-386), const IFT_SONETOVERHEADCHANNEL ideal-int
-pkg syscall (openbsd-386), const IFT_SONETPATH ideal-int
-pkg syscall (openbsd-386), const IFT_SONETVT ideal-int
-pkg syscall (openbsd-386), const IFT_SRP ideal-int
-pkg syscall (openbsd-386), const IFT_SS7SIGLINK ideal-int
-pkg syscall (openbsd-386), const IFT_STACKTOSTACK ideal-int
-pkg syscall (openbsd-386), const IFT_STARLAN ideal-int
-pkg syscall (openbsd-386), const IFT_T1 ideal-int
-pkg syscall (openbsd-386), const IFT_TDLC ideal-int
-pkg syscall (openbsd-386), const IFT_TELINK ideal-int
-pkg syscall (openbsd-386), const IFT_TERMPAD ideal-int
-pkg syscall (openbsd-386), const IFT_TR008 ideal-int
-pkg syscall (openbsd-386), const IFT_TRANSPHDLC ideal-int
-pkg syscall (openbsd-386), const IFT_TUNNEL ideal-int
-pkg syscall (openbsd-386), const IFT_ULTRA ideal-int
-pkg syscall (openbsd-386), const IFT_USB ideal-int
-pkg syscall (openbsd-386), const IFT_V11 ideal-int
-pkg syscall (openbsd-386), const IFT_V35 ideal-int
-pkg syscall (openbsd-386), const IFT_V36 ideal-int
-pkg syscall (openbsd-386), const IFT_V37 ideal-int
-pkg syscall (openbsd-386), const IFT_VDSL ideal-int
-pkg syscall (openbsd-386), const IFT_VIRTUALIPADDRESS ideal-int
-pkg syscall (openbsd-386), const IFT_VIRTUALTG ideal-int
-pkg syscall (openbsd-386), const IFT_VOICEDID ideal-int
-pkg syscall (openbsd-386), const IFT_VOICEEM ideal-int
-pkg syscall (openbsd-386), const IFT_VOICEEMFGD ideal-int
-pkg syscall (openbsd-386), const IFT_VOICEENCAP ideal-int
-pkg syscall (openbsd-386), const IFT_VOICEFGDEANA ideal-int
-pkg syscall (openbsd-386), const IFT_VOICEFXO ideal-int
-pkg syscall (openbsd-386), const IFT_VOICEFXS ideal-int
-pkg syscall (openbsd-386), const IFT_VOICEOVERATM ideal-int
-pkg syscall (openbsd-386), const IFT_VOICEOVERCABLE ideal-int
-pkg syscall (openbsd-386), const IFT_VOICEOVERFRAMERELAY ideal-int
-pkg syscall (openbsd-386), const IFT_VOICEOVERIP ideal-int
-pkg syscall (openbsd-386), const IFT_X213 ideal-int
-pkg syscall (openbsd-386), const IFT_X25 ideal-int
-pkg syscall (openbsd-386), const IFT_X25DDN ideal-int
-pkg syscall (openbsd-386), const IFT_X25HUNTGROUP ideal-int
-pkg syscall (openbsd-386), const IFT_X25MLP ideal-int
-pkg syscall (openbsd-386), const IFT_X25PLE ideal-int
-pkg syscall (openbsd-386), const IFT_XETHER ideal-int
-pkg syscall (openbsd-386), const IGNBRK ideal-int
-pkg syscall (openbsd-386), const IGNCR ideal-int
-pkg syscall (openbsd-386), const IGNPAR ideal-int
-pkg syscall (openbsd-386), const IMAXBEL ideal-int
-pkg syscall (openbsd-386), const INLCR ideal-int
-pkg syscall (openbsd-386), const INPCK ideal-int
-pkg syscall (openbsd-386), const IN_CLASSA_HOST ideal-int
-pkg syscall (openbsd-386), const IN_CLASSA_MAX ideal-int
-pkg syscall (openbsd-386), const IN_CLASSA_NET ideal-int
-pkg syscall (openbsd-386), const IN_CLASSA_NSHIFT ideal-int
-pkg syscall (openbsd-386), const IN_CLASSB_HOST ideal-int
-pkg syscall (openbsd-386), const IN_CLASSB_MAX ideal-int
-pkg syscall (openbsd-386), const IN_CLASSB_NET ideal-int
-pkg syscall (openbsd-386), const IN_CLASSB_NSHIFT ideal-int
-pkg syscall (openbsd-386), const IN_CLASSC_HOST ideal-int
-pkg syscall (openbsd-386), const IN_CLASSC_NET ideal-int
-pkg syscall (openbsd-386), const IN_CLASSC_NSHIFT ideal-int
-pkg syscall (openbsd-386), const IN_CLASSD_HOST ideal-int
-pkg syscall (openbsd-386), const IN_CLASSD_NET ideal-int
-pkg syscall (openbsd-386), const IN_CLASSD_NSHIFT ideal-int
-pkg syscall (openbsd-386), const IN_LOOPBACKNET ideal-int
-pkg syscall (openbsd-386), const IN_RFC3021_HOST ideal-int
-pkg syscall (openbsd-386), const IN_RFC3021_NET ideal-int
-pkg syscall (openbsd-386), const IN_RFC3021_NSHIFT ideal-int
-pkg syscall (openbsd-386), const IPPROTO_AH ideal-int
-pkg syscall (openbsd-386), const IPPROTO_CARP ideal-int
-pkg syscall (openbsd-386), const IPPROTO_DIVERT ideal-int
-pkg syscall (openbsd-386), const IPPROTO_DONE ideal-int
-pkg syscall (openbsd-386), const IPPROTO_DSTOPTS ideal-int
-pkg syscall (openbsd-386), const IPPROTO_EGP ideal-int
-pkg syscall (openbsd-386), const IPPROTO_ENCAP ideal-int
-pkg syscall (openbsd-386), const IPPROTO_EON ideal-int
-pkg syscall (openbsd-386), const IPPROTO_ESP ideal-int
-pkg syscall (openbsd-386), const IPPROTO_ETHERIP ideal-int
-pkg syscall (openbsd-386), const IPPROTO_FRAGMENT ideal-int
-pkg syscall (openbsd-386), const IPPROTO_GGP ideal-int
-pkg syscall (openbsd-386), const IPPROTO_GRE ideal-int
-pkg syscall (openbsd-386), const IPPROTO_HOPOPTS ideal-int
-pkg syscall (openbsd-386), const IPPROTO_ICMP ideal-int
-pkg syscall (openbsd-386), const IPPROTO_ICMPV6 ideal-int
-pkg syscall (openbsd-386), const IPPROTO_IDP ideal-int
-pkg syscall (openbsd-386), const IPPROTO_IGMP ideal-int
-pkg syscall (openbsd-386), const IPPROTO_IPCOMP ideal-int
-pkg syscall (openbsd-386), const IPPROTO_IPIP ideal-int
-pkg syscall (openbsd-386), const IPPROTO_IPV4 ideal-int
-pkg syscall (openbsd-386), const IPPROTO_MAX ideal-int
-pkg syscall (openbsd-386), const IPPROTO_MAXID ideal-int
-pkg syscall (openbsd-386), const IPPROTO_MOBILE ideal-int
-pkg syscall (openbsd-386), const IPPROTO_MPLS ideal-int
-pkg syscall (openbsd-386), const IPPROTO_NONE ideal-int
-pkg syscall (openbsd-386), const IPPROTO_PFSYNC ideal-int
-pkg syscall (openbsd-386), const IPPROTO_PIM ideal-int
-pkg syscall (openbsd-386), const IPPROTO_PUP ideal-int
-pkg syscall (openbsd-386), const IPPROTO_RAW ideal-int
-pkg syscall (openbsd-386), const IPPROTO_ROUTING ideal-int
-pkg syscall (openbsd-386), const IPPROTO_RSVP ideal-int
-pkg syscall (openbsd-386), const IPPROTO_TP ideal-int
-pkg syscall (openbsd-386), const IPV6_AUTH_LEVEL ideal-int
-pkg syscall (openbsd-386), const IPV6_AUTOFLOWLABEL ideal-int
-pkg syscall (openbsd-386), const IPV6_CHECKSUM ideal-int
-pkg syscall (openbsd-386), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int
-pkg syscall (openbsd-386), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int
-pkg syscall (openbsd-386), const IPV6_DEFHLIM ideal-int
-pkg syscall (openbsd-386), const IPV6_DONTFRAG ideal-int
-pkg syscall (openbsd-386), const IPV6_DSTOPTS ideal-int
-pkg syscall (openbsd-386), const IPV6_ESP_NETWORK_LEVEL ideal-int
-pkg syscall (openbsd-386), const IPV6_ESP_TRANS_LEVEL ideal-int
-pkg syscall (openbsd-386), const IPV6_FAITH ideal-int
-pkg syscall (openbsd-386), const IPV6_FLOWINFO_MASK ideal-int
-pkg syscall (openbsd-386), const IPV6_FLOWLABEL_MASK ideal-int
-pkg syscall (openbsd-386), const IPV6_FRAGTTL ideal-int
-pkg syscall (openbsd-386), const IPV6_HLIMDEC ideal-int
-pkg syscall (openbsd-386), const IPV6_HOPLIMIT ideal-int
-pkg syscall (openbsd-386), const IPV6_HOPOPTS ideal-int
-pkg syscall (openbsd-386), const IPV6_IPCOMP_LEVEL ideal-int
-pkg syscall (openbsd-386), const IPV6_MAXHLIM ideal-int
-pkg syscall (openbsd-386), const IPV6_MAXPACKET ideal-int
-pkg syscall (openbsd-386), const IPV6_MMTU ideal-int
-pkg syscall (openbsd-386), const IPV6_NEXTHOP ideal-int
-pkg syscall (openbsd-386), const IPV6_OPTIONS ideal-int
-pkg syscall (openbsd-386), const IPV6_PATHMTU ideal-int
-pkg syscall (openbsd-386), const IPV6_PIPEX ideal-int
-pkg syscall (openbsd-386), const IPV6_PKTINFO ideal-int
-pkg syscall (openbsd-386), const IPV6_PORTRANGE ideal-int
-pkg syscall (openbsd-386), const IPV6_PORTRANGE_DEFAULT ideal-int
-pkg syscall (openbsd-386), const IPV6_PORTRANGE_HIGH ideal-int
-pkg syscall (openbsd-386), const IPV6_PORTRANGE_LOW ideal-int
-pkg syscall (openbsd-386), const IPV6_RECVDSTOPTS ideal-int
-pkg syscall (openbsd-386), const IPV6_RECVHOPLIMIT ideal-int
-pkg syscall (openbsd-386), const IPV6_RECVHOPOPTS ideal-int
-pkg syscall (openbsd-386), const IPV6_RECVPATHMTU ideal-int
-pkg syscall (openbsd-386), const IPV6_RECVPKTINFO ideal-int
-pkg syscall (openbsd-386), const IPV6_RECVRTHDR ideal-int
-pkg syscall (openbsd-386), const IPV6_RECVTCLASS ideal-int
-pkg syscall (openbsd-386), const IPV6_RTABLE ideal-int
-pkg syscall (openbsd-386), const IPV6_RTHDR ideal-int
-pkg syscall (openbsd-386), const IPV6_RTHDRDSTOPTS ideal-int
-pkg syscall (openbsd-386), const IPV6_RTHDR_LOOSE ideal-int
-pkg syscall (openbsd-386), const IPV6_RTHDR_STRICT ideal-int
-pkg syscall (openbsd-386), const IPV6_RTHDR_TYPE_0 ideal-int
-pkg syscall (openbsd-386), const IPV6_SOCKOPT_RESERVED1 ideal-int
-pkg syscall (openbsd-386), const IPV6_TCLASS ideal-int
-pkg syscall (openbsd-386), const IPV6_USE_MIN_MTU ideal-int
-pkg syscall (openbsd-386), const IPV6_VERSION ideal-int
-pkg syscall (openbsd-386), const IPV6_VERSION_MASK ideal-int
-pkg syscall (openbsd-386), const IP_AUTH_LEVEL ideal-int
-pkg syscall (openbsd-386), const IP_DEFAULT_MULTICAST_LOOP ideal-int
-pkg syscall (openbsd-386), const IP_DEFAULT_MULTICAST_TTL ideal-int
-pkg syscall (openbsd-386), const IP_DF ideal-int
-pkg syscall (openbsd-386), const IP_ESP_NETWORK_LEVEL ideal-int
-pkg syscall (openbsd-386), const IP_ESP_TRANS_LEVEL ideal-int
-pkg syscall (openbsd-386), const IP_HDRINCL ideal-int
-pkg syscall (openbsd-386), const IP_IPCOMP_LEVEL ideal-int
-pkg syscall (openbsd-386), const IP_IPSECFLOWINFO ideal-int
-pkg syscall (openbsd-386), const IP_IPSEC_LOCAL_AUTH ideal-int
-pkg syscall (openbsd-386), const IP_IPSEC_LOCAL_CRED ideal-int
-pkg syscall (openbsd-386), const IP_IPSEC_LOCAL_ID ideal-int
-pkg syscall (openbsd-386), const IP_IPSEC_REMOTE_AUTH ideal-int
-pkg syscall (openbsd-386), const IP_IPSEC_REMOTE_CRED ideal-int
-pkg syscall (openbsd-386), const IP_IPSEC_REMOTE_ID ideal-int
-pkg syscall (openbsd-386), const IP_MAXPACKET ideal-int
-pkg syscall (openbsd-386), const IP_MAX_MEMBERSHIPS ideal-int
-pkg syscall (openbsd-386), const IP_MF ideal-int
-pkg syscall (openbsd-386), const IP_MINTTL ideal-int
-pkg syscall (openbsd-386), const IP_MIN_MEMBERSHIPS ideal-int
-pkg syscall (openbsd-386), const IP_MSS ideal-int
-pkg syscall (openbsd-386), const IP_OFFMASK ideal-int
-pkg syscall (openbsd-386), const IP_OPTIONS ideal-int
-pkg syscall (openbsd-386), const IP_PIPEX ideal-int
-pkg syscall (openbsd-386), const IP_PORTRANGE ideal-int
-pkg syscall (openbsd-386), const IP_PORTRANGE_DEFAULT ideal-int
-pkg syscall (openbsd-386), const IP_PORTRANGE_HIGH ideal-int
-pkg syscall (openbsd-386), const IP_PORTRANGE_LOW ideal-int
-pkg syscall (openbsd-386), const IP_RECVDSTADDR ideal-int
-pkg syscall (openbsd-386), const IP_RECVDSTPORT ideal-int
-pkg syscall (openbsd-386), const IP_RECVIF ideal-int
-pkg syscall (openbsd-386), const IP_RECVOPTS ideal-int
-pkg syscall (openbsd-386), const IP_RECVRETOPTS ideal-int
-pkg syscall (openbsd-386), const IP_RECVRTABLE ideal-int
-pkg syscall (openbsd-386), const IP_RECVTTL ideal-int
-pkg syscall (openbsd-386), const IP_RETOPTS ideal-int
-pkg syscall (openbsd-386), const IP_RF ideal-int
-pkg syscall (openbsd-386), const IP_RTABLE ideal-int
-pkg syscall (openbsd-386), const ISIG ideal-int
-pkg syscall (openbsd-386), const ISTRIP ideal-int
-pkg syscall (openbsd-386), const IXANY ideal-int
-pkg syscall (openbsd-386), const IXOFF ideal-int
-pkg syscall (openbsd-386), const IXON ideal-int
-pkg syscall (openbsd-386), const LCNT_OVERLOAD_FLUSH ideal-int
-pkg syscall (openbsd-386), const LOCK_EX ideal-int
-pkg syscall (openbsd-386), const LOCK_NB ideal-int
-pkg syscall (openbsd-386), const LOCK_SH ideal-int
-pkg syscall (openbsd-386), const LOCK_UN ideal-int
-pkg syscall (openbsd-386), const MSG_BCAST ideal-int
-pkg syscall (openbsd-386), const MSG_CTRUNC ideal-int
-pkg syscall (openbsd-386), const MSG_DONTROUTE ideal-int
-pkg syscall (openbsd-386), const MSG_DONTWAIT ideal-int
-pkg syscall (openbsd-386), const MSG_EOR ideal-int
-pkg syscall (openbsd-386), const MSG_MCAST ideal-int
-pkg syscall (openbsd-386), const MSG_NOSIGNAL ideal-int
-pkg syscall (openbsd-386), const MSG_OOB ideal-int
-pkg syscall (openbsd-386), const MSG_PEEK ideal-int
-pkg syscall (openbsd-386), const MSG_TRUNC ideal-int
-pkg syscall (openbsd-386), const MSG_WAITALL ideal-int
-pkg syscall (openbsd-386), const NAME_MAX ideal-int
-pkg syscall (openbsd-386), const NET_RT_DUMP ideal-int
-pkg syscall (openbsd-386), const NET_RT_FLAGS ideal-int
-pkg syscall (openbsd-386), const NET_RT_IFLIST ideal-int
-pkg syscall (openbsd-386), const NET_RT_MAXID ideal-int
-pkg syscall (openbsd-386), const NET_RT_STATS ideal-int
-pkg syscall (openbsd-386), const NET_RT_TABLE ideal-int
-pkg syscall (openbsd-386), const NOFLSH ideal-int
-pkg syscall (openbsd-386), const NOTE_ATTRIB ideal-int
-pkg syscall (openbsd-386), const NOTE_CHILD ideal-int
-pkg syscall (openbsd-386), const NOTE_DELETE ideal-int
-pkg syscall (openbsd-386), const NOTE_EOF ideal-int
-pkg syscall (openbsd-386), const NOTE_EXEC ideal-int
-pkg syscall (openbsd-386), const NOTE_EXIT ideal-int
-pkg syscall (openbsd-386), const NOTE_EXTEND ideal-int
-pkg syscall (openbsd-386), const NOTE_FORK ideal-int
-pkg syscall (openbsd-386), const NOTE_LINK ideal-int
-pkg syscall (openbsd-386), const NOTE_LOWAT ideal-int
-pkg syscall (openbsd-386), const NOTE_PCTRLMASK ideal-int
-pkg syscall (openbsd-386), const NOTE_PDATAMASK ideal-int
-pkg syscall (openbsd-386), const NOTE_RENAME ideal-int
-pkg syscall (openbsd-386), const NOTE_REVOKE ideal-int
-pkg syscall (openbsd-386), const NOTE_TRACK ideal-int
-pkg syscall (openbsd-386), const NOTE_TRACKERR ideal-int
-pkg syscall (openbsd-386), const NOTE_TRUNCATE ideal-int
-pkg syscall (openbsd-386), const NOTE_WRITE ideal-int
-pkg syscall (openbsd-386), const OCRNL ideal-int
-pkg syscall (openbsd-386), const ONLCR ideal-int
-pkg syscall (openbsd-386), const ONLRET ideal-int
-pkg syscall (openbsd-386), const ONOCR ideal-int
-pkg syscall (openbsd-386), const ONOEOT ideal-int
-pkg syscall (openbsd-386), const OPOST ideal-int
-pkg syscall (openbsd-386), const O_ACCMODE ideal-int
-pkg syscall (openbsd-386), const O_DIRECTORY ideal-int
-pkg syscall (openbsd-386), const O_DSYNC ideal-int
-pkg syscall (openbsd-386), const O_EXLOCK ideal-int
-pkg syscall (openbsd-386), const O_FSYNC ideal-int
-pkg syscall (openbsd-386), const O_NDELAY ideal-int
-pkg syscall (openbsd-386), const O_NOFOLLOW ideal-int
-pkg syscall (openbsd-386), const O_RSYNC ideal-int
-pkg syscall (openbsd-386), const O_SHLOCK ideal-int
-pkg syscall (openbsd-386), const PARENB ideal-int
-pkg syscall (openbsd-386), const PARMRK ideal-int
-pkg syscall (openbsd-386), const PARODD ideal-int
-pkg syscall (openbsd-386), const PENDIN ideal-int
-pkg syscall (openbsd-386), const PF_FLUSH ideal-int
-pkg syscall (openbsd-386), const PRIO_PGRP = 1
-pkg syscall (openbsd-386), const PRIO_PGRP ideal-int
-pkg syscall (openbsd-386), const PRIO_PROCESS = 0
-pkg syscall (openbsd-386), const PRIO_PROCESS ideal-int
-pkg syscall (openbsd-386), const PRIO_USER = 2
-pkg syscall (openbsd-386), const PRIO_USER ideal-int
-pkg syscall (openbsd-386), const PTRACE_CONT ideal-int
-pkg syscall (openbsd-386), const PTRACE_KILL ideal-int
-pkg syscall (openbsd-386), const PTRACE_TRACEME ideal-int
-pkg syscall (openbsd-386), const PT_MASK ideal-int
-pkg syscall (openbsd-386), const RLIMIT_CORE ideal-int
-pkg syscall (openbsd-386), const RLIMIT_CPU ideal-int
-pkg syscall (openbsd-386), const RLIMIT_DATA ideal-int
-pkg syscall (openbsd-386), const RLIMIT_FSIZE ideal-int
-pkg syscall (openbsd-386), const RLIMIT_NOFILE ideal-int
-pkg syscall (openbsd-386), const RLIMIT_STACK ideal-int
-pkg syscall (openbsd-386), const RLIM_INFINITY ideal-int
-pkg syscall (openbsd-386), const RTAX_AUTHOR ideal-int
-pkg syscall (openbsd-386), const RTAX_BRD ideal-int
-pkg syscall (openbsd-386), const RTAX_DST ideal-int
-pkg syscall (openbsd-386), const RTAX_GATEWAY ideal-int
-pkg syscall (openbsd-386), const RTAX_GENMASK ideal-int
-pkg syscall (openbsd-386), const RTAX_IFA ideal-int
-pkg syscall (openbsd-386), const RTAX_IFP ideal-int
-pkg syscall (openbsd-386), const RTAX_LABEL ideal-int
-pkg syscall (openbsd-386), const RTAX_MAX ideal-int
-pkg syscall (openbsd-386), const RTAX_NETMASK ideal-int
-pkg syscall (openbsd-386), const RTAX_SRC ideal-int
-pkg syscall (openbsd-386), const RTAX_SRCMASK ideal-int
-pkg syscall (openbsd-386), const RTA_AUTHOR ideal-int
-pkg syscall (openbsd-386), const RTA_BRD ideal-int
-pkg syscall (openbsd-386), const RTA_DST ideal-int
-pkg syscall (openbsd-386), const RTA_GATEWAY ideal-int
-pkg syscall (openbsd-386), const RTA_GENMASK ideal-int
-pkg syscall (openbsd-386), const RTA_IFA ideal-int
-pkg syscall (openbsd-386), const RTA_IFP ideal-int
-pkg syscall (openbsd-386), const RTA_LABEL ideal-int
-pkg syscall (openbsd-386), const RTA_NETMASK ideal-int
-pkg syscall (openbsd-386), const RTA_SRC ideal-int
-pkg syscall (openbsd-386), const RTA_SRCMASK ideal-int
-pkg syscall (openbsd-386), const RTF_ANNOUNCE ideal-int
-pkg syscall (openbsd-386), const RTF_BLACKHOLE ideal-int
-pkg syscall (openbsd-386), const RTF_CLONED ideal-int
-pkg syscall (openbsd-386), const RTF_CLONING ideal-int
-pkg syscall (openbsd-386), const RTF_DONE ideal-int
-pkg syscall (openbsd-386), const RTF_DYNAMIC ideal-int
-pkg syscall (openbsd-386), const RTF_FMASK ideal-int
-pkg syscall (openbsd-386), const RTF_GATEWAY ideal-int
-pkg syscall (openbsd-386), const RTF_HOST ideal-int
-pkg syscall (openbsd-386), const RTF_LLINFO ideal-int
-pkg syscall (openbsd-386), const RTF_MASK ideal-int
-pkg syscall (openbsd-386), const RTF_MODIFIED ideal-int
-pkg syscall (openbsd-386), const RTF_MPATH ideal-int
-pkg syscall (openbsd-386), const RTF_MPLS ideal-int
-pkg syscall (openbsd-386), const RTF_PERMANENT_ARP ideal-int
-pkg syscall (openbsd-386), const RTF_PROTO1 ideal-int
-pkg syscall (openbsd-386), const RTF_PROTO2 ideal-int
-pkg syscall (openbsd-386), const RTF_PROTO3 ideal-int
-pkg syscall (openbsd-386), const RTF_REJECT ideal-int
-pkg syscall (openbsd-386), const RTF_SOURCE ideal-int
-pkg syscall (openbsd-386), const RTF_STATIC ideal-int
-pkg syscall (openbsd-386), const RTF_TUNNEL ideal-int
-pkg syscall (openbsd-386), const RTF_UP ideal-int
-pkg syscall (openbsd-386), const RTF_USETRAILERS ideal-int
-pkg syscall (openbsd-386), const RTF_XRESOLVE ideal-int
-pkg syscall (openbsd-386), const RTM_ADD ideal-int
-pkg syscall (openbsd-386), const RTM_CHANGE ideal-int
-pkg syscall (openbsd-386), const RTM_DELADDR ideal-int
-pkg syscall (openbsd-386), const RTM_DELETE ideal-int
-pkg syscall (openbsd-386), const RTM_DESYNC ideal-int
-pkg syscall (openbsd-386), const RTM_GET ideal-int
-pkg syscall (openbsd-386), const RTM_IFANNOUNCE ideal-int
-pkg syscall (openbsd-386), const RTM_IFINFO ideal-int
-pkg syscall (openbsd-386), const RTM_LOCK ideal-int
-pkg syscall (openbsd-386), const RTM_LOSING ideal-int
-pkg syscall (openbsd-386), const RTM_MAXSIZE ideal-int
-pkg syscall (openbsd-386), const RTM_MISS ideal-int
-pkg syscall (openbsd-386), const RTM_NEWADDR ideal-int
-pkg syscall (openbsd-386), const RTM_REDIRECT ideal-int
-pkg syscall (openbsd-386), const RTM_RESOLVE ideal-int
-pkg syscall (openbsd-386), const RTM_RTTUNIT ideal-int
-pkg syscall (openbsd-386), const RTM_VERSION ideal-int
-pkg syscall (openbsd-386), const RTV_EXPIRE ideal-int
-pkg syscall (openbsd-386), const RTV_HOPCOUNT ideal-int
-pkg syscall (openbsd-386), const RTV_MTU ideal-int
-pkg syscall (openbsd-386), const RTV_RPIPE ideal-int
-pkg syscall (openbsd-386), const RTV_RTT ideal-int
-pkg syscall (openbsd-386), const RTV_RTTVAR ideal-int
-pkg syscall (openbsd-386), const RTV_SPIPE ideal-int
-pkg syscall (openbsd-386), const RTV_SSTHRESH ideal-int
-pkg syscall (openbsd-386), const RT_TABLEID_MAX ideal-int
-pkg syscall (openbsd-386), const RUSAGE_CHILDREN ideal-int
-pkg syscall (openbsd-386), const RUSAGE_SELF ideal-int
-pkg syscall (openbsd-386), const RUSAGE_THREAD ideal-int
-pkg syscall (openbsd-386), const SCM_RIGHTS ideal-int
-pkg syscall (openbsd-386), const SCM_TIMESTAMP ideal-int
-pkg syscall (openbsd-386), const SIGCHLD Signal
-pkg syscall (openbsd-386), const SIGCONT Signal
-pkg syscall (openbsd-386), const SIGEMT Signal
-pkg syscall (openbsd-386), const SIGINFO Signal
-pkg syscall (openbsd-386), const SIGIO Signal
-pkg syscall (openbsd-386), const SIGIOT Signal
-pkg syscall (openbsd-386), const SIGPROF Signal
-pkg syscall (openbsd-386), const SIGSTOP Signal
-pkg syscall (openbsd-386), const SIGSYS Signal
-pkg syscall (openbsd-386), const SIGTHR Signal
-pkg syscall (openbsd-386), const SIGTSTP Signal
-pkg syscall (openbsd-386), const SIGTTIN Signal
-pkg syscall (openbsd-386), const SIGTTOU Signal
-pkg syscall (openbsd-386), const SIGURG Signal
-pkg syscall (openbsd-386), const SIGUSR1 Signal
-pkg syscall (openbsd-386), const SIGUSR2 Signal
-pkg syscall (openbsd-386), const SIGVTALRM Signal
-pkg syscall (openbsd-386), const SIGWINCH Signal
-pkg syscall (openbsd-386), const SIGXCPU Signal
-pkg syscall (openbsd-386), const SIGXFSZ Signal
-pkg syscall (openbsd-386), const SIOCADDMULTI ideal-int
-pkg syscall (openbsd-386), const SIOCAIFADDR ideal-int
-pkg syscall (openbsd-386), const SIOCAIFGROUP ideal-int
-pkg syscall (openbsd-386), const SIOCALIFADDR ideal-int
-pkg syscall (openbsd-386), const SIOCATMARK ideal-int
-pkg syscall (openbsd-386), const SIOCBRDGADD ideal-int
-pkg syscall (openbsd-386), const SIOCBRDGADDS ideal-int
-pkg syscall (openbsd-386), const SIOCBRDGARL ideal-int
-pkg syscall (openbsd-386), const SIOCBRDGDADDR ideal-int
-pkg syscall (openbsd-386), const SIOCBRDGDEL ideal-int
-pkg syscall (openbsd-386), const SIOCBRDGDELS ideal-int
-pkg syscall (openbsd-386), const SIOCBRDGFLUSH ideal-int
-pkg syscall (openbsd-386), const SIOCBRDGFRL ideal-int
-pkg syscall (openbsd-386), const SIOCBRDGGCACHE ideal-int
-pkg syscall (openbsd-386), const SIOCBRDGGFD ideal-int
-pkg syscall (openbsd-386), const SIOCBRDGGHT ideal-int
-pkg syscall (openbsd-386), const SIOCBRDGGIFFLGS ideal-int
-pkg syscall (openbsd-386), const SIOCBRDGGMA ideal-int
-pkg syscall (openbsd-386), const SIOCBRDGGPARAM ideal-int
-pkg syscall (openbsd-386), const SIOCBRDGGPRI ideal-int
-pkg syscall (openbsd-386), const SIOCBRDGGRL ideal-int
-pkg syscall (openbsd-386), const SIOCBRDGGSIFS ideal-int
-pkg syscall (openbsd-386), const SIOCBRDGGTO ideal-int
-pkg syscall (openbsd-386), const SIOCBRDGIFS ideal-int
-pkg syscall (openbsd-386), const SIOCBRDGRTS ideal-int
-pkg syscall (openbsd-386), const SIOCBRDGSADDR ideal-int
-pkg syscall (openbsd-386), const SIOCBRDGSCACHE ideal-int
-pkg syscall (openbsd-386), const SIOCBRDGSFD ideal-int
-pkg syscall (openbsd-386), const SIOCBRDGSHT ideal-int
-pkg syscall (openbsd-386), const SIOCBRDGSIFCOST ideal-int
-pkg syscall (openbsd-386), const SIOCBRDGSIFFLGS ideal-int
-pkg syscall (openbsd-386), const SIOCBRDGSIFPRIO ideal-int
-pkg syscall (openbsd-386), const SIOCBRDGSMA ideal-int
-pkg syscall (openbsd-386), const SIOCBRDGSPRI ideal-int
-pkg syscall (openbsd-386), const SIOCBRDGSPROTO ideal-int
-pkg syscall (openbsd-386), const SIOCBRDGSTO ideal-int
-pkg syscall (openbsd-386), const SIOCBRDGSTXHC ideal-int
-pkg syscall (openbsd-386), const SIOCDELMULTI ideal-int
-pkg syscall (openbsd-386), const SIOCDIFADDR ideal-int
-pkg syscall (openbsd-386), const SIOCDIFGROUP ideal-int
-pkg syscall (openbsd-386), const SIOCDIFPHYADDR ideal-int
-pkg syscall (openbsd-386), const SIOCDLIFADDR ideal-int
-pkg syscall (openbsd-386), const SIOCGETKALIVE ideal-int
-pkg syscall (openbsd-386), const SIOCGETLABEL ideal-int
-pkg syscall (openbsd-386), const SIOCGETPFLOW ideal-int
-pkg syscall (openbsd-386), const SIOCGETPFSYNC ideal-int
-pkg syscall (openbsd-386), const SIOCGETSGCNT ideal-int
-pkg syscall (openbsd-386), const SIOCGETVIFCNT ideal-int
-pkg syscall (openbsd-386), const SIOCGHIWAT ideal-int
-pkg syscall (openbsd-386), const SIOCGIFADDR ideal-int
-pkg syscall (openbsd-386), const SIOCGIFASYNCMAP ideal-int
-pkg syscall (openbsd-386), const SIOCGIFBRDADDR ideal-int
-pkg syscall (openbsd-386), const SIOCGIFCONF ideal-int
-pkg syscall (openbsd-386), const SIOCGIFDATA ideal-int
-pkg syscall (openbsd-386), const SIOCGIFDESCR ideal-int
-pkg syscall (openbsd-386), const SIOCGIFDSTADDR ideal-int
-pkg syscall (openbsd-386), const SIOCGIFFLAGS ideal-int
-pkg syscall (openbsd-386), const SIOCGIFGATTR ideal-int
-pkg syscall (openbsd-386), const SIOCGIFGENERIC ideal-int
-pkg syscall (openbsd-386), const SIOCGIFGMEMB ideal-int
-pkg syscall (openbsd-386), const SIOCGIFGROUP ideal-int
-pkg syscall (openbsd-386), const SIOCGIFMEDIA ideal-int
-pkg syscall (openbsd-386), const SIOCGIFMETRIC ideal-int
-pkg syscall (openbsd-386), const SIOCGIFMTU ideal-int
-pkg syscall (openbsd-386), const SIOCGIFNETMASK ideal-int
-pkg syscall (openbsd-386), const SIOCGIFPDSTADDR ideal-int
-pkg syscall (openbsd-386), const SIOCGIFPRIORITY ideal-int
-pkg syscall (openbsd-386), const SIOCGIFPSRCADDR ideal-int
-pkg syscall (openbsd-386), const SIOCGIFRDOMAIN ideal-int
-pkg syscall (openbsd-386), const SIOCGIFRTLABEL ideal-int
-pkg syscall (openbsd-386), const SIOCGIFTIMESLOT ideal-int
-pkg syscall (openbsd-386), const SIOCGIFXFLAGS ideal-int
-pkg syscall (openbsd-386), const SIOCGLIFADDR ideal-int
-pkg syscall (openbsd-386), const SIOCGLIFPHYADDR ideal-int
-pkg syscall (openbsd-386), const SIOCGLIFPHYRTABLE ideal-int
-pkg syscall (openbsd-386), const SIOCGLOWAT ideal-int
-pkg syscall (openbsd-386), const SIOCGPGRP ideal-int
-pkg syscall (openbsd-386), const SIOCGVH ideal-int
-pkg syscall (openbsd-386), const SIOCIFCREATE ideal-int
-pkg syscall (openbsd-386), const SIOCIFDESTROY ideal-int
-pkg syscall (openbsd-386), const SIOCIFGCLONERS ideal-int
-pkg syscall (openbsd-386), const SIOCSETKALIVE ideal-int
-pkg syscall (openbsd-386), const SIOCSETLABEL ideal-int
-pkg syscall (openbsd-386), const SIOCSETPFLOW ideal-int
-pkg syscall (openbsd-386), const SIOCSETPFSYNC ideal-int
-pkg syscall (openbsd-386), const SIOCSHIWAT ideal-int
-pkg syscall (openbsd-386), const SIOCSIFADDR ideal-int
-pkg syscall (openbsd-386), const SIOCSIFASYNCMAP ideal-int
-pkg syscall (openbsd-386), const SIOCSIFBRDADDR ideal-int
-pkg syscall (openbsd-386), const SIOCSIFDESCR ideal-int
-pkg syscall (openbsd-386), const SIOCSIFDSTADDR ideal-int
-pkg syscall (openbsd-386), const SIOCSIFFLAGS ideal-int
-pkg syscall (openbsd-386), const SIOCSIFGATTR ideal-int
-pkg syscall (openbsd-386), const SIOCSIFGENERIC ideal-int
-pkg syscall (openbsd-386), const SIOCSIFLLADDR ideal-int
-pkg syscall (openbsd-386), const SIOCSIFMEDIA ideal-int
-pkg syscall (openbsd-386), const SIOCSIFMETRIC ideal-int
-pkg syscall (openbsd-386), const SIOCSIFMTU ideal-int
-pkg syscall (openbsd-386), const SIOCSIFNETMASK ideal-int
-pkg syscall (openbsd-386), const SIOCSIFPHYADDR ideal-int
-pkg syscall (openbsd-386), const SIOCSIFPRIORITY ideal-int
-pkg syscall (openbsd-386), const SIOCSIFRDOMAIN ideal-int
-pkg syscall (openbsd-386), const SIOCSIFRTLABEL ideal-int
-pkg syscall (openbsd-386), const SIOCSIFTIMESLOT ideal-int
-pkg syscall (openbsd-386), const SIOCSIFXFLAGS ideal-int
-pkg syscall (openbsd-386), const SIOCSLIFPHYADDR ideal-int
-pkg syscall (openbsd-386), const SIOCSLIFPHYRTABLE ideal-int
-pkg syscall (openbsd-386), const SIOCSLOWAT ideal-int
-pkg syscall (openbsd-386), const SIOCSPGRP ideal-int
-pkg syscall (openbsd-386), const SIOCSVH ideal-int
-pkg syscall (openbsd-386), const SOCK_RDM ideal-int
-pkg syscall (openbsd-386), const SO_ACCEPTCONN ideal-int
-pkg syscall (openbsd-386), const SO_BINDANY ideal-int
-pkg syscall (openbsd-386), const SO_DEBUG ideal-int
-pkg syscall (openbsd-386), const SO_ERROR ideal-int
-pkg syscall (openbsd-386), const SO_NETPROC ideal-int
-pkg syscall (openbsd-386), const SO_OOBINLINE ideal-int
-pkg syscall (openbsd-386), const SO_PEERCRED ideal-int
-pkg syscall (openbsd-386), const SO_RCVLOWAT ideal-int
-pkg syscall (openbsd-386), const SO_RCVTIMEO ideal-int
-pkg syscall (openbsd-386), const SO_REUSEPORT ideal-int
-pkg syscall (openbsd-386), const SO_RTABLE ideal-int
-pkg syscall (openbsd-386), const SO_SNDLOWAT ideal-int
-pkg syscall (openbsd-386), const SO_SNDTIMEO ideal-int
-pkg syscall (openbsd-386), const SO_SPLICE ideal-int
-pkg syscall (openbsd-386), const SO_TIMESTAMP ideal-int
-pkg syscall (openbsd-386), const SO_TYPE ideal-int
-pkg syscall (openbsd-386), const SO_USELOOPBACK ideal-int
-pkg syscall (openbsd-386), const SYS_ACCEPT ideal-int
-pkg syscall (openbsd-386), const SYS_ACCESS ideal-int
-pkg syscall (openbsd-386), const SYS_ACCT ideal-int
-pkg syscall (openbsd-386), const SYS_ADJFREQ ideal-int
-pkg syscall (openbsd-386), const SYS_ADJTIME ideal-int
-pkg syscall (openbsd-386), const SYS_BIND ideal-int
-pkg syscall (openbsd-386), const SYS_CHDIR ideal-int
-pkg syscall (openbsd-386), const SYS_CHFLAGS ideal-int
-pkg syscall (openbsd-386), const SYS_CHMOD ideal-int
-pkg syscall (openbsd-386), const SYS_CHOWN ideal-int
-pkg syscall (openbsd-386), const SYS_CHROOT ideal-int
-pkg syscall (openbsd-386), const SYS_CLOCK_GETRES ideal-int
-pkg syscall (openbsd-386), const SYS_CLOCK_GETTIME ideal-int
-pkg syscall (openbsd-386), const SYS_CLOCK_SETTIME ideal-int
-pkg syscall (openbsd-386), const SYS_CLOSE ideal-int
-pkg syscall (openbsd-386), const SYS_CLOSEFROM ideal-int
-pkg syscall (openbsd-386), const SYS_CONNECT ideal-int
-pkg syscall (openbsd-386), const SYS_DUP ideal-int
-pkg syscall (openbsd-386), const SYS_DUP2 ideal-int
-pkg syscall (openbsd-386), const SYS_EXECVE ideal-int
-pkg syscall (openbsd-386), const SYS_EXIT ideal-int
-pkg syscall (openbsd-386), const SYS_FACCESSAT ideal-int
-pkg syscall (openbsd-386), const SYS_FCHDIR ideal-int
-pkg syscall (openbsd-386), const SYS_FCHFLAGS ideal-int
-pkg syscall (openbsd-386), const SYS_FCHMOD ideal-int
-pkg syscall (openbsd-386), const SYS_FCHMODAT ideal-int
-pkg syscall (openbsd-386), const SYS_FCHOWN ideal-int
-pkg syscall (openbsd-386), const SYS_FCHOWNAT ideal-int
-pkg syscall (openbsd-386), const SYS_FCNTL ideal-int
-pkg syscall (openbsd-386), const SYS_FHOPEN ideal-int
-pkg syscall (openbsd-386), const SYS_FHSTAT ideal-int
-pkg syscall (openbsd-386), const SYS_FHSTATFS ideal-int
-pkg syscall (openbsd-386), const SYS_FLOCK ideal-int
-pkg syscall (openbsd-386), const SYS_FORK ideal-int
-pkg syscall (openbsd-386), const SYS_FPATHCONF ideal-int
-pkg syscall (openbsd-386), const SYS_FSTAT ideal-int
-pkg syscall (openbsd-386), const SYS_FSTATAT ideal-int
-pkg syscall (openbsd-386), const SYS_FSTATFS ideal-int
-pkg syscall (openbsd-386), const SYS_FSYNC ideal-int
-pkg syscall (openbsd-386), const SYS_FTRUNCATE ideal-int
-pkg syscall (openbsd-386), const SYS_FUTIMENS ideal-int
-pkg syscall (openbsd-386), const SYS_FUTIMES ideal-int
-pkg syscall (openbsd-386), const SYS_GETDIRENTRIES ideal-int
-pkg syscall (openbsd-386), const SYS_GETDTABLECOUNT ideal-int
-pkg syscall (openbsd-386), const SYS_GETEGID ideal-int
-pkg syscall (openbsd-386), const SYS_GETEUID ideal-int
-pkg syscall (openbsd-386), const SYS_GETFH ideal-int
-pkg syscall (openbsd-386), const SYS_GETFSSTAT ideal-int
-pkg syscall (openbsd-386), const SYS_GETGID ideal-int
-pkg syscall (openbsd-386), const SYS_GETGROUPS ideal-int
-pkg syscall (openbsd-386), const SYS_GETITIMER ideal-int
-pkg syscall (openbsd-386), const SYS_GETLOGIN ideal-int
-pkg syscall (openbsd-386), const SYS_GETPEERNAME ideal-int
-pkg syscall (openbsd-386), const SYS_GETPGID ideal-int
-pkg syscall (openbsd-386), const SYS_GETPGRP ideal-int
-pkg syscall (openbsd-386), const SYS_GETPID ideal-int
-pkg syscall (openbsd-386), const SYS_GETPPID ideal-int
-pkg syscall (openbsd-386), const SYS_GETPRIORITY ideal-int
-pkg syscall (openbsd-386), const SYS_GETRESGID ideal-int
-pkg syscall (openbsd-386), const SYS_GETRESUID ideal-int
-pkg syscall (openbsd-386), const SYS_GETRLIMIT ideal-int
-pkg syscall (openbsd-386), const SYS_GETRTABLE ideal-int
-pkg syscall (openbsd-386), const SYS_GETRUSAGE ideal-int
-pkg syscall (openbsd-386), const SYS_GETSID ideal-int
-pkg syscall (openbsd-386), const SYS_GETSOCKNAME ideal-int
-pkg syscall (openbsd-386), const SYS_GETSOCKOPT ideal-int
-pkg syscall (openbsd-386), const SYS_GETTHRID ideal-int
-pkg syscall (openbsd-386), const SYS_GETTIMEOFDAY ideal-int
-pkg syscall (openbsd-386), const SYS_GETUID ideal-int
-pkg syscall (openbsd-386), const SYS_IOCTL ideal-int
-pkg syscall (openbsd-386), const SYS_ISSETUGID ideal-int
-pkg syscall (openbsd-386), const SYS_KEVENT ideal-int
-pkg syscall (openbsd-386), const SYS_KILL ideal-int
-pkg syscall (openbsd-386), const SYS_KQUEUE ideal-int
-pkg syscall (openbsd-386), const SYS_KTRACE ideal-int
-pkg syscall (openbsd-386), const SYS_LCHOWN ideal-int
-pkg syscall (openbsd-386), const SYS_LINK ideal-int
-pkg syscall (openbsd-386), const SYS_LINKAT ideal-int
-pkg syscall (openbsd-386), const SYS_LISTEN ideal-int
-pkg syscall (openbsd-386), const SYS_LSEEK ideal-int
-pkg syscall (openbsd-386), const SYS_LSTAT ideal-int
-pkg syscall (openbsd-386), const SYS_MADVISE ideal-int
-pkg syscall (openbsd-386), const SYS_MINCORE ideal-int
-pkg syscall (openbsd-386), const SYS_MINHERIT ideal-int
-pkg syscall (openbsd-386), const SYS_MKDIR ideal-int
-pkg syscall (openbsd-386), const SYS_MKDIRAT ideal-int
-pkg syscall (openbsd-386), const SYS_MKFIFO ideal-int
-pkg syscall (openbsd-386), const SYS_MKFIFOAT ideal-int
-pkg syscall (openbsd-386), const SYS_MKNOD ideal-int
-pkg syscall (openbsd-386), const SYS_MKNODAT ideal-int
-pkg syscall (openbsd-386), const SYS_MLOCK ideal-int
-pkg syscall (openbsd-386), const SYS_MLOCKALL ideal-int
-pkg syscall (openbsd-386), const SYS_MMAP ideal-int
-pkg syscall (openbsd-386), const SYS_MOUNT ideal-int
-pkg syscall (openbsd-386), const SYS_MPROTECT ideal-int
-pkg syscall (openbsd-386), const SYS_MQUERY ideal-int
-pkg syscall (openbsd-386), const SYS_MSGCTL ideal-int
-pkg syscall (openbsd-386), const SYS_MSGGET ideal-int
-pkg syscall (openbsd-386), const SYS_MSGRCV ideal-int
-pkg syscall (openbsd-386), const SYS_MSGSND ideal-int
-pkg syscall (openbsd-386), const SYS_MSYNC ideal-int
-pkg syscall (openbsd-386), const SYS_MUNLOCK ideal-int
-pkg syscall (openbsd-386), const SYS_MUNLOCKALL ideal-int
-pkg syscall (openbsd-386), const SYS_MUNMAP ideal-int
-pkg syscall (openbsd-386), const SYS_NANOSLEEP ideal-int
-pkg syscall (openbsd-386), const SYS_NFSSVC ideal-int
-pkg syscall (openbsd-386), const SYS_OBREAK ideal-int
-pkg syscall (openbsd-386), const SYS_OPEN ideal-int
-pkg syscall (openbsd-386), const SYS_OPENAT ideal-int
-pkg syscall (openbsd-386), const SYS_PATHCONF ideal-int
-pkg syscall (openbsd-386), const SYS_PIPE ideal-int
-pkg syscall (openbsd-386), const SYS_POLL ideal-int
-pkg syscall (openbsd-386), const SYS_PREAD ideal-int
-pkg syscall (openbsd-386), const SYS_PREADV ideal-int
-pkg syscall (openbsd-386), const SYS_PROFIL ideal-int
-pkg syscall (openbsd-386), const SYS_PTRACE ideal-int
-pkg syscall (openbsd-386), const SYS_PWRITE ideal-int
-pkg syscall (openbsd-386), const SYS_PWRITEV ideal-int
-pkg syscall (openbsd-386), const SYS_QUOTACTL ideal-int
-pkg syscall (openbsd-386), const SYS_READ ideal-int
-pkg syscall (openbsd-386), const SYS_READLINK ideal-int
-pkg syscall (openbsd-386), const SYS_READLINKAT ideal-int
-pkg syscall (openbsd-386), const SYS_READV ideal-int
-pkg syscall (openbsd-386), const SYS_REBOOT ideal-int
-pkg syscall (openbsd-386), const SYS_RECVFROM ideal-int
-pkg syscall (openbsd-386), const SYS_RECVMSG ideal-int
-pkg syscall (openbsd-386), const SYS_RENAME ideal-int
-pkg syscall (openbsd-386), const SYS_RENAMEAT ideal-int
-pkg syscall (openbsd-386), const SYS_REVOKE ideal-int
-pkg syscall (openbsd-386), const SYS_RMDIR ideal-int
-pkg syscall (openbsd-386), const SYS_SCHED_YIELD ideal-int
-pkg syscall (openbsd-386), const SYS_SELECT ideal-int
-pkg syscall (openbsd-386), const SYS_SEMGET ideal-int
-pkg syscall (openbsd-386), const SYS_SEMOP ideal-int
-pkg syscall (openbsd-386), const SYS_SENDMSG ideal-int
-pkg syscall (openbsd-386), const SYS_SENDTO ideal-int
-pkg syscall (openbsd-386), const SYS_SETEGID ideal-int
-pkg syscall (openbsd-386), const SYS_SETEUID ideal-int
-pkg syscall (openbsd-386), const SYS_SETGID ideal-int
-pkg syscall (openbsd-386), const SYS_SETGROUPS ideal-int
-pkg syscall (openbsd-386), const SYS_SETITIMER ideal-int
-pkg syscall (openbsd-386), const SYS_SETLOGIN ideal-int
-pkg syscall (openbsd-386), const SYS_SETPGID ideal-int
-pkg syscall (openbsd-386), const SYS_SETPRIORITY ideal-int
-pkg syscall (openbsd-386), const SYS_SETREGID ideal-int
-pkg syscall (openbsd-386), const SYS_SETRESGID ideal-int
-pkg syscall (openbsd-386), const SYS_SETRESUID ideal-int
-pkg syscall (openbsd-386), const SYS_SETREUID ideal-int
-pkg syscall (openbsd-386), const SYS_SETRLIMIT ideal-int
-pkg syscall (openbsd-386), const SYS_SETRTABLE ideal-int
-pkg syscall (openbsd-386), const SYS_SETSID ideal-int
-pkg syscall (openbsd-386), const SYS_SETSOCKOPT ideal-int
-pkg syscall (openbsd-386), const SYS_SETTIMEOFDAY ideal-int
-pkg syscall (openbsd-386), const SYS_SETUID ideal-int
-pkg syscall (openbsd-386), const SYS_SHMAT ideal-int
-pkg syscall (openbsd-386), const SYS_SHMCTL ideal-int
-pkg syscall (openbsd-386), const SYS_SHMDT ideal-int
-pkg syscall (openbsd-386), const SYS_SHMGET ideal-int
-pkg syscall (openbsd-386), const SYS_SHUTDOWN ideal-int
-pkg syscall (openbsd-386), const SYS_SIGACTION ideal-int
-pkg syscall (openbsd-386), const SYS_SIGALTSTACK ideal-int
-pkg syscall (openbsd-386), const SYS_SIGPENDING ideal-int
-pkg syscall (openbsd-386), const SYS_SIGPROCMASK ideal-int
-pkg syscall (openbsd-386), const SYS_SIGRETURN ideal-int
-pkg syscall (openbsd-386), const SYS_SIGSUSPEND ideal-int
-pkg syscall (openbsd-386), const SYS_SOCKET ideal-int
-pkg syscall (openbsd-386), const SYS_SOCKETPAIR ideal-int
-pkg syscall (openbsd-386), const SYS_STAT ideal-int
-pkg syscall (openbsd-386), const SYS_STATFS ideal-int
-pkg syscall (openbsd-386), const SYS_SWAPCTL ideal-int
-pkg syscall (openbsd-386), const SYS_SYMLINK ideal-int
-pkg syscall (openbsd-386), const SYS_SYMLINKAT ideal-int
-pkg syscall (openbsd-386), const SYS_SYNC ideal-int
-pkg syscall (openbsd-386), const SYS_SYSARCH ideal-int
-pkg syscall (openbsd-386), const SYS_TRUNCATE ideal-int
-pkg syscall (openbsd-386), const SYS_UMASK ideal-int
-pkg syscall (openbsd-386), const SYS_UNLINK ideal-int
-pkg syscall (openbsd-386), const SYS_UNLINKAT ideal-int
-pkg syscall (openbsd-386), const SYS_UNMOUNT ideal-int
-pkg syscall (openbsd-386), const SYS_UTIMENSAT ideal-int
-pkg syscall (openbsd-386), const SYS_UTIMES ideal-int
-pkg syscall (openbsd-386), const SYS_VFORK ideal-int
-pkg syscall (openbsd-386), const SYS_WAIT4 ideal-int
-pkg syscall (openbsd-386), const SYS_WRITE ideal-int
-pkg syscall (openbsd-386), const SYS_WRITEV ideal-int
-pkg syscall (openbsd-386), const SYS___GETCWD ideal-int
-pkg syscall (openbsd-386), const SYS___GET_TCB ideal-int
-pkg syscall (openbsd-386), const SYS___SEMCTL ideal-int
-pkg syscall (openbsd-386), const SYS___SET_TCB ideal-int
-pkg syscall (openbsd-386), const SYS___SYSCTL ideal-int
-pkg syscall (openbsd-386), const SYS___TFORK ideal-int
-pkg syscall (openbsd-386), const SYS___THREXIT ideal-int
-pkg syscall (openbsd-386), const SYS___THRSIGDIVERT ideal-int
-pkg syscall (openbsd-386), const SYS___THRSLEEP ideal-int
-pkg syscall (openbsd-386), const SYS___THRWAKEUP ideal-int
-pkg syscall (openbsd-386), const SizeofBpfHdr ideal-int
-pkg syscall (openbsd-386), const SizeofBpfInsn ideal-int
-pkg syscall (openbsd-386), const SizeofBpfProgram ideal-int
-pkg syscall (openbsd-386), const SizeofBpfStat ideal-int
-pkg syscall (openbsd-386), const SizeofBpfVersion ideal-int
-pkg syscall (openbsd-386), const SizeofCmsghdr ideal-int
-pkg syscall (openbsd-386), const SizeofICMPv6Filter = 32
-pkg syscall (openbsd-386), const SizeofICMPv6Filter ideal-int
-pkg syscall (openbsd-386), const SizeofIPMreq ideal-int
-pkg syscall (openbsd-386), const SizeofIPv6MTUInfo = 32
-pkg syscall (openbsd-386), const SizeofIPv6MTUInfo ideal-int
-pkg syscall (openbsd-386), const SizeofIPv6Mreq ideal-int
-pkg syscall (openbsd-386), const SizeofIfAnnounceMsghdr ideal-int
-pkg syscall (openbsd-386), const SizeofIfData ideal-int
-pkg syscall (openbsd-386), const SizeofIfMsghdr ideal-int
-pkg syscall (openbsd-386), const SizeofIfaMsghdr ideal-int
-pkg syscall (openbsd-386), const SizeofInet6Pktinfo ideal-int
-pkg syscall (openbsd-386), const SizeofLinger ideal-int
-pkg syscall (openbsd-386), const SizeofMsghdr ideal-int
-pkg syscall (openbsd-386), const SizeofRtMetrics ideal-int
-pkg syscall (openbsd-386), const SizeofRtMsghdr ideal-int
-pkg syscall (openbsd-386), const SizeofSockaddrAny ideal-int
-pkg syscall (openbsd-386), const SizeofSockaddrDatalink ideal-int
-pkg syscall (openbsd-386), const SizeofSockaddrInet4 ideal-int
-pkg syscall (openbsd-386), const SizeofSockaddrInet6 ideal-int
-pkg syscall (openbsd-386), const SizeofSockaddrUnix ideal-int
-pkg syscall (openbsd-386), const TCIFLUSH ideal-int
-pkg syscall (openbsd-386), const TCIOFLUSH ideal-int
-pkg syscall (openbsd-386), const TCOFLUSH ideal-int
-pkg syscall (openbsd-386), const TCP_MAXBURST ideal-int
-pkg syscall (openbsd-386), const TCP_MAXSEG ideal-int
-pkg syscall (openbsd-386), const TCP_MAXWIN ideal-int
-pkg syscall (openbsd-386), const TCP_MAX_SACK ideal-int
-pkg syscall (openbsd-386), const TCP_MAX_WINSHIFT ideal-int
-pkg syscall (openbsd-386), const TCP_MD5SIG ideal-int
-pkg syscall (openbsd-386), const TCP_MSS ideal-int
-pkg syscall (openbsd-386), const TCP_NSTATES ideal-int
-pkg syscall (openbsd-386), const TCP_SACK_ENABLE ideal-int
-pkg syscall (openbsd-386), const TCSAFLUSH ideal-int
-pkg syscall (openbsd-386), const TIOCCBRK ideal-int
-pkg syscall (openbsd-386), const TIOCCDTR ideal-int
-pkg syscall (openbsd-386), const TIOCCONS ideal-int
-pkg syscall (openbsd-386), const TIOCDRAIN ideal-int
-pkg syscall (openbsd-386), const TIOCEXCL ideal-int
-pkg syscall (openbsd-386), const TIOCEXT ideal-int
-pkg syscall (openbsd-386), const TIOCFLAG_CLOCAL ideal-int
-pkg syscall (openbsd-386), const TIOCFLAG_CRTSCTS ideal-int
-pkg syscall (openbsd-386), const TIOCFLAG_MDMBUF ideal-int
-pkg syscall (openbsd-386), const TIOCFLAG_PPS ideal-int
-pkg syscall (openbsd-386), const TIOCFLAG_SOFTCAR ideal-int
-pkg syscall (openbsd-386), const TIOCFLUSH ideal-int
-pkg syscall (openbsd-386), const TIOCGETA ideal-int
-pkg syscall (openbsd-386), const TIOCGETD ideal-int
-pkg syscall (openbsd-386), const TIOCGFLAGS ideal-int
-pkg syscall (openbsd-386), const TIOCGPGRP ideal-int
-pkg syscall (openbsd-386), const TIOCGTSTAMP ideal-int
-pkg syscall (openbsd-386), const TIOCGWINSZ ideal-int
-pkg syscall (openbsd-386), const TIOCMBIC ideal-int
-pkg syscall (openbsd-386), const TIOCMBIS ideal-int
-pkg syscall (openbsd-386), const TIOCMGET ideal-int
-pkg syscall (openbsd-386), const TIOCMODG ideal-int
-pkg syscall (openbsd-386), const TIOCMODS ideal-int
-pkg syscall (openbsd-386), const TIOCMSET ideal-int
-pkg syscall (openbsd-386), const TIOCM_CAR ideal-int
-pkg syscall (openbsd-386), const TIOCM_CD ideal-int
-pkg syscall (openbsd-386), const TIOCM_CTS ideal-int
-pkg syscall (openbsd-386), const TIOCM_DSR ideal-int
-pkg syscall (openbsd-386), const TIOCM_DTR ideal-int
-pkg syscall (openbsd-386), const TIOCM_LE ideal-int
-pkg syscall (openbsd-386), const TIOCM_RI ideal-int
-pkg syscall (openbsd-386), const TIOCM_RNG ideal-int
-pkg syscall (openbsd-386), const TIOCM_RTS ideal-int
-pkg syscall (openbsd-386), const TIOCM_SR ideal-int
-pkg syscall (openbsd-386), const TIOCM_ST ideal-int
-pkg syscall (openbsd-386), const TIOCNOTTY ideal-int
-pkg syscall (openbsd-386), const TIOCNXCL ideal-int
-pkg syscall (openbsd-386), const TIOCOUTQ ideal-int
-pkg syscall (openbsd-386), const TIOCPKT ideal-int
-pkg syscall (openbsd-386), const TIOCPKT_DATA ideal-int
-pkg syscall (openbsd-386), const TIOCPKT_DOSTOP ideal-int
-pkg syscall (openbsd-386), const TIOCPKT_FLUSHREAD ideal-int
-pkg syscall (openbsd-386), const TIOCPKT_FLUSHWRITE ideal-int
-pkg syscall (openbsd-386), const TIOCPKT_IOCTL ideal-int
-pkg syscall (openbsd-386), const TIOCPKT_NOSTOP ideal-int
-pkg syscall (openbsd-386), const TIOCPKT_START ideal-int
-pkg syscall (openbsd-386), const TIOCPKT_STOP ideal-int
-pkg syscall (openbsd-386), const TIOCREMOTE ideal-int
-pkg syscall (openbsd-386), const TIOCSBRK ideal-int
-pkg syscall (openbsd-386), const TIOCSCTTY ideal-int
-pkg syscall (openbsd-386), const TIOCSDTR ideal-int
-pkg syscall (openbsd-386), const TIOCSETA ideal-int
-pkg syscall (openbsd-386), const TIOCSETAF ideal-int
-pkg syscall (openbsd-386), const TIOCSETAW ideal-int
-pkg syscall (openbsd-386), const TIOCSETD ideal-int
-pkg syscall (openbsd-386), const TIOCSFLAGS ideal-int
-pkg syscall (openbsd-386), const TIOCSIG ideal-int
-pkg syscall (openbsd-386), const TIOCSPGRP ideal-int
-pkg syscall (openbsd-386), const TIOCSTART ideal-int
-pkg syscall (openbsd-386), const TIOCSTAT ideal-int
-pkg syscall (openbsd-386), const TIOCSTI ideal-int
-pkg syscall (openbsd-386), const TIOCSTOP ideal-int
-pkg syscall (openbsd-386), const TIOCSTSTAMP ideal-int
-pkg syscall (openbsd-386), const TIOCSWINSZ ideal-int
-pkg syscall (openbsd-386), const TIOCUCNTL ideal-int
-pkg syscall (openbsd-386), const TOSTOP ideal-int
-pkg syscall (openbsd-386), const VDISCARD ideal-int
-pkg syscall (openbsd-386), const VDSUSP ideal-int
-pkg syscall (openbsd-386), const VEOF ideal-int
-pkg syscall (openbsd-386), const VEOL ideal-int
-pkg syscall (openbsd-386), const VEOL2 ideal-int
-pkg syscall (openbsd-386), const VERASE ideal-int
-pkg syscall (openbsd-386), const VINTR ideal-int
-pkg syscall (openbsd-386), const VKILL ideal-int
-pkg syscall (openbsd-386), const VLNEXT ideal-int
-pkg syscall (openbsd-386), const VMIN ideal-int
-pkg syscall (openbsd-386), const VQUIT ideal-int
-pkg syscall (openbsd-386), const VREPRINT ideal-int
-pkg syscall (openbsd-386), const VSTART ideal-int
-pkg syscall (openbsd-386), const VSTATUS ideal-int
-pkg syscall (openbsd-386), const VSTOP ideal-int
-pkg syscall (openbsd-386), const VSUSP ideal-int
-pkg syscall (openbsd-386), const VTIME ideal-int
-pkg syscall (openbsd-386), const VWERASE ideal-int
-pkg syscall (openbsd-386), const WALTSIG ideal-int
-pkg syscall (openbsd-386), const WCONTINUED ideal-int
-pkg syscall (openbsd-386), const WCOREFLAG ideal-int
-pkg syscall (openbsd-386), const WNOHANG ideal-int
-pkg syscall (openbsd-386), const WSTOPPED ideal-int
-pkg syscall (openbsd-386), const WUNTRACED ideal-int
-pkg syscall (openbsd-386), func Accept(int) (int, Sockaddr, error)
-pkg syscall (openbsd-386), func Access(string, uint32) error
-pkg syscall (openbsd-386), func Adjtime(*Timeval, *Timeval) error
-pkg syscall (openbsd-386), func Bind(int, Sockaddr) error
-pkg syscall (openbsd-386), func BpfBuflen(int) (int, error)
-pkg syscall (openbsd-386), func BpfDatalink(int) (int, error)
-pkg syscall (openbsd-386), func BpfHeadercmpl(int) (int, error)
-pkg syscall (openbsd-386), func BpfInterface(int, string) (string, error)
-pkg syscall (openbsd-386), func BpfJump(int, int, int, int) *BpfInsn
-pkg syscall (openbsd-386), func BpfStats(int) (*BpfStat, error)
-pkg syscall (openbsd-386), func BpfStmt(int, int) *BpfInsn
-pkg syscall (openbsd-386), func BpfTimeout(int) (*Timeval, error)
-pkg syscall (openbsd-386), func CheckBpfVersion(int) error
-pkg syscall (openbsd-386), func Chflags(string, int) error
-pkg syscall (openbsd-386), func Chroot(string) error
-pkg syscall (openbsd-386), func Close(int) error
-pkg syscall (openbsd-386), func CloseOnExec(int)
-pkg syscall (openbsd-386), func CmsgLen(int) int
-pkg syscall (openbsd-386), func CmsgSpace(int) int
-pkg syscall (openbsd-386), func Connect(int, Sockaddr) error
-pkg syscall (openbsd-386), func Dup(int) (int, error)
-pkg syscall (openbsd-386), func Dup2(int, int) error
-pkg syscall (openbsd-386), func Fchdir(int) error
-pkg syscall (openbsd-386), func Fchflags(int, int) error
-pkg syscall (openbsd-386), func Fchmod(int, uint32) error
-pkg syscall (openbsd-386), func Fchown(int, int, int) error
-pkg syscall (openbsd-386), func Flock(int, int) error
-pkg syscall (openbsd-386), func FlushBpf(int) error
-pkg syscall (openbsd-386), func ForkExec(string, []string, *ProcAttr) (int, error)
-pkg syscall (openbsd-386), func Fpathconf(int, int) (int, error)
-pkg syscall (openbsd-386), func Fstat(int, *Stat_t) error
-pkg syscall (openbsd-386), func Fstatfs(int, *Statfs_t) error
-pkg syscall (openbsd-386), func Fsync(int) error
-pkg syscall (openbsd-386), func Ftruncate(int, int64) error
-pkg syscall (openbsd-386), func Futimes(int, []Timeval) error
-pkg syscall (openbsd-386), func Getdirentries(int, []uint8, *uintptr) (int, error)
-pkg syscall (openbsd-386), func Getfsstat([]Statfs_t, int) (int, error)
-pkg syscall (openbsd-386), func Getpeername(int) (Sockaddr, error)
-pkg syscall (openbsd-386), func Getpgid(int) (int, error)
-pkg syscall (openbsd-386), func Getpgrp() int
-pkg syscall (openbsd-386), func Getpriority(int, int) (int, error)
-pkg syscall (openbsd-386), func Getrlimit(int, *Rlimit) error
-pkg syscall (openbsd-386), func Getrusage(int, *Rusage) error
-pkg syscall (openbsd-386), func Getsid(int) (int, error)
-pkg syscall (openbsd-386), func Getsockname(int) (Sockaddr, error)
-pkg syscall (openbsd-386), func GetsockoptByte(int, int, int) (uint8, error)
-pkg syscall (openbsd-386), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
-pkg syscall (openbsd-386), func GetsockoptIPMreq(int, int, int) (*IPMreq, error)
-pkg syscall (openbsd-386), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
-pkg syscall (openbsd-386), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error)
-pkg syscall (openbsd-386), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error)
-pkg syscall (openbsd-386), func GetsockoptInt(int, int, int) (int, error)
-pkg syscall (openbsd-386), func Issetugid() bool
-pkg syscall (openbsd-386), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error)
-pkg syscall (openbsd-386), func Kill(int, Signal) error
-pkg syscall (openbsd-386), func Kqueue() (int, error)
-pkg syscall (openbsd-386), func Listen(int, int) error
-pkg syscall (openbsd-386), func Lstat(string, *Stat_t) error
-pkg syscall (openbsd-386), func Mkfifo(string, uint32) error
-pkg syscall (openbsd-386), func Mknod(string, uint32, int) error
-pkg syscall (openbsd-386), func Mmap(int, int64, int, int, int) ([]uint8, error)
-pkg syscall (openbsd-386), func Munmap([]uint8) error
-pkg syscall (openbsd-386), func Nanosleep(*Timespec, *Timespec) error
-pkg syscall (openbsd-386), func Open(string, int, uint32) (int, error)
-pkg syscall (openbsd-386), func ParseDirent([]uint8, int, []string) (int, int, []string)
-pkg syscall (openbsd-386), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error)
-pkg syscall (openbsd-386), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error)
-pkg syscall (openbsd-386), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error)
-pkg syscall (openbsd-386), func ParseUnixRights(*SocketControlMessage) ([]int, error)
-pkg syscall (openbsd-386), func Pathconf(string, int) (int, error)
-pkg syscall (openbsd-386), func Pipe([]int) error
-pkg syscall (openbsd-386), func Pread(int, []uint8, int64) (int, error)
-pkg syscall (openbsd-386), func Pwrite(int, []uint8, int64) (int, error)
-pkg syscall (openbsd-386), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (openbsd-386), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (openbsd-386), func Read(int, []uint8) (int, error)
-pkg syscall (openbsd-386), func ReadDirent(int, []uint8) (int, error)
-pkg syscall (openbsd-386), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
-pkg syscall (openbsd-386), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
-pkg syscall (openbsd-386), func Revoke(string) error
-pkg syscall (openbsd-386), func RouteRIB(int, int) ([]uint8, error)
-pkg syscall (openbsd-386), func Seek(int, int64, int) (int64, error)
-pkg syscall (openbsd-386), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error
-pkg syscall (openbsd-386), func Sendfile(int, int, *int64, int) (int, error)
-pkg syscall (openbsd-386), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
-pkg syscall (openbsd-386), func Sendto(int, []uint8, int, Sockaddr) error
-pkg syscall (openbsd-386), func SetBpf(int, []BpfInsn) error
-pkg syscall (openbsd-386), func SetBpfBuflen(int, int) (int, error)
-pkg syscall (openbsd-386), func SetBpfDatalink(int, int) (int, error)
-pkg syscall (openbsd-386), func SetBpfHeadercmpl(int, int) error
-pkg syscall (openbsd-386), func SetBpfImmediate(int, int) error
-pkg syscall (openbsd-386), func SetBpfInterface(int, string) error
-pkg syscall (openbsd-386), func SetBpfPromisc(int, int) error
-pkg syscall (openbsd-386), func SetBpfTimeout(int, *Timeval) error
-pkg syscall (openbsd-386), func SetKevent(*Kevent_t, int, int, int)
-pkg syscall (openbsd-386), func SetNonblock(int, bool) error
-pkg syscall (openbsd-386), func Setegid(int) error
-pkg syscall (openbsd-386), func Seteuid(int) error
-pkg syscall (openbsd-386), func Setgid(int) error
-pkg syscall (openbsd-386), func Setgroups([]int) error
-pkg syscall (openbsd-386), func Setlogin(string) error
-pkg syscall (openbsd-386), func Setpgid(int, int) error
-pkg syscall (openbsd-386), func Setpriority(int, int, int) error
-pkg syscall (openbsd-386), func Setregid(int, int) error
-pkg syscall (openbsd-386), func Setreuid(int, int) error
-pkg syscall (openbsd-386), func Setrlimit(int, *Rlimit) error
-pkg syscall (openbsd-386), func Setsid() (int, error)
-pkg syscall (openbsd-386), func SetsockoptByte(int, int, int, uint8) error
-pkg syscall (openbsd-386), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
-pkg syscall (openbsd-386), func SetsockoptIPMreq(int, int, int, *IPMreq) error
-pkg syscall (openbsd-386), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error
-pkg syscall (openbsd-386), func SetsockoptInet4Addr(int, int, int, [4]uint8) error
-pkg syscall (openbsd-386), func SetsockoptInt(int, int, int, int) error
-pkg syscall (openbsd-386), func SetsockoptLinger(int, int, int, *Linger) error
-pkg syscall (openbsd-386), func SetsockoptString(int, int, int, string) error
-pkg syscall (openbsd-386), func SetsockoptTimeval(int, int, int, *Timeval) error
-pkg syscall (openbsd-386), func Settimeofday(*Timeval) error
-pkg syscall (openbsd-386), func Setuid(int) error
-pkg syscall (openbsd-386), func Shutdown(int, int) error
-pkg syscall (openbsd-386), func SlicePtrFromStrings([]string) ([]*uint8, error)
-pkg syscall (openbsd-386), func Socket(int, int, int) (int, error)
-pkg syscall (openbsd-386), func Socketpair(int, int, int) ([2]int, error)
-pkg syscall (openbsd-386), func Stat(string, *Stat_t) error
-pkg syscall (openbsd-386), func Statfs(string, *Statfs_t) error
-pkg syscall (openbsd-386), func StringSlicePtr([]string) []*uint8
-pkg syscall (openbsd-386), func Sync() error
-pkg syscall (openbsd-386), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (openbsd-386), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (openbsd-386), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (openbsd-386), func Sysctl(string) (string, error)
-pkg syscall (openbsd-386), func SysctlUint32(string) (uint32, error)
-pkg syscall (openbsd-386), func TimevalToNsec(Timeval) int64
-pkg syscall (openbsd-386), func Truncate(string, int64) error
-pkg syscall (openbsd-386), func Umask(int) int
-pkg syscall (openbsd-386), func UnixRights(...int) []uint8
-pkg syscall (openbsd-386), func Unmount(string, int) error
-pkg syscall (openbsd-386), func Wait4(int, *WaitStatus, int, *Rusage) (int, error)
-pkg syscall (openbsd-386), func Write(int, []uint8) (int, error)
-pkg syscall (openbsd-386), method (*Cmsghdr) SetLen(int)
-pkg syscall (openbsd-386), method (*Iovec) SetLen(int)
-pkg syscall (openbsd-386), method (*Msghdr) SetControllen(int)
-pkg syscall (openbsd-386), type BpfHdr struct
-pkg syscall (openbsd-386), type BpfHdr struct, Caplen uint32
-pkg syscall (openbsd-386), type BpfHdr struct, Datalen uint32
-pkg syscall (openbsd-386), type BpfHdr struct, Hdrlen uint16
-pkg syscall (openbsd-386), type BpfHdr struct, Pad_cgo_0 [2]uint8
-pkg syscall (openbsd-386), type BpfHdr struct, Tstamp BpfTimeval
-pkg syscall (openbsd-386), type BpfInsn struct
-pkg syscall (openbsd-386), type BpfInsn struct, Code uint16
-pkg syscall (openbsd-386), type BpfInsn struct, Jf uint8
-pkg syscall (openbsd-386), type BpfInsn struct, Jt uint8
-pkg syscall (openbsd-386), type BpfInsn struct, K uint32
-pkg syscall (openbsd-386), type BpfProgram struct
-pkg syscall (openbsd-386), type BpfProgram struct, Insns *BpfInsn
-pkg syscall (openbsd-386), type BpfProgram struct, Len uint32
-pkg syscall (openbsd-386), type BpfStat struct
-pkg syscall (openbsd-386), type BpfStat struct, Drop uint32
-pkg syscall (openbsd-386), type BpfStat struct, Recv uint32
-pkg syscall (openbsd-386), type BpfTimeval struct
-pkg syscall (openbsd-386), type BpfTimeval struct, Sec uint32
-pkg syscall (openbsd-386), type BpfTimeval struct, Usec uint32
-pkg syscall (openbsd-386), type BpfVersion struct
-pkg syscall (openbsd-386), type BpfVersion struct, Major uint16
-pkg syscall (openbsd-386), type BpfVersion struct, Minor uint16
-pkg syscall (openbsd-386), type Cmsghdr struct
-pkg syscall (openbsd-386), type Cmsghdr struct, Len uint32
-pkg syscall (openbsd-386), type Cmsghdr struct, Level int32
-pkg syscall (openbsd-386), type Cmsghdr struct, Type int32
-pkg syscall (openbsd-386), type Credential struct
-pkg syscall (openbsd-386), type Credential struct, Gid uint32
-pkg syscall (openbsd-386), type Credential struct, Groups []uint32
-pkg syscall (openbsd-386), type Credential struct, Uid uint32
-pkg syscall (openbsd-386), type Dirent struct
-pkg syscall (openbsd-386), type Dirent struct, Fileno uint32
-pkg syscall (openbsd-386), type Dirent struct, Name [256]int8
-pkg syscall (openbsd-386), type Dirent struct, Namlen uint8
-pkg syscall (openbsd-386), type Dirent struct, Reclen uint16
-pkg syscall (openbsd-386), type Dirent struct, Type uint8
-pkg syscall (openbsd-386), type FdSet struct
-pkg syscall (openbsd-386), type FdSet struct, Bits [32]int32
-pkg syscall (openbsd-386), type Flock_t struct
-pkg syscall (openbsd-386), type Flock_t struct, Len int64
-pkg syscall (openbsd-386), type Flock_t struct, Pid int32
-pkg syscall (openbsd-386), type Flock_t struct, Start int64
-pkg syscall (openbsd-386), type Flock_t struct, Type int16
-pkg syscall (openbsd-386), type Flock_t struct, Whence int16
-pkg syscall (openbsd-386), type Fsid struct
-pkg syscall (openbsd-386), type Fsid struct, Val [2]int32
-pkg syscall (openbsd-386), type ICMPv6Filter struct
-pkg syscall (openbsd-386), type ICMPv6Filter struct, Filt [8]uint32
-pkg syscall (openbsd-386), type IPv6MTUInfo struct
-pkg syscall (openbsd-386), type IPv6MTUInfo struct, Addr RawSockaddrInet6
-pkg syscall (openbsd-386), type IPv6MTUInfo struct, Mtu uint32
-pkg syscall (openbsd-386), type IfAnnounceMsghdr struct
-pkg syscall (openbsd-386), type IfAnnounceMsghdr struct, Hdrlen uint16
-pkg syscall (openbsd-386), type IfAnnounceMsghdr struct, Index uint16
-pkg syscall (openbsd-386), type IfAnnounceMsghdr struct, Msglen uint16
-pkg syscall (openbsd-386), type IfAnnounceMsghdr struct, Name [16]int8
-pkg syscall (openbsd-386), type IfAnnounceMsghdr struct, Type uint8
-pkg syscall (openbsd-386), type IfAnnounceMsghdr struct, Version uint8
-pkg syscall (openbsd-386), type IfAnnounceMsghdr struct, What uint16
-pkg syscall (openbsd-386), type IfData struct
-pkg syscall (openbsd-386), type IfData struct, Addrlen uint8
-pkg syscall (openbsd-386), type IfData struct, Baudrate uint64
-pkg syscall (openbsd-386), type IfData struct, Capabilities uint32
-pkg syscall (openbsd-386), type IfData struct, Collisions uint64
-pkg syscall (openbsd-386), type IfData struct, Hdrlen uint8
-pkg syscall (openbsd-386), type IfData struct, Ibytes uint64
-pkg syscall (openbsd-386), type IfData struct, Ierrors uint64
-pkg syscall (openbsd-386), type IfData struct, Imcasts uint64
-pkg syscall (openbsd-386), type IfData struct, Ipackets uint64
-pkg syscall (openbsd-386), type IfData struct, Iqdrops uint64
-pkg syscall (openbsd-386), type IfData struct, Lastchange Timeval
-pkg syscall (openbsd-386), type IfData struct, Link_state uint8
-pkg syscall (openbsd-386), type IfData struct, Mclpool [7]Mclpool
-pkg syscall (openbsd-386), type IfData struct, Metric uint32
-pkg syscall (openbsd-386), type IfData struct, Mtu uint32
-pkg syscall (openbsd-386), type IfData struct, Noproto uint64
-pkg syscall (openbsd-386), type IfData struct, Obytes uint64
-pkg syscall (openbsd-386), type IfData struct, Oerrors uint64
-pkg syscall (openbsd-386), type IfData struct, Omcasts uint64
-pkg syscall (openbsd-386), type IfData struct, Opackets uint64
-pkg syscall (openbsd-386), type IfData struct, Pad uint32
-pkg syscall (openbsd-386), type IfData struct, Type uint8
-pkg syscall (openbsd-386), type IfMsghdr struct
-pkg syscall (openbsd-386), type IfMsghdr struct, Addrs int32
-pkg syscall (openbsd-386), type IfMsghdr struct, Data IfData
-pkg syscall (openbsd-386), type IfMsghdr struct, Flags int32
-pkg syscall (openbsd-386), type IfMsghdr struct, Hdrlen uint16
-pkg syscall (openbsd-386), type IfMsghdr struct, Index uint16
-pkg syscall (openbsd-386), type IfMsghdr struct, Msglen uint16
-pkg syscall (openbsd-386), type IfMsghdr struct, Pad1 uint8
-pkg syscall (openbsd-386), type IfMsghdr struct, Pad2 uint8
-pkg syscall (openbsd-386), type IfMsghdr struct, Tableid uint16
-pkg syscall (openbsd-386), type IfMsghdr struct, Type uint8
-pkg syscall (openbsd-386), type IfMsghdr struct, Version uint8
-pkg syscall (openbsd-386), type IfMsghdr struct, Xflags int32
-pkg syscall (openbsd-386), type IfaMsghdr struct
-pkg syscall (openbsd-386), type IfaMsghdr struct, Addrs int32
-pkg syscall (openbsd-386), type IfaMsghdr struct, Flags int32
-pkg syscall (openbsd-386), type IfaMsghdr struct, Hdrlen uint16
-pkg syscall (openbsd-386), type IfaMsghdr struct, Index uint16
-pkg syscall (openbsd-386), type IfaMsghdr struct, Metric int32
-pkg syscall (openbsd-386), type IfaMsghdr struct, Msglen uint16
-pkg syscall (openbsd-386), type IfaMsghdr struct, Pad1 uint8
-pkg syscall (openbsd-386), type IfaMsghdr struct, Pad2 uint8
-pkg syscall (openbsd-386), type IfaMsghdr struct, Tableid uint16
-pkg syscall (openbsd-386), type IfaMsghdr struct, Type uint8
-pkg syscall (openbsd-386), type IfaMsghdr struct, Version uint8
-pkg syscall (openbsd-386), type Inet6Pktinfo struct
-pkg syscall (openbsd-386), type Inet6Pktinfo struct, Addr [16]uint8
-pkg syscall (openbsd-386), type Inet6Pktinfo struct, Ifindex uint32
-pkg syscall (openbsd-386), type InterfaceAddrMessage struct
-pkg syscall (openbsd-386), type InterfaceAddrMessage struct, Data []uint8
-pkg syscall (openbsd-386), type InterfaceAddrMessage struct, Header IfaMsghdr
-pkg syscall (openbsd-386), type InterfaceAnnounceMessage struct
-pkg syscall (openbsd-386), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr
-pkg syscall (openbsd-386), type InterfaceMessage struct
-pkg syscall (openbsd-386), type InterfaceMessage struct, Data []uint8
-pkg syscall (openbsd-386), type InterfaceMessage struct, Header IfMsghdr
-pkg syscall (openbsd-386), type Iovec struct
-pkg syscall (openbsd-386), type Iovec struct, Base *uint8
-pkg syscall (openbsd-386), type Iovec struct, Len uint32
-pkg syscall (openbsd-386), type Kevent_t struct
-pkg syscall (openbsd-386), type Kevent_t struct, Data int32
-pkg syscall (openbsd-386), type Kevent_t struct, Fflags uint32
-pkg syscall (openbsd-386), type Kevent_t struct, Filter int16
-pkg syscall (openbsd-386), type Kevent_t struct, Flags uint16
-pkg syscall (openbsd-386), type Kevent_t struct, Ident uint32
-pkg syscall (openbsd-386), type Kevent_t struct, Udata *uint8
-pkg syscall (openbsd-386), type Mclpool struct
-pkg syscall (openbsd-386), type Mclpool struct, Alive uint16
-pkg syscall (openbsd-386), type Mclpool struct, Cwm uint16
-pkg syscall (openbsd-386), type Mclpool struct, Grown uint32
-pkg syscall (openbsd-386), type Mclpool struct, Hwm uint16
-pkg syscall (openbsd-386), type Mclpool struct, Lwm uint16
-pkg syscall (openbsd-386), type Msghdr struct
-pkg syscall (openbsd-386), type Msghdr struct, Control *uint8
-pkg syscall (openbsd-386), type Msghdr struct, Controllen uint32
-pkg syscall (openbsd-386), type Msghdr struct, Flags int32
-pkg syscall (openbsd-386), type Msghdr struct, Iov *Iovec
-pkg syscall (openbsd-386), type Msghdr struct, Iovlen uint32
-pkg syscall (openbsd-386), type Msghdr struct, Name *uint8
-pkg syscall (openbsd-386), type Msghdr struct, Namelen uint32
-pkg syscall (openbsd-386), type RawSockaddr struct, Data [14]int8
-pkg syscall (openbsd-386), type RawSockaddr struct, Family uint8
-pkg syscall (openbsd-386), type RawSockaddr struct, Len uint8
-pkg syscall (openbsd-386), type RawSockaddrAny struct, Pad [92]int8
-pkg syscall (openbsd-386), type RawSockaddrDatalink struct
-pkg syscall (openbsd-386), type RawSockaddrDatalink struct, Alen uint8
-pkg syscall (openbsd-386), type RawSockaddrDatalink struct, Data [24]int8
-pkg syscall (openbsd-386), type RawSockaddrDatalink struct, Family uint8
-pkg syscall (openbsd-386), type RawSockaddrDatalink struct, Index uint16
-pkg syscall (openbsd-386), type RawSockaddrDatalink struct, Len uint8
-pkg syscall (openbsd-386), type RawSockaddrDatalink struct, Nlen uint8
-pkg syscall (openbsd-386), type RawSockaddrDatalink struct, Slen uint8
-pkg syscall (openbsd-386), type RawSockaddrDatalink struct, Type uint8
-pkg syscall (openbsd-386), type RawSockaddrInet4 struct, Family uint8
-pkg syscall (openbsd-386), type RawSockaddrInet4 struct, Len uint8
-pkg syscall (openbsd-386), type RawSockaddrInet4 struct, Zero [8]int8
-pkg syscall (openbsd-386), type RawSockaddrInet6 struct, Family uint8
-pkg syscall (openbsd-386), type RawSockaddrInet6 struct, Len uint8
-pkg syscall (openbsd-386), type RawSockaddrUnix struct
-pkg syscall (openbsd-386), type RawSockaddrUnix struct, Family uint8
-pkg syscall (openbsd-386), type RawSockaddrUnix struct, Len uint8
-pkg syscall (openbsd-386), type RawSockaddrUnix struct, Path [104]int8
-pkg syscall (openbsd-386), type Rlimit struct
-pkg syscall (openbsd-386), type Rlimit struct, Cur uint64
-pkg syscall (openbsd-386), type Rlimit struct, Max uint64
-pkg syscall (openbsd-386), type RouteMessage struct
-pkg syscall (openbsd-386), type RouteMessage struct, Data []uint8
-pkg syscall (openbsd-386), type RouteMessage struct, Header RtMsghdr
-pkg syscall (openbsd-386), type RoutingMessage interface, unexported methods
-pkg syscall (openbsd-386), type RtMetrics struct
-pkg syscall (openbsd-386), type RtMetrics struct, Expire uint32
-pkg syscall (openbsd-386), type RtMetrics struct, Hopcount uint32
-pkg syscall (openbsd-386), type RtMetrics struct, Locks uint32
-pkg syscall (openbsd-386), type RtMetrics struct, Mtu uint32
-pkg syscall (openbsd-386), type RtMetrics struct, Pksent uint64
-pkg syscall (openbsd-386), type RtMetrics struct, Recvpipe uint32
-pkg syscall (openbsd-386), type RtMetrics struct, Refcnt uint32
-pkg syscall (openbsd-386), type RtMetrics struct, Rtt uint32
-pkg syscall (openbsd-386), type RtMetrics struct, Rttvar uint32
-pkg syscall (openbsd-386), type RtMetrics struct, Sendpipe uint32
-pkg syscall (openbsd-386), type RtMetrics struct, Ssthresh uint32
-pkg syscall (openbsd-386), type RtMsghdr struct
-pkg syscall (openbsd-386), type RtMsghdr struct, Addrs int32
-pkg syscall (openbsd-386), type RtMsghdr struct, Errno int32
-pkg syscall (openbsd-386), type RtMsghdr struct, Flags int32
-pkg syscall (openbsd-386), type RtMsghdr struct, Fmask int32
-pkg syscall (openbsd-386), type RtMsghdr struct, Hdrlen uint16
-pkg syscall (openbsd-386), type RtMsghdr struct, Index uint16
-pkg syscall (openbsd-386), type RtMsghdr struct, Inits uint32
-pkg syscall (openbsd-386), type RtMsghdr struct, Mpls uint8
-pkg syscall (openbsd-386), type RtMsghdr struct, Msglen uint16
-pkg syscall (openbsd-386), type RtMsghdr struct, Pid int32
-pkg syscall (openbsd-386), type RtMsghdr struct, Priority uint8
-pkg syscall (openbsd-386), type RtMsghdr struct, Rmx RtMetrics
-pkg syscall (openbsd-386), type RtMsghdr struct, Seq int32
-pkg syscall (openbsd-386), type RtMsghdr struct, Tableid uint16
-pkg syscall (openbsd-386), type RtMsghdr struct, Type uint8
-pkg syscall (openbsd-386), type RtMsghdr struct, Version uint8
-pkg syscall (openbsd-386), type Rusage struct, Idrss int32
-pkg syscall (openbsd-386), type Rusage struct, Inblock int32
-pkg syscall (openbsd-386), type Rusage struct, Isrss int32
-pkg syscall (openbsd-386), type Rusage struct, Ixrss int32
-pkg syscall (openbsd-386), type Rusage struct, Majflt int32
-pkg syscall (openbsd-386), type Rusage struct, Maxrss int32
-pkg syscall (openbsd-386), type Rusage struct, Minflt int32
-pkg syscall (openbsd-386), type Rusage struct, Msgrcv int32
-pkg syscall (openbsd-386), type Rusage struct, Msgsnd int32
-pkg syscall (openbsd-386), type Rusage struct, Nivcsw int32
-pkg syscall (openbsd-386), type Rusage struct, Nsignals int32
-pkg syscall (openbsd-386), type Rusage struct, Nswap int32
-pkg syscall (openbsd-386), type Rusage struct, Nvcsw int32
-pkg syscall (openbsd-386), type Rusage struct, Oublock int32
-pkg syscall (openbsd-386), type Rusage struct, Stime Timeval
-pkg syscall (openbsd-386), type Rusage struct, Utime Timeval
-pkg syscall (openbsd-386), type SockaddrDatalink struct
-pkg syscall (openbsd-386), type SockaddrDatalink struct, Alen uint8
-pkg syscall (openbsd-386), type SockaddrDatalink struct, Data [24]int8
-pkg syscall (openbsd-386), type SockaddrDatalink struct, Family uint8
-pkg syscall (openbsd-386), type SockaddrDatalink struct, Index uint16
-pkg syscall (openbsd-386), type SockaddrDatalink struct, Len uint8
-pkg syscall (openbsd-386), type SockaddrDatalink struct, Nlen uint8
-pkg syscall (openbsd-386), type SockaddrDatalink struct, Slen uint8
-pkg syscall (openbsd-386), type SockaddrDatalink struct, Type uint8
-pkg syscall (openbsd-386), type SocketControlMessage struct
-pkg syscall (openbsd-386), type SocketControlMessage struct, Data []uint8
-pkg syscall (openbsd-386), type SocketControlMessage struct, Header Cmsghdr
-pkg syscall (openbsd-386), type Stat_t struct
-pkg syscall (openbsd-386), type Stat_t struct, Atim Timespec
-pkg syscall (openbsd-386), type Stat_t struct, Blksize uint32
-pkg syscall (openbsd-386), type Stat_t struct, Blocks int64
-pkg syscall (openbsd-386), type Stat_t struct, Ctim Timespec
-pkg syscall (openbsd-386), type Stat_t struct, Dev int32
-pkg syscall (openbsd-386), type Stat_t struct, Flags uint32
-pkg syscall (openbsd-386), type Stat_t struct, Gen uint32
-pkg syscall (openbsd-386), type Stat_t struct, Gid uint32
-pkg syscall (openbsd-386), type Stat_t struct, Ino uint32
-pkg syscall (openbsd-386), type Stat_t struct, Lspare0 int32
-pkg syscall (openbsd-386), type Stat_t struct, Lspare1 int32
-pkg syscall (openbsd-386), type Stat_t struct, Mode uint32
-pkg syscall (openbsd-386), type Stat_t struct, Mtim Timespec
-pkg syscall (openbsd-386), type Stat_t struct, Nlink uint32
-pkg syscall (openbsd-386), type Stat_t struct, Qspare [2]int64
-pkg syscall (openbsd-386), type Stat_t struct, Rdev int32
-pkg syscall (openbsd-386), type Stat_t struct, Size int64
-pkg syscall (openbsd-386), type Stat_t struct, Uid uint32
-pkg syscall (openbsd-386), type Stat_t struct, X__st_birthtim Timespec
-pkg syscall (openbsd-386), type Statfs_t struct
-pkg syscall (openbsd-386), type Statfs_t struct, F_asyncreads uint64
-pkg syscall (openbsd-386), type Statfs_t struct, F_asyncwrites uint64
-pkg syscall (openbsd-386), type Statfs_t struct, F_bavail int64
-pkg syscall (openbsd-386), type Statfs_t struct, F_bfree uint64
-pkg syscall (openbsd-386), type Statfs_t struct, F_blocks uint64
-pkg syscall (openbsd-386), type Statfs_t struct, F_bsize uint32
-pkg syscall (openbsd-386), type Statfs_t struct, F_ctime uint32
-pkg syscall (openbsd-386), type Statfs_t struct, F_favail int64
-pkg syscall (openbsd-386), type Statfs_t struct, F_ffree uint64
-pkg syscall (openbsd-386), type Statfs_t struct, F_files uint64
-pkg syscall (openbsd-386), type Statfs_t struct, F_flags uint32
-pkg syscall (openbsd-386), type Statfs_t struct, F_fsid Fsid
-pkg syscall (openbsd-386), type Statfs_t struct, F_fstypename [16]int8
-pkg syscall (openbsd-386), type Statfs_t struct, F_iosize uint32
-pkg syscall (openbsd-386), type Statfs_t struct, F_mntfromname [90]int8
-pkg syscall (openbsd-386), type Statfs_t struct, F_mntonname [90]int8
-pkg syscall (openbsd-386), type Statfs_t struct, F_namemax uint32
-pkg syscall (openbsd-386), type Statfs_t struct, F_owner uint32
-pkg syscall (openbsd-386), type Statfs_t struct, F_spare [3]uint32
-pkg syscall (openbsd-386), type Statfs_t struct, F_syncreads uint64
-pkg syscall (openbsd-386), type Statfs_t struct, F_syncwrites uint64
-pkg syscall (openbsd-386), type Statfs_t struct, Mount_info [160]uint8
-pkg syscall (openbsd-386), type SysProcAttr struct, Chroot string
-pkg syscall (openbsd-386), type SysProcAttr struct, Credential *Credential
-pkg syscall (openbsd-386), type SysProcAttr struct, Noctty bool
-pkg syscall (openbsd-386), type SysProcAttr struct, Ptrace bool
-pkg syscall (openbsd-386), type SysProcAttr struct, Setctty bool
-pkg syscall (openbsd-386), type SysProcAttr struct, Setpgid bool
-pkg syscall (openbsd-386), type SysProcAttr struct, Setsid bool
-pkg syscall (openbsd-386), type Timespec struct, Nsec int32
-pkg syscall (openbsd-386), type Timespec struct, Sec int32
-pkg syscall (openbsd-386), type Timeval struct, Sec int32
-pkg syscall (openbsd-386), type Timeval struct, Usec int32
-pkg syscall (openbsd-386), type WaitStatus uint32
-pkg syscall (openbsd-386), var Stderr int
-pkg syscall (openbsd-386), var Stdin int
-pkg syscall (openbsd-386), var Stdout int
-pkg syscall (openbsd-386-cgo), const AF_APPLETALK ideal-int
-pkg syscall (openbsd-386-cgo), const AF_BLUETOOTH ideal-int
-pkg syscall (openbsd-386-cgo), const AF_CCITT ideal-int
-pkg syscall (openbsd-386-cgo), const AF_CHAOS ideal-int
-pkg syscall (openbsd-386-cgo), const AF_CNT ideal-int
-pkg syscall (openbsd-386-cgo), const AF_COIP ideal-int
-pkg syscall (openbsd-386-cgo), const AF_DATAKIT ideal-int
-pkg syscall (openbsd-386-cgo), const AF_DECnet ideal-int
-pkg syscall (openbsd-386-cgo), const AF_DLI ideal-int
-pkg syscall (openbsd-386-cgo), const AF_E164 ideal-int
-pkg syscall (openbsd-386-cgo), const AF_ECMA ideal-int
-pkg syscall (openbsd-386-cgo), const AF_ENCAP ideal-int
-pkg syscall (openbsd-386-cgo), const AF_HYLINK ideal-int
-pkg syscall (openbsd-386-cgo), const AF_IMPLINK ideal-int
-pkg syscall (openbsd-386-cgo), const AF_IPX ideal-int
-pkg syscall (openbsd-386-cgo), const AF_ISDN ideal-int
-pkg syscall (openbsd-386-cgo), const AF_ISO ideal-int
-pkg syscall (openbsd-386-cgo), const AF_KEY ideal-int
-pkg syscall (openbsd-386-cgo), const AF_LAT ideal-int
-pkg syscall (openbsd-386-cgo), const AF_LINK ideal-int
-pkg syscall (openbsd-386-cgo), const AF_LOCAL ideal-int
-pkg syscall (openbsd-386-cgo), const AF_MAX ideal-int
-pkg syscall (openbsd-386-cgo), const AF_MPLS ideal-int
-pkg syscall (openbsd-386-cgo), const AF_NATM ideal-int
-pkg syscall (openbsd-386-cgo), const AF_NS ideal-int
-pkg syscall (openbsd-386-cgo), const AF_OSI ideal-int
-pkg syscall (openbsd-386-cgo), const AF_PUP ideal-int
-pkg syscall (openbsd-386-cgo), const AF_ROUTE ideal-int
-pkg syscall (openbsd-386-cgo), const AF_SIP ideal-int
-pkg syscall (openbsd-386-cgo), const AF_SNA ideal-int
-pkg syscall (openbsd-386-cgo), const ARPHRD_ETHER ideal-int
-pkg syscall (openbsd-386-cgo), const ARPHRD_FRELAY ideal-int
-pkg syscall (openbsd-386-cgo), const ARPHRD_IEEE1394 ideal-int
-pkg syscall (openbsd-386-cgo), const ARPHRD_IEEE802 ideal-int
-pkg syscall (openbsd-386-cgo), const B0 ideal-int
-pkg syscall (openbsd-386-cgo), const B110 ideal-int
-pkg syscall (openbsd-386-cgo), const B115200 ideal-int
-pkg syscall (openbsd-386-cgo), const B1200 ideal-int
-pkg syscall (openbsd-386-cgo), const B134 ideal-int
-pkg syscall (openbsd-386-cgo), const B14400 ideal-int
-pkg syscall (openbsd-386-cgo), const B150 ideal-int
-pkg syscall (openbsd-386-cgo), const B1800 ideal-int
-pkg syscall (openbsd-386-cgo), const B19200 ideal-int
-pkg syscall (openbsd-386-cgo), const B200 ideal-int
-pkg syscall (openbsd-386-cgo), const B230400 ideal-int
-pkg syscall (openbsd-386-cgo), const B2400 ideal-int
-pkg syscall (openbsd-386-cgo), const B28800 ideal-int
-pkg syscall (openbsd-386-cgo), const B300 ideal-int
-pkg syscall (openbsd-386-cgo), const B38400 ideal-int
-pkg syscall (openbsd-386-cgo), const B4800 ideal-int
-pkg syscall (openbsd-386-cgo), const B50 ideal-int
-pkg syscall (openbsd-386-cgo), const B57600 ideal-int
-pkg syscall (openbsd-386-cgo), const B600 ideal-int
-pkg syscall (openbsd-386-cgo), const B7200 ideal-int
-pkg syscall (openbsd-386-cgo), const B75 ideal-int
-pkg syscall (openbsd-386-cgo), const B76800 ideal-int
-pkg syscall (openbsd-386-cgo), const B9600 ideal-int
-pkg syscall (openbsd-386-cgo), const BIOCFLUSH ideal-int
-pkg syscall (openbsd-386-cgo), const BIOCGBLEN ideal-int
-pkg syscall (openbsd-386-cgo), const BIOCGDIRFILT ideal-int
-pkg syscall (openbsd-386-cgo), const BIOCGDLT ideal-int
-pkg syscall (openbsd-386-cgo), const BIOCGDLTLIST ideal-int
-pkg syscall (openbsd-386-cgo), const BIOCGETIF ideal-int
-pkg syscall (openbsd-386-cgo), const BIOCGFILDROP ideal-int
-pkg syscall (openbsd-386-cgo), const BIOCGHDRCMPLT ideal-int
-pkg syscall (openbsd-386-cgo), const BIOCGRSIG ideal-int
-pkg syscall (openbsd-386-cgo), const BIOCGRTIMEOUT ideal-int
-pkg syscall (openbsd-386-cgo), const BIOCGSTATS ideal-int
-pkg syscall (openbsd-386-cgo), const BIOCIMMEDIATE ideal-int
-pkg syscall (openbsd-386-cgo), const BIOCLOCK ideal-int
-pkg syscall (openbsd-386-cgo), const BIOCPROMISC ideal-int
-pkg syscall (openbsd-386-cgo), const BIOCSBLEN ideal-int
-pkg syscall (openbsd-386-cgo), const BIOCSDIRFILT ideal-int
-pkg syscall (openbsd-386-cgo), const BIOCSDLT ideal-int
-pkg syscall (openbsd-386-cgo), const BIOCSETF ideal-int
-pkg syscall (openbsd-386-cgo), const BIOCSETIF ideal-int
-pkg syscall (openbsd-386-cgo), const BIOCSETWF ideal-int
-pkg syscall (openbsd-386-cgo), const BIOCSFILDROP ideal-int
-pkg syscall (openbsd-386-cgo), const BIOCSHDRCMPLT ideal-int
-pkg syscall (openbsd-386-cgo), const BIOCSRSIG ideal-int
-pkg syscall (openbsd-386-cgo), const BIOCSRTIMEOUT ideal-int
-pkg syscall (openbsd-386-cgo), const BIOCVERSION ideal-int
-pkg syscall (openbsd-386-cgo), const BPF_A ideal-int
-pkg syscall (openbsd-386-cgo), const BPF_ABS ideal-int
-pkg syscall (openbsd-386-cgo), const BPF_ADD ideal-int
-pkg syscall (openbsd-386-cgo), const BPF_ALIGNMENT ideal-int
-pkg syscall (openbsd-386-cgo), const BPF_ALU ideal-int
-pkg syscall (openbsd-386-cgo), const BPF_AND ideal-int
-pkg syscall (openbsd-386-cgo), const BPF_B ideal-int
-pkg syscall (openbsd-386-cgo), const BPF_DIRECTION_IN ideal-int
-pkg syscall (openbsd-386-cgo), const BPF_DIRECTION_OUT ideal-int
-pkg syscall (openbsd-386-cgo), const BPF_DIV ideal-int
-pkg syscall (openbsd-386-cgo), const BPF_H ideal-int
-pkg syscall (openbsd-386-cgo), const BPF_IMM ideal-int
-pkg syscall (openbsd-386-cgo), const BPF_IND ideal-int
-pkg syscall (openbsd-386-cgo), const BPF_JA ideal-int
-pkg syscall (openbsd-386-cgo), const BPF_JEQ ideal-int
-pkg syscall (openbsd-386-cgo), const BPF_JGE ideal-int
-pkg syscall (openbsd-386-cgo), const BPF_JGT ideal-int
-pkg syscall (openbsd-386-cgo), const BPF_JMP ideal-int
-pkg syscall (openbsd-386-cgo), const BPF_JSET ideal-int
-pkg syscall (openbsd-386-cgo), const BPF_K ideal-int
-pkg syscall (openbsd-386-cgo), const BPF_LD ideal-int
-pkg syscall (openbsd-386-cgo), const BPF_LDX ideal-int
-pkg syscall (openbsd-386-cgo), const BPF_LEN ideal-int
-pkg syscall (openbsd-386-cgo), const BPF_LSH ideal-int
-pkg syscall (openbsd-386-cgo), const BPF_MAJOR_VERSION ideal-int
-pkg syscall (openbsd-386-cgo), const BPF_MAXBUFSIZE ideal-int
-pkg syscall (openbsd-386-cgo), const BPF_MAXINSNS ideal-int
-pkg syscall (openbsd-386-cgo), const BPF_MEM ideal-int
-pkg syscall (openbsd-386-cgo), const BPF_MEMWORDS ideal-int
-pkg syscall (openbsd-386-cgo), const BPF_MINBUFSIZE ideal-int
-pkg syscall (openbsd-386-cgo), const BPF_MINOR_VERSION ideal-int
-pkg syscall (openbsd-386-cgo), const BPF_MISC ideal-int
-pkg syscall (openbsd-386-cgo), const BPF_MSH ideal-int
-pkg syscall (openbsd-386-cgo), const BPF_MUL ideal-int
-pkg syscall (openbsd-386-cgo), const BPF_NEG ideal-int
-pkg syscall (openbsd-386-cgo), const BPF_OR ideal-int
-pkg syscall (openbsd-386-cgo), const BPF_RELEASE ideal-int
-pkg syscall (openbsd-386-cgo), const BPF_RET ideal-int
-pkg syscall (openbsd-386-cgo), const BPF_RSH ideal-int
-pkg syscall (openbsd-386-cgo), const BPF_ST ideal-int
-pkg syscall (openbsd-386-cgo), const BPF_STX ideal-int
-pkg syscall (openbsd-386-cgo), const BPF_SUB ideal-int
-pkg syscall (openbsd-386-cgo), const BPF_TAX ideal-int
-pkg syscall (openbsd-386-cgo), const BPF_TXA ideal-int
-pkg syscall (openbsd-386-cgo), const BPF_W ideal-int
-pkg syscall (openbsd-386-cgo), const BPF_X ideal-int
-pkg syscall (openbsd-386-cgo), const BRKINT ideal-int
-pkg syscall (openbsd-386-cgo), const CFLUSH ideal-int
-pkg syscall (openbsd-386-cgo), const CLOCAL ideal-int
-pkg syscall (openbsd-386-cgo), const CREAD ideal-int
-pkg syscall (openbsd-386-cgo), const CS5 ideal-int
-pkg syscall (openbsd-386-cgo), const CS6 ideal-int
-pkg syscall (openbsd-386-cgo), const CS7 ideal-int
-pkg syscall (openbsd-386-cgo), const CS8 ideal-int
-pkg syscall (openbsd-386-cgo), const CSIZE ideal-int
-pkg syscall (openbsd-386-cgo), const CSTART ideal-int
-pkg syscall (openbsd-386-cgo), const CSTATUS ideal-int
-pkg syscall (openbsd-386-cgo), const CSTOP ideal-int
-pkg syscall (openbsd-386-cgo), const CSTOPB ideal-int
-pkg syscall (openbsd-386-cgo), const CSUSP ideal-int
-pkg syscall (openbsd-386-cgo), const CTL_MAXNAME ideal-int
-pkg syscall (openbsd-386-cgo), const CTL_NET ideal-int
-pkg syscall (openbsd-386-cgo), const DIOCOSFPFLUSH ideal-int
-pkg syscall (openbsd-386-cgo), const DLT_ARCNET ideal-int
-pkg syscall (openbsd-386-cgo), const DLT_ATM_RFC1483 ideal-int
-pkg syscall (openbsd-386-cgo), const DLT_AX25 ideal-int
-pkg syscall (openbsd-386-cgo), const DLT_CHAOS ideal-int
-pkg syscall (openbsd-386-cgo), const DLT_C_HDLC ideal-int
-pkg syscall (openbsd-386-cgo), const DLT_EN10MB ideal-int
-pkg syscall (openbsd-386-cgo), const DLT_EN3MB ideal-int
-pkg syscall (openbsd-386-cgo), const DLT_ENC ideal-int
-pkg syscall (openbsd-386-cgo), const DLT_FDDI ideal-int
-pkg syscall (openbsd-386-cgo), const DLT_IEEE802 ideal-int
-pkg syscall (openbsd-386-cgo), const DLT_IEEE802_11 ideal-int
-pkg syscall (openbsd-386-cgo), const DLT_IEEE802_11_RADIO ideal-int
-pkg syscall (openbsd-386-cgo), const DLT_LOOP ideal-int
-pkg syscall (openbsd-386-cgo), const DLT_MPLS ideal-int
-pkg syscall (openbsd-386-cgo), const DLT_NULL ideal-int
-pkg syscall (openbsd-386-cgo), const DLT_PFLOG ideal-int
-pkg syscall (openbsd-386-cgo), const DLT_PFSYNC ideal-int
-pkg syscall (openbsd-386-cgo), const DLT_PPP ideal-int
-pkg syscall (openbsd-386-cgo), const DLT_PPP_BSDOS ideal-int
-pkg syscall (openbsd-386-cgo), const DLT_PPP_ETHER ideal-int
-pkg syscall (openbsd-386-cgo), const DLT_PPP_SERIAL ideal-int
-pkg syscall (openbsd-386-cgo), const DLT_PRONET ideal-int
-pkg syscall (openbsd-386-cgo), const DLT_RAW ideal-int
-pkg syscall (openbsd-386-cgo), const DLT_SLIP ideal-int
-pkg syscall (openbsd-386-cgo), const DLT_SLIP_BSDOS ideal-int
-pkg syscall (openbsd-386-cgo), const DT_BLK ideal-int
-pkg syscall (openbsd-386-cgo), const DT_CHR ideal-int
-pkg syscall (openbsd-386-cgo), const DT_DIR ideal-int
-pkg syscall (openbsd-386-cgo), const DT_FIFO ideal-int
-pkg syscall (openbsd-386-cgo), const DT_LNK ideal-int
-pkg syscall (openbsd-386-cgo), const DT_REG ideal-int
-pkg syscall (openbsd-386-cgo), const DT_SOCK ideal-int
-pkg syscall (openbsd-386-cgo), const DT_UNKNOWN ideal-int
-pkg syscall (openbsd-386-cgo), const EAUTH Errno
-pkg syscall (openbsd-386-cgo), const EBADRPC Errno
-pkg syscall (openbsd-386-cgo), const ECHO ideal-int
-pkg syscall (openbsd-386-cgo), const ECHOCTL ideal-int
-pkg syscall (openbsd-386-cgo), const ECHOE ideal-int
-pkg syscall (openbsd-386-cgo), const ECHOK ideal-int
-pkg syscall (openbsd-386-cgo), const ECHOKE ideal-int
-pkg syscall (openbsd-386-cgo), const ECHONL ideal-int
-pkg syscall (openbsd-386-cgo), const ECHOPRT ideal-int
-pkg syscall (openbsd-386-cgo), const EFTYPE Errno
-pkg syscall (openbsd-386-cgo), const EIPSEC Errno
-pkg syscall (openbsd-386-cgo), const ELAST Errno
-pkg syscall (openbsd-386-cgo), const EMEDIUMTYPE Errno
-pkg syscall (openbsd-386-cgo), const EMT_TAGOVF ideal-int
-pkg syscall (openbsd-386-cgo), const EMUL_ENABLED ideal-int
-pkg syscall (openbsd-386-cgo), const EMUL_NATIVE ideal-int
-pkg syscall (openbsd-386-cgo), const ENDRUNDISC ideal-int
-pkg syscall (openbsd-386-cgo), const ENEEDAUTH Errno
-pkg syscall (openbsd-386-cgo), const ENOATTR Errno
-pkg syscall (openbsd-386-cgo), const ENOMEDIUM Errno
-pkg syscall (openbsd-386-cgo), const EPROCLIM Errno
-pkg syscall (openbsd-386-cgo), const EPROCUNAVAIL Errno
-pkg syscall (openbsd-386-cgo), const EPROGMISMATCH Errno
-pkg syscall (openbsd-386-cgo), const EPROGUNAVAIL Errno
-pkg syscall (openbsd-386-cgo), const ERPCMISMATCH Errno
-pkg syscall (openbsd-386-cgo), const ETHERMIN ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERMTU ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_8023 ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_AARP ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_ACCTON ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_AEONIC ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_ALPHA ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_AMBER ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_AMOEBA ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_AOE ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_APOLLO ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_APOLLODOMAIN ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_APPLETALK ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_APPLITEK ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_ARGONAUT ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_ARP ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_AT ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_ATALK ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_ATOMIC ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_ATT ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_ATTSTANFORD ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_AUTOPHON ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_AXIS ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_BCLOOP ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_BOFL ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_CABLETRON ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_CHAOS ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_COMDESIGN ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_COMPUGRAPHIC ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_COUNTERPOINT ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_CRONUS ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_CRONUSVLN ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_DCA ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_DDE ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_DEBNI ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_DECAM ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_DECCUST ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_DECDIAG ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_DECDNS ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_DECDTS ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_DECEXPER ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_DECLAST ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_DECLTM ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_DECMUMPS ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_DECNETBIOS ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_DELTACON ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_DIDDLE ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_DLOG1 ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_DLOG2 ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_DN ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_DOGFIGHT ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_DSMD ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_ECMA ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_ENCRYPT ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_ES ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_EXCELAN ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_EXPERDATA ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_FLIP ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_FLOWCONTROL ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_FRARP ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_GENDYN ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_HAYES ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_HIPPI_FP ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_HITACHI ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_HP ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_IEEEPUP ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_IEEEPUPAT ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_IMLBL ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_IMLBLDIAG ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_IP ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_IPAS ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_IPV6 ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_IPX ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_IPXNEW ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_KALPANA ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_LANBRIDGE ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_LANPROBE ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_LAT ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_LBACK ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_LITTLE ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_LLDP ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_LOGICRAFT ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_LOOPBACK ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_MATRA ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_MAX ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_MERIT ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_MICP ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_MOPDL ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_MOPRC ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_MOTOROLA ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_MPLS ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_MPLS_MCAST ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_MUMPS ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPCC ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPCLAIM ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPCLREQ ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPCLRSP ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPCREQ ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPCRSP ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPDG ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPDGB ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPDLTE ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPRAR ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPRAS ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPRST ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPSCD ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPVCD ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBS ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_NCD ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_NESTAR ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_NETBEUI ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_NOVELL ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_NS ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_NSAT ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_NSCOMPAT ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_NTRAILER ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_OS9 ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_OS9NET ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_PACER ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_PAE ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_PCS ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_PLANNING ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_PPP ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_PPPOE ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_PPPOEDISC ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_PRIMENTS ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_PUP ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_PUPAT ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_QINQ ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_RACAL ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_RATIONAL ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_RAWFR ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_RCL ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_RDP ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_RETIX ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_REVARP ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_SCA ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_SECTRA ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_SECUREDATA ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_SGITW ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_SG_BOUNCE ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_SG_DIAG ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_SG_NETGAMES ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_SG_RESV ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_SIMNET ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_SLOW ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_SNA ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_SNMP ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_SONIX ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_SPIDER ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_SPRITE ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_STP ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_TALARIS ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_TALARISMC ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_TCPCOMP ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_TCPSM ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_TEC ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_TIGAN ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_TRAIL ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_TRANSETHER ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_TYMSHARE ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_UBBST ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_UBDEBUG ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_UBDIAGLOOP ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_UBDL ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_UBNIU ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_UBNMC ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_VALID ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_VARIAN ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_VAXELN ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_VEECO ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_VEXP ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_VGLAB ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_VINES ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_VINESECHO ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_VINESLOOP ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_VITAL ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_VLAN ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_VLTLMAN ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_VPROD ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_VURESERVED ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_WATERLOO ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_WELLFLEET ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_X25 ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_X75 ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_XNSSM ideal-int
-pkg syscall (openbsd-386-cgo), const ETHERTYPE_XTP ideal-int
-pkg syscall (openbsd-386-cgo), const ETHER_ADDR_LEN ideal-int
-pkg syscall (openbsd-386-cgo), const ETHER_ALIGN ideal-int
-pkg syscall (openbsd-386-cgo), const ETHER_CRC_LEN ideal-int
-pkg syscall (openbsd-386-cgo), const ETHER_CRC_POLY_BE ideal-int
-pkg syscall (openbsd-386-cgo), const ETHER_CRC_POLY_LE ideal-int
-pkg syscall (openbsd-386-cgo), const ETHER_HDR_LEN ideal-int
-pkg syscall (openbsd-386-cgo), const ETHER_MAX_DIX_LEN ideal-int
-pkg syscall (openbsd-386-cgo), const ETHER_MAX_LEN ideal-int
-pkg syscall (openbsd-386-cgo), const ETHER_MIN_LEN ideal-int
-pkg syscall (openbsd-386-cgo), const ETHER_TYPE_LEN ideal-int
-pkg syscall (openbsd-386-cgo), const ETHER_VLAN_ENCAP_LEN ideal-int
-pkg syscall (openbsd-386-cgo), const EVFILT_AIO ideal-int
-pkg syscall (openbsd-386-cgo), const EVFILT_PROC ideal-int
-pkg syscall (openbsd-386-cgo), const EVFILT_READ ideal-int
-pkg syscall (openbsd-386-cgo), const EVFILT_SIGNAL ideal-int
-pkg syscall (openbsd-386-cgo), const EVFILT_SYSCOUNT ideal-int
-pkg syscall (openbsd-386-cgo), const EVFILT_TIMER ideal-int
-pkg syscall (openbsd-386-cgo), const EVFILT_VNODE ideal-int
-pkg syscall (openbsd-386-cgo), const EVFILT_WRITE ideal-int
-pkg syscall (openbsd-386-cgo), const EV_ADD ideal-int
-pkg syscall (openbsd-386-cgo), const EV_CLEAR ideal-int
-pkg syscall (openbsd-386-cgo), const EV_DELETE ideal-int
-pkg syscall (openbsd-386-cgo), const EV_DISABLE ideal-int
-pkg syscall (openbsd-386-cgo), const EV_ENABLE ideal-int
-pkg syscall (openbsd-386-cgo), const EV_EOF ideal-int
-pkg syscall (openbsd-386-cgo), const EV_ERROR ideal-int
-pkg syscall (openbsd-386-cgo), const EV_FLAG1 ideal-int
-pkg syscall (openbsd-386-cgo), const EV_ONESHOT ideal-int
-pkg syscall (openbsd-386-cgo), const EV_SYSFLAGS ideal-int
-pkg syscall (openbsd-386-cgo), const EXTA ideal-int
-pkg syscall (openbsd-386-cgo), const EXTB ideal-int
-pkg syscall (openbsd-386-cgo), const EXTPROC ideal-int
-pkg syscall (openbsd-386-cgo), const FD_CLOEXEC ideal-int
-pkg syscall (openbsd-386-cgo), const FD_SETSIZE ideal-int
-pkg syscall (openbsd-386-cgo), const FLUSHO ideal-int
-pkg syscall (openbsd-386-cgo), const F_DUPFD ideal-int
-pkg syscall (openbsd-386-cgo), const F_DUPFD_CLOEXEC ideal-int
-pkg syscall (openbsd-386-cgo), const F_GETFD ideal-int
-pkg syscall (openbsd-386-cgo), const F_GETFL ideal-int
-pkg syscall (openbsd-386-cgo), const F_GETLK ideal-int
-pkg syscall (openbsd-386-cgo), const F_GETOWN ideal-int
-pkg syscall (openbsd-386-cgo), const F_OK ideal-int
-pkg syscall (openbsd-386-cgo), const F_RDLCK ideal-int
-pkg syscall (openbsd-386-cgo), const F_SETFD ideal-int
-pkg syscall (openbsd-386-cgo), const F_SETFL ideal-int
-pkg syscall (openbsd-386-cgo), const F_SETLK ideal-int
-pkg syscall (openbsd-386-cgo), const F_SETLKW ideal-int
-pkg syscall (openbsd-386-cgo), const F_SETOWN ideal-int
-pkg syscall (openbsd-386-cgo), const F_UNLCK ideal-int
-pkg syscall (openbsd-386-cgo), const F_WRLCK ideal-int
-pkg syscall (openbsd-386-cgo), const HUPCL ideal-int
-pkg syscall (openbsd-386-cgo), const ICANON ideal-int
-pkg syscall (openbsd-386-cgo), const ICMP6_FILTER = 18
-pkg syscall (openbsd-386-cgo), const ICMP6_FILTER ideal-int
-pkg syscall (openbsd-386-cgo), const ICRNL ideal-int
-pkg syscall (openbsd-386-cgo), const IEXTEN ideal-int
-pkg syscall (openbsd-386-cgo), const IFAN_ARRIVAL ideal-int
-pkg syscall (openbsd-386-cgo), const IFAN_DEPARTURE ideal-int
-pkg syscall (openbsd-386-cgo), const IFA_ROUTE ideal-int
-pkg syscall (openbsd-386-cgo), const IFF_ALLMULTI ideal-int
-pkg syscall (openbsd-386-cgo), const IFF_CANTCHANGE ideal-int
-pkg syscall (openbsd-386-cgo), const IFF_DEBUG ideal-int
-pkg syscall (openbsd-386-cgo), const IFF_LINK0 ideal-int
-pkg syscall (openbsd-386-cgo), const IFF_LINK1 ideal-int
-pkg syscall (openbsd-386-cgo), const IFF_LINK2 ideal-int
-pkg syscall (openbsd-386-cgo), const IFF_NOARP ideal-int
-pkg syscall (openbsd-386-cgo), const IFF_NOTRAILERS ideal-int
-pkg syscall (openbsd-386-cgo), const IFF_OACTIVE ideal-int
-pkg syscall (openbsd-386-cgo), const IFF_POINTOPOINT ideal-int
-pkg syscall (openbsd-386-cgo), const IFF_PROMISC ideal-int
-pkg syscall (openbsd-386-cgo), const IFF_RUNNING ideal-int
-pkg syscall (openbsd-386-cgo), const IFF_SIMPLEX ideal-int
-pkg syscall (openbsd-386-cgo), const IFNAMSIZ ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_1822 ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_A12MPPSWITCH ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_AAL2 ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_AAL5 ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_ADSL ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_AFLANE8023 ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_AFLANE8025 ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_ARAP ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_ARCNET ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_ARCNETPLUS ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_ASYNC ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_ATM ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_ATMDXI ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_ATMFUNI ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_ATMIMA ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_ATMLOGICAL ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_ATMRADIO ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_ATMSUBINTERFACE ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_ATMVCIENDPT ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_ATMVIRTUAL ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_BGPPOLICYACCOUNTING ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_BLUETOOTH ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_BRIDGE ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_BSC ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_CARP ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_CCTEMUL ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_CEPT ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_CES ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_CHANNEL ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_CNR ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_COFFEE ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_COMPOSITELINK ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_DCN ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_DIGITALPOWERLINE ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_DLSW ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_DOCSCABLEDOWNSTREAM ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_DOCSCABLEMACLAYER ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_DOCSCABLEUPSTREAM ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_DOCSCABLEUPSTREAMCHANNEL ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_DS0 ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_DS0BUNDLE ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_DS1FDL ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_DS3 ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_DTM ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_DUMMY ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_DVBASILN ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_DVBASIOUT ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_DVBRCCDOWNSTREAM ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_DVBRCCMACLAYER ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_DVBRCCUPSTREAM ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_ECONET ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_ENC ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_EON ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_EPLRS ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_ESCON ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_ETHER ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_FAITH ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_FAST ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_FASTETHER ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_FASTETHERFX ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_FDDI ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_FIBRECHANNEL ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_FRAMERELAYINTERCONNECT ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_FRAMERELAYMPI ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_FRDLCIENDPT ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_FRELAY ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_FRELAYDCE ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_FRF16MFRBUNDLE ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_FRFORWARD ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_G703AT2MB ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_G703AT64K ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_GIF ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_GIGABITETHERNET ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_GR303IDT ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_GR303RDT ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_H323GATEKEEPER ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_H323PROXY ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_HDH1822 ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_HDLC ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_HDSL2 ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_HIPERLAN2 ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_HIPPI ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_HIPPIINTERFACE ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_HOSTPAD ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_HSSI ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_HY ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_IBM370PARCHAN ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_IDSL ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_IEEE1394 ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_IEEE80211 ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_IEEE80212 ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_IEEE8023ADLAG ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_IFGSN ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_IMT ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_INFINIBAND ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_INTERLEAVE ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_IP ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_IPFORWARD ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_IPOVERATM ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_IPOVERCDLC ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_IPOVERCLAW ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_IPSWITCH ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_ISDN ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_ISDNBASIC ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_ISDNPRIMARY ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_ISDNS ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_ISDNU ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_ISO88022LLC ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_ISO88023 ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_ISO88024 ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_ISO88025 ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_ISO88025CRFPINT ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_ISO88025DTR ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_ISO88025FIBER ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_ISO88026 ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_ISUP ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_L2VLAN ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_L3IPVLAN ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_L3IPXVLAN ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_LAPB ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_LAPD ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_LAPF ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_LINEGROUP ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_LOCALTALK ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_LOOP ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_MEDIAMAILOVERIP ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_MFSIGLINK ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_MIOX25 ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_MODEM ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_MPC ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_MPLS ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_MPLSTUNNEL ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_MSDSL ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_MVL ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_MYRINET ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_NFAS ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_NSIP ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_OPTICALCHANNEL ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_OPTICALTRANSPORT ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_OTHER ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_P10 ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_P80 ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_PARA ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_PFLOG ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_PFLOW ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_PFSYNC ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_PLC ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_PON155 ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_PON622 ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_POS ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_PPP ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_PPPMULTILINKBUNDLE ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_PROPATM ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_PROPBWAP2MP ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_PROPCNLS ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_PROPMUX ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_PROPVIRTUAL ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_PROPWIRELESSP2P ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_PTPSERIAL ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_PVC ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_Q2931 ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_QLLC ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_RADIOMAC ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_RADSL ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_REACHDSL ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_RFC1483 ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_RS232 ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_RSRB ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_SDLC ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_SDSL ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_SHDSL ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_SIP ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_SIPSIG ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_SIPTG ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_SLIP ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_SMDSDXI ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_SMDSICIP ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_SONET ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_SONETOVERHEADCHANNEL ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_SONETPATH ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_SONETVT ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_SRP ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_SS7SIGLINK ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_STACKTOSTACK ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_STARLAN ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_T1 ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_TDLC ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_TELINK ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_TERMPAD ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_TR008 ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_TRANSPHDLC ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_TUNNEL ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_ULTRA ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_USB ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_V11 ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_V35 ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_V36 ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_V37 ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_VDSL ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_VIRTUALIPADDRESS ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_VIRTUALTG ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_VOICEDID ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_VOICEEM ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_VOICEEMFGD ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_VOICEENCAP ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_VOICEFGDEANA ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_VOICEFXO ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_VOICEFXS ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_VOICEOVERATM ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_VOICEOVERCABLE ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_VOICEOVERFRAMERELAY ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_VOICEOVERIP ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_X213 ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_X25 ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_X25DDN ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_X25HUNTGROUP ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_X25MLP ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_X25PLE ideal-int
-pkg syscall (openbsd-386-cgo), const IFT_XETHER ideal-int
-pkg syscall (openbsd-386-cgo), const IGNBRK ideal-int
-pkg syscall (openbsd-386-cgo), const IGNCR ideal-int
-pkg syscall (openbsd-386-cgo), const IGNPAR ideal-int
-pkg syscall (openbsd-386-cgo), const IMAXBEL ideal-int
-pkg syscall (openbsd-386-cgo), const INLCR ideal-int
-pkg syscall (openbsd-386-cgo), const INPCK ideal-int
-pkg syscall (openbsd-386-cgo), const IN_CLASSA_HOST ideal-int
-pkg syscall (openbsd-386-cgo), const IN_CLASSA_MAX ideal-int
-pkg syscall (openbsd-386-cgo), const IN_CLASSA_NET ideal-int
-pkg syscall (openbsd-386-cgo), const IN_CLASSA_NSHIFT ideal-int
-pkg syscall (openbsd-386-cgo), const IN_CLASSB_HOST ideal-int
-pkg syscall (openbsd-386-cgo), const IN_CLASSB_MAX ideal-int
-pkg syscall (openbsd-386-cgo), const IN_CLASSB_NET ideal-int
-pkg syscall (openbsd-386-cgo), const IN_CLASSB_NSHIFT ideal-int
-pkg syscall (openbsd-386-cgo), const IN_CLASSC_HOST ideal-int
-pkg syscall (openbsd-386-cgo), const IN_CLASSC_NET ideal-int
-pkg syscall (openbsd-386-cgo), const IN_CLASSC_NSHIFT ideal-int
-pkg syscall (openbsd-386-cgo), const IN_CLASSD_HOST ideal-int
-pkg syscall (openbsd-386-cgo), const IN_CLASSD_NET ideal-int
-pkg syscall (openbsd-386-cgo), const IN_CLASSD_NSHIFT ideal-int
-pkg syscall (openbsd-386-cgo), const IN_LOOPBACKNET ideal-int
-pkg syscall (openbsd-386-cgo), const IN_RFC3021_HOST ideal-int
-pkg syscall (openbsd-386-cgo), const IN_RFC3021_NET ideal-int
-pkg syscall (openbsd-386-cgo), const IN_RFC3021_NSHIFT ideal-int
-pkg syscall (openbsd-386-cgo), const IPPROTO_AH ideal-int
-pkg syscall (openbsd-386-cgo), const IPPROTO_CARP ideal-int
-pkg syscall (openbsd-386-cgo), const IPPROTO_DIVERT ideal-int
-pkg syscall (openbsd-386-cgo), const IPPROTO_DONE ideal-int
-pkg syscall (openbsd-386-cgo), const IPPROTO_DSTOPTS ideal-int
-pkg syscall (openbsd-386-cgo), const IPPROTO_EGP ideal-int
-pkg syscall (openbsd-386-cgo), const IPPROTO_ENCAP ideal-int
-pkg syscall (openbsd-386-cgo), const IPPROTO_EON ideal-int
-pkg syscall (openbsd-386-cgo), const IPPROTO_ESP ideal-int
-pkg syscall (openbsd-386-cgo), const IPPROTO_ETHERIP ideal-int
-pkg syscall (openbsd-386-cgo), const IPPROTO_FRAGMENT ideal-int
-pkg syscall (openbsd-386-cgo), const IPPROTO_GGP ideal-int
-pkg syscall (openbsd-386-cgo), const IPPROTO_GRE ideal-int
-pkg syscall (openbsd-386-cgo), const IPPROTO_HOPOPTS ideal-int
-pkg syscall (openbsd-386-cgo), const IPPROTO_ICMP ideal-int
-pkg syscall (openbsd-386-cgo), const IPPROTO_ICMPV6 ideal-int
-pkg syscall (openbsd-386-cgo), const IPPROTO_IDP ideal-int
-pkg syscall (openbsd-386-cgo), const IPPROTO_IGMP ideal-int
-pkg syscall (openbsd-386-cgo), const IPPROTO_IPCOMP ideal-int
-pkg syscall (openbsd-386-cgo), const IPPROTO_IPIP ideal-int
-pkg syscall (openbsd-386-cgo), const IPPROTO_IPV4 ideal-int
-pkg syscall (openbsd-386-cgo), const IPPROTO_MAX ideal-int
-pkg syscall (openbsd-386-cgo), const IPPROTO_MAXID ideal-int
-pkg syscall (openbsd-386-cgo), const IPPROTO_MOBILE ideal-int
-pkg syscall (openbsd-386-cgo), const IPPROTO_MPLS ideal-int
-pkg syscall (openbsd-386-cgo), const IPPROTO_NONE ideal-int
-pkg syscall (openbsd-386-cgo), const IPPROTO_PFSYNC ideal-int
-pkg syscall (openbsd-386-cgo), const IPPROTO_PIM ideal-int
-pkg syscall (openbsd-386-cgo), const IPPROTO_PUP ideal-int
-pkg syscall (openbsd-386-cgo), const IPPROTO_RAW ideal-int
-pkg syscall (openbsd-386-cgo), const IPPROTO_ROUTING ideal-int
-pkg syscall (openbsd-386-cgo), const IPPROTO_RSVP ideal-int
-pkg syscall (openbsd-386-cgo), const IPPROTO_TP ideal-int
-pkg syscall (openbsd-386-cgo), const IPV6_AUTH_LEVEL ideal-int
-pkg syscall (openbsd-386-cgo), const IPV6_AUTOFLOWLABEL ideal-int
-pkg syscall (openbsd-386-cgo), const IPV6_CHECKSUM ideal-int
-pkg syscall (openbsd-386-cgo), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int
-pkg syscall (openbsd-386-cgo), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int
-pkg syscall (openbsd-386-cgo), const IPV6_DEFHLIM ideal-int
-pkg syscall (openbsd-386-cgo), const IPV6_DONTFRAG ideal-int
-pkg syscall (openbsd-386-cgo), const IPV6_DSTOPTS ideal-int
-pkg syscall (openbsd-386-cgo), const IPV6_ESP_NETWORK_LEVEL ideal-int
-pkg syscall (openbsd-386-cgo), const IPV6_ESP_TRANS_LEVEL ideal-int
-pkg syscall (openbsd-386-cgo), const IPV6_FAITH ideal-int
-pkg syscall (openbsd-386-cgo), const IPV6_FLOWINFO_MASK ideal-int
-pkg syscall (openbsd-386-cgo), const IPV6_FLOWLABEL_MASK ideal-int
-pkg syscall (openbsd-386-cgo), const IPV6_FRAGTTL ideal-int
-pkg syscall (openbsd-386-cgo), const IPV6_HLIMDEC ideal-int
-pkg syscall (openbsd-386-cgo), const IPV6_HOPLIMIT ideal-int
-pkg syscall (openbsd-386-cgo), const IPV6_HOPOPTS ideal-int
-pkg syscall (openbsd-386-cgo), const IPV6_IPCOMP_LEVEL ideal-int
-pkg syscall (openbsd-386-cgo), const IPV6_MAXHLIM ideal-int
-pkg syscall (openbsd-386-cgo), const IPV6_MAXPACKET ideal-int
-pkg syscall (openbsd-386-cgo), const IPV6_MMTU ideal-int
-pkg syscall (openbsd-386-cgo), const IPV6_NEXTHOP ideal-int
-pkg syscall (openbsd-386-cgo), const IPV6_OPTIONS ideal-int
-pkg syscall (openbsd-386-cgo), const IPV6_PATHMTU ideal-int
-pkg syscall (openbsd-386-cgo), const IPV6_PIPEX ideal-int
-pkg syscall (openbsd-386-cgo), const IPV6_PKTINFO ideal-int
-pkg syscall (openbsd-386-cgo), const IPV6_PORTRANGE ideal-int
-pkg syscall (openbsd-386-cgo), const IPV6_PORTRANGE_DEFAULT ideal-int
-pkg syscall (openbsd-386-cgo), const IPV6_PORTRANGE_HIGH ideal-int
-pkg syscall (openbsd-386-cgo), const IPV6_PORTRANGE_LOW ideal-int
-pkg syscall (openbsd-386-cgo), const IPV6_RECVDSTOPTS ideal-int
-pkg syscall (openbsd-386-cgo), const IPV6_RECVHOPLIMIT ideal-int
-pkg syscall (openbsd-386-cgo), const IPV6_RECVHOPOPTS ideal-int
-pkg syscall (openbsd-386-cgo), const IPV6_RECVPATHMTU ideal-int
-pkg syscall (openbsd-386-cgo), const IPV6_RECVPKTINFO ideal-int
-pkg syscall (openbsd-386-cgo), const IPV6_RECVRTHDR ideal-int
-pkg syscall (openbsd-386-cgo), const IPV6_RECVTCLASS ideal-int
-pkg syscall (openbsd-386-cgo), const IPV6_RTABLE ideal-int
-pkg syscall (openbsd-386-cgo), const IPV6_RTHDR ideal-int
-pkg syscall (openbsd-386-cgo), const IPV6_RTHDRDSTOPTS ideal-int
-pkg syscall (openbsd-386-cgo), const IPV6_RTHDR_LOOSE ideal-int
-pkg syscall (openbsd-386-cgo), const IPV6_RTHDR_STRICT ideal-int
-pkg syscall (openbsd-386-cgo), const IPV6_RTHDR_TYPE_0 ideal-int
-pkg syscall (openbsd-386-cgo), const IPV6_SOCKOPT_RESERVED1 ideal-int
-pkg syscall (openbsd-386-cgo), const IPV6_TCLASS ideal-int
-pkg syscall (openbsd-386-cgo), const IPV6_USE_MIN_MTU ideal-int
-pkg syscall (openbsd-386-cgo), const IPV6_VERSION ideal-int
-pkg syscall (openbsd-386-cgo), const IPV6_VERSION_MASK ideal-int
-pkg syscall (openbsd-386-cgo), const IP_AUTH_LEVEL ideal-int
-pkg syscall (openbsd-386-cgo), const IP_DEFAULT_MULTICAST_LOOP ideal-int
-pkg syscall (openbsd-386-cgo), const IP_DEFAULT_MULTICAST_TTL ideal-int
-pkg syscall (openbsd-386-cgo), const IP_DF ideal-int
-pkg syscall (openbsd-386-cgo), const IP_ESP_NETWORK_LEVEL ideal-int
-pkg syscall (openbsd-386-cgo), const IP_ESP_TRANS_LEVEL ideal-int
-pkg syscall (openbsd-386-cgo), const IP_HDRINCL ideal-int
-pkg syscall (openbsd-386-cgo), const IP_IPCOMP_LEVEL ideal-int
-pkg syscall (openbsd-386-cgo), const IP_IPSECFLOWINFO ideal-int
-pkg syscall (openbsd-386-cgo), const IP_IPSEC_LOCAL_AUTH ideal-int
-pkg syscall (openbsd-386-cgo), const IP_IPSEC_LOCAL_CRED ideal-int
-pkg syscall (openbsd-386-cgo), const IP_IPSEC_LOCAL_ID ideal-int
-pkg syscall (openbsd-386-cgo), const IP_IPSEC_REMOTE_AUTH ideal-int
-pkg syscall (openbsd-386-cgo), const IP_IPSEC_REMOTE_CRED ideal-int
-pkg syscall (openbsd-386-cgo), const IP_IPSEC_REMOTE_ID ideal-int
-pkg syscall (openbsd-386-cgo), const IP_MAXPACKET ideal-int
-pkg syscall (openbsd-386-cgo), const IP_MAX_MEMBERSHIPS ideal-int
-pkg syscall (openbsd-386-cgo), const IP_MF ideal-int
-pkg syscall (openbsd-386-cgo), const IP_MINTTL ideal-int
-pkg syscall (openbsd-386-cgo), const IP_MIN_MEMBERSHIPS ideal-int
-pkg syscall (openbsd-386-cgo), const IP_MSS ideal-int
-pkg syscall (openbsd-386-cgo), const IP_OFFMASK ideal-int
-pkg syscall (openbsd-386-cgo), const IP_OPTIONS ideal-int
-pkg syscall (openbsd-386-cgo), const IP_PIPEX ideal-int
-pkg syscall (openbsd-386-cgo), const IP_PORTRANGE ideal-int
-pkg syscall (openbsd-386-cgo), const IP_PORTRANGE_DEFAULT ideal-int
-pkg syscall (openbsd-386-cgo), const IP_PORTRANGE_HIGH ideal-int
-pkg syscall (openbsd-386-cgo), const IP_PORTRANGE_LOW ideal-int
-pkg syscall (openbsd-386-cgo), const IP_RECVDSTADDR ideal-int
-pkg syscall (openbsd-386-cgo), const IP_RECVDSTPORT ideal-int
-pkg syscall (openbsd-386-cgo), const IP_RECVIF ideal-int
-pkg syscall (openbsd-386-cgo), const IP_RECVOPTS ideal-int
-pkg syscall (openbsd-386-cgo), const IP_RECVRETOPTS ideal-int
-pkg syscall (openbsd-386-cgo), const IP_RECVRTABLE ideal-int
-pkg syscall (openbsd-386-cgo), const IP_RECVTTL ideal-int
-pkg syscall (openbsd-386-cgo), const IP_RETOPTS ideal-int
-pkg syscall (openbsd-386-cgo), const IP_RF ideal-int
-pkg syscall (openbsd-386-cgo), const IP_RTABLE ideal-int
-pkg syscall (openbsd-386-cgo), const ISIG ideal-int
-pkg syscall (openbsd-386-cgo), const ISTRIP ideal-int
-pkg syscall (openbsd-386-cgo), const IXANY ideal-int
-pkg syscall (openbsd-386-cgo), const IXOFF ideal-int
-pkg syscall (openbsd-386-cgo), const IXON ideal-int
-pkg syscall (openbsd-386-cgo), const LCNT_OVERLOAD_FLUSH ideal-int
-pkg syscall (openbsd-386-cgo), const LOCK_EX ideal-int
-pkg syscall (openbsd-386-cgo), const LOCK_NB ideal-int
-pkg syscall (openbsd-386-cgo), const LOCK_SH ideal-int
-pkg syscall (openbsd-386-cgo), const LOCK_UN ideal-int
-pkg syscall (openbsd-386-cgo), const MSG_BCAST ideal-int
-pkg syscall (openbsd-386-cgo), const MSG_CTRUNC ideal-int
-pkg syscall (openbsd-386-cgo), const MSG_DONTROUTE ideal-int
-pkg syscall (openbsd-386-cgo), const MSG_DONTWAIT ideal-int
-pkg syscall (openbsd-386-cgo), const MSG_EOR ideal-int
-pkg syscall (openbsd-386-cgo), const MSG_MCAST ideal-int
-pkg syscall (openbsd-386-cgo), const MSG_NOSIGNAL ideal-int
-pkg syscall (openbsd-386-cgo), const MSG_OOB ideal-int
-pkg syscall (openbsd-386-cgo), const MSG_PEEK ideal-int
-pkg syscall (openbsd-386-cgo), const MSG_TRUNC ideal-int
-pkg syscall (openbsd-386-cgo), const MSG_WAITALL ideal-int
-pkg syscall (openbsd-386-cgo), const NAME_MAX ideal-int
-pkg syscall (openbsd-386-cgo), const NET_RT_DUMP ideal-int
-pkg syscall (openbsd-386-cgo), const NET_RT_FLAGS ideal-int
-pkg syscall (openbsd-386-cgo), const NET_RT_IFLIST ideal-int
-pkg syscall (openbsd-386-cgo), const NET_RT_MAXID ideal-int
-pkg syscall (openbsd-386-cgo), const NET_RT_STATS ideal-int
-pkg syscall (openbsd-386-cgo), const NET_RT_TABLE ideal-int
-pkg syscall (openbsd-386-cgo), const NOFLSH ideal-int
-pkg syscall (openbsd-386-cgo), const NOTE_ATTRIB ideal-int
-pkg syscall (openbsd-386-cgo), const NOTE_CHILD ideal-int
-pkg syscall (openbsd-386-cgo), const NOTE_DELETE ideal-int
-pkg syscall (openbsd-386-cgo), const NOTE_EOF ideal-int
-pkg syscall (openbsd-386-cgo), const NOTE_EXEC ideal-int
-pkg syscall (openbsd-386-cgo), const NOTE_EXIT ideal-int
-pkg syscall (openbsd-386-cgo), const NOTE_EXTEND ideal-int
-pkg syscall (openbsd-386-cgo), const NOTE_FORK ideal-int
-pkg syscall (openbsd-386-cgo), const NOTE_LINK ideal-int
-pkg syscall (openbsd-386-cgo), const NOTE_LOWAT ideal-int
-pkg syscall (openbsd-386-cgo), const NOTE_PCTRLMASK ideal-int
-pkg syscall (openbsd-386-cgo), const NOTE_PDATAMASK ideal-int
-pkg syscall (openbsd-386-cgo), const NOTE_RENAME ideal-int
-pkg syscall (openbsd-386-cgo), const NOTE_REVOKE ideal-int
-pkg syscall (openbsd-386-cgo), const NOTE_TRACK ideal-int
-pkg syscall (openbsd-386-cgo), const NOTE_TRACKERR ideal-int
-pkg syscall (openbsd-386-cgo), const NOTE_TRUNCATE ideal-int
-pkg syscall (openbsd-386-cgo), const NOTE_WRITE ideal-int
-pkg syscall (openbsd-386-cgo), const OCRNL ideal-int
-pkg syscall (openbsd-386-cgo), const ONLCR ideal-int
-pkg syscall (openbsd-386-cgo), const ONLRET ideal-int
-pkg syscall (openbsd-386-cgo), const ONOCR ideal-int
-pkg syscall (openbsd-386-cgo), const ONOEOT ideal-int
-pkg syscall (openbsd-386-cgo), const OPOST ideal-int
-pkg syscall (openbsd-386-cgo), const O_ACCMODE ideal-int
-pkg syscall (openbsd-386-cgo), const O_DIRECTORY ideal-int
-pkg syscall (openbsd-386-cgo), const O_DSYNC ideal-int
-pkg syscall (openbsd-386-cgo), const O_EXLOCK ideal-int
-pkg syscall (openbsd-386-cgo), const O_FSYNC ideal-int
-pkg syscall (openbsd-386-cgo), const O_NDELAY ideal-int
-pkg syscall (openbsd-386-cgo), const O_NOFOLLOW ideal-int
-pkg syscall (openbsd-386-cgo), const O_RSYNC ideal-int
-pkg syscall (openbsd-386-cgo), const O_SHLOCK ideal-int
-pkg syscall (openbsd-386-cgo), const PARENB ideal-int
-pkg syscall (openbsd-386-cgo), const PARMRK ideal-int
-pkg syscall (openbsd-386-cgo), const PARODD ideal-int
-pkg syscall (openbsd-386-cgo), const PENDIN ideal-int
-pkg syscall (openbsd-386-cgo), const PF_FLUSH ideal-int
-pkg syscall (openbsd-386-cgo), const PRIO_PGRP = 1
-pkg syscall (openbsd-386-cgo), const PRIO_PGRP ideal-int
-pkg syscall (openbsd-386-cgo), const PRIO_PROCESS = 0
-pkg syscall (openbsd-386-cgo), const PRIO_PROCESS ideal-int
-pkg syscall (openbsd-386-cgo), const PRIO_USER = 2
-pkg syscall (openbsd-386-cgo), const PRIO_USER ideal-int
-pkg syscall (openbsd-386-cgo), const PTRACE_CONT ideal-int
-pkg syscall (openbsd-386-cgo), const PTRACE_KILL ideal-int
-pkg syscall (openbsd-386-cgo), const PTRACE_TRACEME ideal-int
-pkg syscall (openbsd-386-cgo), const PT_MASK ideal-int
-pkg syscall (openbsd-386-cgo), const RLIMIT_CORE ideal-int
-pkg syscall (openbsd-386-cgo), const RLIMIT_CPU ideal-int
-pkg syscall (openbsd-386-cgo), const RLIMIT_DATA ideal-int
-pkg syscall (openbsd-386-cgo), const RLIMIT_FSIZE ideal-int
-pkg syscall (openbsd-386-cgo), const RLIMIT_NOFILE ideal-int
-pkg syscall (openbsd-386-cgo), const RLIMIT_STACK ideal-int
-pkg syscall (openbsd-386-cgo), const RLIM_INFINITY ideal-int
-pkg syscall (openbsd-386-cgo), const RTAX_AUTHOR ideal-int
-pkg syscall (openbsd-386-cgo), const RTAX_BRD ideal-int
-pkg syscall (openbsd-386-cgo), const RTAX_DST ideal-int
-pkg syscall (openbsd-386-cgo), const RTAX_GATEWAY ideal-int
-pkg syscall (openbsd-386-cgo), const RTAX_GENMASK ideal-int
-pkg syscall (openbsd-386-cgo), const RTAX_IFA ideal-int
-pkg syscall (openbsd-386-cgo), const RTAX_IFP ideal-int
-pkg syscall (openbsd-386-cgo), const RTAX_LABEL ideal-int
-pkg syscall (openbsd-386-cgo), const RTAX_MAX ideal-int
-pkg syscall (openbsd-386-cgo), const RTAX_NETMASK ideal-int
-pkg syscall (openbsd-386-cgo), const RTAX_SRC ideal-int
-pkg syscall (openbsd-386-cgo), const RTAX_SRCMASK ideal-int
-pkg syscall (openbsd-386-cgo), const RTA_AUTHOR ideal-int
-pkg syscall (openbsd-386-cgo), const RTA_BRD ideal-int
-pkg syscall (openbsd-386-cgo), const RTA_DST ideal-int
-pkg syscall (openbsd-386-cgo), const RTA_GATEWAY ideal-int
-pkg syscall (openbsd-386-cgo), const RTA_GENMASK ideal-int
-pkg syscall (openbsd-386-cgo), const RTA_IFA ideal-int
-pkg syscall (openbsd-386-cgo), const RTA_IFP ideal-int
-pkg syscall (openbsd-386-cgo), const RTA_LABEL ideal-int
-pkg syscall (openbsd-386-cgo), const RTA_NETMASK ideal-int
-pkg syscall (openbsd-386-cgo), const RTA_SRC ideal-int
-pkg syscall (openbsd-386-cgo), const RTA_SRCMASK ideal-int
-pkg syscall (openbsd-386-cgo), const RTF_ANNOUNCE ideal-int
-pkg syscall (openbsd-386-cgo), const RTF_BLACKHOLE ideal-int
-pkg syscall (openbsd-386-cgo), const RTF_CLONED ideal-int
-pkg syscall (openbsd-386-cgo), const RTF_CLONING ideal-int
-pkg syscall (openbsd-386-cgo), const RTF_DONE ideal-int
-pkg syscall (openbsd-386-cgo), const RTF_DYNAMIC ideal-int
-pkg syscall (openbsd-386-cgo), const RTF_FMASK ideal-int
-pkg syscall (openbsd-386-cgo), const RTF_GATEWAY ideal-int
-pkg syscall (openbsd-386-cgo), const RTF_HOST ideal-int
-pkg syscall (openbsd-386-cgo), const RTF_LLINFO ideal-int
-pkg syscall (openbsd-386-cgo), const RTF_MASK ideal-int
-pkg syscall (openbsd-386-cgo), const RTF_MODIFIED ideal-int
-pkg syscall (openbsd-386-cgo), const RTF_MPATH ideal-int
-pkg syscall (openbsd-386-cgo), const RTF_MPLS ideal-int
-pkg syscall (openbsd-386-cgo), const RTF_PERMANENT_ARP ideal-int
-pkg syscall (openbsd-386-cgo), const RTF_PROTO1 ideal-int
-pkg syscall (openbsd-386-cgo), const RTF_PROTO2 ideal-int
-pkg syscall (openbsd-386-cgo), const RTF_PROTO3 ideal-int
-pkg syscall (openbsd-386-cgo), const RTF_REJECT ideal-int
-pkg syscall (openbsd-386-cgo), const RTF_SOURCE ideal-int
-pkg syscall (openbsd-386-cgo), const RTF_STATIC ideal-int
-pkg syscall (openbsd-386-cgo), const RTF_TUNNEL ideal-int
-pkg syscall (openbsd-386-cgo), const RTF_UP ideal-int
-pkg syscall (openbsd-386-cgo), const RTF_USETRAILERS ideal-int
-pkg syscall (openbsd-386-cgo), const RTF_XRESOLVE ideal-int
-pkg syscall (openbsd-386-cgo), const RTM_ADD ideal-int
-pkg syscall (openbsd-386-cgo), const RTM_CHANGE ideal-int
-pkg syscall (openbsd-386-cgo), const RTM_DELADDR ideal-int
-pkg syscall (openbsd-386-cgo), const RTM_DELETE ideal-int
-pkg syscall (openbsd-386-cgo), const RTM_DESYNC ideal-int
-pkg syscall (openbsd-386-cgo), const RTM_GET ideal-int
-pkg syscall (openbsd-386-cgo), const RTM_IFANNOUNCE ideal-int
-pkg syscall (openbsd-386-cgo), const RTM_IFINFO ideal-int
-pkg syscall (openbsd-386-cgo), const RTM_LOCK ideal-int
-pkg syscall (openbsd-386-cgo), const RTM_LOSING ideal-int
-pkg syscall (openbsd-386-cgo), const RTM_MAXSIZE ideal-int
-pkg syscall (openbsd-386-cgo), const RTM_MISS ideal-int
-pkg syscall (openbsd-386-cgo), const RTM_NEWADDR ideal-int
-pkg syscall (openbsd-386-cgo), const RTM_REDIRECT ideal-int
-pkg syscall (openbsd-386-cgo), const RTM_RESOLVE ideal-int
-pkg syscall (openbsd-386-cgo), const RTM_RTTUNIT ideal-int
-pkg syscall (openbsd-386-cgo), const RTM_VERSION ideal-int
-pkg syscall (openbsd-386-cgo), const RTV_EXPIRE ideal-int
-pkg syscall (openbsd-386-cgo), const RTV_HOPCOUNT ideal-int
-pkg syscall (openbsd-386-cgo), const RTV_MTU ideal-int
-pkg syscall (openbsd-386-cgo), const RTV_RPIPE ideal-int
-pkg syscall (openbsd-386-cgo), const RTV_RTT ideal-int
-pkg syscall (openbsd-386-cgo), const RTV_RTTVAR ideal-int
-pkg syscall (openbsd-386-cgo), const RTV_SPIPE ideal-int
-pkg syscall (openbsd-386-cgo), const RTV_SSTHRESH ideal-int
-pkg syscall (openbsd-386-cgo), const RT_TABLEID_MAX ideal-int
-pkg syscall (openbsd-386-cgo), const RUSAGE_CHILDREN ideal-int
-pkg syscall (openbsd-386-cgo), const RUSAGE_SELF ideal-int
-pkg syscall (openbsd-386-cgo), const RUSAGE_THREAD ideal-int
-pkg syscall (openbsd-386-cgo), const SCM_RIGHTS ideal-int
-pkg syscall (openbsd-386-cgo), const SCM_TIMESTAMP ideal-int
-pkg syscall (openbsd-386-cgo), const SIGCHLD Signal
-pkg syscall (openbsd-386-cgo), const SIGCONT Signal
-pkg syscall (openbsd-386-cgo), const SIGEMT Signal
-pkg syscall (openbsd-386-cgo), const SIGINFO Signal
-pkg syscall (openbsd-386-cgo), const SIGIO Signal
-pkg syscall (openbsd-386-cgo), const SIGIOT Signal
-pkg syscall (openbsd-386-cgo), const SIGPROF Signal
-pkg syscall (openbsd-386-cgo), const SIGSTOP Signal
-pkg syscall (openbsd-386-cgo), const SIGSYS Signal
-pkg syscall (openbsd-386-cgo), const SIGTHR Signal
-pkg syscall (openbsd-386-cgo), const SIGTSTP Signal
-pkg syscall (openbsd-386-cgo), const SIGTTIN Signal
-pkg syscall (openbsd-386-cgo), const SIGTTOU Signal
-pkg syscall (openbsd-386-cgo), const SIGURG Signal
-pkg syscall (openbsd-386-cgo), const SIGUSR1 Signal
-pkg syscall (openbsd-386-cgo), const SIGUSR2 Signal
-pkg syscall (openbsd-386-cgo), const SIGVTALRM Signal
-pkg syscall (openbsd-386-cgo), const SIGWINCH Signal
-pkg syscall (openbsd-386-cgo), const SIGXCPU Signal
-pkg syscall (openbsd-386-cgo), const SIGXFSZ Signal
-pkg syscall (openbsd-386-cgo), const SIOCADDMULTI ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCAIFADDR ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCAIFGROUP ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCALIFADDR ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCATMARK ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCBRDGADD ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCBRDGADDS ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCBRDGARL ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCBRDGDADDR ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCBRDGDEL ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCBRDGDELS ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCBRDGFLUSH ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCBRDGFRL ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCBRDGGCACHE ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCBRDGGFD ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCBRDGGHT ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCBRDGGIFFLGS ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCBRDGGMA ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCBRDGGPARAM ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCBRDGGPRI ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCBRDGGRL ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCBRDGGSIFS ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCBRDGGTO ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCBRDGIFS ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCBRDGRTS ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCBRDGSADDR ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCBRDGSCACHE ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCBRDGSFD ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCBRDGSHT ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCBRDGSIFCOST ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCBRDGSIFFLGS ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCBRDGSIFPRIO ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCBRDGSMA ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCBRDGSPRI ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCBRDGSPROTO ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCBRDGSTO ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCBRDGSTXHC ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCDELMULTI ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCDIFADDR ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCDIFGROUP ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCDIFPHYADDR ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCDLIFADDR ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCGETKALIVE ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCGETLABEL ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCGETPFLOW ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCGETPFSYNC ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCGETSGCNT ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCGETVIFCNT ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCGHIWAT ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCGIFADDR ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCGIFASYNCMAP ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCGIFBRDADDR ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCGIFCONF ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCGIFDATA ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCGIFDESCR ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCGIFDSTADDR ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCGIFFLAGS ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCGIFGATTR ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCGIFGENERIC ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCGIFGMEMB ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCGIFGROUP ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCGIFMEDIA ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCGIFMETRIC ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCGIFMTU ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCGIFNETMASK ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCGIFPDSTADDR ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCGIFPRIORITY ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCGIFPSRCADDR ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCGIFRDOMAIN ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCGIFRTLABEL ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCGIFTIMESLOT ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCGIFXFLAGS ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCGLIFADDR ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCGLIFPHYADDR ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCGLIFPHYRTABLE ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCGLOWAT ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCGPGRP ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCGVH ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCIFCREATE ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCIFDESTROY ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCIFGCLONERS ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCSETKALIVE ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCSETLABEL ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCSETPFLOW ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCSETPFSYNC ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCSHIWAT ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCSIFADDR ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCSIFASYNCMAP ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCSIFBRDADDR ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCSIFDESCR ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCSIFDSTADDR ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCSIFFLAGS ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCSIFGATTR ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCSIFGENERIC ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCSIFLLADDR ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCSIFMEDIA ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCSIFMETRIC ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCSIFMTU ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCSIFNETMASK ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCSIFPHYADDR ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCSIFPRIORITY ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCSIFRDOMAIN ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCSIFRTLABEL ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCSIFTIMESLOT ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCSIFXFLAGS ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCSLIFPHYADDR ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCSLIFPHYRTABLE ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCSLOWAT ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCSPGRP ideal-int
-pkg syscall (openbsd-386-cgo), const SIOCSVH ideal-int
-pkg syscall (openbsd-386-cgo), const SOCK_RDM ideal-int
-pkg syscall (openbsd-386-cgo), const SO_ACCEPTCONN ideal-int
-pkg syscall (openbsd-386-cgo), const SO_BINDANY ideal-int
-pkg syscall (openbsd-386-cgo), const SO_DEBUG ideal-int
-pkg syscall (openbsd-386-cgo), const SO_ERROR ideal-int
-pkg syscall (openbsd-386-cgo), const SO_NETPROC ideal-int
-pkg syscall (openbsd-386-cgo), const SO_OOBINLINE ideal-int
-pkg syscall (openbsd-386-cgo), const SO_PEERCRED ideal-int
-pkg syscall (openbsd-386-cgo), const SO_RCVLOWAT ideal-int
-pkg syscall (openbsd-386-cgo), const SO_RCVTIMEO ideal-int
-pkg syscall (openbsd-386-cgo), const SO_REUSEPORT ideal-int
-pkg syscall (openbsd-386-cgo), const SO_RTABLE ideal-int
-pkg syscall (openbsd-386-cgo), const SO_SNDLOWAT ideal-int
-pkg syscall (openbsd-386-cgo), const SO_SNDTIMEO ideal-int
-pkg syscall (openbsd-386-cgo), const SO_SPLICE ideal-int
-pkg syscall (openbsd-386-cgo), const SO_TIMESTAMP ideal-int
-pkg syscall (openbsd-386-cgo), const SO_TYPE ideal-int
-pkg syscall (openbsd-386-cgo), const SO_USELOOPBACK ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_ACCEPT ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_ACCESS ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_ACCT ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_ADJFREQ ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_ADJTIME ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_BIND ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_CHDIR ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_CHFLAGS ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_CHMOD ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_CHOWN ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_CHROOT ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_CLOCK_GETRES ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_CLOCK_GETTIME ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_CLOCK_SETTIME ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_CLOSE ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_CLOSEFROM ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_CONNECT ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_DUP ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_DUP2 ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_EXECVE ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_EXIT ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_FACCESSAT ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_FCHDIR ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_FCHFLAGS ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_FCHMOD ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_FCHMODAT ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_FCHOWN ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_FCHOWNAT ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_FCNTL ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_FHOPEN ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_FHSTAT ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_FHSTATFS ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_FLOCK ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_FORK ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_FPATHCONF ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_FSTAT ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_FSTATAT ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_FSTATFS ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_FSYNC ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_FTRUNCATE ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_FUTIMENS ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_FUTIMES ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_GETDIRENTRIES ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_GETDTABLECOUNT ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_GETEGID ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_GETEUID ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_GETFH ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_GETFSSTAT ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_GETGID ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_GETGROUPS ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_GETITIMER ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_GETLOGIN ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_GETPEERNAME ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_GETPGID ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_GETPGRP ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_GETPID ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_GETPPID ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_GETPRIORITY ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_GETRESGID ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_GETRESUID ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_GETRLIMIT ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_GETRTABLE ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_GETRUSAGE ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_GETSID ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_GETSOCKNAME ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_GETSOCKOPT ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_GETTHRID ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_GETTIMEOFDAY ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_GETUID ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_IOCTL ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_ISSETUGID ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_KEVENT ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_KILL ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_KQUEUE ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_KTRACE ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_LCHOWN ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_LINK ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_LINKAT ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_LISTEN ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_LSEEK ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_LSTAT ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_MADVISE ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_MINCORE ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_MINHERIT ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_MKDIR ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_MKDIRAT ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_MKFIFO ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_MKFIFOAT ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_MKNOD ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_MKNODAT ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_MLOCK ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_MLOCKALL ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_MMAP ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_MOUNT ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_MPROTECT ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_MQUERY ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_MSGCTL ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_MSGGET ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_MSGRCV ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_MSGSND ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_MSYNC ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_MUNLOCK ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_MUNLOCKALL ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_MUNMAP ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_NANOSLEEP ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_NFSSVC ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_OBREAK ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_OPEN ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_OPENAT ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_PATHCONF ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_PIPE ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_POLL ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_PREAD ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_PREADV ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_PROFIL ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_PTRACE ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_PWRITE ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_PWRITEV ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_QUOTACTL ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_READ ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_READLINK ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_READLINKAT ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_READV ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_REBOOT ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_RECVFROM ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_RECVMSG ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_RENAME ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_RENAMEAT ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_REVOKE ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_RMDIR ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_SCHED_YIELD ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_SELECT ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_SEMGET ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_SEMOP ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_SENDMSG ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_SENDTO ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_SETEGID ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_SETEUID ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_SETGID ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_SETGROUPS ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_SETITIMER ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_SETLOGIN ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_SETPGID ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_SETPRIORITY ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_SETREGID ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_SETRESGID ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_SETRESUID ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_SETREUID ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_SETRLIMIT ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_SETRTABLE ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_SETSID ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_SETSOCKOPT ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_SETTIMEOFDAY ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_SETUID ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_SHMAT ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_SHMCTL ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_SHMDT ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_SHMGET ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_SHUTDOWN ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_SIGACTION ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_SIGALTSTACK ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_SIGPENDING ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_SIGPROCMASK ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_SIGRETURN ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_SIGSUSPEND ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_SOCKET ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_SOCKETPAIR ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_STAT ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_STATFS ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_SWAPCTL ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_SYMLINK ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_SYMLINKAT ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_SYNC ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_SYSARCH ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_TRUNCATE ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_UMASK ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_UNLINK ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_UNLINKAT ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_UNMOUNT ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_UTIMENSAT ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_UTIMES ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_VFORK ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_WAIT4 ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_WRITE ideal-int
-pkg syscall (openbsd-386-cgo), const SYS_WRITEV ideal-int
-pkg syscall (openbsd-386-cgo), const SYS___GETCWD ideal-int
-pkg syscall (openbsd-386-cgo), const SYS___GET_TCB ideal-int
-pkg syscall (openbsd-386-cgo), const SYS___SEMCTL ideal-int
-pkg syscall (openbsd-386-cgo), const SYS___SET_TCB ideal-int
-pkg syscall (openbsd-386-cgo), const SYS___SYSCTL ideal-int
-pkg syscall (openbsd-386-cgo), const SYS___TFORK ideal-int
-pkg syscall (openbsd-386-cgo), const SYS___THREXIT ideal-int
-pkg syscall (openbsd-386-cgo), const SYS___THRSIGDIVERT ideal-int
-pkg syscall (openbsd-386-cgo), const SYS___THRSLEEP ideal-int
-pkg syscall (openbsd-386-cgo), const SYS___THRWAKEUP ideal-int
-pkg syscall (openbsd-386-cgo), const SizeofBpfHdr ideal-int
-pkg syscall (openbsd-386-cgo), const SizeofBpfInsn ideal-int
-pkg syscall (openbsd-386-cgo), const SizeofBpfProgram ideal-int
-pkg syscall (openbsd-386-cgo), const SizeofBpfStat ideal-int
-pkg syscall (openbsd-386-cgo), const SizeofBpfVersion ideal-int
-pkg syscall (openbsd-386-cgo), const SizeofCmsghdr ideal-int
-pkg syscall (openbsd-386-cgo), const SizeofICMPv6Filter = 32
-pkg syscall (openbsd-386-cgo), const SizeofICMPv6Filter ideal-int
-pkg syscall (openbsd-386-cgo), const SizeofIPMreq ideal-int
-pkg syscall (openbsd-386-cgo), const SizeofIPv6MTUInfo = 32
-pkg syscall (openbsd-386-cgo), const SizeofIPv6MTUInfo ideal-int
-pkg syscall (openbsd-386-cgo), const SizeofIPv6Mreq ideal-int
-pkg syscall (openbsd-386-cgo), const SizeofIfAnnounceMsghdr ideal-int
-pkg syscall (openbsd-386-cgo), const SizeofIfData ideal-int
-pkg syscall (openbsd-386-cgo), const SizeofIfMsghdr ideal-int
-pkg syscall (openbsd-386-cgo), const SizeofIfaMsghdr ideal-int
-pkg syscall (openbsd-386-cgo), const SizeofInet6Pktinfo ideal-int
-pkg syscall (openbsd-386-cgo), const SizeofLinger ideal-int
-pkg syscall (openbsd-386-cgo), const SizeofMsghdr ideal-int
-pkg syscall (openbsd-386-cgo), const SizeofRtMetrics ideal-int
-pkg syscall (openbsd-386-cgo), const SizeofRtMsghdr ideal-int
-pkg syscall (openbsd-386-cgo), const SizeofSockaddrAny ideal-int
-pkg syscall (openbsd-386-cgo), const SizeofSockaddrDatalink ideal-int
-pkg syscall (openbsd-386-cgo), const SizeofSockaddrInet4 ideal-int
-pkg syscall (openbsd-386-cgo), const SizeofSockaddrInet6 ideal-int
-pkg syscall (openbsd-386-cgo), const SizeofSockaddrUnix ideal-int
-pkg syscall (openbsd-386-cgo), const TCIFLUSH ideal-int
-pkg syscall (openbsd-386-cgo), const TCIOFLUSH ideal-int
-pkg syscall (openbsd-386-cgo), const TCOFLUSH ideal-int
-pkg syscall (openbsd-386-cgo), const TCP_MAXBURST ideal-int
-pkg syscall (openbsd-386-cgo), const TCP_MAXSEG ideal-int
-pkg syscall (openbsd-386-cgo), const TCP_MAXWIN ideal-int
-pkg syscall (openbsd-386-cgo), const TCP_MAX_SACK ideal-int
-pkg syscall (openbsd-386-cgo), const TCP_MAX_WINSHIFT ideal-int
-pkg syscall (openbsd-386-cgo), const TCP_MD5SIG ideal-int
-pkg syscall (openbsd-386-cgo), const TCP_MSS ideal-int
-pkg syscall (openbsd-386-cgo), const TCP_NSTATES ideal-int
-pkg syscall (openbsd-386-cgo), const TCP_SACK_ENABLE ideal-int
-pkg syscall (openbsd-386-cgo), const TCSAFLUSH ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCCBRK ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCCDTR ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCCONS ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCDRAIN ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCEXCL ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCEXT ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCFLAG_CLOCAL ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCFLAG_CRTSCTS ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCFLAG_MDMBUF ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCFLAG_PPS ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCFLAG_SOFTCAR ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCFLUSH ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCGETA ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCGETD ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCGFLAGS ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCGPGRP ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCGTSTAMP ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCGWINSZ ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCMBIC ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCMBIS ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCMGET ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCMODG ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCMODS ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCMSET ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCM_CAR ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCM_CD ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCM_CTS ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCM_DSR ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCM_DTR ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCM_LE ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCM_RI ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCM_RNG ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCM_RTS ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCM_SR ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCM_ST ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCNOTTY ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCNXCL ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCOUTQ ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCPKT ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCPKT_DATA ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCPKT_DOSTOP ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCPKT_FLUSHREAD ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCPKT_FLUSHWRITE ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCPKT_IOCTL ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCPKT_NOSTOP ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCPKT_START ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCPKT_STOP ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCREMOTE ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCSBRK ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCSCTTY ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCSDTR ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCSETA ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCSETAF ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCSETAW ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCSETD ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCSFLAGS ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCSIG ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCSPGRP ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCSTART ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCSTAT ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCSTI ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCSTOP ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCSTSTAMP ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCSWINSZ ideal-int
-pkg syscall (openbsd-386-cgo), const TIOCUCNTL ideal-int
-pkg syscall (openbsd-386-cgo), const TOSTOP ideal-int
-pkg syscall (openbsd-386-cgo), const VDISCARD ideal-int
-pkg syscall (openbsd-386-cgo), const VDSUSP ideal-int
-pkg syscall (openbsd-386-cgo), const VEOF ideal-int
-pkg syscall (openbsd-386-cgo), const VEOL ideal-int
-pkg syscall (openbsd-386-cgo), const VEOL2 ideal-int
-pkg syscall (openbsd-386-cgo), const VERASE ideal-int
-pkg syscall (openbsd-386-cgo), const VINTR ideal-int
-pkg syscall (openbsd-386-cgo), const VKILL ideal-int
-pkg syscall (openbsd-386-cgo), const VLNEXT ideal-int
-pkg syscall (openbsd-386-cgo), const VMIN ideal-int
-pkg syscall (openbsd-386-cgo), const VQUIT ideal-int
-pkg syscall (openbsd-386-cgo), const VREPRINT ideal-int
-pkg syscall (openbsd-386-cgo), const VSTART ideal-int
-pkg syscall (openbsd-386-cgo), const VSTATUS ideal-int
-pkg syscall (openbsd-386-cgo), const VSTOP ideal-int
-pkg syscall (openbsd-386-cgo), const VSUSP ideal-int
-pkg syscall (openbsd-386-cgo), const VTIME ideal-int
-pkg syscall (openbsd-386-cgo), const VWERASE ideal-int
-pkg syscall (openbsd-386-cgo), const WALTSIG ideal-int
-pkg syscall (openbsd-386-cgo), const WCONTINUED ideal-int
-pkg syscall (openbsd-386-cgo), const WCOREFLAG ideal-int
-pkg syscall (openbsd-386-cgo), const WNOHANG ideal-int
-pkg syscall (openbsd-386-cgo), const WSTOPPED ideal-int
-pkg syscall (openbsd-386-cgo), const WUNTRACED ideal-int
-pkg syscall (openbsd-386-cgo), func Accept(int) (int, Sockaddr, error)
-pkg syscall (openbsd-386-cgo), func Access(string, uint32) error
-pkg syscall (openbsd-386-cgo), func Adjtime(*Timeval, *Timeval) error
-pkg syscall (openbsd-386-cgo), func Bind(int, Sockaddr) error
-pkg syscall (openbsd-386-cgo), func BpfBuflen(int) (int, error)
-pkg syscall (openbsd-386-cgo), func BpfDatalink(int) (int, error)
-pkg syscall (openbsd-386-cgo), func BpfHeadercmpl(int) (int, error)
-pkg syscall (openbsd-386-cgo), func BpfInterface(int, string) (string, error)
-pkg syscall (openbsd-386-cgo), func BpfJump(int, int, int, int) *BpfInsn
-pkg syscall (openbsd-386-cgo), func BpfStats(int) (*BpfStat, error)
-pkg syscall (openbsd-386-cgo), func BpfStmt(int, int) *BpfInsn
-pkg syscall (openbsd-386-cgo), func BpfTimeout(int) (*Timeval, error)
-pkg syscall (openbsd-386-cgo), func CheckBpfVersion(int) error
-pkg syscall (openbsd-386-cgo), func Chflags(string, int) error
-pkg syscall (openbsd-386-cgo), func Chroot(string) error
-pkg syscall (openbsd-386-cgo), func Close(int) error
-pkg syscall (openbsd-386-cgo), func CloseOnExec(int)
-pkg syscall (openbsd-386-cgo), func CmsgLen(int) int
-pkg syscall (openbsd-386-cgo), func CmsgSpace(int) int
-pkg syscall (openbsd-386-cgo), func Connect(int, Sockaddr) error
-pkg syscall (openbsd-386-cgo), func Dup(int) (int, error)
-pkg syscall (openbsd-386-cgo), func Dup2(int, int) error
-pkg syscall (openbsd-386-cgo), func Fchdir(int) error
-pkg syscall (openbsd-386-cgo), func Fchflags(int, int) error
-pkg syscall (openbsd-386-cgo), func Fchmod(int, uint32) error
-pkg syscall (openbsd-386-cgo), func Fchown(int, int, int) error
-pkg syscall (openbsd-386-cgo), func Flock(int, int) error
-pkg syscall (openbsd-386-cgo), func FlushBpf(int) error
-pkg syscall (openbsd-386-cgo), func ForkExec(string, []string, *ProcAttr) (int, error)
-pkg syscall (openbsd-386-cgo), func Fpathconf(int, int) (int, error)
-pkg syscall (openbsd-386-cgo), func Fstat(int, *Stat_t) error
-pkg syscall (openbsd-386-cgo), func Fstatfs(int, *Statfs_t) error
-pkg syscall (openbsd-386-cgo), func Fsync(int) error
-pkg syscall (openbsd-386-cgo), func Ftruncate(int, int64) error
-pkg syscall (openbsd-386-cgo), func Futimes(int, []Timeval) error
-pkg syscall (openbsd-386-cgo), func Getdirentries(int, []uint8, *uintptr) (int, error)
-pkg syscall (openbsd-386-cgo), func Getfsstat([]Statfs_t, int) (int, error)
-pkg syscall (openbsd-386-cgo), func Getpeername(int) (Sockaddr, error)
-pkg syscall (openbsd-386-cgo), func Getpgid(int) (int, error)
-pkg syscall (openbsd-386-cgo), func Getpgrp() int
-pkg syscall (openbsd-386-cgo), func Getpriority(int, int) (int, error)
-pkg syscall (openbsd-386-cgo), func Getrlimit(int, *Rlimit) error
-pkg syscall (openbsd-386-cgo), func Getrusage(int, *Rusage) error
-pkg syscall (openbsd-386-cgo), func Getsid(int) (int, error)
-pkg syscall (openbsd-386-cgo), func Getsockname(int) (Sockaddr, error)
-pkg syscall (openbsd-386-cgo), func GetsockoptByte(int, int, int) (uint8, error)
-pkg syscall (openbsd-386-cgo), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
-pkg syscall (openbsd-386-cgo), func GetsockoptIPMreq(int, int, int) (*IPMreq, error)
-pkg syscall (openbsd-386-cgo), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
-pkg syscall (openbsd-386-cgo), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error)
-pkg syscall (openbsd-386-cgo), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error)
-pkg syscall (openbsd-386-cgo), func GetsockoptInt(int, int, int) (int, error)
-pkg syscall (openbsd-386-cgo), func Issetugid() bool
-pkg syscall (openbsd-386-cgo), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error)
-pkg syscall (openbsd-386-cgo), func Kill(int, Signal) error
-pkg syscall (openbsd-386-cgo), func Kqueue() (int, error)
-pkg syscall (openbsd-386-cgo), func Listen(int, int) error
-pkg syscall (openbsd-386-cgo), func Lstat(string, *Stat_t) error
-pkg syscall (openbsd-386-cgo), func Mkfifo(string, uint32) error
-pkg syscall (openbsd-386-cgo), func Mknod(string, uint32, int) error
-pkg syscall (openbsd-386-cgo), func Mmap(int, int64, int, int, int) ([]uint8, error)
-pkg syscall (openbsd-386-cgo), func Munmap([]uint8) error
-pkg syscall (openbsd-386-cgo), func Nanosleep(*Timespec, *Timespec) error
-pkg syscall (openbsd-386-cgo), func Open(string, int, uint32) (int, error)
-pkg syscall (openbsd-386-cgo), func ParseDirent([]uint8, int, []string) (int, int, []string)
-pkg syscall (openbsd-386-cgo), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error)
-pkg syscall (openbsd-386-cgo), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error)
-pkg syscall (openbsd-386-cgo), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error)
-pkg syscall (openbsd-386-cgo), func ParseUnixRights(*SocketControlMessage) ([]int, error)
-pkg syscall (openbsd-386-cgo), func Pathconf(string, int) (int, error)
-pkg syscall (openbsd-386-cgo), func Pipe([]int) error
-pkg syscall (openbsd-386-cgo), func Pread(int, []uint8, int64) (int, error)
-pkg syscall (openbsd-386-cgo), func Pwrite(int, []uint8, int64) (int, error)
-pkg syscall (openbsd-386-cgo), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (openbsd-386-cgo), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (openbsd-386-cgo), func Read(int, []uint8) (int, error)
-pkg syscall (openbsd-386-cgo), func ReadDirent(int, []uint8) (int, error)
-pkg syscall (openbsd-386-cgo), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
-pkg syscall (openbsd-386-cgo), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
-pkg syscall (openbsd-386-cgo), func Revoke(string) error
-pkg syscall (openbsd-386-cgo), func RouteRIB(int, int) ([]uint8, error)
-pkg syscall (openbsd-386-cgo), func Seek(int, int64, int) (int64, error)
-pkg syscall (openbsd-386-cgo), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error
-pkg syscall (openbsd-386-cgo), func Sendfile(int, int, *int64, int) (int, error)
-pkg syscall (openbsd-386-cgo), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
-pkg syscall (openbsd-386-cgo), func Sendto(int, []uint8, int, Sockaddr) error
-pkg syscall (openbsd-386-cgo), func SetBpf(int, []BpfInsn) error
-pkg syscall (openbsd-386-cgo), func SetBpfBuflen(int, int) (int, error)
-pkg syscall (openbsd-386-cgo), func SetBpfDatalink(int, int) (int, error)
-pkg syscall (openbsd-386-cgo), func SetBpfHeadercmpl(int, int) error
-pkg syscall (openbsd-386-cgo), func SetBpfImmediate(int, int) error
-pkg syscall (openbsd-386-cgo), func SetBpfInterface(int, string) error
-pkg syscall (openbsd-386-cgo), func SetBpfPromisc(int, int) error
-pkg syscall (openbsd-386-cgo), func SetBpfTimeout(int, *Timeval) error
-pkg syscall (openbsd-386-cgo), func SetKevent(*Kevent_t, int, int, int)
-pkg syscall (openbsd-386-cgo), func SetNonblock(int, bool) error
-pkg syscall (openbsd-386-cgo), func Setegid(int) error
-pkg syscall (openbsd-386-cgo), func Seteuid(int) error
-pkg syscall (openbsd-386-cgo), func Setgid(int) error
-pkg syscall (openbsd-386-cgo), func Setgroups([]int) error
-pkg syscall (openbsd-386-cgo), func Setlogin(string) error
-pkg syscall (openbsd-386-cgo), func Setpgid(int, int) error
-pkg syscall (openbsd-386-cgo), func Setpriority(int, int, int) error
-pkg syscall (openbsd-386-cgo), func Setregid(int, int) error
-pkg syscall (openbsd-386-cgo), func Setreuid(int, int) error
-pkg syscall (openbsd-386-cgo), func Setrlimit(int, *Rlimit) error
-pkg syscall (openbsd-386-cgo), func Setsid() (int, error)
-pkg syscall (openbsd-386-cgo), func SetsockoptByte(int, int, int, uint8) error
-pkg syscall (openbsd-386-cgo), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
-pkg syscall (openbsd-386-cgo), func SetsockoptIPMreq(int, int, int, *IPMreq) error
-pkg syscall (openbsd-386-cgo), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error
-pkg syscall (openbsd-386-cgo), func SetsockoptInet4Addr(int, int, int, [4]uint8) error
-pkg syscall (openbsd-386-cgo), func SetsockoptInt(int, int, int, int) error
-pkg syscall (openbsd-386-cgo), func SetsockoptLinger(int, int, int, *Linger) error
-pkg syscall (openbsd-386-cgo), func SetsockoptString(int, int, int, string) error
-pkg syscall (openbsd-386-cgo), func SetsockoptTimeval(int, int, int, *Timeval) error
-pkg syscall (openbsd-386-cgo), func Settimeofday(*Timeval) error
-pkg syscall (openbsd-386-cgo), func Setuid(int) error
-pkg syscall (openbsd-386-cgo), func Shutdown(int, int) error
-pkg syscall (openbsd-386-cgo), func SlicePtrFromStrings([]string) ([]*uint8, error)
-pkg syscall (openbsd-386-cgo), func Socket(int, int, int) (int, error)
-pkg syscall (openbsd-386-cgo), func Socketpair(int, int, int) ([2]int, error)
-pkg syscall (openbsd-386-cgo), func Stat(string, *Stat_t) error
-pkg syscall (openbsd-386-cgo), func Statfs(string, *Statfs_t) error
-pkg syscall (openbsd-386-cgo), func StringSlicePtr([]string) []*uint8
-pkg syscall (openbsd-386-cgo), func Sync() error
-pkg syscall (openbsd-386-cgo), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (openbsd-386-cgo), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (openbsd-386-cgo), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (openbsd-386-cgo), func Sysctl(string) (string, error)
-pkg syscall (openbsd-386-cgo), func SysctlUint32(string) (uint32, error)
-pkg syscall (openbsd-386-cgo), func TimevalToNsec(Timeval) int64
-pkg syscall (openbsd-386-cgo), func Truncate(string, int64) error
-pkg syscall (openbsd-386-cgo), func Umask(int) int
-pkg syscall (openbsd-386-cgo), func UnixRights(...int) []uint8
-pkg syscall (openbsd-386-cgo), func Unmount(string, int) error
-pkg syscall (openbsd-386-cgo), func Wait4(int, *WaitStatus, int, *Rusage) (int, error)
-pkg syscall (openbsd-386-cgo), func Write(int, []uint8) (int, error)
-pkg syscall (openbsd-386-cgo), method (*Cmsghdr) SetLen(int)
-pkg syscall (openbsd-386-cgo), method (*Iovec) SetLen(int)
-pkg syscall (openbsd-386-cgo), method (*Msghdr) SetControllen(int)
-pkg syscall (openbsd-386-cgo), type BpfHdr struct
-pkg syscall (openbsd-386-cgo), type BpfHdr struct, Caplen uint32
-pkg syscall (openbsd-386-cgo), type BpfHdr struct, Datalen uint32
-pkg syscall (openbsd-386-cgo), type BpfHdr struct, Hdrlen uint16
-pkg syscall (openbsd-386-cgo), type BpfHdr struct, Pad_cgo_0 [2]uint8
-pkg syscall (openbsd-386-cgo), type BpfHdr struct, Tstamp BpfTimeval
-pkg syscall (openbsd-386-cgo), type BpfInsn struct
-pkg syscall (openbsd-386-cgo), type BpfInsn struct, Code uint16
-pkg syscall (openbsd-386-cgo), type BpfInsn struct, Jf uint8
-pkg syscall (openbsd-386-cgo), type BpfInsn struct, Jt uint8
-pkg syscall (openbsd-386-cgo), type BpfInsn struct, K uint32
-pkg syscall (openbsd-386-cgo), type BpfProgram struct
-pkg syscall (openbsd-386-cgo), type BpfProgram struct, Insns *BpfInsn
-pkg syscall (openbsd-386-cgo), type BpfProgram struct, Len uint32
-pkg syscall (openbsd-386-cgo), type BpfStat struct
-pkg syscall (openbsd-386-cgo), type BpfStat struct, Drop uint32
-pkg syscall (openbsd-386-cgo), type BpfStat struct, Recv uint32
-pkg syscall (openbsd-386-cgo), type BpfTimeval struct
-pkg syscall (openbsd-386-cgo), type BpfTimeval struct, Sec uint32
-pkg syscall (openbsd-386-cgo), type BpfTimeval struct, Usec uint32
-pkg syscall (openbsd-386-cgo), type BpfVersion struct
-pkg syscall (openbsd-386-cgo), type BpfVersion struct, Major uint16
-pkg syscall (openbsd-386-cgo), type BpfVersion struct, Minor uint16
-pkg syscall (openbsd-386-cgo), type Cmsghdr struct
-pkg syscall (openbsd-386-cgo), type Cmsghdr struct, Len uint32
-pkg syscall (openbsd-386-cgo), type Cmsghdr struct, Level int32
-pkg syscall (openbsd-386-cgo), type Cmsghdr struct, Type int32
-pkg syscall (openbsd-386-cgo), type Credential struct
-pkg syscall (openbsd-386-cgo), type Credential struct, Gid uint32
-pkg syscall (openbsd-386-cgo), type Credential struct, Groups []uint32
-pkg syscall (openbsd-386-cgo), type Credential struct, Uid uint32
-pkg syscall (openbsd-386-cgo), type Dirent struct
-pkg syscall (openbsd-386-cgo), type Dirent struct, Fileno uint32
-pkg syscall (openbsd-386-cgo), type Dirent struct, Name [256]int8
-pkg syscall (openbsd-386-cgo), type Dirent struct, Namlen uint8
-pkg syscall (openbsd-386-cgo), type Dirent struct, Reclen uint16
-pkg syscall (openbsd-386-cgo), type Dirent struct, Type uint8
-pkg syscall (openbsd-386-cgo), type FdSet struct
-pkg syscall (openbsd-386-cgo), type FdSet struct, Bits [32]int32
-pkg syscall (openbsd-386-cgo), type Flock_t struct
-pkg syscall (openbsd-386-cgo), type Flock_t struct, Len int64
-pkg syscall (openbsd-386-cgo), type Flock_t struct, Pid int32
-pkg syscall (openbsd-386-cgo), type Flock_t struct, Start int64
-pkg syscall (openbsd-386-cgo), type Flock_t struct, Type int16
-pkg syscall (openbsd-386-cgo), type Flock_t struct, Whence int16
-pkg syscall (openbsd-386-cgo), type Fsid struct
-pkg syscall (openbsd-386-cgo), type Fsid struct, Val [2]int32
-pkg syscall (openbsd-386-cgo), type ICMPv6Filter struct
-pkg syscall (openbsd-386-cgo), type ICMPv6Filter struct, Filt [8]uint32
-pkg syscall (openbsd-386-cgo), type IPv6MTUInfo struct
-pkg syscall (openbsd-386-cgo), type IPv6MTUInfo struct, Addr RawSockaddrInet6
-pkg syscall (openbsd-386-cgo), type IPv6MTUInfo struct, Mtu uint32
-pkg syscall (openbsd-386-cgo), type IfAnnounceMsghdr struct
-pkg syscall (openbsd-386-cgo), type IfAnnounceMsghdr struct, Hdrlen uint16
-pkg syscall (openbsd-386-cgo), type IfAnnounceMsghdr struct, Index uint16
-pkg syscall (openbsd-386-cgo), type IfAnnounceMsghdr struct, Msglen uint16
-pkg syscall (openbsd-386-cgo), type IfAnnounceMsghdr struct, Name [16]int8
-pkg syscall (openbsd-386-cgo), type IfAnnounceMsghdr struct, Type uint8
-pkg syscall (openbsd-386-cgo), type IfAnnounceMsghdr struct, Version uint8
-pkg syscall (openbsd-386-cgo), type IfAnnounceMsghdr struct, What uint16
-pkg syscall (openbsd-386-cgo), type IfData struct
-pkg syscall (openbsd-386-cgo), type IfData struct, Addrlen uint8
-pkg syscall (openbsd-386-cgo), type IfData struct, Baudrate uint64
-pkg syscall (openbsd-386-cgo), type IfData struct, Capabilities uint32
-pkg syscall (openbsd-386-cgo), type IfData struct, Collisions uint64
-pkg syscall (openbsd-386-cgo), type IfData struct, Hdrlen uint8
-pkg syscall (openbsd-386-cgo), type IfData struct, Ibytes uint64
-pkg syscall (openbsd-386-cgo), type IfData struct, Ierrors uint64
-pkg syscall (openbsd-386-cgo), type IfData struct, Imcasts uint64
-pkg syscall (openbsd-386-cgo), type IfData struct, Ipackets uint64
-pkg syscall (openbsd-386-cgo), type IfData struct, Iqdrops uint64
-pkg syscall (openbsd-386-cgo), type IfData struct, Lastchange Timeval
-pkg syscall (openbsd-386-cgo), type IfData struct, Link_state uint8
-pkg syscall (openbsd-386-cgo), type IfData struct, Mclpool [7]Mclpool
-pkg syscall (openbsd-386-cgo), type IfData struct, Metric uint32
-pkg syscall (openbsd-386-cgo), type IfData struct, Mtu uint32
-pkg syscall (openbsd-386-cgo), type IfData struct, Noproto uint64
-pkg syscall (openbsd-386-cgo), type IfData struct, Obytes uint64
-pkg syscall (openbsd-386-cgo), type IfData struct, Oerrors uint64
-pkg syscall (openbsd-386-cgo), type IfData struct, Omcasts uint64
-pkg syscall (openbsd-386-cgo), type IfData struct, Opackets uint64
-pkg syscall (openbsd-386-cgo), type IfData struct, Pad uint32
-pkg syscall (openbsd-386-cgo), type IfData struct, Type uint8
-pkg syscall (openbsd-386-cgo), type IfMsghdr struct
-pkg syscall (openbsd-386-cgo), type IfMsghdr struct, Addrs int32
-pkg syscall (openbsd-386-cgo), type IfMsghdr struct, Data IfData
-pkg syscall (openbsd-386-cgo), type IfMsghdr struct, Flags int32
-pkg syscall (openbsd-386-cgo), type IfMsghdr struct, Hdrlen uint16
-pkg syscall (openbsd-386-cgo), type IfMsghdr struct, Index uint16
-pkg syscall (openbsd-386-cgo), type IfMsghdr struct, Msglen uint16
-pkg syscall (openbsd-386-cgo), type IfMsghdr struct, Pad1 uint8
-pkg syscall (openbsd-386-cgo), type IfMsghdr struct, Pad2 uint8
-pkg syscall (openbsd-386-cgo), type IfMsghdr struct, Tableid uint16
-pkg syscall (openbsd-386-cgo), type IfMsghdr struct, Type uint8
-pkg syscall (openbsd-386-cgo), type IfMsghdr struct, Version uint8
-pkg syscall (openbsd-386-cgo), type IfMsghdr struct, Xflags int32
-pkg syscall (openbsd-386-cgo), type IfaMsghdr struct
-pkg syscall (openbsd-386-cgo), type IfaMsghdr struct, Addrs int32
-pkg syscall (openbsd-386-cgo), type IfaMsghdr struct, Flags int32
-pkg syscall (openbsd-386-cgo), type IfaMsghdr struct, Hdrlen uint16
-pkg syscall (openbsd-386-cgo), type IfaMsghdr struct, Index uint16
-pkg syscall (openbsd-386-cgo), type IfaMsghdr struct, Metric int32
-pkg syscall (openbsd-386-cgo), type IfaMsghdr struct, Msglen uint16
-pkg syscall (openbsd-386-cgo), type IfaMsghdr struct, Pad1 uint8
-pkg syscall (openbsd-386-cgo), type IfaMsghdr struct, Pad2 uint8
-pkg syscall (openbsd-386-cgo), type IfaMsghdr struct, Tableid uint16
-pkg syscall (openbsd-386-cgo), type IfaMsghdr struct, Type uint8
-pkg syscall (openbsd-386-cgo), type IfaMsghdr struct, Version uint8
-pkg syscall (openbsd-386-cgo), type Inet6Pktinfo struct
-pkg syscall (openbsd-386-cgo), type Inet6Pktinfo struct, Addr [16]uint8
-pkg syscall (openbsd-386-cgo), type Inet6Pktinfo struct, Ifindex uint32
-pkg syscall (openbsd-386-cgo), type InterfaceAddrMessage struct
-pkg syscall (openbsd-386-cgo), type InterfaceAddrMessage struct, Data []uint8
-pkg syscall (openbsd-386-cgo), type InterfaceAddrMessage struct, Header IfaMsghdr
-pkg syscall (openbsd-386-cgo), type InterfaceAnnounceMessage struct
-pkg syscall (openbsd-386-cgo), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr
-pkg syscall (openbsd-386-cgo), type InterfaceMessage struct
-pkg syscall (openbsd-386-cgo), type InterfaceMessage struct, Data []uint8
-pkg syscall (openbsd-386-cgo), type InterfaceMessage struct, Header IfMsghdr
-pkg syscall (openbsd-386-cgo), type Iovec struct
-pkg syscall (openbsd-386-cgo), type Iovec struct, Base *uint8
-pkg syscall (openbsd-386-cgo), type Iovec struct, Len uint32
-pkg syscall (openbsd-386-cgo), type Kevent_t struct
-pkg syscall (openbsd-386-cgo), type Kevent_t struct, Data int32
-pkg syscall (openbsd-386-cgo), type Kevent_t struct, Fflags uint32
-pkg syscall (openbsd-386-cgo), type Kevent_t struct, Filter int16
-pkg syscall (openbsd-386-cgo), type Kevent_t struct, Flags uint16
-pkg syscall (openbsd-386-cgo), type Kevent_t struct, Ident uint32
-pkg syscall (openbsd-386-cgo), type Kevent_t struct, Udata *uint8
-pkg syscall (openbsd-386-cgo), type Mclpool struct
-pkg syscall (openbsd-386-cgo), type Mclpool struct, Alive uint16
-pkg syscall (openbsd-386-cgo), type Mclpool struct, Cwm uint16
-pkg syscall (openbsd-386-cgo), type Mclpool struct, Grown uint32
-pkg syscall (openbsd-386-cgo), type Mclpool struct, Hwm uint16
-pkg syscall (openbsd-386-cgo), type Mclpool struct, Lwm uint16
-pkg syscall (openbsd-386-cgo), type Msghdr struct
-pkg syscall (openbsd-386-cgo), type Msghdr struct, Control *uint8
-pkg syscall (openbsd-386-cgo), type Msghdr struct, Controllen uint32
-pkg syscall (openbsd-386-cgo), type Msghdr struct, Flags int32
-pkg syscall (openbsd-386-cgo), type Msghdr struct, Iov *Iovec
-pkg syscall (openbsd-386-cgo), type Msghdr struct, Iovlen uint32
-pkg syscall (openbsd-386-cgo), type Msghdr struct, Name *uint8
-pkg syscall (openbsd-386-cgo), type Msghdr struct, Namelen uint32
-pkg syscall (openbsd-386-cgo), type RawSockaddr struct, Data [14]int8
-pkg syscall (openbsd-386-cgo), type RawSockaddr struct, Family uint8
-pkg syscall (openbsd-386-cgo), type RawSockaddr struct, Len uint8
-pkg syscall (openbsd-386-cgo), type RawSockaddrAny struct, Pad [92]int8
-pkg syscall (openbsd-386-cgo), type RawSockaddrDatalink struct
-pkg syscall (openbsd-386-cgo), type RawSockaddrDatalink struct, Alen uint8
-pkg syscall (openbsd-386-cgo), type RawSockaddrDatalink struct, Data [24]int8
-pkg syscall (openbsd-386-cgo), type RawSockaddrDatalink struct, Family uint8
-pkg syscall (openbsd-386-cgo), type RawSockaddrDatalink struct, Index uint16
-pkg syscall (openbsd-386-cgo), type RawSockaddrDatalink struct, Len uint8
-pkg syscall (openbsd-386-cgo), type RawSockaddrDatalink struct, Nlen uint8
-pkg syscall (openbsd-386-cgo), type RawSockaddrDatalink struct, Slen uint8
-pkg syscall (openbsd-386-cgo), type RawSockaddrDatalink struct, Type uint8
-pkg syscall (openbsd-386-cgo), type RawSockaddrInet4 struct, Family uint8
-pkg syscall (openbsd-386-cgo), type RawSockaddrInet4 struct, Len uint8
-pkg syscall (openbsd-386-cgo), type RawSockaddrInet4 struct, Zero [8]int8
-pkg syscall (openbsd-386-cgo), type RawSockaddrInet6 struct, Family uint8
-pkg syscall (openbsd-386-cgo), type RawSockaddrInet6 struct, Len uint8
-pkg syscall (openbsd-386-cgo), type RawSockaddrUnix struct
-pkg syscall (openbsd-386-cgo), type RawSockaddrUnix struct, Family uint8
-pkg syscall (openbsd-386-cgo), type RawSockaddrUnix struct, Len uint8
-pkg syscall (openbsd-386-cgo), type RawSockaddrUnix struct, Path [104]int8
-pkg syscall (openbsd-386-cgo), type Rlimit struct
-pkg syscall (openbsd-386-cgo), type Rlimit struct, Cur uint64
-pkg syscall (openbsd-386-cgo), type Rlimit struct, Max uint64
-pkg syscall (openbsd-386-cgo), type RouteMessage struct
-pkg syscall (openbsd-386-cgo), type RouteMessage struct, Data []uint8
-pkg syscall (openbsd-386-cgo), type RouteMessage struct, Header RtMsghdr
-pkg syscall (openbsd-386-cgo), type RoutingMessage interface, unexported methods
-pkg syscall (openbsd-386-cgo), type RtMetrics struct
-pkg syscall (openbsd-386-cgo), type RtMetrics struct, Expire uint32
-pkg syscall (openbsd-386-cgo), type RtMetrics struct, Hopcount uint32
-pkg syscall (openbsd-386-cgo), type RtMetrics struct, Locks uint32
-pkg syscall (openbsd-386-cgo), type RtMetrics struct, Mtu uint32
-pkg syscall (openbsd-386-cgo), type RtMetrics struct, Pksent uint64
-pkg syscall (openbsd-386-cgo), type RtMetrics struct, Recvpipe uint32
-pkg syscall (openbsd-386-cgo), type RtMetrics struct, Refcnt uint32
-pkg syscall (openbsd-386-cgo), type RtMetrics struct, Rtt uint32
-pkg syscall (openbsd-386-cgo), type RtMetrics struct, Rttvar uint32
-pkg syscall (openbsd-386-cgo), type RtMetrics struct, Sendpipe uint32
-pkg syscall (openbsd-386-cgo), type RtMetrics struct, Ssthresh uint32
-pkg syscall (openbsd-386-cgo), type RtMsghdr struct
-pkg syscall (openbsd-386-cgo), type RtMsghdr struct, Addrs int32
-pkg syscall (openbsd-386-cgo), type RtMsghdr struct, Errno int32
-pkg syscall (openbsd-386-cgo), type RtMsghdr struct, Flags int32
-pkg syscall (openbsd-386-cgo), type RtMsghdr struct, Fmask int32
-pkg syscall (openbsd-386-cgo), type RtMsghdr struct, Hdrlen uint16
-pkg syscall (openbsd-386-cgo), type RtMsghdr struct, Index uint16
-pkg syscall (openbsd-386-cgo), type RtMsghdr struct, Inits uint32
-pkg syscall (openbsd-386-cgo), type RtMsghdr struct, Mpls uint8
-pkg syscall (openbsd-386-cgo), type RtMsghdr struct, Msglen uint16
-pkg syscall (openbsd-386-cgo), type RtMsghdr struct, Pid int32
-pkg syscall (openbsd-386-cgo), type RtMsghdr struct, Priority uint8
-pkg syscall (openbsd-386-cgo), type RtMsghdr struct, Rmx RtMetrics
-pkg syscall (openbsd-386-cgo), type RtMsghdr struct, Seq int32
-pkg syscall (openbsd-386-cgo), type RtMsghdr struct, Tableid uint16
-pkg syscall (openbsd-386-cgo), type RtMsghdr struct, Type uint8
-pkg syscall (openbsd-386-cgo), type RtMsghdr struct, Version uint8
-pkg syscall (openbsd-386-cgo), type Rusage struct, Idrss int32
-pkg syscall (openbsd-386-cgo), type Rusage struct, Inblock int32
-pkg syscall (openbsd-386-cgo), type Rusage struct, Isrss int32
-pkg syscall (openbsd-386-cgo), type Rusage struct, Ixrss int32
-pkg syscall (openbsd-386-cgo), type Rusage struct, Majflt int32
-pkg syscall (openbsd-386-cgo), type Rusage struct, Maxrss int32
-pkg syscall (openbsd-386-cgo), type Rusage struct, Minflt int32
-pkg syscall (openbsd-386-cgo), type Rusage struct, Msgrcv int32
-pkg syscall (openbsd-386-cgo), type Rusage struct, Msgsnd int32
-pkg syscall (openbsd-386-cgo), type Rusage struct, Nivcsw int32
-pkg syscall (openbsd-386-cgo), type Rusage struct, Nsignals int32
-pkg syscall (openbsd-386-cgo), type Rusage struct, Nswap int32
-pkg syscall (openbsd-386-cgo), type Rusage struct, Nvcsw int32
-pkg syscall (openbsd-386-cgo), type Rusage struct, Oublock int32
-pkg syscall (openbsd-386-cgo), type Rusage struct, Stime Timeval
-pkg syscall (openbsd-386-cgo), type Rusage struct, Utime Timeval
-pkg syscall (openbsd-386-cgo), type SockaddrDatalink struct
-pkg syscall (openbsd-386-cgo), type SockaddrDatalink struct, Alen uint8
-pkg syscall (openbsd-386-cgo), type SockaddrDatalink struct, Data [24]int8
-pkg syscall (openbsd-386-cgo), type SockaddrDatalink struct, Family uint8
-pkg syscall (openbsd-386-cgo), type SockaddrDatalink struct, Index uint16
-pkg syscall (openbsd-386-cgo), type SockaddrDatalink struct, Len uint8
-pkg syscall (openbsd-386-cgo), type SockaddrDatalink struct, Nlen uint8
-pkg syscall (openbsd-386-cgo), type SockaddrDatalink struct, Slen uint8
-pkg syscall (openbsd-386-cgo), type SockaddrDatalink struct, Type uint8
-pkg syscall (openbsd-386-cgo), type SocketControlMessage struct
-pkg syscall (openbsd-386-cgo), type SocketControlMessage struct, Data []uint8
-pkg syscall (openbsd-386-cgo), type SocketControlMessage struct, Header Cmsghdr
-pkg syscall (openbsd-386-cgo), type Stat_t struct
-pkg syscall (openbsd-386-cgo), type Stat_t struct, Atim Timespec
-pkg syscall (openbsd-386-cgo), type Stat_t struct, Blksize uint32
-pkg syscall (openbsd-386-cgo), type Stat_t struct, Blocks int64
-pkg syscall (openbsd-386-cgo), type Stat_t struct, Ctim Timespec
-pkg syscall (openbsd-386-cgo), type Stat_t struct, Dev int32
-pkg syscall (openbsd-386-cgo), type Stat_t struct, Flags uint32
-pkg syscall (openbsd-386-cgo), type Stat_t struct, Gen uint32
-pkg syscall (openbsd-386-cgo), type Stat_t struct, Gid uint32
-pkg syscall (openbsd-386-cgo), type Stat_t struct, Ino uint32
-pkg syscall (openbsd-386-cgo), type Stat_t struct, Lspare0 int32
-pkg syscall (openbsd-386-cgo), type Stat_t struct, Lspare1 int32
-pkg syscall (openbsd-386-cgo), type Stat_t struct, Mode uint32
-pkg syscall (openbsd-386-cgo), type Stat_t struct, Mtim Timespec
-pkg syscall (openbsd-386-cgo), type Stat_t struct, Nlink uint32
-pkg syscall (openbsd-386-cgo), type Stat_t struct, Qspare [2]int64
-pkg syscall (openbsd-386-cgo), type Stat_t struct, Rdev int32
-pkg syscall (openbsd-386-cgo), type Stat_t struct, Size int64
-pkg syscall (openbsd-386-cgo), type Stat_t struct, Uid uint32
-pkg syscall (openbsd-386-cgo), type Stat_t struct, X__st_birthtim Timespec
-pkg syscall (openbsd-386-cgo), type Statfs_t struct
-pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_asyncreads uint64
-pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_asyncwrites uint64
-pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_bavail int64
-pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_bfree uint64
-pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_blocks uint64
-pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_bsize uint32
-pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_ctime uint32
-pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_favail int64
-pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_ffree uint64
-pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_files uint64
-pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_flags uint32
-pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_fsid Fsid
-pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_fstypename [16]int8
-pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_iosize uint32
-pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_mntfromname [90]int8
-pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_mntonname [90]int8
-pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_namemax uint32
-pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_owner uint32
-pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_spare [3]uint32
-pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_syncreads uint64
-pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_syncwrites uint64
-pkg syscall (openbsd-386-cgo), type Statfs_t struct, Mount_info [160]uint8
-pkg syscall (openbsd-386-cgo), type SysProcAttr struct, Chroot string
-pkg syscall (openbsd-386-cgo), type SysProcAttr struct, Credential *Credential
-pkg syscall (openbsd-386-cgo), type SysProcAttr struct, Noctty bool
-pkg syscall (openbsd-386-cgo), type SysProcAttr struct, Ptrace bool
-pkg syscall (openbsd-386-cgo), type SysProcAttr struct, Setctty bool
-pkg syscall (openbsd-386-cgo), type SysProcAttr struct, Setpgid bool
-pkg syscall (openbsd-386-cgo), type SysProcAttr struct, Setsid bool
-pkg syscall (openbsd-386-cgo), type Timespec struct, Nsec int32
-pkg syscall (openbsd-386-cgo), type Timespec struct, Sec int32
-pkg syscall (openbsd-386-cgo), type Timeval struct, Sec int32
-pkg syscall (openbsd-386-cgo), type Timeval struct, Usec int32
-pkg syscall (openbsd-386-cgo), type WaitStatus uint32
-pkg syscall (openbsd-386-cgo), var Stderr int
-pkg syscall (openbsd-386-cgo), var Stdin int
-pkg syscall (openbsd-386-cgo), var Stdout int
-pkg syscall (openbsd-amd64), const AF_APPLETALK ideal-int
-pkg syscall (openbsd-amd64), const AF_BLUETOOTH ideal-int
-pkg syscall (openbsd-amd64), const AF_CCITT ideal-int
-pkg syscall (openbsd-amd64), const AF_CHAOS ideal-int
-pkg syscall (openbsd-amd64), const AF_CNT ideal-int
-pkg syscall (openbsd-amd64), const AF_COIP ideal-int
-pkg syscall (openbsd-amd64), const AF_DATAKIT ideal-int
-pkg syscall (openbsd-amd64), const AF_DECnet ideal-int
-pkg syscall (openbsd-amd64), const AF_DLI ideal-int
-pkg syscall (openbsd-amd64), const AF_E164 ideal-int
-pkg syscall (openbsd-amd64), const AF_ECMA ideal-int
-pkg syscall (openbsd-amd64), const AF_ENCAP ideal-int
-pkg syscall (openbsd-amd64), const AF_HYLINK ideal-int
-pkg syscall (openbsd-amd64), const AF_IMPLINK ideal-int
-pkg syscall (openbsd-amd64), const AF_IPX ideal-int
-pkg syscall (openbsd-amd64), const AF_ISDN ideal-int
-pkg syscall (openbsd-amd64), const AF_ISO ideal-int
-pkg syscall (openbsd-amd64), const AF_KEY ideal-int
-pkg syscall (openbsd-amd64), const AF_LAT ideal-int
-pkg syscall (openbsd-amd64), const AF_LINK ideal-int
-pkg syscall (openbsd-amd64), const AF_LOCAL ideal-int
-pkg syscall (openbsd-amd64), const AF_MAX ideal-int
-pkg syscall (openbsd-amd64), const AF_MPLS ideal-int
-pkg syscall (openbsd-amd64), const AF_NATM ideal-int
-pkg syscall (openbsd-amd64), const AF_NS ideal-int
-pkg syscall (openbsd-amd64), const AF_OSI ideal-int
-pkg syscall (openbsd-amd64), const AF_PUP ideal-int
-pkg syscall (openbsd-amd64), const AF_ROUTE ideal-int
-pkg syscall (openbsd-amd64), const AF_SIP ideal-int
-pkg syscall (openbsd-amd64), const AF_SNA ideal-int
-pkg syscall (openbsd-amd64), const ARPHRD_ETHER ideal-int
-pkg syscall (openbsd-amd64), const ARPHRD_FRELAY ideal-int
-pkg syscall (openbsd-amd64), const ARPHRD_IEEE1394 ideal-int
-pkg syscall (openbsd-amd64), const ARPHRD_IEEE802 ideal-int
-pkg syscall (openbsd-amd64), const B0 ideal-int
-pkg syscall (openbsd-amd64), const B110 ideal-int
-pkg syscall (openbsd-amd64), const B115200 ideal-int
-pkg syscall (openbsd-amd64), const B1200 ideal-int
-pkg syscall (openbsd-amd64), const B134 ideal-int
-pkg syscall (openbsd-amd64), const B14400 ideal-int
-pkg syscall (openbsd-amd64), const B150 ideal-int
-pkg syscall (openbsd-amd64), const B1800 ideal-int
-pkg syscall (openbsd-amd64), const B19200 ideal-int
-pkg syscall (openbsd-amd64), const B200 ideal-int
-pkg syscall (openbsd-amd64), const B230400 ideal-int
-pkg syscall (openbsd-amd64), const B2400 ideal-int
-pkg syscall (openbsd-amd64), const B28800 ideal-int
-pkg syscall (openbsd-amd64), const B300 ideal-int
-pkg syscall (openbsd-amd64), const B38400 ideal-int
-pkg syscall (openbsd-amd64), const B4800 ideal-int
-pkg syscall (openbsd-amd64), const B50 ideal-int
-pkg syscall (openbsd-amd64), const B57600 ideal-int
-pkg syscall (openbsd-amd64), const B600 ideal-int
-pkg syscall (openbsd-amd64), const B7200 ideal-int
-pkg syscall (openbsd-amd64), const B75 ideal-int
-pkg syscall (openbsd-amd64), const B76800 ideal-int
-pkg syscall (openbsd-amd64), const B9600 ideal-int
-pkg syscall (openbsd-amd64), const BIOCFLUSH ideal-int
-pkg syscall (openbsd-amd64), const BIOCGBLEN ideal-int
-pkg syscall (openbsd-amd64), const BIOCGDIRFILT ideal-int
-pkg syscall (openbsd-amd64), const BIOCGDLT ideal-int
-pkg syscall (openbsd-amd64), const BIOCGDLTLIST ideal-int
-pkg syscall (openbsd-amd64), const BIOCGETIF ideal-int
-pkg syscall (openbsd-amd64), const BIOCGFILDROP ideal-int
-pkg syscall (openbsd-amd64), const BIOCGHDRCMPLT ideal-int
-pkg syscall (openbsd-amd64), const BIOCGRSIG ideal-int
-pkg syscall (openbsd-amd64), const BIOCGRTIMEOUT ideal-int
-pkg syscall (openbsd-amd64), const BIOCGSTATS ideal-int
-pkg syscall (openbsd-amd64), const BIOCIMMEDIATE ideal-int
-pkg syscall (openbsd-amd64), const BIOCLOCK ideal-int
-pkg syscall (openbsd-amd64), const BIOCPROMISC ideal-int
-pkg syscall (openbsd-amd64), const BIOCSBLEN ideal-int
-pkg syscall (openbsd-amd64), const BIOCSDIRFILT ideal-int
-pkg syscall (openbsd-amd64), const BIOCSDLT ideal-int
-pkg syscall (openbsd-amd64), const BIOCSETF ideal-int
-pkg syscall (openbsd-amd64), const BIOCSETIF ideal-int
-pkg syscall (openbsd-amd64), const BIOCSETWF ideal-int
-pkg syscall (openbsd-amd64), const BIOCSFILDROP ideal-int
-pkg syscall (openbsd-amd64), const BIOCSHDRCMPLT ideal-int
-pkg syscall (openbsd-amd64), const BIOCSRSIG ideal-int
-pkg syscall (openbsd-amd64), const BIOCSRTIMEOUT ideal-int
-pkg syscall (openbsd-amd64), const BIOCVERSION ideal-int
-pkg syscall (openbsd-amd64), const BPF_A ideal-int
-pkg syscall (openbsd-amd64), const BPF_ABS ideal-int
-pkg syscall (openbsd-amd64), const BPF_ADD ideal-int
-pkg syscall (openbsd-amd64), const BPF_ALIGNMENT ideal-int
-pkg syscall (openbsd-amd64), const BPF_ALU ideal-int
-pkg syscall (openbsd-amd64), const BPF_AND ideal-int
-pkg syscall (openbsd-amd64), const BPF_B ideal-int
-pkg syscall (openbsd-amd64), const BPF_DIRECTION_IN ideal-int
-pkg syscall (openbsd-amd64), const BPF_DIRECTION_OUT ideal-int
-pkg syscall (openbsd-amd64), const BPF_DIV ideal-int
-pkg syscall (openbsd-amd64), const BPF_H ideal-int
-pkg syscall (openbsd-amd64), const BPF_IMM ideal-int
-pkg syscall (openbsd-amd64), const BPF_IND ideal-int
-pkg syscall (openbsd-amd64), const BPF_JA ideal-int
-pkg syscall (openbsd-amd64), const BPF_JEQ ideal-int
-pkg syscall (openbsd-amd64), const BPF_JGE ideal-int
-pkg syscall (openbsd-amd64), const BPF_JGT ideal-int
-pkg syscall (openbsd-amd64), const BPF_JMP ideal-int
-pkg syscall (openbsd-amd64), const BPF_JSET ideal-int
-pkg syscall (openbsd-amd64), const BPF_K ideal-int
-pkg syscall (openbsd-amd64), const BPF_LD ideal-int
-pkg syscall (openbsd-amd64), const BPF_LDX ideal-int
-pkg syscall (openbsd-amd64), const BPF_LEN ideal-int
-pkg syscall (openbsd-amd64), const BPF_LSH ideal-int
-pkg syscall (openbsd-amd64), const BPF_MAJOR_VERSION ideal-int
-pkg syscall (openbsd-amd64), const BPF_MAXBUFSIZE ideal-int
-pkg syscall (openbsd-amd64), const BPF_MAXINSNS ideal-int
-pkg syscall (openbsd-amd64), const BPF_MEM ideal-int
-pkg syscall (openbsd-amd64), const BPF_MEMWORDS ideal-int
-pkg syscall (openbsd-amd64), const BPF_MINBUFSIZE ideal-int
-pkg syscall (openbsd-amd64), const BPF_MINOR_VERSION ideal-int
-pkg syscall (openbsd-amd64), const BPF_MISC ideal-int
-pkg syscall (openbsd-amd64), const BPF_MSH ideal-int
-pkg syscall (openbsd-amd64), const BPF_MUL ideal-int
-pkg syscall (openbsd-amd64), const BPF_NEG ideal-int
-pkg syscall (openbsd-amd64), const BPF_OR ideal-int
-pkg syscall (openbsd-amd64), const BPF_RELEASE ideal-int
-pkg syscall (openbsd-amd64), const BPF_RET ideal-int
-pkg syscall (openbsd-amd64), const BPF_RSH ideal-int
-pkg syscall (openbsd-amd64), const BPF_ST ideal-int
-pkg syscall (openbsd-amd64), const BPF_STX ideal-int
-pkg syscall (openbsd-amd64), const BPF_SUB ideal-int
-pkg syscall (openbsd-amd64), const BPF_TAX ideal-int
-pkg syscall (openbsd-amd64), const BPF_TXA ideal-int
-pkg syscall (openbsd-amd64), const BPF_W ideal-int
-pkg syscall (openbsd-amd64), const BPF_X ideal-int
-pkg syscall (openbsd-amd64), const BRKINT ideal-int
-pkg syscall (openbsd-amd64), const CCR0_FLUSH ideal-int
-pkg syscall (openbsd-amd64), const CFLUSH ideal-int
-pkg syscall (openbsd-amd64), const CLOCAL ideal-int
-pkg syscall (openbsd-amd64), const CPUID_CFLUSH ideal-int
-pkg syscall (openbsd-amd64), const CREAD ideal-int
-pkg syscall (openbsd-amd64), const CS5 ideal-int
-pkg syscall (openbsd-amd64), const CS6 ideal-int
-pkg syscall (openbsd-amd64), const CS7 ideal-int
-pkg syscall (openbsd-amd64), const CS8 ideal-int
-pkg syscall (openbsd-amd64), const CSIZE ideal-int
-pkg syscall (openbsd-amd64), const CSTART ideal-int
-pkg syscall (openbsd-amd64), const CSTATUS ideal-int
-pkg syscall (openbsd-amd64), const CSTOP ideal-int
-pkg syscall (openbsd-amd64), const CSTOPB ideal-int
-pkg syscall (openbsd-amd64), const CSUSP ideal-int
-pkg syscall (openbsd-amd64), const CTL_MAXNAME ideal-int
-pkg syscall (openbsd-amd64), const CTL_NET ideal-int
-pkg syscall (openbsd-amd64), const DIOCOSFPFLUSH ideal-int
-pkg syscall (openbsd-amd64), const DLT_ARCNET ideal-int
-pkg syscall (openbsd-amd64), const DLT_ATM_RFC1483 ideal-int
-pkg syscall (openbsd-amd64), const DLT_AX25 ideal-int
-pkg syscall (openbsd-amd64), const DLT_CHAOS ideal-int
-pkg syscall (openbsd-amd64), const DLT_C_HDLC ideal-int
-pkg syscall (openbsd-amd64), const DLT_EN10MB ideal-int
-pkg syscall (openbsd-amd64), const DLT_EN3MB ideal-int
-pkg syscall (openbsd-amd64), const DLT_ENC ideal-int
-pkg syscall (openbsd-amd64), const DLT_FDDI ideal-int
-pkg syscall (openbsd-amd64), const DLT_IEEE802 ideal-int
-pkg syscall (openbsd-amd64), const DLT_IEEE802_11 ideal-int
-pkg syscall (openbsd-amd64), const DLT_IEEE802_11_RADIO ideal-int
-pkg syscall (openbsd-amd64), const DLT_LOOP ideal-int
-pkg syscall (openbsd-amd64), const DLT_MPLS ideal-int
-pkg syscall (openbsd-amd64), const DLT_NULL ideal-int
-pkg syscall (openbsd-amd64), const DLT_PFLOG ideal-int
-pkg syscall (openbsd-amd64), const DLT_PFSYNC ideal-int
-pkg syscall (openbsd-amd64), const DLT_PPP ideal-int
-pkg syscall (openbsd-amd64), const DLT_PPP_BSDOS ideal-int
-pkg syscall (openbsd-amd64), const DLT_PPP_ETHER ideal-int
-pkg syscall (openbsd-amd64), const DLT_PPP_SERIAL ideal-int
-pkg syscall (openbsd-amd64), const DLT_PRONET ideal-int
-pkg syscall (openbsd-amd64), const DLT_RAW ideal-int
-pkg syscall (openbsd-amd64), const DLT_SLIP ideal-int
-pkg syscall (openbsd-amd64), const DLT_SLIP_BSDOS ideal-int
-pkg syscall (openbsd-amd64), const DT_BLK ideal-int
-pkg syscall (openbsd-amd64), const DT_CHR ideal-int
-pkg syscall (openbsd-amd64), const DT_DIR ideal-int
-pkg syscall (openbsd-amd64), const DT_FIFO ideal-int
-pkg syscall (openbsd-amd64), const DT_LNK ideal-int
-pkg syscall (openbsd-amd64), const DT_REG ideal-int
-pkg syscall (openbsd-amd64), const DT_SOCK ideal-int
-pkg syscall (openbsd-amd64), const DT_UNKNOWN ideal-int
-pkg syscall (openbsd-amd64), const EAUTH Errno
-pkg syscall (openbsd-amd64), const EBADRPC Errno
-pkg syscall (openbsd-amd64), const ECHO ideal-int
-pkg syscall (openbsd-amd64), const ECHOCTL ideal-int
-pkg syscall (openbsd-amd64), const ECHOE ideal-int
-pkg syscall (openbsd-amd64), const ECHOK ideal-int
-pkg syscall (openbsd-amd64), const ECHOKE ideal-int
-pkg syscall (openbsd-amd64), const ECHONL ideal-int
-pkg syscall (openbsd-amd64), const ECHOPRT ideal-int
-pkg syscall (openbsd-amd64), const EFER_LMA ideal-int
-pkg syscall (openbsd-amd64), const EFER_LME ideal-int
-pkg syscall (openbsd-amd64), const EFER_NXE ideal-int
-pkg syscall (openbsd-amd64), const EFER_SCE ideal-int
-pkg syscall (openbsd-amd64), const EFTYPE Errno
-pkg syscall (openbsd-amd64), const EIPSEC Errno
-pkg syscall (openbsd-amd64), const ELAST Errno
-pkg syscall (openbsd-amd64), const EMEDIUMTYPE Errno
-pkg syscall (openbsd-amd64), const EMT_TAGOVF ideal-int
-pkg syscall (openbsd-amd64), const EMUL_ENABLED ideal-int
-pkg syscall (openbsd-amd64), const EMUL_NATIVE ideal-int
-pkg syscall (openbsd-amd64), const ENDRUNDISC ideal-int
-pkg syscall (openbsd-amd64), const ENEEDAUTH Errno
-pkg syscall (openbsd-amd64), const ENOATTR Errno
-pkg syscall (openbsd-amd64), const ENOMEDIUM Errno
-pkg syscall (openbsd-amd64), const EPROCLIM Errno
-pkg syscall (openbsd-amd64), const EPROCUNAVAIL Errno
-pkg syscall (openbsd-amd64), const EPROGMISMATCH Errno
-pkg syscall (openbsd-amd64), const EPROGUNAVAIL Errno
-pkg syscall (openbsd-amd64), const ERPCMISMATCH Errno
-pkg syscall (openbsd-amd64), const ETHERMIN ideal-int
-pkg syscall (openbsd-amd64), const ETHERMTU ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_8023 ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_AARP ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_ACCTON ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_AEONIC ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_ALPHA ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_AMBER ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_AMOEBA ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_AOE ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_APOLLO ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_APOLLODOMAIN ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_APPLETALK ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_APPLITEK ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_ARGONAUT ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_ARP ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_AT ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_ATALK ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_ATOMIC ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_ATT ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_ATTSTANFORD ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_AUTOPHON ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_AXIS ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_BCLOOP ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_BOFL ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_CABLETRON ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_CHAOS ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_COMDESIGN ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_COMPUGRAPHIC ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_COUNTERPOINT ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_CRONUS ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_CRONUSVLN ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_DCA ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_DDE ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_DEBNI ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_DECAM ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_DECCUST ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_DECDIAG ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_DECDNS ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_DECDTS ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_DECEXPER ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_DECLAST ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_DECLTM ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_DECMUMPS ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_DECNETBIOS ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_DELTACON ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_DIDDLE ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_DLOG1 ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_DLOG2 ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_DN ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_DOGFIGHT ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_DSMD ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_ECMA ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_ENCRYPT ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_ES ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_EXCELAN ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_EXPERDATA ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_FLIP ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_FLOWCONTROL ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_FRARP ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_GENDYN ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_HAYES ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_HIPPI_FP ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_HITACHI ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_HP ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_IEEEPUP ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_IEEEPUPAT ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_IMLBL ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_IMLBLDIAG ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_IP ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_IPAS ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_IPV6 ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_IPX ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_IPXNEW ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_KALPANA ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_LANBRIDGE ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_LANPROBE ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_LAT ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_LBACK ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_LITTLE ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_LLDP ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_LOGICRAFT ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_LOOPBACK ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_MATRA ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_MAX ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_MERIT ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_MICP ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_MOPDL ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_MOPRC ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_MOTOROLA ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_MPLS ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_MPLS_MCAST ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_MUMPS ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_NBPCC ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_NBPCLAIM ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_NBPCLREQ ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_NBPCLRSP ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_NBPCREQ ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_NBPCRSP ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_NBPDG ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_NBPDGB ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_NBPDLTE ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_NBPRAR ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_NBPRAS ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_NBPRST ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_NBPSCD ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_NBPVCD ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_NBS ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_NCD ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_NESTAR ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_NETBEUI ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_NOVELL ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_NS ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_NSAT ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_NSCOMPAT ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_NTRAILER ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_OS9 ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_OS9NET ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_PACER ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_PAE ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_PCS ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_PLANNING ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_PPP ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_PPPOE ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_PPPOEDISC ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_PRIMENTS ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_PUP ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_PUPAT ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_QINQ ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_RACAL ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_RATIONAL ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_RAWFR ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_RCL ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_RDP ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_RETIX ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_REVARP ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_SCA ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_SECTRA ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_SECUREDATA ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_SGITW ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_SG_BOUNCE ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_SG_DIAG ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_SG_NETGAMES ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_SG_RESV ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_SIMNET ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_SLOW ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_SNA ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_SNMP ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_SONIX ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_SPIDER ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_SPRITE ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_STP ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_TALARIS ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_TALARISMC ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_TCPCOMP ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_TCPSM ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_TEC ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_TIGAN ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_TRAIL ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_TRANSETHER ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_TYMSHARE ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_UBBST ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_UBDEBUG ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_UBDIAGLOOP ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_UBDL ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_UBNIU ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_UBNMC ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_VALID ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_VARIAN ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_VAXELN ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_VEECO ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_VEXP ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_VGLAB ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_VINES ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_VINESECHO ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_VINESLOOP ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_VITAL ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_VLAN ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_VLTLMAN ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_VPROD ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_VURESERVED ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_WATERLOO ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_WELLFLEET ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_X25 ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_X75 ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_XNSSM ideal-int
-pkg syscall (openbsd-amd64), const ETHERTYPE_XTP ideal-int
-pkg syscall (openbsd-amd64), const ETHER_ADDR_LEN ideal-int
-pkg syscall (openbsd-amd64), const ETHER_ALIGN ideal-int
-pkg syscall (openbsd-amd64), const ETHER_CRC_LEN ideal-int
-pkg syscall (openbsd-amd64), const ETHER_CRC_POLY_BE ideal-int
-pkg syscall (openbsd-amd64), const ETHER_CRC_POLY_LE ideal-int
-pkg syscall (openbsd-amd64), const ETHER_HDR_LEN ideal-int
-pkg syscall (openbsd-amd64), const ETHER_MAX_DIX_LEN ideal-int
-pkg syscall (openbsd-amd64), const ETHER_MAX_LEN ideal-int
-pkg syscall (openbsd-amd64), const ETHER_MIN_LEN ideal-int
-pkg syscall (openbsd-amd64), const ETHER_TYPE_LEN ideal-int
-pkg syscall (openbsd-amd64), const ETHER_VLAN_ENCAP_LEN ideal-int
-pkg syscall (openbsd-amd64), const EVFILT_AIO ideal-int
-pkg syscall (openbsd-amd64), const EVFILT_PROC ideal-int
-pkg syscall (openbsd-amd64), const EVFILT_READ ideal-int
-pkg syscall (openbsd-amd64), const EVFILT_SIGNAL ideal-int
-pkg syscall (openbsd-amd64), const EVFILT_SYSCOUNT ideal-int
-pkg syscall (openbsd-amd64), const EVFILT_TIMER ideal-int
-pkg syscall (openbsd-amd64), const EVFILT_VNODE ideal-int
-pkg syscall (openbsd-amd64), const EVFILT_WRITE ideal-int
-pkg syscall (openbsd-amd64), const EV_ADD ideal-int
-pkg syscall (openbsd-amd64), const EV_CLEAR ideal-int
-pkg syscall (openbsd-amd64), const EV_DELETE ideal-int
-pkg syscall (openbsd-amd64), const EV_DISABLE ideal-int
-pkg syscall (openbsd-amd64), const EV_ENABLE ideal-int
-pkg syscall (openbsd-amd64), const EV_EOF ideal-int
-pkg syscall (openbsd-amd64), const EV_ERROR ideal-int
-pkg syscall (openbsd-amd64), const EV_FLAG1 ideal-int
-pkg syscall (openbsd-amd64), const EV_ONESHOT ideal-int
-pkg syscall (openbsd-amd64), const EV_SYSFLAGS ideal-int
-pkg syscall (openbsd-amd64), const EXTA ideal-int
-pkg syscall (openbsd-amd64), const EXTB ideal-int
-pkg syscall (openbsd-amd64), const EXTPROC ideal-int
-pkg syscall (openbsd-amd64), const FD_CLOEXEC ideal-int
-pkg syscall (openbsd-amd64), const FD_SETSIZE ideal-int
-pkg syscall (openbsd-amd64), const FLUSHO ideal-int
-pkg syscall (openbsd-amd64), const F_DUPFD ideal-int
-pkg syscall (openbsd-amd64), const F_DUPFD_CLOEXEC ideal-int
-pkg syscall (openbsd-amd64), const F_GETFD ideal-int
-pkg syscall (openbsd-amd64), const F_GETFL ideal-int
-pkg syscall (openbsd-amd64), const F_GETLK ideal-int
-pkg syscall (openbsd-amd64), const F_GETOWN ideal-int
-pkg syscall (openbsd-amd64), const F_OK ideal-int
-pkg syscall (openbsd-amd64), const F_RDLCK ideal-int
-pkg syscall (openbsd-amd64), const F_SETFD ideal-int
-pkg syscall (openbsd-amd64), const F_SETFL ideal-int
-pkg syscall (openbsd-amd64), const F_SETLK ideal-int
-pkg syscall (openbsd-amd64), const F_SETLKW ideal-int
-pkg syscall (openbsd-amd64), const F_SETOWN ideal-int
-pkg syscall (openbsd-amd64), const F_UNLCK ideal-int
-pkg syscall (openbsd-amd64), const F_WRLCK ideal-int
-pkg syscall (openbsd-amd64), const HUPCL ideal-int
-pkg syscall (openbsd-amd64), const ICANON ideal-int
-pkg syscall (openbsd-amd64), const ICMP6_FILTER = 18
-pkg syscall (openbsd-amd64), const ICMP6_FILTER ideal-int
-pkg syscall (openbsd-amd64), const ICRNL ideal-int
-pkg syscall (openbsd-amd64), const IEXTEN ideal-int
-pkg syscall (openbsd-amd64), const IFAN_ARRIVAL ideal-int
-pkg syscall (openbsd-amd64), const IFAN_DEPARTURE ideal-int
-pkg syscall (openbsd-amd64), const IFA_ROUTE ideal-int
-pkg syscall (openbsd-amd64), const IFF_ALLMULTI ideal-int
-pkg syscall (openbsd-amd64), const IFF_CANTCHANGE ideal-int
-pkg syscall (openbsd-amd64), const IFF_DEBUG ideal-int
-pkg syscall (openbsd-amd64), const IFF_LINK0 ideal-int
-pkg syscall (openbsd-amd64), const IFF_LINK1 ideal-int
-pkg syscall (openbsd-amd64), const IFF_LINK2 ideal-int
-pkg syscall (openbsd-amd64), const IFF_NOARP ideal-int
-pkg syscall (openbsd-amd64), const IFF_NOTRAILERS ideal-int
-pkg syscall (openbsd-amd64), const IFF_OACTIVE ideal-int
-pkg syscall (openbsd-amd64), const IFF_POINTOPOINT ideal-int
-pkg syscall (openbsd-amd64), const IFF_PROMISC ideal-int
-pkg syscall (openbsd-amd64), const IFF_RUNNING ideal-int
-pkg syscall (openbsd-amd64), const IFF_SIMPLEX ideal-int
-pkg syscall (openbsd-amd64), const IFNAMSIZ ideal-int
-pkg syscall (openbsd-amd64), const IFT_1822 ideal-int
-pkg syscall (openbsd-amd64), const IFT_A12MPPSWITCH ideal-int
-pkg syscall (openbsd-amd64), const IFT_AAL2 ideal-int
-pkg syscall (openbsd-amd64), const IFT_AAL5 ideal-int
-pkg syscall (openbsd-amd64), const IFT_ADSL ideal-int
-pkg syscall (openbsd-amd64), const IFT_AFLANE8023 ideal-int
-pkg syscall (openbsd-amd64), const IFT_AFLANE8025 ideal-int
-pkg syscall (openbsd-amd64), const IFT_ARAP ideal-int
-pkg syscall (openbsd-amd64), const IFT_ARCNET ideal-int
-pkg syscall (openbsd-amd64), const IFT_ARCNETPLUS ideal-int
-pkg syscall (openbsd-amd64), const IFT_ASYNC ideal-int
-pkg syscall (openbsd-amd64), const IFT_ATM ideal-int
-pkg syscall (openbsd-amd64), const IFT_ATMDXI ideal-int
-pkg syscall (openbsd-amd64), const IFT_ATMFUNI ideal-int
-pkg syscall (openbsd-amd64), const IFT_ATMIMA ideal-int
-pkg syscall (openbsd-amd64), const IFT_ATMLOGICAL ideal-int
-pkg syscall (openbsd-amd64), const IFT_ATMRADIO ideal-int
-pkg syscall (openbsd-amd64), const IFT_ATMSUBINTERFACE ideal-int
-pkg syscall (openbsd-amd64), const IFT_ATMVCIENDPT ideal-int
-pkg syscall (openbsd-amd64), const IFT_ATMVIRTUAL ideal-int
-pkg syscall (openbsd-amd64), const IFT_BGPPOLICYACCOUNTING ideal-int
-pkg syscall (openbsd-amd64), const IFT_BLUETOOTH ideal-int
-pkg syscall (openbsd-amd64), const IFT_BRIDGE ideal-int
-pkg syscall (openbsd-amd64), const IFT_BSC ideal-int
-pkg syscall (openbsd-amd64), const IFT_CARP ideal-int
-pkg syscall (openbsd-amd64), const IFT_CCTEMUL ideal-int
-pkg syscall (openbsd-amd64), const IFT_CEPT ideal-int
-pkg syscall (openbsd-amd64), const IFT_CES ideal-int
-pkg syscall (openbsd-amd64), const IFT_CHANNEL ideal-int
-pkg syscall (openbsd-amd64), const IFT_CNR ideal-int
-pkg syscall (openbsd-amd64), const IFT_COFFEE ideal-int
-pkg syscall (openbsd-amd64), const IFT_COMPOSITELINK ideal-int
-pkg syscall (openbsd-amd64), const IFT_DCN ideal-int
-pkg syscall (openbsd-amd64), const IFT_DIGITALPOWERLINE ideal-int
-pkg syscall (openbsd-amd64), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int
-pkg syscall (openbsd-amd64), const IFT_DLSW ideal-int
-pkg syscall (openbsd-amd64), const IFT_DOCSCABLEDOWNSTREAM ideal-int
-pkg syscall (openbsd-amd64), const IFT_DOCSCABLEMACLAYER ideal-int
-pkg syscall (openbsd-amd64), const IFT_DOCSCABLEUPSTREAM ideal-int
-pkg syscall (openbsd-amd64), const IFT_DOCSCABLEUPSTREAMCHANNEL ideal-int
-pkg syscall (openbsd-amd64), const IFT_DS0 ideal-int
-pkg syscall (openbsd-amd64), const IFT_DS0BUNDLE ideal-int
-pkg syscall (openbsd-amd64), const IFT_DS1FDL ideal-int
-pkg syscall (openbsd-amd64), const IFT_DS3 ideal-int
-pkg syscall (openbsd-amd64), const IFT_DTM ideal-int
-pkg syscall (openbsd-amd64), const IFT_DUMMY ideal-int
-pkg syscall (openbsd-amd64), const IFT_DVBASILN ideal-int
-pkg syscall (openbsd-amd64), const IFT_DVBASIOUT ideal-int
-pkg syscall (openbsd-amd64), const IFT_DVBRCCDOWNSTREAM ideal-int
-pkg syscall (openbsd-amd64), const IFT_DVBRCCMACLAYER ideal-int
-pkg syscall (openbsd-amd64), const IFT_DVBRCCUPSTREAM ideal-int
-pkg syscall (openbsd-amd64), const IFT_ECONET ideal-int
-pkg syscall (openbsd-amd64), const IFT_ENC ideal-int
-pkg syscall (openbsd-amd64), const IFT_EON ideal-int
-pkg syscall (openbsd-amd64), const IFT_EPLRS ideal-int
-pkg syscall (openbsd-amd64), const IFT_ESCON ideal-int
-pkg syscall (openbsd-amd64), const IFT_ETHER ideal-int
-pkg syscall (openbsd-amd64), const IFT_FAITH ideal-int
-pkg syscall (openbsd-amd64), const IFT_FAST ideal-int
-pkg syscall (openbsd-amd64), const IFT_FASTETHER ideal-int
-pkg syscall (openbsd-amd64), const IFT_FASTETHERFX ideal-int
-pkg syscall (openbsd-amd64), const IFT_FDDI ideal-int
-pkg syscall (openbsd-amd64), const IFT_FIBRECHANNEL ideal-int
-pkg syscall (openbsd-amd64), const IFT_FRAMERELAYINTERCONNECT ideal-int
-pkg syscall (openbsd-amd64), const IFT_FRAMERELAYMPI ideal-int
-pkg syscall (openbsd-amd64), const IFT_FRDLCIENDPT ideal-int
-pkg syscall (openbsd-amd64), const IFT_FRELAY ideal-int
-pkg syscall (openbsd-amd64), const IFT_FRELAYDCE ideal-int
-pkg syscall (openbsd-amd64), const IFT_FRF16MFRBUNDLE ideal-int
-pkg syscall (openbsd-amd64), const IFT_FRFORWARD ideal-int
-pkg syscall (openbsd-amd64), const IFT_G703AT2MB ideal-int
-pkg syscall (openbsd-amd64), const IFT_G703AT64K ideal-int
-pkg syscall (openbsd-amd64), const IFT_GIF ideal-int
-pkg syscall (openbsd-amd64), const IFT_GIGABITETHERNET ideal-int
-pkg syscall (openbsd-amd64), const IFT_GR303IDT ideal-int
-pkg syscall (openbsd-amd64), const IFT_GR303RDT ideal-int
-pkg syscall (openbsd-amd64), const IFT_H323GATEKEEPER ideal-int
-pkg syscall (openbsd-amd64), const IFT_H323PROXY ideal-int
-pkg syscall (openbsd-amd64), const IFT_HDH1822 ideal-int
-pkg syscall (openbsd-amd64), const IFT_HDLC ideal-int
-pkg syscall (openbsd-amd64), const IFT_HDSL2 ideal-int
-pkg syscall (openbsd-amd64), const IFT_HIPERLAN2 ideal-int
-pkg syscall (openbsd-amd64), const IFT_HIPPI ideal-int
-pkg syscall (openbsd-amd64), const IFT_HIPPIINTERFACE ideal-int
-pkg syscall (openbsd-amd64), const IFT_HOSTPAD ideal-int
-pkg syscall (openbsd-amd64), const IFT_HSSI ideal-int
-pkg syscall (openbsd-amd64), const IFT_HY ideal-int
-pkg syscall (openbsd-amd64), const IFT_IBM370PARCHAN ideal-int
-pkg syscall (openbsd-amd64), const IFT_IDSL ideal-int
-pkg syscall (openbsd-amd64), const IFT_IEEE1394 ideal-int
-pkg syscall (openbsd-amd64), const IFT_IEEE80211 ideal-int
-pkg syscall (openbsd-amd64), const IFT_IEEE80212 ideal-int
-pkg syscall (openbsd-amd64), const IFT_IEEE8023ADLAG ideal-int
-pkg syscall (openbsd-amd64), const IFT_IFGSN ideal-int
-pkg syscall (openbsd-amd64), const IFT_IMT ideal-int
-pkg syscall (openbsd-amd64), const IFT_INFINIBAND ideal-int
-pkg syscall (openbsd-amd64), const IFT_INTERLEAVE ideal-int
-pkg syscall (openbsd-amd64), const IFT_IP ideal-int
-pkg syscall (openbsd-amd64), const IFT_IPFORWARD ideal-int
-pkg syscall (openbsd-amd64), const IFT_IPOVERATM ideal-int
-pkg syscall (openbsd-amd64), const IFT_IPOVERCDLC ideal-int
-pkg syscall (openbsd-amd64), const IFT_IPOVERCLAW ideal-int
-pkg syscall (openbsd-amd64), const IFT_IPSWITCH ideal-int
-pkg syscall (openbsd-amd64), const IFT_ISDN ideal-int
-pkg syscall (openbsd-amd64), const IFT_ISDNBASIC ideal-int
-pkg syscall (openbsd-amd64), const IFT_ISDNPRIMARY ideal-int
-pkg syscall (openbsd-amd64), const IFT_ISDNS ideal-int
-pkg syscall (openbsd-amd64), const IFT_ISDNU ideal-int
-pkg syscall (openbsd-amd64), const IFT_ISO88022LLC ideal-int
-pkg syscall (openbsd-amd64), const IFT_ISO88023 ideal-int
-pkg syscall (openbsd-amd64), const IFT_ISO88024 ideal-int
-pkg syscall (openbsd-amd64), const IFT_ISO88025 ideal-int
-pkg syscall (openbsd-amd64), const IFT_ISO88025CRFPINT ideal-int
-pkg syscall (openbsd-amd64), const IFT_ISO88025DTR ideal-int
-pkg syscall (openbsd-amd64), const IFT_ISO88025FIBER ideal-int
-pkg syscall (openbsd-amd64), const IFT_ISO88026 ideal-int
-pkg syscall (openbsd-amd64), const IFT_ISUP ideal-int
-pkg syscall (openbsd-amd64), const IFT_L2VLAN ideal-int
-pkg syscall (openbsd-amd64), const IFT_L3IPVLAN ideal-int
-pkg syscall (openbsd-amd64), const IFT_L3IPXVLAN ideal-int
-pkg syscall (openbsd-amd64), const IFT_LAPB ideal-int
-pkg syscall (openbsd-amd64), const IFT_LAPD ideal-int
-pkg syscall (openbsd-amd64), const IFT_LAPF ideal-int
-pkg syscall (openbsd-amd64), const IFT_LINEGROUP ideal-int
-pkg syscall (openbsd-amd64), const IFT_LOCALTALK ideal-int
-pkg syscall (openbsd-amd64), const IFT_LOOP ideal-int
-pkg syscall (openbsd-amd64), const IFT_MEDIAMAILOVERIP ideal-int
-pkg syscall (openbsd-amd64), const IFT_MFSIGLINK ideal-int
-pkg syscall (openbsd-amd64), const IFT_MIOX25 ideal-int
-pkg syscall (openbsd-amd64), const IFT_MODEM ideal-int
-pkg syscall (openbsd-amd64), const IFT_MPC ideal-int
-pkg syscall (openbsd-amd64), const IFT_MPLS ideal-int
-pkg syscall (openbsd-amd64), const IFT_MPLSTUNNEL ideal-int
-pkg syscall (openbsd-amd64), const IFT_MSDSL ideal-int
-pkg syscall (openbsd-amd64), const IFT_MVL ideal-int
-pkg syscall (openbsd-amd64), const IFT_MYRINET ideal-int
-pkg syscall (openbsd-amd64), const IFT_NFAS ideal-int
-pkg syscall (openbsd-amd64), const IFT_NSIP ideal-int
-pkg syscall (openbsd-amd64), const IFT_OPTICALCHANNEL ideal-int
-pkg syscall (openbsd-amd64), const IFT_OPTICALTRANSPORT ideal-int
-pkg syscall (openbsd-amd64), const IFT_OTHER ideal-int
-pkg syscall (openbsd-amd64), const IFT_P10 ideal-int
-pkg syscall (openbsd-amd64), const IFT_P80 ideal-int
-pkg syscall (openbsd-amd64), const IFT_PARA ideal-int
-pkg syscall (openbsd-amd64), const IFT_PFLOG ideal-int
-pkg syscall (openbsd-amd64), const IFT_PFLOW ideal-int
-pkg syscall (openbsd-amd64), const IFT_PFSYNC ideal-int
-pkg syscall (openbsd-amd64), const IFT_PLC ideal-int
-pkg syscall (openbsd-amd64), const IFT_PON155 ideal-int
-pkg syscall (openbsd-amd64), const IFT_PON622 ideal-int
-pkg syscall (openbsd-amd64), const IFT_POS ideal-int
-pkg syscall (openbsd-amd64), const IFT_PPP ideal-int
-pkg syscall (openbsd-amd64), const IFT_PPPMULTILINKBUNDLE ideal-int
-pkg syscall (openbsd-amd64), const IFT_PROPATM ideal-int
-pkg syscall (openbsd-amd64), const IFT_PROPBWAP2MP ideal-int
-pkg syscall (openbsd-amd64), const IFT_PROPCNLS ideal-int
-pkg syscall (openbsd-amd64), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int
-pkg syscall (openbsd-amd64), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int
-pkg syscall (openbsd-amd64), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int
-pkg syscall (openbsd-amd64), const IFT_PROPMUX ideal-int
-pkg syscall (openbsd-amd64), const IFT_PROPVIRTUAL ideal-int
-pkg syscall (openbsd-amd64), const IFT_PROPWIRELESSP2P ideal-int
-pkg syscall (openbsd-amd64), const IFT_PTPSERIAL ideal-int
-pkg syscall (openbsd-amd64), const IFT_PVC ideal-int
-pkg syscall (openbsd-amd64), const IFT_Q2931 ideal-int
-pkg syscall (openbsd-amd64), const IFT_QLLC ideal-int
-pkg syscall (openbsd-amd64), const IFT_RADIOMAC ideal-int
-pkg syscall (openbsd-amd64), const IFT_RADSL ideal-int
-pkg syscall (openbsd-amd64), const IFT_REACHDSL ideal-int
-pkg syscall (openbsd-amd64), const IFT_RFC1483 ideal-int
-pkg syscall (openbsd-amd64), const IFT_RS232 ideal-int
-pkg syscall (openbsd-amd64), const IFT_RSRB ideal-int
-pkg syscall (openbsd-amd64), const IFT_SDLC ideal-int
-pkg syscall (openbsd-amd64), const IFT_SDSL ideal-int
-pkg syscall (openbsd-amd64), const IFT_SHDSL ideal-int
-pkg syscall (openbsd-amd64), const IFT_SIP ideal-int
-pkg syscall (openbsd-amd64), const IFT_SIPSIG ideal-int
-pkg syscall (openbsd-amd64), const IFT_SIPTG ideal-int
-pkg syscall (openbsd-amd64), const IFT_SLIP ideal-int
-pkg syscall (openbsd-amd64), const IFT_SMDSDXI ideal-int
-pkg syscall (openbsd-amd64), const IFT_SMDSICIP ideal-int
-pkg syscall (openbsd-amd64), const IFT_SONET ideal-int
-pkg syscall (openbsd-amd64), const IFT_SONETOVERHEADCHANNEL ideal-int
-pkg syscall (openbsd-amd64), const IFT_SONETPATH ideal-int
-pkg syscall (openbsd-amd64), const IFT_SONETVT ideal-int
-pkg syscall (openbsd-amd64), const IFT_SRP ideal-int
-pkg syscall (openbsd-amd64), const IFT_SS7SIGLINK ideal-int
-pkg syscall (openbsd-amd64), const IFT_STACKTOSTACK ideal-int
-pkg syscall (openbsd-amd64), const IFT_STARLAN ideal-int
-pkg syscall (openbsd-amd64), const IFT_T1 ideal-int
-pkg syscall (openbsd-amd64), const IFT_TDLC ideal-int
-pkg syscall (openbsd-amd64), const IFT_TELINK ideal-int
-pkg syscall (openbsd-amd64), const IFT_TERMPAD ideal-int
-pkg syscall (openbsd-amd64), const IFT_TR008 ideal-int
-pkg syscall (openbsd-amd64), const IFT_TRANSPHDLC ideal-int
-pkg syscall (openbsd-amd64), const IFT_TUNNEL ideal-int
-pkg syscall (openbsd-amd64), const IFT_ULTRA ideal-int
-pkg syscall (openbsd-amd64), const IFT_USB ideal-int
-pkg syscall (openbsd-amd64), const IFT_V11 ideal-int
-pkg syscall (openbsd-amd64), const IFT_V35 ideal-int
-pkg syscall (openbsd-amd64), const IFT_V36 ideal-int
-pkg syscall (openbsd-amd64), const IFT_V37 ideal-int
-pkg syscall (openbsd-amd64), const IFT_VDSL ideal-int
-pkg syscall (openbsd-amd64), const IFT_VIRTUALIPADDRESS ideal-int
-pkg syscall (openbsd-amd64), const IFT_VIRTUALTG ideal-int
-pkg syscall (openbsd-amd64), const IFT_VOICEDID ideal-int
-pkg syscall (openbsd-amd64), const IFT_VOICEEM ideal-int
-pkg syscall (openbsd-amd64), const IFT_VOICEEMFGD ideal-int
-pkg syscall (openbsd-amd64), const IFT_VOICEENCAP ideal-int
-pkg syscall (openbsd-amd64), const IFT_VOICEFGDEANA ideal-int
-pkg syscall (openbsd-amd64), const IFT_VOICEFXO ideal-int
-pkg syscall (openbsd-amd64), const IFT_VOICEFXS ideal-int
-pkg syscall (openbsd-amd64), const IFT_VOICEOVERATM ideal-int
-pkg syscall (openbsd-amd64), const IFT_VOICEOVERCABLE ideal-int
-pkg syscall (openbsd-amd64), const IFT_VOICEOVERFRAMERELAY ideal-int
-pkg syscall (openbsd-amd64), const IFT_VOICEOVERIP ideal-int
-pkg syscall (openbsd-amd64), const IFT_X213 ideal-int
-pkg syscall (openbsd-amd64), const IFT_X25 ideal-int
-pkg syscall (openbsd-amd64), const IFT_X25DDN ideal-int
-pkg syscall (openbsd-amd64), const IFT_X25HUNTGROUP ideal-int
-pkg syscall (openbsd-amd64), const IFT_X25MLP ideal-int
-pkg syscall (openbsd-amd64), const IFT_X25PLE ideal-int
-pkg syscall (openbsd-amd64), const IFT_XETHER ideal-int
-pkg syscall (openbsd-amd64), const IGNBRK ideal-int
-pkg syscall (openbsd-amd64), const IGNCR ideal-int
-pkg syscall (openbsd-amd64), const IGNPAR ideal-int
-pkg syscall (openbsd-amd64), const IMAXBEL ideal-int
-pkg syscall (openbsd-amd64), const INLCR ideal-int
-pkg syscall (openbsd-amd64), const INPCK ideal-int
-pkg syscall (openbsd-amd64), const IN_CLASSA_HOST ideal-int
-pkg syscall (openbsd-amd64), const IN_CLASSA_MAX ideal-int
-pkg syscall (openbsd-amd64), const IN_CLASSA_NET ideal-int
-pkg syscall (openbsd-amd64), const IN_CLASSA_NSHIFT ideal-int
-pkg syscall (openbsd-amd64), const IN_CLASSB_HOST ideal-int
-pkg syscall (openbsd-amd64), const IN_CLASSB_MAX ideal-int
-pkg syscall (openbsd-amd64), const IN_CLASSB_NET ideal-int
-pkg syscall (openbsd-amd64), const IN_CLASSB_NSHIFT ideal-int
-pkg syscall (openbsd-amd64), const IN_CLASSC_HOST ideal-int
-pkg syscall (openbsd-amd64), const IN_CLASSC_NET ideal-int
-pkg syscall (openbsd-amd64), const IN_CLASSC_NSHIFT ideal-int
-pkg syscall (openbsd-amd64), const IN_CLASSD_HOST ideal-int
-pkg syscall (openbsd-amd64), const IN_CLASSD_NET ideal-int
-pkg syscall (openbsd-amd64), const IN_CLASSD_NSHIFT ideal-int
-pkg syscall (openbsd-amd64), const IN_LOOPBACKNET ideal-int
-pkg syscall (openbsd-amd64), const IN_RFC3021_HOST ideal-int
-pkg syscall (openbsd-amd64), const IN_RFC3021_NET ideal-int
-pkg syscall (openbsd-amd64), const IN_RFC3021_NSHIFT ideal-int
-pkg syscall (openbsd-amd64), const IPPROTO_AH ideal-int
-pkg syscall (openbsd-amd64), const IPPROTO_CARP ideal-int
-pkg syscall (openbsd-amd64), const IPPROTO_DIVERT ideal-int
-pkg syscall (openbsd-amd64), const IPPROTO_DONE ideal-int
-pkg syscall (openbsd-amd64), const IPPROTO_DSTOPTS ideal-int
-pkg syscall (openbsd-amd64), const IPPROTO_EGP ideal-int
-pkg syscall (openbsd-amd64), const IPPROTO_ENCAP ideal-int
-pkg syscall (openbsd-amd64), const IPPROTO_EON ideal-int
-pkg syscall (openbsd-amd64), const IPPROTO_ESP ideal-int
-pkg syscall (openbsd-amd64), const IPPROTO_ETHERIP ideal-int
-pkg syscall (openbsd-amd64), const IPPROTO_FRAGMENT ideal-int
-pkg syscall (openbsd-amd64), const IPPROTO_GGP ideal-int
-pkg syscall (openbsd-amd64), const IPPROTO_GRE ideal-int
-pkg syscall (openbsd-amd64), const IPPROTO_HOPOPTS ideal-int
-pkg syscall (openbsd-amd64), const IPPROTO_ICMP ideal-int
-pkg syscall (openbsd-amd64), const IPPROTO_ICMPV6 ideal-int
-pkg syscall (openbsd-amd64), const IPPROTO_IDP ideal-int
-pkg syscall (openbsd-amd64), const IPPROTO_IGMP ideal-int
-pkg syscall (openbsd-amd64), const IPPROTO_IPCOMP ideal-int
-pkg syscall (openbsd-amd64), const IPPROTO_IPIP ideal-int
-pkg syscall (openbsd-amd64), const IPPROTO_IPV4 ideal-int
-pkg syscall (openbsd-amd64), const IPPROTO_MAX ideal-int
-pkg syscall (openbsd-amd64), const IPPROTO_MAXID ideal-int
-pkg syscall (openbsd-amd64), const IPPROTO_MOBILE ideal-int
-pkg syscall (openbsd-amd64), const IPPROTO_MPLS ideal-int
-pkg syscall (openbsd-amd64), const IPPROTO_NONE ideal-int
-pkg syscall (openbsd-amd64), const IPPROTO_PFSYNC ideal-int
-pkg syscall (openbsd-amd64), const IPPROTO_PIM ideal-int
-pkg syscall (openbsd-amd64), const IPPROTO_PUP ideal-int
-pkg syscall (openbsd-amd64), const IPPROTO_RAW ideal-int
-pkg syscall (openbsd-amd64), const IPPROTO_ROUTING ideal-int
-pkg syscall (openbsd-amd64), const IPPROTO_RSVP ideal-int
-pkg syscall (openbsd-amd64), const IPPROTO_TP ideal-int
-pkg syscall (openbsd-amd64), const IPV6_AUTH_LEVEL ideal-int
-pkg syscall (openbsd-amd64), const IPV6_AUTOFLOWLABEL ideal-int
-pkg syscall (openbsd-amd64), const IPV6_CHECKSUM ideal-int
-pkg syscall (openbsd-amd64), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int
-pkg syscall (openbsd-amd64), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int
-pkg syscall (openbsd-amd64), const IPV6_DEFHLIM ideal-int
-pkg syscall (openbsd-amd64), const IPV6_DONTFRAG ideal-int
-pkg syscall (openbsd-amd64), const IPV6_DSTOPTS ideal-int
-pkg syscall (openbsd-amd64), const IPV6_ESP_NETWORK_LEVEL ideal-int
-pkg syscall (openbsd-amd64), const IPV6_ESP_TRANS_LEVEL ideal-int
-pkg syscall (openbsd-amd64), const IPV6_FAITH ideal-int
-pkg syscall (openbsd-amd64), const IPV6_FLOWINFO_MASK ideal-int
-pkg syscall (openbsd-amd64), const IPV6_FLOWLABEL_MASK ideal-int
-pkg syscall (openbsd-amd64), const IPV6_FRAGTTL ideal-int
-pkg syscall (openbsd-amd64), const IPV6_HLIMDEC ideal-int
-pkg syscall (openbsd-amd64), const IPV6_HOPLIMIT ideal-int
-pkg syscall (openbsd-amd64), const IPV6_HOPOPTS ideal-int
-pkg syscall (openbsd-amd64), const IPV6_IPCOMP_LEVEL ideal-int
-pkg syscall (openbsd-amd64), const IPV6_MAXHLIM ideal-int
-pkg syscall (openbsd-amd64), const IPV6_MAXPACKET ideal-int
-pkg syscall (openbsd-amd64), const IPV6_MMTU ideal-int
-pkg syscall (openbsd-amd64), const IPV6_NEXTHOP ideal-int
-pkg syscall (openbsd-amd64), const IPV6_OPTIONS ideal-int
-pkg syscall (openbsd-amd64), const IPV6_PATHMTU ideal-int
-pkg syscall (openbsd-amd64), const IPV6_PIPEX ideal-int
-pkg syscall (openbsd-amd64), const IPV6_PKTINFO ideal-int
-pkg syscall (openbsd-amd64), const IPV6_PORTRANGE ideal-int
-pkg syscall (openbsd-amd64), const IPV6_PORTRANGE_DEFAULT ideal-int
-pkg syscall (openbsd-amd64), const IPV6_PORTRANGE_HIGH ideal-int
-pkg syscall (openbsd-amd64), const IPV6_PORTRANGE_LOW ideal-int
-pkg syscall (openbsd-amd64), const IPV6_RECVDSTOPTS ideal-int
-pkg syscall (openbsd-amd64), const IPV6_RECVHOPLIMIT ideal-int
-pkg syscall (openbsd-amd64), const IPV6_RECVHOPOPTS ideal-int
-pkg syscall (openbsd-amd64), const IPV6_RECVPATHMTU ideal-int
-pkg syscall (openbsd-amd64), const IPV6_RECVPKTINFO ideal-int
-pkg syscall (openbsd-amd64), const IPV6_RECVRTHDR ideal-int
-pkg syscall (openbsd-amd64), const IPV6_RECVTCLASS ideal-int
-pkg syscall (openbsd-amd64), const IPV6_RTABLE ideal-int
-pkg syscall (openbsd-amd64), const IPV6_RTHDR ideal-int
-pkg syscall (openbsd-amd64), const IPV6_RTHDRDSTOPTS ideal-int
-pkg syscall (openbsd-amd64), const IPV6_RTHDR_LOOSE ideal-int
-pkg syscall (openbsd-amd64), const IPV6_RTHDR_STRICT ideal-int
-pkg syscall (openbsd-amd64), const IPV6_RTHDR_TYPE_0 ideal-int
-pkg syscall (openbsd-amd64), const IPV6_SOCKOPT_RESERVED1 ideal-int
-pkg syscall (openbsd-amd64), const IPV6_TCLASS ideal-int
-pkg syscall (openbsd-amd64), const IPV6_USE_MIN_MTU ideal-int
-pkg syscall (openbsd-amd64), const IPV6_VERSION ideal-int
-pkg syscall (openbsd-amd64), const IPV6_VERSION_MASK ideal-int
-pkg syscall (openbsd-amd64), const IP_AUTH_LEVEL ideal-int
-pkg syscall (openbsd-amd64), const IP_DEFAULT_MULTICAST_LOOP ideal-int
-pkg syscall (openbsd-amd64), const IP_DEFAULT_MULTICAST_TTL ideal-int
-pkg syscall (openbsd-amd64), const IP_DF ideal-int
-pkg syscall (openbsd-amd64), const IP_ESP_NETWORK_LEVEL ideal-int
-pkg syscall (openbsd-amd64), const IP_ESP_TRANS_LEVEL ideal-int
-pkg syscall (openbsd-amd64), const IP_HDRINCL ideal-int
-pkg syscall (openbsd-amd64), const IP_IPCOMP_LEVEL ideal-int
-pkg syscall (openbsd-amd64), const IP_IPSECFLOWINFO ideal-int
-pkg syscall (openbsd-amd64), const IP_IPSEC_LOCAL_AUTH ideal-int
-pkg syscall (openbsd-amd64), const IP_IPSEC_LOCAL_CRED ideal-int
-pkg syscall (openbsd-amd64), const IP_IPSEC_LOCAL_ID ideal-int
-pkg syscall (openbsd-amd64), const IP_IPSEC_REMOTE_AUTH ideal-int
-pkg syscall (openbsd-amd64), const IP_IPSEC_REMOTE_CRED ideal-int
-pkg syscall (openbsd-amd64), const IP_IPSEC_REMOTE_ID ideal-int
-pkg syscall (openbsd-amd64), const IP_MAXPACKET ideal-int
-pkg syscall (openbsd-amd64), const IP_MAX_MEMBERSHIPS ideal-int
-pkg syscall (openbsd-amd64), const IP_MF ideal-int
-pkg syscall (openbsd-amd64), const IP_MINTTL ideal-int
-pkg syscall (openbsd-amd64), const IP_MIN_MEMBERSHIPS ideal-int
-pkg syscall (openbsd-amd64), const IP_MSS ideal-int
-pkg syscall (openbsd-amd64), const IP_OFFMASK ideal-int
-pkg syscall (openbsd-amd64), const IP_OPTIONS ideal-int
-pkg syscall (openbsd-amd64), const IP_PIPEX ideal-int
-pkg syscall (openbsd-amd64), const IP_PORTRANGE ideal-int
-pkg syscall (openbsd-amd64), const IP_PORTRANGE_DEFAULT ideal-int
-pkg syscall (openbsd-amd64), const IP_PORTRANGE_HIGH ideal-int
-pkg syscall (openbsd-amd64), const IP_PORTRANGE_LOW ideal-int
-pkg syscall (openbsd-amd64), const IP_RECVDSTADDR ideal-int
-pkg syscall (openbsd-amd64), const IP_RECVDSTPORT ideal-int
-pkg syscall (openbsd-amd64), const IP_RECVIF ideal-int
-pkg syscall (openbsd-amd64), const IP_RECVOPTS ideal-int
-pkg syscall (openbsd-amd64), const IP_RECVRETOPTS ideal-int
-pkg syscall (openbsd-amd64), const IP_RECVRTABLE ideal-int
-pkg syscall (openbsd-amd64), const IP_RECVTTL ideal-int
-pkg syscall (openbsd-amd64), const IP_RETOPTS ideal-int
-pkg syscall (openbsd-amd64), const IP_RF ideal-int
-pkg syscall (openbsd-amd64), const IP_RTABLE ideal-int
-pkg syscall (openbsd-amd64), const ISIG ideal-int
-pkg syscall (openbsd-amd64), const ISTRIP ideal-int
-pkg syscall (openbsd-amd64), const IXANY ideal-int
-pkg syscall (openbsd-amd64), const IXOFF ideal-int
-pkg syscall (openbsd-amd64), const IXON ideal-int
-pkg syscall (openbsd-amd64), const LCNT_OVERLOAD_FLUSH ideal-int
-pkg syscall (openbsd-amd64), const LOCK_EX ideal-int
-pkg syscall (openbsd-amd64), const LOCK_NB ideal-int
-pkg syscall (openbsd-amd64), const LOCK_SH ideal-int
-pkg syscall (openbsd-amd64), const LOCK_UN ideal-int
-pkg syscall (openbsd-amd64), const MSG_BCAST ideal-int
-pkg syscall (openbsd-amd64), const MSG_CTRUNC ideal-int
-pkg syscall (openbsd-amd64), const MSG_DONTROUTE ideal-int
-pkg syscall (openbsd-amd64), const MSG_DONTWAIT ideal-int
-pkg syscall (openbsd-amd64), const MSG_EOR ideal-int
-pkg syscall (openbsd-amd64), const MSG_MCAST ideal-int
-pkg syscall (openbsd-amd64), const MSG_NOSIGNAL ideal-int
-pkg syscall (openbsd-amd64), const MSG_OOB ideal-int
-pkg syscall (openbsd-amd64), const MSG_PEEK ideal-int
-pkg syscall (openbsd-amd64), const MSG_TRUNC ideal-int
-pkg syscall (openbsd-amd64), const MSG_WAITALL ideal-int
-pkg syscall (openbsd-amd64), const NAME_MAX ideal-int
-pkg syscall (openbsd-amd64), const NET_RT_DUMP ideal-int
-pkg syscall (openbsd-amd64), const NET_RT_FLAGS ideal-int
-pkg syscall (openbsd-amd64), const NET_RT_IFLIST ideal-int
-pkg syscall (openbsd-amd64), const NET_RT_MAXID ideal-int
-pkg syscall (openbsd-amd64), const NET_RT_STATS ideal-int
-pkg syscall (openbsd-amd64), const NET_RT_TABLE ideal-int
-pkg syscall (openbsd-amd64), const NOFLSH ideal-int
-pkg syscall (openbsd-amd64), const NOTE_ATTRIB ideal-int
-pkg syscall (openbsd-amd64), const NOTE_CHILD ideal-int
-pkg syscall (openbsd-amd64), const NOTE_DELETE ideal-int
-pkg syscall (openbsd-amd64), const NOTE_EOF ideal-int
-pkg syscall (openbsd-amd64), const NOTE_EXEC ideal-int
-pkg syscall (openbsd-amd64), const NOTE_EXIT ideal-int
-pkg syscall (openbsd-amd64), const NOTE_EXTEND ideal-int
-pkg syscall (openbsd-amd64), const NOTE_FORK ideal-int
-pkg syscall (openbsd-amd64), const NOTE_LINK ideal-int
-pkg syscall (openbsd-amd64), const NOTE_LOWAT ideal-int
-pkg syscall (openbsd-amd64), const NOTE_PCTRLMASK ideal-int
-pkg syscall (openbsd-amd64), const NOTE_PDATAMASK ideal-int
-pkg syscall (openbsd-amd64), const NOTE_RENAME ideal-int
-pkg syscall (openbsd-amd64), const NOTE_REVOKE ideal-int
-pkg syscall (openbsd-amd64), const NOTE_TRACK ideal-int
-pkg syscall (openbsd-amd64), const NOTE_TRACKERR ideal-int
-pkg syscall (openbsd-amd64), const NOTE_TRUNCATE ideal-int
-pkg syscall (openbsd-amd64), const NOTE_WRITE ideal-int
-pkg syscall (openbsd-amd64), const OCRNL ideal-int
-pkg syscall (openbsd-amd64), const ONLCR ideal-int
-pkg syscall (openbsd-amd64), const ONLRET ideal-int
-pkg syscall (openbsd-amd64), const ONOCR ideal-int
-pkg syscall (openbsd-amd64), const ONOEOT ideal-int
-pkg syscall (openbsd-amd64), const OPOST ideal-int
-pkg syscall (openbsd-amd64), const O_ACCMODE ideal-int
-pkg syscall (openbsd-amd64), const O_DIRECTORY ideal-int
-pkg syscall (openbsd-amd64), const O_DSYNC ideal-int
-pkg syscall (openbsd-amd64), const O_EXLOCK ideal-int
-pkg syscall (openbsd-amd64), const O_FSYNC ideal-int
-pkg syscall (openbsd-amd64), const O_NDELAY ideal-int
-pkg syscall (openbsd-amd64), const O_NOFOLLOW ideal-int
-pkg syscall (openbsd-amd64), const O_RSYNC ideal-int
-pkg syscall (openbsd-amd64), const O_SHLOCK ideal-int
-pkg syscall (openbsd-amd64), const PARENB ideal-int
-pkg syscall (openbsd-amd64), const PARMRK ideal-int
-pkg syscall (openbsd-amd64), const PARODD ideal-int
-pkg syscall (openbsd-amd64), const PENDIN ideal-int
-pkg syscall (openbsd-amd64), const PF_FLUSH ideal-int
-pkg syscall (openbsd-amd64), const PMC5_PIPELINE_FLUSH ideal-int
-pkg syscall (openbsd-amd64), const PRIO_PGRP = 1
-pkg syscall (openbsd-amd64), const PRIO_PGRP ideal-int
-pkg syscall (openbsd-amd64), const PRIO_PROCESS = 0
-pkg syscall (openbsd-amd64), const PRIO_PROCESS ideal-int
-pkg syscall (openbsd-amd64), const PRIO_USER = 2
-pkg syscall (openbsd-amd64), const PRIO_USER ideal-int
-pkg syscall (openbsd-amd64), const PTRACE_CONT ideal-int
-pkg syscall (openbsd-amd64), const PTRACE_KILL ideal-int
-pkg syscall (openbsd-amd64), const PTRACE_TRACEME ideal-int
-pkg syscall (openbsd-amd64), const RLIMIT_CORE ideal-int
-pkg syscall (openbsd-amd64), const RLIMIT_CPU ideal-int
-pkg syscall (openbsd-amd64), const RLIMIT_DATA ideal-int
-pkg syscall (openbsd-amd64), const RLIMIT_FSIZE ideal-int
-pkg syscall (openbsd-amd64), const RLIMIT_NOFILE ideal-int
-pkg syscall (openbsd-amd64), const RLIMIT_STACK ideal-int
-pkg syscall (openbsd-amd64), const RLIM_INFINITY ideal-int
-pkg syscall (openbsd-amd64), const RTAX_AUTHOR ideal-int
-pkg syscall (openbsd-amd64), const RTAX_BRD ideal-int
-pkg syscall (openbsd-amd64), const RTAX_DST ideal-int
-pkg syscall (openbsd-amd64), const RTAX_GATEWAY ideal-int
-pkg syscall (openbsd-amd64), const RTAX_GENMASK ideal-int
-pkg syscall (openbsd-amd64), const RTAX_IFA ideal-int
-pkg syscall (openbsd-amd64), const RTAX_IFP ideal-int
-pkg syscall (openbsd-amd64), const RTAX_LABEL ideal-int
-pkg syscall (openbsd-amd64), const RTAX_MAX ideal-int
-pkg syscall (openbsd-amd64), const RTAX_NETMASK ideal-int
-pkg syscall (openbsd-amd64), const RTAX_SRC ideal-int
-pkg syscall (openbsd-amd64), const RTAX_SRCMASK ideal-int
-pkg syscall (openbsd-amd64), const RTA_AUTHOR ideal-int
-pkg syscall (openbsd-amd64), const RTA_BRD ideal-int
-pkg syscall (openbsd-amd64), const RTA_DST ideal-int
-pkg syscall (openbsd-amd64), const RTA_GATEWAY ideal-int
-pkg syscall (openbsd-amd64), const RTA_GENMASK ideal-int
-pkg syscall (openbsd-amd64), const RTA_IFA ideal-int
-pkg syscall (openbsd-amd64), const RTA_IFP ideal-int
-pkg syscall (openbsd-amd64), const RTA_LABEL ideal-int
-pkg syscall (openbsd-amd64), const RTA_NETMASK ideal-int
-pkg syscall (openbsd-amd64), const RTA_SRC ideal-int
-pkg syscall (openbsd-amd64), const RTA_SRCMASK ideal-int
-pkg syscall (openbsd-amd64), const RTF_ANNOUNCE ideal-int
-pkg syscall (openbsd-amd64), const RTF_BLACKHOLE ideal-int
-pkg syscall (openbsd-amd64), const RTF_CLONED ideal-int
-pkg syscall (openbsd-amd64), const RTF_CLONING ideal-int
-pkg syscall (openbsd-amd64), const RTF_DONE ideal-int
-pkg syscall (openbsd-amd64), const RTF_DYNAMIC ideal-int
-pkg syscall (openbsd-amd64), const RTF_FMASK ideal-int
-pkg syscall (openbsd-amd64), const RTF_GATEWAY ideal-int
-pkg syscall (openbsd-amd64), const RTF_HOST ideal-int
-pkg syscall (openbsd-amd64), const RTF_LLINFO ideal-int
-pkg syscall (openbsd-amd64), const RTF_MASK ideal-int
-pkg syscall (openbsd-amd64), const RTF_MODIFIED ideal-int
-pkg syscall (openbsd-amd64), const RTF_MPATH ideal-int
-pkg syscall (openbsd-amd64), const RTF_MPLS ideal-int
-pkg syscall (openbsd-amd64), const RTF_PERMANENT_ARP ideal-int
-pkg syscall (openbsd-amd64), const RTF_PROTO1 ideal-int
-pkg syscall (openbsd-amd64), const RTF_PROTO2 ideal-int
-pkg syscall (openbsd-amd64), const RTF_PROTO3 ideal-int
-pkg syscall (openbsd-amd64), const RTF_REJECT ideal-int
-pkg syscall (openbsd-amd64), const RTF_SOURCE ideal-int
-pkg syscall (openbsd-amd64), const RTF_STATIC ideal-int
-pkg syscall (openbsd-amd64), const RTF_TUNNEL ideal-int
-pkg syscall (openbsd-amd64), const RTF_UP ideal-int
-pkg syscall (openbsd-amd64), const RTF_USETRAILERS ideal-int
-pkg syscall (openbsd-amd64), const RTF_XRESOLVE ideal-int
-pkg syscall (openbsd-amd64), const RTM_ADD ideal-int
-pkg syscall (openbsd-amd64), const RTM_CHANGE ideal-int
-pkg syscall (openbsd-amd64), const RTM_DELADDR ideal-int
-pkg syscall (openbsd-amd64), const RTM_DELETE ideal-int
-pkg syscall (openbsd-amd64), const RTM_DESYNC ideal-int
-pkg syscall (openbsd-amd64), const RTM_GET ideal-int
-pkg syscall (openbsd-amd64), const RTM_IFANNOUNCE ideal-int
-pkg syscall (openbsd-amd64), const RTM_IFINFO ideal-int
-pkg syscall (openbsd-amd64), const RTM_LOCK ideal-int
-pkg syscall (openbsd-amd64), const RTM_LOSING ideal-int
-pkg syscall (openbsd-amd64), const RTM_MAXSIZE ideal-int
-pkg syscall (openbsd-amd64), const RTM_MISS ideal-int
-pkg syscall (openbsd-amd64), const RTM_NEWADDR ideal-int
-pkg syscall (openbsd-amd64), const RTM_REDIRECT ideal-int
-pkg syscall (openbsd-amd64), const RTM_RESOLVE ideal-int
-pkg syscall (openbsd-amd64), const RTM_RTTUNIT ideal-int
-pkg syscall (openbsd-amd64), const RTM_VERSION ideal-int
-pkg syscall (openbsd-amd64), const RTV_EXPIRE ideal-int
-pkg syscall (openbsd-amd64), const RTV_HOPCOUNT ideal-int
-pkg syscall (openbsd-amd64), const RTV_MTU ideal-int
-pkg syscall (openbsd-amd64), const RTV_RPIPE ideal-int
-pkg syscall (openbsd-amd64), const RTV_RTT ideal-int
-pkg syscall (openbsd-amd64), const RTV_RTTVAR ideal-int
-pkg syscall (openbsd-amd64), const RTV_SPIPE ideal-int
-pkg syscall (openbsd-amd64), const RTV_SSTHRESH ideal-int
-pkg syscall (openbsd-amd64), const RT_TABLEID_MAX ideal-int
-pkg syscall (openbsd-amd64), const RUSAGE_CHILDREN ideal-int
-pkg syscall (openbsd-amd64), const RUSAGE_SELF ideal-int
-pkg syscall (openbsd-amd64), const RUSAGE_THREAD ideal-int
-pkg syscall (openbsd-amd64), const SCM_RIGHTS ideal-int
-pkg syscall (openbsd-amd64), const SCM_TIMESTAMP ideal-int
-pkg syscall (openbsd-amd64), const SIGCHLD Signal
-pkg syscall (openbsd-amd64), const SIGCONT Signal
-pkg syscall (openbsd-amd64), const SIGEMT Signal
-pkg syscall (openbsd-amd64), const SIGINFO Signal
-pkg syscall (openbsd-amd64), const SIGIO Signal
-pkg syscall (openbsd-amd64), const SIGIOT Signal
-pkg syscall (openbsd-amd64), const SIGPROF Signal
-pkg syscall (openbsd-amd64), const SIGSTOP Signal
-pkg syscall (openbsd-amd64), const SIGSYS Signal
-pkg syscall (openbsd-amd64), const SIGTHR Signal
-pkg syscall (openbsd-amd64), const SIGTSTP Signal
-pkg syscall (openbsd-amd64), const SIGTTIN Signal
-pkg syscall (openbsd-amd64), const SIGTTOU Signal
-pkg syscall (openbsd-amd64), const SIGURG Signal
-pkg syscall (openbsd-amd64), const SIGUSR1 Signal
-pkg syscall (openbsd-amd64), const SIGUSR2 Signal
-pkg syscall (openbsd-amd64), const SIGVTALRM Signal
-pkg syscall (openbsd-amd64), const SIGWINCH Signal
-pkg syscall (openbsd-amd64), const SIGXCPU Signal
-pkg syscall (openbsd-amd64), const SIGXFSZ Signal
-pkg syscall (openbsd-amd64), const SIOCADDMULTI ideal-int
-pkg syscall (openbsd-amd64), const SIOCAIFADDR ideal-int
-pkg syscall (openbsd-amd64), const SIOCAIFGROUP ideal-int
-pkg syscall (openbsd-amd64), const SIOCALIFADDR ideal-int
-pkg syscall (openbsd-amd64), const SIOCATMARK ideal-int
-pkg syscall (openbsd-amd64), const SIOCBRDGADD ideal-int
-pkg syscall (openbsd-amd64), const SIOCBRDGADDS ideal-int
-pkg syscall (openbsd-amd64), const SIOCBRDGARL ideal-int
-pkg syscall (openbsd-amd64), const SIOCBRDGDADDR ideal-int
-pkg syscall (openbsd-amd64), const SIOCBRDGDEL ideal-int
-pkg syscall (openbsd-amd64), const SIOCBRDGDELS ideal-int
-pkg syscall (openbsd-amd64), const SIOCBRDGFLUSH ideal-int
-pkg syscall (openbsd-amd64), const SIOCBRDGFRL ideal-int
-pkg syscall (openbsd-amd64), const SIOCBRDGGCACHE ideal-int
-pkg syscall (openbsd-amd64), const SIOCBRDGGFD ideal-int
-pkg syscall (openbsd-amd64), const SIOCBRDGGHT ideal-int
-pkg syscall (openbsd-amd64), const SIOCBRDGGIFFLGS ideal-int
-pkg syscall (openbsd-amd64), const SIOCBRDGGMA ideal-int
-pkg syscall (openbsd-amd64), const SIOCBRDGGPARAM ideal-int
-pkg syscall (openbsd-amd64), const SIOCBRDGGPRI ideal-int
-pkg syscall (openbsd-amd64), const SIOCBRDGGRL ideal-int
-pkg syscall (openbsd-amd64), const SIOCBRDGGSIFS ideal-int
-pkg syscall (openbsd-amd64), const SIOCBRDGGTO ideal-int
-pkg syscall (openbsd-amd64), const SIOCBRDGIFS ideal-int
-pkg syscall (openbsd-amd64), const SIOCBRDGRTS ideal-int
-pkg syscall (openbsd-amd64), const SIOCBRDGSADDR ideal-int
-pkg syscall (openbsd-amd64), const SIOCBRDGSCACHE ideal-int
-pkg syscall (openbsd-amd64), const SIOCBRDGSFD ideal-int
-pkg syscall (openbsd-amd64), const SIOCBRDGSHT ideal-int
-pkg syscall (openbsd-amd64), const SIOCBRDGSIFCOST ideal-int
-pkg syscall (openbsd-amd64), const SIOCBRDGSIFFLGS ideal-int
-pkg syscall (openbsd-amd64), const SIOCBRDGSIFPRIO ideal-int
-pkg syscall (openbsd-amd64), const SIOCBRDGSMA ideal-int
-pkg syscall (openbsd-amd64), const SIOCBRDGSPRI ideal-int
-pkg syscall (openbsd-amd64), const SIOCBRDGSPROTO ideal-int
-pkg syscall (openbsd-amd64), const SIOCBRDGSTO ideal-int
-pkg syscall (openbsd-amd64), const SIOCBRDGSTXHC ideal-int
-pkg syscall (openbsd-amd64), const SIOCDELMULTI ideal-int
-pkg syscall (openbsd-amd64), const SIOCDIFADDR ideal-int
-pkg syscall (openbsd-amd64), const SIOCDIFGROUP ideal-int
-pkg syscall (openbsd-amd64), const SIOCDIFPHYADDR ideal-int
-pkg syscall (openbsd-amd64), const SIOCDLIFADDR ideal-int
-pkg syscall (openbsd-amd64), const SIOCGETKALIVE ideal-int
-pkg syscall (openbsd-amd64), const SIOCGETLABEL ideal-int
-pkg syscall (openbsd-amd64), const SIOCGETPFLOW ideal-int
-pkg syscall (openbsd-amd64), const SIOCGETPFSYNC ideal-int
-pkg syscall (openbsd-amd64), const SIOCGETSGCNT ideal-int
-pkg syscall (openbsd-amd64), const SIOCGETVIFCNT ideal-int
-pkg syscall (openbsd-amd64), const SIOCGHIWAT ideal-int
-pkg syscall (openbsd-amd64), const SIOCGIFADDR ideal-int
-pkg syscall (openbsd-amd64), const SIOCGIFASYNCMAP ideal-int
-pkg syscall (openbsd-amd64), const SIOCGIFBRDADDR ideal-int
-pkg syscall (openbsd-amd64), const SIOCGIFCONF ideal-int
-pkg syscall (openbsd-amd64), const SIOCGIFDATA ideal-int
-pkg syscall (openbsd-amd64), const SIOCGIFDESCR ideal-int
-pkg syscall (openbsd-amd64), const SIOCGIFDSTADDR ideal-int
-pkg syscall (openbsd-amd64), const SIOCGIFFLAGS ideal-int
-pkg syscall (openbsd-amd64), const SIOCGIFGATTR ideal-int
-pkg syscall (openbsd-amd64), const SIOCGIFGENERIC ideal-int
-pkg syscall (openbsd-amd64), const SIOCGIFGMEMB ideal-int
-pkg syscall (openbsd-amd64), const SIOCGIFGROUP ideal-int
-pkg syscall (openbsd-amd64), const SIOCGIFMEDIA ideal-int
-pkg syscall (openbsd-amd64), const SIOCGIFMETRIC ideal-int
-pkg syscall (openbsd-amd64), const SIOCGIFMTU ideal-int
-pkg syscall (openbsd-amd64), const SIOCGIFNETMASK ideal-int
-pkg syscall (openbsd-amd64), const SIOCGIFPDSTADDR ideal-int
-pkg syscall (openbsd-amd64), const SIOCGIFPRIORITY ideal-int
-pkg syscall (openbsd-amd64), const SIOCGIFPSRCADDR ideal-int
-pkg syscall (openbsd-amd64), const SIOCGIFRDOMAIN ideal-int
-pkg syscall (openbsd-amd64), const SIOCGIFRTLABEL ideal-int
-pkg syscall (openbsd-amd64), const SIOCGIFTIMESLOT ideal-int
-pkg syscall (openbsd-amd64), const SIOCGIFXFLAGS ideal-int
-pkg syscall (openbsd-amd64), const SIOCGLIFADDR ideal-int
-pkg syscall (openbsd-amd64), const SIOCGLIFPHYADDR ideal-int
-pkg syscall (openbsd-amd64), const SIOCGLIFPHYRTABLE ideal-int
-pkg syscall (openbsd-amd64), const SIOCGLOWAT ideal-int
-pkg syscall (openbsd-amd64), const SIOCGPGRP ideal-int
-pkg syscall (openbsd-amd64), const SIOCGVH ideal-int
-pkg syscall (openbsd-amd64), const SIOCIFCREATE ideal-int
-pkg syscall (openbsd-amd64), const SIOCIFDESTROY ideal-int
-pkg syscall (openbsd-amd64), const SIOCIFGCLONERS ideal-int
-pkg syscall (openbsd-amd64), const SIOCSETKALIVE ideal-int
-pkg syscall (openbsd-amd64), const SIOCSETLABEL ideal-int
-pkg syscall (openbsd-amd64), const SIOCSETPFLOW ideal-int
-pkg syscall (openbsd-amd64), const SIOCSETPFSYNC ideal-int
-pkg syscall (openbsd-amd64), const SIOCSHIWAT ideal-int
-pkg syscall (openbsd-amd64), const SIOCSIFADDR ideal-int
-pkg syscall (openbsd-amd64), const SIOCSIFASYNCMAP ideal-int
-pkg syscall (openbsd-amd64), const SIOCSIFBRDADDR ideal-int
-pkg syscall (openbsd-amd64), const SIOCSIFDESCR ideal-int
-pkg syscall (openbsd-amd64), const SIOCSIFDSTADDR ideal-int
-pkg syscall (openbsd-amd64), const SIOCSIFFLAGS ideal-int
-pkg syscall (openbsd-amd64), const SIOCSIFGATTR ideal-int
-pkg syscall (openbsd-amd64), const SIOCSIFGENERIC ideal-int
-pkg syscall (openbsd-amd64), const SIOCSIFLLADDR ideal-int
-pkg syscall (openbsd-amd64), const SIOCSIFMEDIA ideal-int
-pkg syscall (openbsd-amd64), const SIOCSIFMETRIC ideal-int
-pkg syscall (openbsd-amd64), const SIOCSIFMTU ideal-int
-pkg syscall (openbsd-amd64), const SIOCSIFNETMASK ideal-int
-pkg syscall (openbsd-amd64), const SIOCSIFPHYADDR ideal-int
-pkg syscall (openbsd-amd64), const SIOCSIFPRIORITY ideal-int
-pkg syscall (openbsd-amd64), const SIOCSIFRDOMAIN ideal-int
-pkg syscall (openbsd-amd64), const SIOCSIFRTLABEL ideal-int
-pkg syscall (openbsd-amd64), const SIOCSIFTIMESLOT ideal-int
-pkg syscall (openbsd-amd64), const SIOCSIFXFLAGS ideal-int
-pkg syscall (openbsd-amd64), const SIOCSLIFPHYADDR ideal-int
-pkg syscall (openbsd-amd64), const SIOCSLIFPHYRTABLE ideal-int
-pkg syscall (openbsd-amd64), const SIOCSLOWAT ideal-int
-pkg syscall (openbsd-amd64), const SIOCSPGRP ideal-int
-pkg syscall (openbsd-amd64), const SIOCSVH ideal-int
-pkg syscall (openbsd-amd64), const SOCK_RDM ideal-int
-pkg syscall (openbsd-amd64), const SO_ACCEPTCONN ideal-int
-pkg syscall (openbsd-amd64), const SO_BINDANY ideal-int
-pkg syscall (openbsd-amd64), const SO_DEBUG ideal-int
-pkg syscall (openbsd-amd64), const SO_ERROR ideal-int
-pkg syscall (openbsd-amd64), const SO_NETPROC ideal-int
-pkg syscall (openbsd-amd64), const SO_OOBINLINE ideal-int
-pkg syscall (openbsd-amd64), const SO_PEERCRED ideal-int
-pkg syscall (openbsd-amd64), const SO_RCVLOWAT ideal-int
-pkg syscall (openbsd-amd64), const SO_RCVTIMEO ideal-int
-pkg syscall (openbsd-amd64), const SO_REUSEPORT ideal-int
-pkg syscall (openbsd-amd64), const SO_RTABLE ideal-int
-pkg syscall (openbsd-amd64), const SO_SNDLOWAT ideal-int
-pkg syscall (openbsd-amd64), const SO_SNDTIMEO ideal-int
-pkg syscall (openbsd-amd64), const SO_SPLICE ideal-int
-pkg syscall (openbsd-amd64), const SO_TIMESTAMP ideal-int
-pkg syscall (openbsd-amd64), const SO_TYPE ideal-int
-pkg syscall (openbsd-amd64), const SO_USELOOPBACK ideal-int
-pkg syscall (openbsd-amd64), const SYS_ACCEPT ideal-int
-pkg syscall (openbsd-amd64), const SYS_ACCESS ideal-int
-pkg syscall (openbsd-amd64), const SYS_ACCT ideal-int
-pkg syscall (openbsd-amd64), const SYS_ADJFREQ ideal-int
-pkg syscall (openbsd-amd64), const SYS_ADJTIME ideal-int
-pkg syscall (openbsd-amd64), const SYS_BIND ideal-int
-pkg syscall (openbsd-amd64), const SYS_CHDIR ideal-int
-pkg syscall (openbsd-amd64), const SYS_CHFLAGS ideal-int
-pkg syscall (openbsd-amd64), const SYS_CHMOD ideal-int
-pkg syscall (openbsd-amd64), const SYS_CHOWN ideal-int
-pkg syscall (openbsd-amd64), const SYS_CHROOT ideal-int
-pkg syscall (openbsd-amd64), const SYS_CLOCK_GETRES ideal-int
-pkg syscall (openbsd-amd64), const SYS_CLOCK_GETTIME ideal-int
-pkg syscall (openbsd-amd64), const SYS_CLOCK_SETTIME ideal-int
-pkg syscall (openbsd-amd64), const SYS_CLOSE ideal-int
-pkg syscall (openbsd-amd64), const SYS_CLOSEFROM ideal-int
-pkg syscall (openbsd-amd64), const SYS_CONNECT ideal-int
-pkg syscall (openbsd-amd64), const SYS_DUP ideal-int
-pkg syscall (openbsd-amd64), const SYS_DUP2 ideal-int
-pkg syscall (openbsd-amd64), const SYS_EXECVE ideal-int
-pkg syscall (openbsd-amd64), const SYS_EXIT ideal-int
-pkg syscall (openbsd-amd64), const SYS_FACCESSAT ideal-int
-pkg syscall (openbsd-amd64), const SYS_FCHDIR ideal-int
-pkg syscall (openbsd-amd64), const SYS_FCHFLAGS ideal-int
-pkg syscall (openbsd-amd64), const SYS_FCHMOD ideal-int
-pkg syscall (openbsd-amd64), const SYS_FCHMODAT ideal-int
-pkg syscall (openbsd-amd64), const SYS_FCHOWN ideal-int
-pkg syscall (openbsd-amd64), const SYS_FCHOWNAT ideal-int
-pkg syscall (openbsd-amd64), const SYS_FCNTL ideal-int
-pkg syscall (openbsd-amd64), const SYS_FHOPEN ideal-int
-pkg syscall (openbsd-amd64), const SYS_FHSTAT ideal-int
-pkg syscall (openbsd-amd64), const SYS_FHSTATFS ideal-int
-pkg syscall (openbsd-amd64), const SYS_FLOCK ideal-int
-pkg syscall (openbsd-amd64), const SYS_FORK ideal-int
-pkg syscall (openbsd-amd64), const SYS_FPATHCONF ideal-int
-pkg syscall (openbsd-amd64), const SYS_FSTAT ideal-int
-pkg syscall (openbsd-amd64), const SYS_FSTATAT ideal-int
-pkg syscall (openbsd-amd64), const SYS_FSTATFS ideal-int
-pkg syscall (openbsd-amd64), const SYS_FSYNC ideal-int
-pkg syscall (openbsd-amd64), const SYS_FTRUNCATE ideal-int
-pkg syscall (openbsd-amd64), const SYS_FUTIMENS ideal-int
-pkg syscall (openbsd-amd64), const SYS_FUTIMES ideal-int
-pkg syscall (openbsd-amd64), const SYS_GETDIRENTRIES ideal-int
-pkg syscall (openbsd-amd64), const SYS_GETDTABLECOUNT ideal-int
-pkg syscall (openbsd-amd64), const SYS_GETEGID ideal-int
-pkg syscall (openbsd-amd64), const SYS_GETEUID ideal-int
-pkg syscall (openbsd-amd64), const SYS_GETFH ideal-int
-pkg syscall (openbsd-amd64), const SYS_GETFSSTAT ideal-int
-pkg syscall (openbsd-amd64), const SYS_GETGID ideal-int
-pkg syscall (openbsd-amd64), const SYS_GETGROUPS ideal-int
-pkg syscall (openbsd-amd64), const SYS_GETITIMER ideal-int
-pkg syscall (openbsd-amd64), const SYS_GETLOGIN ideal-int
-pkg syscall (openbsd-amd64), const SYS_GETPEERNAME ideal-int
-pkg syscall (openbsd-amd64), const SYS_GETPGID ideal-int
-pkg syscall (openbsd-amd64), const SYS_GETPGRP ideal-int
-pkg syscall (openbsd-amd64), const SYS_GETPID ideal-int
-pkg syscall (openbsd-amd64), const SYS_GETPPID ideal-int
-pkg syscall (openbsd-amd64), const SYS_GETPRIORITY ideal-int
-pkg syscall (openbsd-amd64), const SYS_GETRESGID ideal-int
-pkg syscall (openbsd-amd64), const SYS_GETRESUID ideal-int
-pkg syscall (openbsd-amd64), const SYS_GETRLIMIT ideal-int
-pkg syscall (openbsd-amd64), const SYS_GETRTABLE ideal-int
-pkg syscall (openbsd-amd64), const SYS_GETRUSAGE ideal-int
-pkg syscall (openbsd-amd64), const SYS_GETSID ideal-int
-pkg syscall (openbsd-amd64), const SYS_GETSOCKNAME ideal-int
-pkg syscall (openbsd-amd64), const SYS_GETSOCKOPT ideal-int
-pkg syscall (openbsd-amd64), const SYS_GETTHRID ideal-int
-pkg syscall (openbsd-amd64), const SYS_GETTIMEOFDAY ideal-int
-pkg syscall (openbsd-amd64), const SYS_GETUID ideal-int
-pkg syscall (openbsd-amd64), const SYS_IOCTL ideal-int
-pkg syscall (openbsd-amd64), const SYS_ISSETUGID ideal-int
-pkg syscall (openbsd-amd64), const SYS_KEVENT ideal-int
-pkg syscall (openbsd-amd64), const SYS_KILL ideal-int
-pkg syscall (openbsd-amd64), const SYS_KQUEUE ideal-int
-pkg syscall (openbsd-amd64), const SYS_KTRACE ideal-int
-pkg syscall (openbsd-amd64), const SYS_LCHOWN ideal-int
-pkg syscall (openbsd-amd64), const SYS_LINK ideal-int
-pkg syscall (openbsd-amd64), const SYS_LINKAT ideal-int
-pkg syscall (openbsd-amd64), const SYS_LISTEN ideal-int
-pkg syscall (openbsd-amd64), const SYS_LSEEK ideal-int
-pkg syscall (openbsd-amd64), const SYS_LSTAT ideal-int
-pkg syscall (openbsd-amd64), const SYS_MADVISE ideal-int
-pkg syscall (openbsd-amd64), const SYS_MINCORE ideal-int
-pkg syscall (openbsd-amd64), const SYS_MINHERIT ideal-int
-pkg syscall (openbsd-amd64), const SYS_MKDIR ideal-int
-pkg syscall (openbsd-amd64), const SYS_MKDIRAT ideal-int
-pkg syscall (openbsd-amd64), const SYS_MKFIFO ideal-int
-pkg syscall (openbsd-amd64), const SYS_MKFIFOAT ideal-int
-pkg syscall (openbsd-amd64), const SYS_MKNOD ideal-int
-pkg syscall (openbsd-amd64), const SYS_MKNODAT ideal-int
-pkg syscall (openbsd-amd64), const SYS_MLOCK ideal-int
-pkg syscall (openbsd-amd64), const SYS_MLOCKALL ideal-int
-pkg syscall (openbsd-amd64), const SYS_MMAP ideal-int
-pkg syscall (openbsd-amd64), const SYS_MOUNT ideal-int
-pkg syscall (openbsd-amd64), const SYS_MPROTECT ideal-int
-pkg syscall (openbsd-amd64), const SYS_MQUERY ideal-int
-pkg syscall (openbsd-amd64), const SYS_MSGCTL ideal-int
-pkg syscall (openbsd-amd64), const SYS_MSGGET ideal-int
-pkg syscall (openbsd-amd64), const SYS_MSGRCV ideal-int
-pkg syscall (openbsd-amd64), const SYS_MSGSND ideal-int
-pkg syscall (openbsd-amd64), const SYS_MSYNC ideal-int
-pkg syscall (openbsd-amd64), const SYS_MUNLOCK ideal-int
-pkg syscall (openbsd-amd64), const SYS_MUNLOCKALL ideal-int
-pkg syscall (openbsd-amd64), const SYS_MUNMAP ideal-int
-pkg syscall (openbsd-amd64), const SYS_NANOSLEEP ideal-int
-pkg syscall (openbsd-amd64), const SYS_NFSSVC ideal-int
-pkg syscall (openbsd-amd64), const SYS_OBREAK ideal-int
-pkg syscall (openbsd-amd64), const SYS_OPEN ideal-int
-pkg syscall (openbsd-amd64), const SYS_OPENAT ideal-int
-pkg syscall (openbsd-amd64), const SYS_PATHCONF ideal-int
-pkg syscall (openbsd-amd64), const SYS_PIPE ideal-int
-pkg syscall (openbsd-amd64), const SYS_POLL ideal-int
-pkg syscall (openbsd-amd64), const SYS_PREAD ideal-int
-pkg syscall (openbsd-amd64), const SYS_PREADV ideal-int
-pkg syscall (openbsd-amd64), const SYS_PROFIL ideal-int
-pkg syscall (openbsd-amd64), const SYS_PTRACE ideal-int
-pkg syscall (openbsd-amd64), const SYS_PWRITE ideal-int
-pkg syscall (openbsd-amd64), const SYS_PWRITEV ideal-int
-pkg syscall (openbsd-amd64), const SYS_QUOTACTL ideal-int
-pkg syscall (openbsd-amd64), const SYS_READ ideal-int
-pkg syscall (openbsd-amd64), const SYS_READLINK ideal-int
-pkg syscall (openbsd-amd64), const SYS_READLINKAT ideal-int
-pkg syscall (openbsd-amd64), const SYS_READV ideal-int
-pkg syscall (openbsd-amd64), const SYS_REBOOT ideal-int
-pkg syscall (openbsd-amd64), const SYS_RECVFROM ideal-int
-pkg syscall (openbsd-amd64), const SYS_RECVMSG ideal-int
-pkg syscall (openbsd-amd64), const SYS_RENAME ideal-int
-pkg syscall (openbsd-amd64), const SYS_RENAMEAT ideal-int
-pkg syscall (openbsd-amd64), const SYS_REVOKE ideal-int
-pkg syscall (openbsd-amd64), const SYS_RMDIR ideal-int
-pkg syscall (openbsd-amd64), const SYS_SCHED_YIELD ideal-int
-pkg syscall (openbsd-amd64), const SYS_SELECT ideal-int
-pkg syscall (openbsd-amd64), const SYS_SEMGET ideal-int
-pkg syscall (openbsd-amd64), const SYS_SEMOP ideal-int
-pkg syscall (openbsd-amd64), const SYS_SENDMSG ideal-int
-pkg syscall (openbsd-amd64), const SYS_SENDTO ideal-int
-pkg syscall (openbsd-amd64), const SYS_SETEGID ideal-int
-pkg syscall (openbsd-amd64), const SYS_SETEUID ideal-int
-pkg syscall (openbsd-amd64), const SYS_SETGID ideal-int
-pkg syscall (openbsd-amd64), const SYS_SETGROUPS ideal-int
-pkg syscall (openbsd-amd64), const SYS_SETITIMER ideal-int
-pkg syscall (openbsd-amd64), const SYS_SETLOGIN ideal-int
-pkg syscall (openbsd-amd64), const SYS_SETPGID ideal-int
-pkg syscall (openbsd-amd64), const SYS_SETPRIORITY ideal-int
-pkg syscall (openbsd-amd64), const SYS_SETREGID ideal-int
-pkg syscall (openbsd-amd64), const SYS_SETRESGID ideal-int
-pkg syscall (openbsd-amd64), const SYS_SETRESUID ideal-int
-pkg syscall (openbsd-amd64), const SYS_SETREUID ideal-int
-pkg syscall (openbsd-amd64), const SYS_SETRLIMIT ideal-int
-pkg syscall (openbsd-amd64), const SYS_SETRTABLE ideal-int
-pkg syscall (openbsd-amd64), const SYS_SETSID ideal-int
-pkg syscall (openbsd-amd64), const SYS_SETSOCKOPT ideal-int
-pkg syscall (openbsd-amd64), const SYS_SETTIMEOFDAY ideal-int
-pkg syscall (openbsd-amd64), const SYS_SETUID ideal-int
-pkg syscall (openbsd-amd64), const SYS_SHMAT ideal-int
-pkg syscall (openbsd-amd64), const SYS_SHMCTL ideal-int
-pkg syscall (openbsd-amd64), const SYS_SHMDT ideal-int
-pkg syscall (openbsd-amd64), const SYS_SHMGET ideal-int
-pkg syscall (openbsd-amd64), const SYS_SHUTDOWN ideal-int
-pkg syscall (openbsd-amd64), const SYS_SIGACTION ideal-int
-pkg syscall (openbsd-amd64), const SYS_SIGALTSTACK ideal-int
-pkg syscall (openbsd-amd64), const SYS_SIGPENDING ideal-int
-pkg syscall (openbsd-amd64), const SYS_SIGPROCMASK ideal-int
-pkg syscall (openbsd-amd64), const SYS_SIGRETURN ideal-int
-pkg syscall (openbsd-amd64), const SYS_SIGSUSPEND ideal-int
-pkg syscall (openbsd-amd64), const SYS_SOCKET ideal-int
-pkg syscall (openbsd-amd64), const SYS_SOCKETPAIR ideal-int
-pkg syscall (openbsd-amd64), const SYS_STAT ideal-int
-pkg syscall (openbsd-amd64), const SYS_STATFS ideal-int
-pkg syscall (openbsd-amd64), const SYS_SWAPCTL ideal-int
-pkg syscall (openbsd-amd64), const SYS_SYMLINK ideal-int
-pkg syscall (openbsd-amd64), const SYS_SYMLINKAT ideal-int
-pkg syscall (openbsd-amd64), const SYS_SYNC ideal-int
-pkg syscall (openbsd-amd64), const SYS_SYSARCH ideal-int
-pkg syscall (openbsd-amd64), const SYS_TRUNCATE ideal-int
-pkg syscall (openbsd-amd64), const SYS_UMASK ideal-int
-pkg syscall (openbsd-amd64), const SYS_UNLINK ideal-int
-pkg syscall (openbsd-amd64), const SYS_UNLINKAT ideal-int
-pkg syscall (openbsd-amd64), const SYS_UNMOUNT ideal-int
-pkg syscall (openbsd-amd64), const SYS_UTIMENSAT ideal-int
-pkg syscall (openbsd-amd64), const SYS_UTIMES ideal-int
-pkg syscall (openbsd-amd64), const SYS_VFORK ideal-int
-pkg syscall (openbsd-amd64), const SYS_WAIT4 ideal-int
-pkg syscall (openbsd-amd64), const SYS_WRITE ideal-int
-pkg syscall (openbsd-amd64), const SYS_WRITEV ideal-int
-pkg syscall (openbsd-amd64), const SYS___GETCWD ideal-int
-pkg syscall (openbsd-amd64), const SYS___GET_TCB ideal-int
-pkg syscall (openbsd-amd64), const SYS___SEMCTL ideal-int
-pkg syscall (openbsd-amd64), const SYS___SET_TCB ideal-int
-pkg syscall (openbsd-amd64), const SYS___SYSCTL ideal-int
-pkg syscall (openbsd-amd64), const SYS___TFORK ideal-int
-pkg syscall (openbsd-amd64), const SYS___THREXIT ideal-int
-pkg syscall (openbsd-amd64), const SYS___THRSIGDIVERT ideal-int
-pkg syscall (openbsd-amd64), const SYS___THRSLEEP ideal-int
-pkg syscall (openbsd-amd64), const SYS___THRWAKEUP ideal-int
-pkg syscall (openbsd-amd64), const SizeofBpfHdr ideal-int
-pkg syscall (openbsd-amd64), const SizeofBpfInsn ideal-int
-pkg syscall (openbsd-amd64), const SizeofBpfProgram ideal-int
-pkg syscall (openbsd-amd64), const SizeofBpfStat ideal-int
-pkg syscall (openbsd-amd64), const SizeofBpfVersion ideal-int
-pkg syscall (openbsd-amd64), const SizeofCmsghdr ideal-int
-pkg syscall (openbsd-amd64), const SizeofICMPv6Filter = 32
-pkg syscall (openbsd-amd64), const SizeofICMPv6Filter ideal-int
-pkg syscall (openbsd-amd64), const SizeofIPMreq ideal-int
-pkg syscall (openbsd-amd64), const SizeofIPv6MTUInfo = 32
-pkg syscall (openbsd-amd64), const SizeofIPv6MTUInfo ideal-int
-pkg syscall (openbsd-amd64), const SizeofIPv6Mreq ideal-int
-pkg syscall (openbsd-amd64), const SizeofIfAnnounceMsghdr ideal-int
-pkg syscall (openbsd-amd64), const SizeofIfData ideal-int
-pkg syscall (openbsd-amd64), const SizeofIfMsghdr ideal-int
-pkg syscall (openbsd-amd64), const SizeofIfaMsghdr ideal-int
-pkg syscall (openbsd-amd64), const SizeofInet6Pktinfo ideal-int
-pkg syscall (openbsd-amd64), const SizeofLinger ideal-int
-pkg syscall (openbsd-amd64), const SizeofMsghdr ideal-int
-pkg syscall (openbsd-amd64), const SizeofRtMetrics ideal-int
-pkg syscall (openbsd-amd64), const SizeofRtMsghdr ideal-int
-pkg syscall (openbsd-amd64), const SizeofSockaddrAny ideal-int
-pkg syscall (openbsd-amd64), const SizeofSockaddrDatalink ideal-int
-pkg syscall (openbsd-amd64), const SizeofSockaddrInet4 ideal-int
-pkg syscall (openbsd-amd64), const SizeofSockaddrInet6 ideal-int
-pkg syscall (openbsd-amd64), const SizeofSockaddrUnix ideal-int
-pkg syscall (openbsd-amd64), const TCIFLUSH ideal-int
-pkg syscall (openbsd-amd64), const TCIOFLUSH ideal-int
-pkg syscall (openbsd-amd64), const TCOFLUSH ideal-int
-pkg syscall (openbsd-amd64), const TCP_MAXBURST ideal-int
-pkg syscall (openbsd-amd64), const TCP_MAXSEG ideal-int
-pkg syscall (openbsd-amd64), const TCP_MAXWIN ideal-int
-pkg syscall (openbsd-amd64), const TCP_MAX_SACK ideal-int
-pkg syscall (openbsd-amd64), const TCP_MAX_WINSHIFT ideal-int
-pkg syscall (openbsd-amd64), const TCP_MD5SIG ideal-int
-pkg syscall (openbsd-amd64), const TCP_MSS ideal-int
-pkg syscall (openbsd-amd64), const TCP_NSTATES ideal-int
-pkg syscall (openbsd-amd64), const TCP_SACK_ENABLE ideal-int
-pkg syscall (openbsd-amd64), const TCSAFLUSH ideal-int
-pkg syscall (openbsd-amd64), const TIOCCBRK ideal-int
-pkg syscall (openbsd-amd64), const TIOCCDTR ideal-int
-pkg syscall (openbsd-amd64), const TIOCCONS ideal-int
-pkg syscall (openbsd-amd64), const TIOCDRAIN ideal-int
-pkg syscall (openbsd-amd64), const TIOCEXCL ideal-int
-pkg syscall (openbsd-amd64), const TIOCEXT ideal-int
-pkg syscall (openbsd-amd64), const TIOCFLAG_CLOCAL ideal-int
-pkg syscall (openbsd-amd64), const TIOCFLAG_CRTSCTS ideal-int
-pkg syscall (openbsd-amd64), const TIOCFLAG_MDMBUF ideal-int
-pkg syscall (openbsd-amd64), const TIOCFLAG_PPS ideal-int
-pkg syscall (openbsd-amd64), const TIOCFLAG_SOFTCAR ideal-int
-pkg syscall (openbsd-amd64), const TIOCFLUSH ideal-int
-pkg syscall (openbsd-amd64), const TIOCGETA ideal-int
-pkg syscall (openbsd-amd64), const TIOCGETD ideal-int
-pkg syscall (openbsd-amd64), const TIOCGFLAGS ideal-int
-pkg syscall (openbsd-amd64), const TIOCGPGRP ideal-int
-pkg syscall (openbsd-amd64), const TIOCGTSTAMP ideal-int
-pkg syscall (openbsd-amd64), const TIOCGWINSZ ideal-int
-pkg syscall (openbsd-amd64), const TIOCMBIC ideal-int
-pkg syscall (openbsd-amd64), const TIOCMBIS ideal-int
-pkg syscall (openbsd-amd64), const TIOCMGET ideal-int
-pkg syscall (openbsd-amd64), const TIOCMODG ideal-int
-pkg syscall (openbsd-amd64), const TIOCMODS ideal-int
-pkg syscall (openbsd-amd64), const TIOCMSET ideal-int
-pkg syscall (openbsd-amd64), const TIOCM_CAR ideal-int
-pkg syscall (openbsd-amd64), const TIOCM_CD ideal-int
-pkg syscall (openbsd-amd64), const TIOCM_CTS ideal-int
-pkg syscall (openbsd-amd64), const TIOCM_DSR ideal-int
-pkg syscall (openbsd-amd64), const TIOCM_DTR ideal-int
-pkg syscall (openbsd-amd64), const TIOCM_LE ideal-int
-pkg syscall (openbsd-amd64), const TIOCM_RI ideal-int
-pkg syscall (openbsd-amd64), const TIOCM_RNG ideal-int
-pkg syscall (openbsd-amd64), const TIOCM_RTS ideal-int
-pkg syscall (openbsd-amd64), const TIOCM_SR ideal-int
-pkg syscall (openbsd-amd64), const TIOCM_ST ideal-int
-pkg syscall (openbsd-amd64), const TIOCNOTTY ideal-int
-pkg syscall (openbsd-amd64), const TIOCNXCL ideal-int
-pkg syscall (openbsd-amd64), const TIOCOUTQ ideal-int
-pkg syscall (openbsd-amd64), const TIOCPKT ideal-int
-pkg syscall (openbsd-amd64), const TIOCPKT_DATA ideal-int
-pkg syscall (openbsd-amd64), const TIOCPKT_DOSTOP ideal-int
-pkg syscall (openbsd-amd64), const TIOCPKT_FLUSHREAD ideal-int
-pkg syscall (openbsd-amd64), const TIOCPKT_FLUSHWRITE ideal-int
-pkg syscall (openbsd-amd64), const TIOCPKT_IOCTL ideal-int
-pkg syscall (openbsd-amd64), const TIOCPKT_NOSTOP ideal-int
-pkg syscall (openbsd-amd64), const TIOCPKT_START ideal-int
-pkg syscall (openbsd-amd64), const TIOCPKT_STOP ideal-int
-pkg syscall (openbsd-amd64), const TIOCREMOTE ideal-int
-pkg syscall (openbsd-amd64), const TIOCSBRK ideal-int
-pkg syscall (openbsd-amd64), const TIOCSCTTY ideal-int
-pkg syscall (openbsd-amd64), const TIOCSDTR ideal-int
-pkg syscall (openbsd-amd64), const TIOCSETA ideal-int
-pkg syscall (openbsd-amd64), const TIOCSETAF ideal-int
-pkg syscall (openbsd-amd64), const TIOCSETAW ideal-int
-pkg syscall (openbsd-amd64), const TIOCSETD ideal-int
-pkg syscall (openbsd-amd64), const TIOCSFLAGS ideal-int
-pkg syscall (openbsd-amd64), const TIOCSIG ideal-int
-pkg syscall (openbsd-amd64), const TIOCSPGRP ideal-int
-pkg syscall (openbsd-amd64), const TIOCSTART ideal-int
-pkg syscall (openbsd-amd64), const TIOCSTAT ideal-int
-pkg syscall (openbsd-amd64), const TIOCSTI ideal-int
-pkg syscall (openbsd-amd64), const TIOCSTOP ideal-int
-pkg syscall (openbsd-amd64), const TIOCSTSTAMP ideal-int
-pkg syscall (openbsd-amd64), const TIOCSWINSZ ideal-int
-pkg syscall (openbsd-amd64), const TIOCUCNTL ideal-int
-pkg syscall (openbsd-amd64), const TOSTOP ideal-int
-pkg syscall (openbsd-amd64), const VDISCARD ideal-int
-pkg syscall (openbsd-amd64), const VDSUSP ideal-int
-pkg syscall (openbsd-amd64), const VEOF ideal-int
-pkg syscall (openbsd-amd64), const VEOL ideal-int
-pkg syscall (openbsd-amd64), const VEOL2 ideal-int
-pkg syscall (openbsd-amd64), const VERASE ideal-int
-pkg syscall (openbsd-amd64), const VINTR ideal-int
-pkg syscall (openbsd-amd64), const VKILL ideal-int
-pkg syscall (openbsd-amd64), const VLNEXT ideal-int
-pkg syscall (openbsd-amd64), const VMIN ideal-int
-pkg syscall (openbsd-amd64), const VQUIT ideal-int
-pkg syscall (openbsd-amd64), const VREPRINT ideal-int
-pkg syscall (openbsd-amd64), const VSTART ideal-int
-pkg syscall (openbsd-amd64), const VSTATUS ideal-int
-pkg syscall (openbsd-amd64), const VSTOP ideal-int
-pkg syscall (openbsd-amd64), const VSUSP ideal-int
-pkg syscall (openbsd-amd64), const VTIME ideal-int
-pkg syscall (openbsd-amd64), const VWERASE ideal-int
-pkg syscall (openbsd-amd64), const WALTSIG ideal-int
-pkg syscall (openbsd-amd64), const WCONTINUED ideal-int
-pkg syscall (openbsd-amd64), const WCOREFLAG ideal-int
-pkg syscall (openbsd-amd64), const WNOHANG ideal-int
-pkg syscall (openbsd-amd64), const WSTOPPED ideal-int
-pkg syscall (openbsd-amd64), const WUNTRACED ideal-int
-pkg syscall (openbsd-amd64), func Accept(int) (int, Sockaddr, error)
-pkg syscall (openbsd-amd64), func Access(string, uint32) error
-pkg syscall (openbsd-amd64), func Adjtime(*Timeval, *Timeval) error
-pkg syscall (openbsd-amd64), func Bind(int, Sockaddr) error
-pkg syscall (openbsd-amd64), func BpfBuflen(int) (int, error)
-pkg syscall (openbsd-amd64), func BpfDatalink(int) (int, error)
-pkg syscall (openbsd-amd64), func BpfHeadercmpl(int) (int, error)
-pkg syscall (openbsd-amd64), func BpfInterface(int, string) (string, error)
-pkg syscall (openbsd-amd64), func BpfJump(int, int, int, int) *BpfInsn
-pkg syscall (openbsd-amd64), func BpfStats(int) (*BpfStat, error)
-pkg syscall (openbsd-amd64), func BpfStmt(int, int) *BpfInsn
-pkg syscall (openbsd-amd64), func BpfTimeout(int) (*Timeval, error)
-pkg syscall (openbsd-amd64), func CheckBpfVersion(int) error
-pkg syscall (openbsd-amd64), func Chflags(string, int) error
-pkg syscall (openbsd-amd64), func Chroot(string) error
-pkg syscall (openbsd-amd64), func Close(int) error
-pkg syscall (openbsd-amd64), func CloseOnExec(int)
-pkg syscall (openbsd-amd64), func CmsgLen(int) int
-pkg syscall (openbsd-amd64), func CmsgSpace(int) int
-pkg syscall (openbsd-amd64), func Connect(int, Sockaddr) error
-pkg syscall (openbsd-amd64), func Dup(int) (int, error)
-pkg syscall (openbsd-amd64), func Dup2(int, int) error
-pkg syscall (openbsd-amd64), func Fchdir(int) error
-pkg syscall (openbsd-amd64), func Fchflags(int, int) error
-pkg syscall (openbsd-amd64), func Fchmod(int, uint32) error
-pkg syscall (openbsd-amd64), func Fchown(int, int, int) error
-pkg syscall (openbsd-amd64), func Flock(int, int) error
-pkg syscall (openbsd-amd64), func FlushBpf(int) error
-pkg syscall (openbsd-amd64), func ForkExec(string, []string, *ProcAttr) (int, error)
-pkg syscall (openbsd-amd64), func Fpathconf(int, int) (int, error)
-pkg syscall (openbsd-amd64), func Fstat(int, *Stat_t) error
-pkg syscall (openbsd-amd64), func Fstatfs(int, *Statfs_t) error
-pkg syscall (openbsd-amd64), func Fsync(int) error
-pkg syscall (openbsd-amd64), func Ftruncate(int, int64) error
-pkg syscall (openbsd-amd64), func Futimes(int, []Timeval) error
-pkg syscall (openbsd-amd64), func Getdirentries(int, []uint8, *uintptr) (int, error)
-pkg syscall (openbsd-amd64), func Getfsstat([]Statfs_t, int) (int, error)
-pkg syscall (openbsd-amd64), func Getpeername(int) (Sockaddr, error)
-pkg syscall (openbsd-amd64), func Getpgid(int) (int, error)
-pkg syscall (openbsd-amd64), func Getpgrp() int
-pkg syscall (openbsd-amd64), func Getpriority(int, int) (int, error)
-pkg syscall (openbsd-amd64), func Getrlimit(int, *Rlimit) error
-pkg syscall (openbsd-amd64), func Getrusage(int, *Rusage) error
-pkg syscall (openbsd-amd64), func Getsid(int) (int, error)
-pkg syscall (openbsd-amd64), func Getsockname(int) (Sockaddr, error)
-pkg syscall (openbsd-amd64), func GetsockoptByte(int, int, int) (uint8, error)
-pkg syscall (openbsd-amd64), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
-pkg syscall (openbsd-amd64), func GetsockoptIPMreq(int, int, int) (*IPMreq, error)
-pkg syscall (openbsd-amd64), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
-pkg syscall (openbsd-amd64), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error)
-pkg syscall (openbsd-amd64), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error)
-pkg syscall (openbsd-amd64), func GetsockoptInt(int, int, int) (int, error)
-pkg syscall (openbsd-amd64), func Issetugid() bool
-pkg syscall (openbsd-amd64), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error)
-pkg syscall (openbsd-amd64), func Kill(int, Signal) error
-pkg syscall (openbsd-amd64), func Kqueue() (int, error)
-pkg syscall (openbsd-amd64), func Listen(int, int) error
-pkg syscall (openbsd-amd64), func Lstat(string, *Stat_t) error
-pkg syscall (openbsd-amd64), func Mkfifo(string, uint32) error
-pkg syscall (openbsd-amd64), func Mknod(string, uint32, int) error
-pkg syscall (openbsd-amd64), func Mmap(int, int64, int, int, int) ([]uint8, error)
-pkg syscall (openbsd-amd64), func Munmap([]uint8) error
-pkg syscall (openbsd-amd64), func Nanosleep(*Timespec, *Timespec) error
-pkg syscall (openbsd-amd64), func Open(string, int, uint32) (int, error)
-pkg syscall (openbsd-amd64), func ParseDirent([]uint8, int, []string) (int, int, []string)
-pkg syscall (openbsd-amd64), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error)
-pkg syscall (openbsd-amd64), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error)
-pkg syscall (openbsd-amd64), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error)
-pkg syscall (openbsd-amd64), func ParseUnixRights(*SocketControlMessage) ([]int, error)
-pkg syscall (openbsd-amd64), func Pathconf(string, int) (int, error)
-pkg syscall (openbsd-amd64), func Pipe([]int) error
-pkg syscall (openbsd-amd64), func Pread(int, []uint8, int64) (int, error)
-pkg syscall (openbsd-amd64), func Pwrite(int, []uint8, int64) (int, error)
-pkg syscall (openbsd-amd64), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (openbsd-amd64), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (openbsd-amd64), func Read(int, []uint8) (int, error)
-pkg syscall (openbsd-amd64), func ReadDirent(int, []uint8) (int, error)
-pkg syscall (openbsd-amd64), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
-pkg syscall (openbsd-amd64), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
-pkg syscall (openbsd-amd64), func Revoke(string) error
-pkg syscall (openbsd-amd64), func RouteRIB(int, int) ([]uint8, error)
-pkg syscall (openbsd-amd64), func Seek(int, int64, int) (int64, error)
-pkg syscall (openbsd-amd64), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error
-pkg syscall (openbsd-amd64), func Sendfile(int, int, *int64, int) (int, error)
-pkg syscall (openbsd-amd64), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
-pkg syscall (openbsd-amd64), func Sendto(int, []uint8, int, Sockaddr) error
-pkg syscall (openbsd-amd64), func SetBpf(int, []BpfInsn) error
-pkg syscall (openbsd-amd64), func SetBpfBuflen(int, int) (int, error)
-pkg syscall (openbsd-amd64), func SetBpfDatalink(int, int) (int, error)
-pkg syscall (openbsd-amd64), func SetBpfHeadercmpl(int, int) error
-pkg syscall (openbsd-amd64), func SetBpfImmediate(int, int) error
-pkg syscall (openbsd-amd64), func SetBpfInterface(int, string) error
-pkg syscall (openbsd-amd64), func SetBpfPromisc(int, int) error
-pkg syscall (openbsd-amd64), func SetBpfTimeout(int, *Timeval) error
-pkg syscall (openbsd-amd64), func SetKevent(*Kevent_t, int, int, int)
-pkg syscall (openbsd-amd64), func SetNonblock(int, bool) error
-pkg syscall (openbsd-amd64), func Setegid(int) error
-pkg syscall (openbsd-amd64), func Seteuid(int) error
-pkg syscall (openbsd-amd64), func Setgid(int) error
-pkg syscall (openbsd-amd64), func Setgroups([]int) error
-pkg syscall (openbsd-amd64), func Setlogin(string) error
-pkg syscall (openbsd-amd64), func Setpgid(int, int) error
-pkg syscall (openbsd-amd64), func Setpriority(int, int, int) error
-pkg syscall (openbsd-amd64), func Setregid(int, int) error
-pkg syscall (openbsd-amd64), func Setreuid(int, int) error
-pkg syscall (openbsd-amd64), func Setrlimit(int, *Rlimit) error
-pkg syscall (openbsd-amd64), func Setsid() (int, error)
-pkg syscall (openbsd-amd64), func SetsockoptByte(int, int, int, uint8) error
-pkg syscall (openbsd-amd64), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
-pkg syscall (openbsd-amd64), func SetsockoptIPMreq(int, int, int, *IPMreq) error
-pkg syscall (openbsd-amd64), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error
-pkg syscall (openbsd-amd64), func SetsockoptInet4Addr(int, int, int, [4]uint8) error
-pkg syscall (openbsd-amd64), func SetsockoptInt(int, int, int, int) error
-pkg syscall (openbsd-amd64), func SetsockoptLinger(int, int, int, *Linger) error
-pkg syscall (openbsd-amd64), func SetsockoptString(int, int, int, string) error
-pkg syscall (openbsd-amd64), func SetsockoptTimeval(int, int, int, *Timeval) error
-pkg syscall (openbsd-amd64), func Settimeofday(*Timeval) error
-pkg syscall (openbsd-amd64), func Setuid(int) error
-pkg syscall (openbsd-amd64), func Shutdown(int, int) error
-pkg syscall (openbsd-amd64), func SlicePtrFromStrings([]string) ([]*uint8, error)
-pkg syscall (openbsd-amd64), func Socket(int, int, int) (int, error)
-pkg syscall (openbsd-amd64), func Socketpair(int, int, int) ([2]int, error)
-pkg syscall (openbsd-amd64), func Stat(string, *Stat_t) error
-pkg syscall (openbsd-amd64), func Statfs(string, *Statfs_t) error
-pkg syscall (openbsd-amd64), func StringSlicePtr([]string) []*uint8
-pkg syscall (openbsd-amd64), func Sync() error
-pkg syscall (openbsd-amd64), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (openbsd-amd64), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (openbsd-amd64), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (openbsd-amd64), func Sysctl(string) (string, error)
-pkg syscall (openbsd-amd64), func SysctlUint32(string) (uint32, error)
-pkg syscall (openbsd-amd64), func TimevalToNsec(Timeval) int64
-pkg syscall (openbsd-amd64), func Truncate(string, int64) error
-pkg syscall (openbsd-amd64), func Umask(int) int
-pkg syscall (openbsd-amd64), func UnixRights(...int) []uint8
-pkg syscall (openbsd-amd64), func Unmount(string, int) error
-pkg syscall (openbsd-amd64), func Wait4(int, *WaitStatus, int, *Rusage) (int, error)
-pkg syscall (openbsd-amd64), func Write(int, []uint8) (int, error)
-pkg syscall (openbsd-amd64), method (*Cmsghdr) SetLen(int)
-pkg syscall (openbsd-amd64), method (*Iovec) SetLen(int)
-pkg syscall (openbsd-amd64), method (*Msghdr) SetControllen(int)
-pkg syscall (openbsd-amd64), type BpfHdr struct
-pkg syscall (openbsd-amd64), type BpfHdr struct, Caplen uint32
-pkg syscall (openbsd-amd64), type BpfHdr struct, Datalen uint32
-pkg syscall (openbsd-amd64), type BpfHdr struct, Hdrlen uint16
-pkg syscall (openbsd-amd64), type BpfHdr struct, Pad_cgo_0 [2]uint8
-pkg syscall (openbsd-amd64), type BpfHdr struct, Tstamp BpfTimeval
-pkg syscall (openbsd-amd64), type BpfInsn struct
-pkg syscall (openbsd-amd64), type BpfInsn struct, Code uint16
-pkg syscall (openbsd-amd64), type BpfInsn struct, Jf uint8
-pkg syscall (openbsd-amd64), type BpfInsn struct, Jt uint8
-pkg syscall (openbsd-amd64), type BpfInsn struct, K uint32
-pkg syscall (openbsd-amd64), type BpfProgram struct
-pkg syscall (openbsd-amd64), type BpfProgram struct, Insns *BpfInsn
-pkg syscall (openbsd-amd64), type BpfProgram struct, Len uint32
-pkg syscall (openbsd-amd64), type BpfProgram struct, Pad_cgo_0 [4]uint8
-pkg syscall (openbsd-amd64), type BpfStat struct
-pkg syscall (openbsd-amd64), type BpfStat struct, Drop uint32
-pkg syscall (openbsd-amd64), type BpfStat struct, Recv uint32
-pkg syscall (openbsd-amd64), type BpfTimeval struct
-pkg syscall (openbsd-amd64), type BpfTimeval struct, Sec uint32
-pkg syscall (openbsd-amd64), type BpfTimeval struct, Usec uint32
-pkg syscall (openbsd-amd64), type BpfVersion struct
-pkg syscall (openbsd-amd64), type BpfVersion struct, Major uint16
-pkg syscall (openbsd-amd64), type BpfVersion struct, Minor uint16
-pkg syscall (openbsd-amd64), type Cmsghdr struct
-pkg syscall (openbsd-amd64), type Cmsghdr struct, Len uint32
-pkg syscall (openbsd-amd64), type Cmsghdr struct, Level int32
-pkg syscall (openbsd-amd64), type Cmsghdr struct, Type int32
-pkg syscall (openbsd-amd64), type Credential struct
-pkg syscall (openbsd-amd64), type Credential struct, Gid uint32
-pkg syscall (openbsd-amd64), type Credential struct, Groups []uint32
-pkg syscall (openbsd-amd64), type Credential struct, Uid uint32
-pkg syscall (openbsd-amd64), type Dirent struct
-pkg syscall (openbsd-amd64), type Dirent struct, Fileno uint32
-pkg syscall (openbsd-amd64), type Dirent struct, Name [256]int8
-pkg syscall (openbsd-amd64), type Dirent struct, Namlen uint8
-pkg syscall (openbsd-amd64), type Dirent struct, Reclen uint16
-pkg syscall (openbsd-amd64), type Dirent struct, Type uint8
-pkg syscall (openbsd-amd64), type FdSet struct
-pkg syscall (openbsd-amd64), type FdSet struct, Bits [32]int32
-pkg syscall (openbsd-amd64), type Flock_t struct
-pkg syscall (openbsd-amd64), type Flock_t struct, Len int64
-pkg syscall (openbsd-amd64), type Flock_t struct, Pid int32
-pkg syscall (openbsd-amd64), type Flock_t struct, Start int64
-pkg syscall (openbsd-amd64), type Flock_t struct, Type int16
-pkg syscall (openbsd-amd64), type Flock_t struct, Whence int16
-pkg syscall (openbsd-amd64), type Fsid struct
-pkg syscall (openbsd-amd64), type Fsid struct, Val [2]int32
-pkg syscall (openbsd-amd64), type ICMPv6Filter struct
-pkg syscall (openbsd-amd64), type ICMPv6Filter struct, Filt [8]uint32
-pkg syscall (openbsd-amd64), type IPv6MTUInfo struct
-pkg syscall (openbsd-amd64), type IPv6MTUInfo struct, Addr RawSockaddrInet6
-pkg syscall (openbsd-amd64), type IPv6MTUInfo struct, Mtu uint32
-pkg syscall (openbsd-amd64), type IfAnnounceMsghdr struct
-pkg syscall (openbsd-amd64), type IfAnnounceMsghdr struct, Hdrlen uint16
-pkg syscall (openbsd-amd64), type IfAnnounceMsghdr struct, Index uint16
-pkg syscall (openbsd-amd64), type IfAnnounceMsghdr struct, Msglen uint16
-pkg syscall (openbsd-amd64), type IfAnnounceMsghdr struct, Name [16]int8
-pkg syscall (openbsd-amd64), type IfAnnounceMsghdr struct, Type uint8
-pkg syscall (openbsd-amd64), type IfAnnounceMsghdr struct, Version uint8
-pkg syscall (openbsd-amd64), type IfAnnounceMsghdr struct, What uint16
-pkg syscall (openbsd-amd64), type IfData struct
-pkg syscall (openbsd-amd64), type IfData struct, Addrlen uint8
-pkg syscall (openbsd-amd64), type IfData struct, Baudrate uint64
-pkg syscall (openbsd-amd64), type IfData struct, Capabilities uint32
-pkg syscall (openbsd-amd64), type IfData struct, Collisions uint64
-pkg syscall (openbsd-amd64), type IfData struct, Hdrlen uint8
-pkg syscall (openbsd-amd64), type IfData struct, Ibytes uint64
-pkg syscall (openbsd-amd64), type IfData struct, Ierrors uint64
-pkg syscall (openbsd-amd64), type IfData struct, Imcasts uint64
-pkg syscall (openbsd-amd64), type IfData struct, Ipackets uint64
-pkg syscall (openbsd-amd64), type IfData struct, Iqdrops uint64
-pkg syscall (openbsd-amd64), type IfData struct, Lastchange Timeval
-pkg syscall (openbsd-amd64), type IfData struct, Link_state uint8
-pkg syscall (openbsd-amd64), type IfData struct, Mclpool [7]Mclpool
-pkg syscall (openbsd-amd64), type IfData struct, Metric uint32
-pkg syscall (openbsd-amd64), type IfData struct, Mtu uint32
-pkg syscall (openbsd-amd64), type IfData struct, Noproto uint64
-pkg syscall (openbsd-amd64), type IfData struct, Obytes uint64
-pkg syscall (openbsd-amd64), type IfData struct, Oerrors uint64
-pkg syscall (openbsd-amd64), type IfData struct, Omcasts uint64
-pkg syscall (openbsd-amd64), type IfData struct, Opackets uint64
-pkg syscall (openbsd-amd64), type IfData struct, Pad uint32
-pkg syscall (openbsd-amd64), type IfData struct, Pad_cgo_0 [4]uint8
-pkg syscall (openbsd-amd64), type IfData struct, Pad_cgo_1 [4]uint8
-pkg syscall (openbsd-amd64), type IfData struct, Type uint8
-pkg syscall (openbsd-amd64), type IfMsghdr struct
-pkg syscall (openbsd-amd64), type IfMsghdr struct, Addrs int32
-pkg syscall (openbsd-amd64), type IfMsghdr struct, Data IfData
-pkg syscall (openbsd-amd64), type IfMsghdr struct, Flags int32
-pkg syscall (openbsd-amd64), type IfMsghdr struct, Hdrlen uint16
-pkg syscall (openbsd-amd64), type IfMsghdr struct, Index uint16
-pkg syscall (openbsd-amd64), type IfMsghdr struct, Msglen uint16
-pkg syscall (openbsd-amd64), type IfMsghdr struct, Pad1 uint8
-pkg syscall (openbsd-amd64), type IfMsghdr struct, Pad2 uint8
-pkg syscall (openbsd-amd64), type IfMsghdr struct, Tableid uint16
-pkg syscall (openbsd-amd64), type IfMsghdr struct, Type uint8
-pkg syscall (openbsd-amd64), type IfMsghdr struct, Version uint8
-pkg syscall (openbsd-amd64), type IfMsghdr struct, Xflags int32
-pkg syscall (openbsd-amd64), type IfaMsghdr struct
-pkg syscall (openbsd-amd64), type IfaMsghdr struct, Addrs int32
-pkg syscall (openbsd-amd64), type IfaMsghdr struct, Flags int32
-pkg syscall (openbsd-amd64), type IfaMsghdr struct, Hdrlen uint16
-pkg syscall (openbsd-amd64), type IfaMsghdr struct, Index uint16
-pkg syscall (openbsd-amd64), type IfaMsghdr struct, Metric int32
-pkg syscall (openbsd-amd64), type IfaMsghdr struct, Msglen uint16
-pkg syscall (openbsd-amd64), type IfaMsghdr struct, Pad1 uint8
-pkg syscall (openbsd-amd64), type IfaMsghdr struct, Pad2 uint8
-pkg syscall (openbsd-amd64), type IfaMsghdr struct, Tableid uint16
-pkg syscall (openbsd-amd64), type IfaMsghdr struct, Type uint8
-pkg syscall (openbsd-amd64), type IfaMsghdr struct, Version uint8
-pkg syscall (openbsd-amd64), type Inet6Pktinfo struct
-pkg syscall (openbsd-amd64), type Inet6Pktinfo struct, Addr [16]uint8
-pkg syscall (openbsd-amd64), type Inet6Pktinfo struct, Ifindex uint32
-pkg syscall (openbsd-amd64), type InterfaceAddrMessage struct
-pkg syscall (openbsd-amd64), type InterfaceAddrMessage struct, Data []uint8
-pkg syscall (openbsd-amd64), type InterfaceAddrMessage struct, Header IfaMsghdr
-pkg syscall (openbsd-amd64), type InterfaceAnnounceMessage struct
-pkg syscall (openbsd-amd64), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr
-pkg syscall (openbsd-amd64), type InterfaceMessage struct
-pkg syscall (openbsd-amd64), type InterfaceMessage struct, Data []uint8
-pkg syscall (openbsd-amd64), type InterfaceMessage struct, Header IfMsghdr
-pkg syscall (openbsd-amd64), type Iovec struct
-pkg syscall (openbsd-amd64), type Iovec struct, Base *uint8
-pkg syscall (openbsd-amd64), type Iovec struct, Len uint64
-pkg syscall (openbsd-amd64), type Kevent_t struct
-pkg syscall (openbsd-amd64), type Kevent_t struct, Data int32
-pkg syscall (openbsd-amd64), type Kevent_t struct, Fflags uint32
-pkg syscall (openbsd-amd64), type Kevent_t struct, Filter int16
-pkg syscall (openbsd-amd64), type Kevent_t struct, Flags uint16
-pkg syscall (openbsd-amd64), type Kevent_t struct, Ident uint32
-pkg syscall (openbsd-amd64), type Kevent_t struct, Udata *uint8
-pkg syscall (openbsd-amd64), type Mclpool struct
-pkg syscall (openbsd-amd64), type Mclpool struct, Alive uint16
-pkg syscall (openbsd-amd64), type Mclpool struct, Cwm uint16
-pkg syscall (openbsd-amd64), type Mclpool struct, Grown uint32
-pkg syscall (openbsd-amd64), type Mclpool struct, Hwm uint16
-pkg syscall (openbsd-amd64), type Mclpool struct, Lwm uint16
-pkg syscall (openbsd-amd64), type Msghdr struct
-pkg syscall (openbsd-amd64), type Msghdr struct, Control *uint8
-pkg syscall (openbsd-amd64), type Msghdr struct, Controllen uint32
-pkg syscall (openbsd-amd64), type Msghdr struct, Flags int32
-pkg syscall (openbsd-amd64), type Msghdr struct, Iov *Iovec
-pkg syscall (openbsd-amd64), type Msghdr struct, Iovlen uint32
-pkg syscall (openbsd-amd64), type Msghdr struct, Name *uint8
-pkg syscall (openbsd-amd64), type Msghdr struct, Namelen uint32
-pkg syscall (openbsd-amd64), type Msghdr struct, Pad_cgo_0 [4]uint8
-pkg syscall (openbsd-amd64), type Msghdr struct, Pad_cgo_1 [4]uint8
-pkg syscall (openbsd-amd64), type RawSockaddr struct, Data [14]int8
-pkg syscall (openbsd-amd64), type RawSockaddr struct, Family uint8
-pkg syscall (openbsd-amd64), type RawSockaddr struct, Len uint8
-pkg syscall (openbsd-amd64), type RawSockaddrAny struct, Pad [92]int8
-pkg syscall (openbsd-amd64), type RawSockaddrDatalink struct
-pkg syscall (openbsd-amd64), type RawSockaddrDatalink struct, Alen uint8
-pkg syscall (openbsd-amd64), type RawSockaddrDatalink struct, Data [24]int8
-pkg syscall (openbsd-amd64), type RawSockaddrDatalink struct, Family uint8
-pkg syscall (openbsd-amd64), type RawSockaddrDatalink struct, Index uint16
-pkg syscall (openbsd-amd64), type RawSockaddrDatalink struct, Len uint8
-pkg syscall (openbsd-amd64), type RawSockaddrDatalink struct, Nlen uint8
-pkg syscall (openbsd-amd64), type RawSockaddrDatalink struct, Slen uint8
-pkg syscall (openbsd-amd64), type RawSockaddrDatalink struct, Type uint8
-pkg syscall (openbsd-amd64), type RawSockaddrInet4 struct, Family uint8
-pkg syscall (openbsd-amd64), type RawSockaddrInet4 struct, Len uint8
-pkg syscall (openbsd-amd64), type RawSockaddrInet4 struct, Zero [8]int8
-pkg syscall (openbsd-amd64), type RawSockaddrInet6 struct, Family uint8
-pkg syscall (openbsd-amd64), type RawSockaddrInet6 struct, Len uint8
-pkg syscall (openbsd-amd64), type RawSockaddrUnix struct
-pkg syscall (openbsd-amd64), type RawSockaddrUnix struct, Family uint8
-pkg syscall (openbsd-amd64), type RawSockaddrUnix struct, Len uint8
-pkg syscall (openbsd-amd64), type RawSockaddrUnix struct, Path [104]int8
-pkg syscall (openbsd-amd64), type Rlimit struct
-pkg syscall (openbsd-amd64), type Rlimit struct, Cur uint64
-pkg syscall (openbsd-amd64), type Rlimit struct, Max uint64
-pkg syscall (openbsd-amd64), type RouteMessage struct
-pkg syscall (openbsd-amd64), type RouteMessage struct, Data []uint8
-pkg syscall (openbsd-amd64), type RouteMessage struct, Header RtMsghdr
-pkg syscall (openbsd-amd64), type RoutingMessage interface, unexported methods
-pkg syscall (openbsd-amd64), type RtMetrics struct
-pkg syscall (openbsd-amd64), type RtMetrics struct, Expire uint32
-pkg syscall (openbsd-amd64), type RtMetrics struct, Hopcount uint32
-pkg syscall (openbsd-amd64), type RtMetrics struct, Locks uint32
-pkg syscall (openbsd-amd64), type RtMetrics struct, Mtu uint32
-pkg syscall (openbsd-amd64), type RtMetrics struct, Pksent uint64
-pkg syscall (openbsd-amd64), type RtMetrics struct, Recvpipe uint32
-pkg syscall (openbsd-amd64), type RtMetrics struct, Refcnt uint32
-pkg syscall (openbsd-amd64), type RtMetrics struct, Rtt uint32
-pkg syscall (openbsd-amd64), type RtMetrics struct, Rttvar uint32
-pkg syscall (openbsd-amd64), type RtMetrics struct, Sendpipe uint32
-pkg syscall (openbsd-amd64), type RtMetrics struct, Ssthresh uint32
-pkg syscall (openbsd-amd64), type RtMsghdr struct
-pkg syscall (openbsd-amd64), type RtMsghdr struct, Addrs int32
-pkg syscall (openbsd-amd64), type RtMsghdr struct, Errno int32
-pkg syscall (openbsd-amd64), type RtMsghdr struct, Flags int32
-pkg syscall (openbsd-amd64), type RtMsghdr struct, Fmask int32
-pkg syscall (openbsd-amd64), type RtMsghdr struct, Hdrlen uint16
-pkg syscall (openbsd-amd64), type RtMsghdr struct, Index uint16
-pkg syscall (openbsd-amd64), type RtMsghdr struct, Inits uint32
-pkg syscall (openbsd-amd64), type RtMsghdr struct, Mpls uint8
-pkg syscall (openbsd-amd64), type RtMsghdr struct, Msglen uint16
-pkg syscall (openbsd-amd64), type RtMsghdr struct, Pid int32
-pkg syscall (openbsd-amd64), type RtMsghdr struct, Priority uint8
-pkg syscall (openbsd-amd64), type RtMsghdr struct, Rmx RtMetrics
-pkg syscall (openbsd-amd64), type RtMsghdr struct, Seq int32
-pkg syscall (openbsd-amd64), type RtMsghdr struct, Tableid uint16
-pkg syscall (openbsd-amd64), type RtMsghdr struct, Type uint8
-pkg syscall (openbsd-amd64), type RtMsghdr struct, Version uint8
-pkg syscall (openbsd-amd64), type Rusage struct, Idrss int64
-pkg syscall (openbsd-amd64), type Rusage struct, Inblock int64
-pkg syscall (openbsd-amd64), type Rusage struct, Isrss int64
-pkg syscall (openbsd-amd64), type Rusage struct, Ixrss int64
-pkg syscall (openbsd-amd64), type Rusage struct, Majflt int64
-pkg syscall (openbsd-amd64), type Rusage struct, Maxrss int64
-pkg syscall (openbsd-amd64), type Rusage struct, Minflt int64
-pkg syscall (openbsd-amd64), type Rusage struct, Msgrcv int64
-pkg syscall (openbsd-amd64), type Rusage struct, Msgsnd int64
-pkg syscall (openbsd-amd64), type Rusage struct, Nivcsw int64
-pkg syscall (openbsd-amd64), type Rusage struct, Nsignals int64
-pkg syscall (openbsd-amd64), type Rusage struct, Nswap int64
-pkg syscall (openbsd-amd64), type Rusage struct, Nvcsw int64
-pkg syscall (openbsd-amd64), type Rusage struct, Oublock int64
-pkg syscall (openbsd-amd64), type Rusage struct, Stime Timeval
-pkg syscall (openbsd-amd64), type Rusage struct, Utime Timeval
-pkg syscall (openbsd-amd64), type SockaddrDatalink struct
-pkg syscall (openbsd-amd64), type SockaddrDatalink struct, Alen uint8
-pkg syscall (openbsd-amd64), type SockaddrDatalink struct, Data [24]int8
-pkg syscall (openbsd-amd64), type SockaddrDatalink struct, Family uint8
-pkg syscall (openbsd-amd64), type SockaddrDatalink struct, Index uint16
-pkg syscall (openbsd-amd64), type SockaddrDatalink struct, Len uint8
-pkg syscall (openbsd-amd64), type SockaddrDatalink struct, Nlen uint8
-pkg syscall (openbsd-amd64), type SockaddrDatalink struct, Slen uint8
-pkg syscall (openbsd-amd64), type SockaddrDatalink struct, Type uint8
-pkg syscall (openbsd-amd64), type SocketControlMessage struct
-pkg syscall (openbsd-amd64), type SocketControlMessage struct, Data []uint8
-pkg syscall (openbsd-amd64), type SocketControlMessage struct, Header Cmsghdr
-pkg syscall (openbsd-amd64), type Stat_t struct
-pkg syscall (openbsd-amd64), type Stat_t struct, Atim Timespec
-pkg syscall (openbsd-amd64), type Stat_t struct, Blksize uint32
-pkg syscall (openbsd-amd64), type Stat_t struct, Blocks int64
-pkg syscall (openbsd-amd64), type Stat_t struct, Ctim Timespec
-pkg syscall (openbsd-amd64), type Stat_t struct, Dev int32
-pkg syscall (openbsd-amd64), type Stat_t struct, Flags uint32
-pkg syscall (openbsd-amd64), type Stat_t struct, Gen uint32
-pkg syscall (openbsd-amd64), type Stat_t struct, Gid uint32
-pkg syscall (openbsd-amd64), type Stat_t struct, Ino uint32
-pkg syscall (openbsd-amd64), type Stat_t struct, Lspare0 int32
-pkg syscall (openbsd-amd64), type Stat_t struct, Lspare1 int32
-pkg syscall (openbsd-amd64), type Stat_t struct, Mode uint32
-pkg syscall (openbsd-amd64), type Stat_t struct, Mtim Timespec
-pkg syscall (openbsd-amd64), type Stat_t struct, Nlink uint32
-pkg syscall (openbsd-amd64), type Stat_t struct, Qspare [2]int64
-pkg syscall (openbsd-amd64), type Stat_t struct, Rdev int32
-pkg syscall (openbsd-amd64), type Stat_t struct, Size int64
-pkg syscall (openbsd-amd64), type Stat_t struct, Uid uint32
-pkg syscall (openbsd-amd64), type Stat_t struct, X__st_birthtim Timespec
-pkg syscall (openbsd-amd64), type Statfs_t struct
-pkg syscall (openbsd-amd64), type Statfs_t struct, F_asyncreads uint64
-pkg syscall (openbsd-amd64), type Statfs_t struct, F_asyncwrites uint64
-pkg syscall (openbsd-amd64), type Statfs_t struct, F_bavail int64
-pkg syscall (openbsd-amd64), type Statfs_t struct, F_bfree uint64
-pkg syscall (openbsd-amd64), type Statfs_t struct, F_blocks uint64
-pkg syscall (openbsd-amd64), type Statfs_t struct, F_bsize uint32
-pkg syscall (openbsd-amd64), type Statfs_t struct, F_ctime uint32
-pkg syscall (openbsd-amd64), type Statfs_t struct, F_favail int64
-pkg syscall (openbsd-amd64), type Statfs_t struct, F_ffree uint64
-pkg syscall (openbsd-amd64), type Statfs_t struct, F_files uint64
-pkg syscall (openbsd-amd64), type Statfs_t struct, F_flags uint32
-pkg syscall (openbsd-amd64), type Statfs_t struct, F_fsid Fsid
-pkg syscall (openbsd-amd64), type Statfs_t struct, F_fstypename [16]int8
-pkg syscall (openbsd-amd64), type Statfs_t struct, F_iosize uint32
-pkg syscall (openbsd-amd64), type Statfs_t struct, F_mntfromname [90]int8
-pkg syscall (openbsd-amd64), type Statfs_t struct, F_mntonname [90]int8
-pkg syscall (openbsd-amd64), type Statfs_t struct, F_namemax uint32
-pkg syscall (openbsd-amd64), type Statfs_t struct, F_owner uint32
-pkg syscall (openbsd-amd64), type Statfs_t struct, F_spare [3]uint32
-pkg syscall (openbsd-amd64), type Statfs_t struct, F_syncreads uint64
-pkg syscall (openbsd-amd64), type Statfs_t struct, F_syncwrites uint64
-pkg syscall (openbsd-amd64), type Statfs_t struct, Mount_info [160]uint8
-pkg syscall (openbsd-amd64), type Statfs_t struct, Pad_cgo_0 [4]uint8
-pkg syscall (openbsd-amd64), type Statfs_t struct, Pad_cgo_1 [4]uint8
-pkg syscall (openbsd-amd64), type SysProcAttr struct, Chroot string
-pkg syscall (openbsd-amd64), type SysProcAttr struct, Credential *Credential
-pkg syscall (openbsd-amd64), type SysProcAttr struct, Noctty bool
-pkg syscall (openbsd-amd64), type SysProcAttr struct, Ptrace bool
-pkg syscall (openbsd-amd64), type SysProcAttr struct, Setctty bool
-pkg syscall (openbsd-amd64), type SysProcAttr struct, Setpgid bool
-pkg syscall (openbsd-amd64), type SysProcAttr struct, Setsid bool
-pkg syscall (openbsd-amd64), type Timespec struct, Nsec int64
-pkg syscall (openbsd-amd64), type Timespec struct, Pad_cgo_0 [4]uint8
-pkg syscall (openbsd-amd64), type Timespec struct, Sec int32
-pkg syscall (openbsd-amd64), type Timeval struct, Sec int64
-pkg syscall (openbsd-amd64), type Timeval struct, Usec int64
-pkg syscall (openbsd-amd64), type WaitStatus uint32
-pkg syscall (openbsd-amd64), var Stderr int
-pkg syscall (openbsd-amd64), var Stdin int
-pkg syscall (openbsd-amd64), var Stdout int
-pkg syscall (openbsd-amd64-cgo), const AF_APPLETALK ideal-int
-pkg syscall (openbsd-amd64-cgo), const AF_BLUETOOTH ideal-int
-pkg syscall (openbsd-amd64-cgo), const AF_CCITT ideal-int
-pkg syscall (openbsd-amd64-cgo), const AF_CHAOS ideal-int
-pkg syscall (openbsd-amd64-cgo), const AF_CNT ideal-int
-pkg syscall (openbsd-amd64-cgo), const AF_COIP ideal-int
-pkg syscall (openbsd-amd64-cgo), const AF_DATAKIT ideal-int
-pkg syscall (openbsd-amd64-cgo), const AF_DECnet ideal-int
-pkg syscall (openbsd-amd64-cgo), const AF_DLI ideal-int
-pkg syscall (openbsd-amd64-cgo), const AF_E164 ideal-int
-pkg syscall (openbsd-amd64-cgo), const AF_ECMA ideal-int
-pkg syscall (openbsd-amd64-cgo), const AF_ENCAP ideal-int
-pkg syscall (openbsd-amd64-cgo), const AF_HYLINK ideal-int
-pkg syscall (openbsd-amd64-cgo), const AF_IMPLINK ideal-int
-pkg syscall (openbsd-amd64-cgo), const AF_IPX ideal-int
-pkg syscall (openbsd-amd64-cgo), const AF_ISDN ideal-int
-pkg syscall (openbsd-amd64-cgo), const AF_ISO ideal-int
-pkg syscall (openbsd-amd64-cgo), const AF_KEY ideal-int
-pkg syscall (openbsd-amd64-cgo), const AF_LAT ideal-int
-pkg syscall (openbsd-amd64-cgo), const AF_LINK ideal-int
-pkg syscall (openbsd-amd64-cgo), const AF_LOCAL ideal-int
-pkg syscall (openbsd-amd64-cgo), const AF_MAX ideal-int
-pkg syscall (openbsd-amd64-cgo), const AF_MPLS ideal-int
-pkg syscall (openbsd-amd64-cgo), const AF_NATM ideal-int
-pkg syscall (openbsd-amd64-cgo), const AF_NS ideal-int
-pkg syscall (openbsd-amd64-cgo), const AF_OSI ideal-int
-pkg syscall (openbsd-amd64-cgo), const AF_PUP ideal-int
-pkg syscall (openbsd-amd64-cgo), const AF_ROUTE ideal-int
-pkg syscall (openbsd-amd64-cgo), const AF_SIP ideal-int
-pkg syscall (openbsd-amd64-cgo), const AF_SNA ideal-int
-pkg syscall (openbsd-amd64-cgo), const ARPHRD_ETHER ideal-int
-pkg syscall (openbsd-amd64-cgo), const ARPHRD_FRELAY ideal-int
-pkg syscall (openbsd-amd64-cgo), const ARPHRD_IEEE1394 ideal-int
-pkg syscall (openbsd-amd64-cgo), const ARPHRD_IEEE802 ideal-int
-pkg syscall (openbsd-amd64-cgo), const B0 ideal-int
-pkg syscall (openbsd-amd64-cgo), const B110 ideal-int
-pkg syscall (openbsd-amd64-cgo), const B115200 ideal-int
-pkg syscall (openbsd-amd64-cgo), const B1200 ideal-int
-pkg syscall (openbsd-amd64-cgo), const B134 ideal-int
-pkg syscall (openbsd-amd64-cgo), const B14400 ideal-int
-pkg syscall (openbsd-amd64-cgo), const B150 ideal-int
-pkg syscall (openbsd-amd64-cgo), const B1800 ideal-int
-pkg syscall (openbsd-amd64-cgo), const B19200 ideal-int
-pkg syscall (openbsd-amd64-cgo), const B200 ideal-int
-pkg syscall (openbsd-amd64-cgo), const B230400 ideal-int
-pkg syscall (openbsd-amd64-cgo), const B2400 ideal-int
-pkg syscall (openbsd-amd64-cgo), const B28800 ideal-int
-pkg syscall (openbsd-amd64-cgo), const B300 ideal-int
-pkg syscall (openbsd-amd64-cgo), const B38400 ideal-int
-pkg syscall (openbsd-amd64-cgo), const B4800 ideal-int
-pkg syscall (openbsd-amd64-cgo), const B50 ideal-int
-pkg syscall (openbsd-amd64-cgo), const B57600 ideal-int
-pkg syscall (openbsd-amd64-cgo), const B600 ideal-int
-pkg syscall (openbsd-amd64-cgo), const B7200 ideal-int
-pkg syscall (openbsd-amd64-cgo), const B75 ideal-int
-pkg syscall (openbsd-amd64-cgo), const B76800 ideal-int
-pkg syscall (openbsd-amd64-cgo), const B9600 ideal-int
-pkg syscall (openbsd-amd64-cgo), const BIOCFLUSH ideal-int
-pkg syscall (openbsd-amd64-cgo), const BIOCGBLEN ideal-int
-pkg syscall (openbsd-amd64-cgo), const BIOCGDIRFILT ideal-int
-pkg syscall (openbsd-amd64-cgo), const BIOCGDLT ideal-int
-pkg syscall (openbsd-amd64-cgo), const BIOCGDLTLIST ideal-int
-pkg syscall (openbsd-amd64-cgo), const BIOCGETIF ideal-int
-pkg syscall (openbsd-amd64-cgo), const BIOCGFILDROP ideal-int
-pkg syscall (openbsd-amd64-cgo), const BIOCGHDRCMPLT ideal-int
-pkg syscall (openbsd-amd64-cgo), const BIOCGRSIG ideal-int
-pkg syscall (openbsd-amd64-cgo), const BIOCGRTIMEOUT ideal-int
-pkg syscall (openbsd-amd64-cgo), const BIOCGSTATS ideal-int
-pkg syscall (openbsd-amd64-cgo), const BIOCIMMEDIATE ideal-int
-pkg syscall (openbsd-amd64-cgo), const BIOCLOCK ideal-int
-pkg syscall (openbsd-amd64-cgo), const BIOCPROMISC ideal-int
-pkg syscall (openbsd-amd64-cgo), const BIOCSBLEN ideal-int
-pkg syscall (openbsd-amd64-cgo), const BIOCSDIRFILT ideal-int
-pkg syscall (openbsd-amd64-cgo), const BIOCSDLT ideal-int
-pkg syscall (openbsd-amd64-cgo), const BIOCSETF ideal-int
-pkg syscall (openbsd-amd64-cgo), const BIOCSETIF ideal-int
-pkg syscall (openbsd-amd64-cgo), const BIOCSETWF ideal-int
-pkg syscall (openbsd-amd64-cgo), const BIOCSFILDROP ideal-int
-pkg syscall (openbsd-amd64-cgo), const BIOCSHDRCMPLT ideal-int
-pkg syscall (openbsd-amd64-cgo), const BIOCSRSIG ideal-int
-pkg syscall (openbsd-amd64-cgo), const BIOCSRTIMEOUT ideal-int
-pkg syscall (openbsd-amd64-cgo), const BIOCVERSION ideal-int
-pkg syscall (openbsd-amd64-cgo), const BPF_A ideal-int
-pkg syscall (openbsd-amd64-cgo), const BPF_ABS ideal-int
-pkg syscall (openbsd-amd64-cgo), const BPF_ADD ideal-int
-pkg syscall (openbsd-amd64-cgo), const BPF_ALIGNMENT ideal-int
-pkg syscall (openbsd-amd64-cgo), const BPF_ALU ideal-int
-pkg syscall (openbsd-amd64-cgo), const BPF_AND ideal-int
-pkg syscall (openbsd-amd64-cgo), const BPF_B ideal-int
-pkg syscall (openbsd-amd64-cgo), const BPF_DIRECTION_IN ideal-int
-pkg syscall (openbsd-amd64-cgo), const BPF_DIRECTION_OUT ideal-int
-pkg syscall (openbsd-amd64-cgo), const BPF_DIV ideal-int
-pkg syscall (openbsd-amd64-cgo), const BPF_H ideal-int
-pkg syscall (openbsd-amd64-cgo), const BPF_IMM ideal-int
-pkg syscall (openbsd-amd64-cgo), const BPF_IND ideal-int
-pkg syscall (openbsd-amd64-cgo), const BPF_JA ideal-int
-pkg syscall (openbsd-amd64-cgo), const BPF_JEQ ideal-int
-pkg syscall (openbsd-amd64-cgo), const BPF_JGE ideal-int
-pkg syscall (openbsd-amd64-cgo), const BPF_JGT ideal-int
-pkg syscall (openbsd-amd64-cgo), const BPF_JMP ideal-int
-pkg syscall (openbsd-amd64-cgo), const BPF_JSET ideal-int
-pkg syscall (openbsd-amd64-cgo), const BPF_K ideal-int
-pkg syscall (openbsd-amd64-cgo), const BPF_LD ideal-int
-pkg syscall (openbsd-amd64-cgo), const BPF_LDX ideal-int
-pkg syscall (openbsd-amd64-cgo), const BPF_LEN ideal-int
-pkg syscall (openbsd-amd64-cgo), const BPF_LSH ideal-int
-pkg syscall (openbsd-amd64-cgo), const BPF_MAJOR_VERSION ideal-int
-pkg syscall (openbsd-amd64-cgo), const BPF_MAXBUFSIZE ideal-int
-pkg syscall (openbsd-amd64-cgo), const BPF_MAXINSNS ideal-int
-pkg syscall (openbsd-amd64-cgo), const BPF_MEM ideal-int
-pkg syscall (openbsd-amd64-cgo), const BPF_MEMWORDS ideal-int
-pkg syscall (openbsd-amd64-cgo), const BPF_MINBUFSIZE ideal-int
-pkg syscall (openbsd-amd64-cgo), const BPF_MINOR_VERSION ideal-int
-pkg syscall (openbsd-amd64-cgo), const BPF_MISC ideal-int
-pkg syscall (openbsd-amd64-cgo), const BPF_MSH ideal-int
-pkg syscall (openbsd-amd64-cgo), const BPF_MUL ideal-int
-pkg syscall (openbsd-amd64-cgo), const BPF_NEG ideal-int
-pkg syscall (openbsd-amd64-cgo), const BPF_OR ideal-int
-pkg syscall (openbsd-amd64-cgo), const BPF_RELEASE ideal-int
-pkg syscall (openbsd-amd64-cgo), const BPF_RET ideal-int
-pkg syscall (openbsd-amd64-cgo), const BPF_RSH ideal-int
-pkg syscall (openbsd-amd64-cgo), const BPF_ST ideal-int
-pkg syscall (openbsd-amd64-cgo), const BPF_STX ideal-int
-pkg syscall (openbsd-amd64-cgo), const BPF_SUB ideal-int
-pkg syscall (openbsd-amd64-cgo), const BPF_TAX ideal-int
-pkg syscall (openbsd-amd64-cgo), const BPF_TXA ideal-int
-pkg syscall (openbsd-amd64-cgo), const BPF_W ideal-int
-pkg syscall (openbsd-amd64-cgo), const BPF_X ideal-int
-pkg syscall (openbsd-amd64-cgo), const BRKINT ideal-int
-pkg syscall (openbsd-amd64-cgo), const CCR0_FLUSH ideal-int
-pkg syscall (openbsd-amd64-cgo), const CFLUSH ideal-int
-pkg syscall (openbsd-amd64-cgo), const CLOCAL ideal-int
-pkg syscall (openbsd-amd64-cgo), const CPUID_CFLUSH ideal-int
-pkg syscall (openbsd-amd64-cgo), const CREAD ideal-int
-pkg syscall (openbsd-amd64-cgo), const CS5 ideal-int
-pkg syscall (openbsd-amd64-cgo), const CS6 ideal-int
-pkg syscall (openbsd-amd64-cgo), const CS7 ideal-int
-pkg syscall (openbsd-amd64-cgo), const CS8 ideal-int
-pkg syscall (openbsd-amd64-cgo), const CSIZE ideal-int
-pkg syscall (openbsd-amd64-cgo), const CSTART ideal-int
-pkg syscall (openbsd-amd64-cgo), const CSTATUS ideal-int
-pkg syscall (openbsd-amd64-cgo), const CSTOP ideal-int
-pkg syscall (openbsd-amd64-cgo), const CSTOPB ideal-int
-pkg syscall (openbsd-amd64-cgo), const CSUSP ideal-int
-pkg syscall (openbsd-amd64-cgo), const CTL_MAXNAME ideal-int
-pkg syscall (openbsd-amd64-cgo), const CTL_NET ideal-int
-pkg syscall (openbsd-amd64-cgo), const DIOCOSFPFLUSH ideal-int
-pkg syscall (openbsd-amd64-cgo), const DLT_ARCNET ideal-int
-pkg syscall (openbsd-amd64-cgo), const DLT_ATM_RFC1483 ideal-int
-pkg syscall (openbsd-amd64-cgo), const DLT_AX25 ideal-int
-pkg syscall (openbsd-amd64-cgo), const DLT_CHAOS ideal-int
-pkg syscall (openbsd-amd64-cgo), const DLT_C_HDLC ideal-int
-pkg syscall (openbsd-amd64-cgo), const DLT_EN10MB ideal-int
-pkg syscall (openbsd-amd64-cgo), const DLT_EN3MB ideal-int
-pkg syscall (openbsd-amd64-cgo), const DLT_ENC ideal-int
-pkg syscall (openbsd-amd64-cgo), const DLT_FDDI ideal-int
-pkg syscall (openbsd-amd64-cgo), const DLT_IEEE802 ideal-int
-pkg syscall (openbsd-amd64-cgo), const DLT_IEEE802_11 ideal-int
-pkg syscall (openbsd-amd64-cgo), const DLT_IEEE802_11_RADIO ideal-int
-pkg syscall (openbsd-amd64-cgo), const DLT_LOOP ideal-int
-pkg syscall (openbsd-amd64-cgo), const DLT_MPLS ideal-int
-pkg syscall (openbsd-amd64-cgo), const DLT_NULL ideal-int
-pkg syscall (openbsd-amd64-cgo), const DLT_PFLOG ideal-int
-pkg syscall (openbsd-amd64-cgo), const DLT_PFSYNC ideal-int
-pkg syscall (openbsd-amd64-cgo), const DLT_PPP ideal-int
-pkg syscall (openbsd-amd64-cgo), const DLT_PPP_BSDOS ideal-int
-pkg syscall (openbsd-amd64-cgo), const DLT_PPP_ETHER ideal-int
-pkg syscall (openbsd-amd64-cgo), const DLT_PPP_SERIAL ideal-int
-pkg syscall (openbsd-amd64-cgo), const DLT_PRONET ideal-int
-pkg syscall (openbsd-amd64-cgo), const DLT_RAW ideal-int
-pkg syscall (openbsd-amd64-cgo), const DLT_SLIP ideal-int
-pkg syscall (openbsd-amd64-cgo), const DLT_SLIP_BSDOS ideal-int
-pkg syscall (openbsd-amd64-cgo), const DT_BLK ideal-int
-pkg syscall (openbsd-amd64-cgo), const DT_CHR ideal-int
-pkg syscall (openbsd-amd64-cgo), const DT_DIR ideal-int
-pkg syscall (openbsd-amd64-cgo), const DT_FIFO ideal-int
-pkg syscall (openbsd-amd64-cgo), const DT_LNK ideal-int
-pkg syscall (openbsd-amd64-cgo), const DT_REG ideal-int
-pkg syscall (openbsd-amd64-cgo), const DT_SOCK ideal-int
-pkg syscall (openbsd-amd64-cgo), const DT_UNKNOWN ideal-int
-pkg syscall (openbsd-amd64-cgo), const EAUTH Errno
-pkg syscall (openbsd-amd64-cgo), const EBADRPC Errno
-pkg syscall (openbsd-amd64-cgo), const ECHO ideal-int
-pkg syscall (openbsd-amd64-cgo), const ECHOCTL ideal-int
-pkg syscall (openbsd-amd64-cgo), const ECHOE ideal-int
-pkg syscall (openbsd-amd64-cgo), const ECHOK ideal-int
-pkg syscall (openbsd-amd64-cgo), const ECHOKE ideal-int
-pkg syscall (openbsd-amd64-cgo), const ECHONL ideal-int
-pkg syscall (openbsd-amd64-cgo), const ECHOPRT ideal-int
-pkg syscall (openbsd-amd64-cgo), const EFER_LMA ideal-int
-pkg syscall (openbsd-amd64-cgo), const EFER_LME ideal-int
-pkg syscall (openbsd-amd64-cgo), const EFER_NXE ideal-int
-pkg syscall (openbsd-amd64-cgo), const EFER_SCE ideal-int
-pkg syscall (openbsd-amd64-cgo), const EFTYPE Errno
-pkg syscall (openbsd-amd64-cgo), const EIPSEC Errno
-pkg syscall (openbsd-amd64-cgo), const ELAST Errno
-pkg syscall (openbsd-amd64-cgo), const EMEDIUMTYPE Errno
-pkg syscall (openbsd-amd64-cgo), const EMT_TAGOVF ideal-int
-pkg syscall (openbsd-amd64-cgo), const EMUL_ENABLED ideal-int
-pkg syscall (openbsd-amd64-cgo), const EMUL_NATIVE ideal-int
-pkg syscall (openbsd-amd64-cgo), const ENDRUNDISC ideal-int
-pkg syscall (openbsd-amd64-cgo), const ENEEDAUTH Errno
-pkg syscall (openbsd-amd64-cgo), const ENOATTR Errno
-pkg syscall (openbsd-amd64-cgo), const ENOMEDIUM Errno
-pkg syscall (openbsd-amd64-cgo), const EPROCLIM Errno
-pkg syscall (openbsd-amd64-cgo), const EPROCUNAVAIL Errno
-pkg syscall (openbsd-amd64-cgo), const EPROGMISMATCH Errno
-pkg syscall (openbsd-amd64-cgo), const EPROGUNAVAIL Errno
-pkg syscall (openbsd-amd64-cgo), const ERPCMISMATCH Errno
-pkg syscall (openbsd-amd64-cgo), const ETHERMIN ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERMTU ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_8023 ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_AARP ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_ACCTON ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_AEONIC ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_ALPHA ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_AMBER ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_AMOEBA ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_AOE ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_APOLLO ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_APOLLODOMAIN ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_APPLETALK ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_APPLITEK ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_ARGONAUT ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_ARP ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_AT ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_ATALK ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_ATOMIC ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_ATT ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_ATTSTANFORD ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_AUTOPHON ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_AXIS ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_BCLOOP ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_BOFL ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_CABLETRON ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_CHAOS ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_COMDESIGN ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_COMPUGRAPHIC ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_COUNTERPOINT ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_CRONUS ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_CRONUSVLN ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DCA ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DDE ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DEBNI ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DECAM ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DECCUST ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DECDIAG ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DECDNS ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DECDTS ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DECEXPER ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DECLAST ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DECLTM ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DECMUMPS ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DECNETBIOS ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DELTACON ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DIDDLE ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DLOG1 ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DLOG2 ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DN ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DOGFIGHT ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DSMD ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_ECMA ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_ENCRYPT ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_ES ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_EXCELAN ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_EXPERDATA ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_FLIP ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_FLOWCONTROL ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_FRARP ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_GENDYN ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_HAYES ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_HIPPI_FP ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_HITACHI ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_HP ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_IEEEPUP ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_IEEEPUPAT ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_IMLBL ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_IMLBLDIAG ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_IP ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_IPAS ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_IPV6 ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_IPX ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_IPXNEW ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_KALPANA ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_LANBRIDGE ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_LANPROBE ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_LAT ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_LBACK ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_LITTLE ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_LLDP ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_LOGICRAFT ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_LOOPBACK ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_MATRA ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_MAX ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_MERIT ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_MICP ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_MOPDL ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_MOPRC ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_MOTOROLA ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_MPLS ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_MPLS_MCAST ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_MUMPS ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPCC ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPCLAIM ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPCLREQ ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPCLRSP ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPCREQ ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPCRSP ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPDG ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPDGB ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPDLTE ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPRAR ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPRAS ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPRST ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPSCD ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPVCD ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBS ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NCD ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NESTAR ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NETBEUI ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NOVELL ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NS ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NSAT ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NSCOMPAT ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NTRAILER ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_OS9 ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_OS9NET ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_PACER ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_PAE ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_PCS ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_PLANNING ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_PPP ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_PPPOE ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_PPPOEDISC ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_PRIMENTS ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_PUP ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_PUPAT ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_QINQ ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_RACAL ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_RATIONAL ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_RAWFR ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_RCL ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_RDP ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_RETIX ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_REVARP ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SCA ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SECTRA ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SECUREDATA ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SGITW ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SG_BOUNCE ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SG_DIAG ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SG_NETGAMES ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SG_RESV ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SIMNET ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SLOW ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SNA ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SNMP ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SONIX ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SPIDER ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SPRITE ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_STP ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_TALARIS ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_TALARISMC ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_TCPCOMP ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_TCPSM ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_TEC ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_TIGAN ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_TRAIL ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_TRANSETHER ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_TYMSHARE ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_UBBST ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_UBDEBUG ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_UBDIAGLOOP ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_UBDL ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_UBNIU ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_UBNMC ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VALID ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VARIAN ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VAXELN ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VEECO ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VEXP ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VGLAB ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VINES ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VINESECHO ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VINESLOOP ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VITAL ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VLAN ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VLTLMAN ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VPROD ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VURESERVED ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_WATERLOO ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_WELLFLEET ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_X25 ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_X75 ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_XNSSM ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_XTP ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHER_ADDR_LEN ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHER_ALIGN ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHER_CRC_LEN ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHER_CRC_POLY_BE ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHER_CRC_POLY_LE ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHER_HDR_LEN ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHER_MAX_DIX_LEN ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHER_MAX_LEN ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHER_MIN_LEN ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHER_TYPE_LEN ideal-int
-pkg syscall (openbsd-amd64-cgo), const ETHER_VLAN_ENCAP_LEN ideal-int
-pkg syscall (openbsd-amd64-cgo), const EVFILT_AIO ideal-int
-pkg syscall (openbsd-amd64-cgo), const EVFILT_PROC ideal-int
-pkg syscall (openbsd-amd64-cgo), const EVFILT_READ ideal-int
-pkg syscall (openbsd-amd64-cgo), const EVFILT_SIGNAL ideal-int
-pkg syscall (openbsd-amd64-cgo), const EVFILT_SYSCOUNT ideal-int
-pkg syscall (openbsd-amd64-cgo), const EVFILT_TIMER ideal-int
-pkg syscall (openbsd-amd64-cgo), const EVFILT_VNODE ideal-int
-pkg syscall (openbsd-amd64-cgo), const EVFILT_WRITE ideal-int
-pkg syscall (openbsd-amd64-cgo), const EV_ADD ideal-int
-pkg syscall (openbsd-amd64-cgo), const EV_CLEAR ideal-int
-pkg syscall (openbsd-amd64-cgo), const EV_DELETE ideal-int
-pkg syscall (openbsd-amd64-cgo), const EV_DISABLE ideal-int
-pkg syscall (openbsd-amd64-cgo), const EV_ENABLE ideal-int
-pkg syscall (openbsd-amd64-cgo), const EV_EOF ideal-int
-pkg syscall (openbsd-amd64-cgo), const EV_ERROR ideal-int
-pkg syscall (openbsd-amd64-cgo), const EV_FLAG1 ideal-int
-pkg syscall (openbsd-amd64-cgo), const EV_ONESHOT ideal-int
-pkg syscall (openbsd-amd64-cgo), const EV_SYSFLAGS ideal-int
-pkg syscall (openbsd-amd64-cgo), const EXTA ideal-int
-pkg syscall (openbsd-amd64-cgo), const EXTB ideal-int
-pkg syscall (openbsd-amd64-cgo), const EXTPROC ideal-int
-pkg syscall (openbsd-amd64-cgo), const FD_CLOEXEC ideal-int
-pkg syscall (openbsd-amd64-cgo), const FD_SETSIZE ideal-int
-pkg syscall (openbsd-amd64-cgo), const FLUSHO ideal-int
-pkg syscall (openbsd-amd64-cgo), const F_DUPFD ideal-int
-pkg syscall (openbsd-amd64-cgo), const F_DUPFD_CLOEXEC ideal-int
-pkg syscall (openbsd-amd64-cgo), const F_GETFD ideal-int
-pkg syscall (openbsd-amd64-cgo), const F_GETFL ideal-int
-pkg syscall (openbsd-amd64-cgo), const F_GETLK ideal-int
-pkg syscall (openbsd-amd64-cgo), const F_GETOWN ideal-int
-pkg syscall (openbsd-amd64-cgo), const F_OK ideal-int
-pkg syscall (openbsd-amd64-cgo), const F_RDLCK ideal-int
-pkg syscall (openbsd-amd64-cgo), const F_SETFD ideal-int
-pkg syscall (openbsd-amd64-cgo), const F_SETFL ideal-int
-pkg syscall (openbsd-amd64-cgo), const F_SETLK ideal-int
-pkg syscall (openbsd-amd64-cgo), const F_SETLKW ideal-int
-pkg syscall (openbsd-amd64-cgo), const F_SETOWN ideal-int
-pkg syscall (openbsd-amd64-cgo), const F_UNLCK ideal-int
-pkg syscall (openbsd-amd64-cgo), const F_WRLCK ideal-int
-pkg syscall (openbsd-amd64-cgo), const HUPCL ideal-int
-pkg syscall (openbsd-amd64-cgo), const ICANON ideal-int
-pkg syscall (openbsd-amd64-cgo), const ICMP6_FILTER = 18
-pkg syscall (openbsd-amd64-cgo), const ICMP6_FILTER ideal-int
-pkg syscall (openbsd-amd64-cgo), const ICRNL ideal-int
-pkg syscall (openbsd-amd64-cgo), const IEXTEN ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFAN_ARRIVAL ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFAN_DEPARTURE ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFA_ROUTE ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFF_ALLMULTI ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFF_CANTCHANGE ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFF_DEBUG ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFF_LINK0 ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFF_LINK1 ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFF_LINK2 ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFF_NOARP ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFF_NOTRAILERS ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFF_OACTIVE ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFF_POINTOPOINT ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFF_PROMISC ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFF_RUNNING ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFF_SIMPLEX ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFNAMSIZ ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_1822 ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_A12MPPSWITCH ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_AAL2 ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_AAL5 ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_ADSL ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_AFLANE8023 ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_AFLANE8025 ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_ARAP ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_ARCNET ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_ARCNETPLUS ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_ASYNC ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_ATM ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_ATMDXI ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_ATMFUNI ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_ATMIMA ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_ATMLOGICAL ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_ATMRADIO ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_ATMSUBINTERFACE ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_ATMVCIENDPT ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_ATMVIRTUAL ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_BGPPOLICYACCOUNTING ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_BLUETOOTH ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_BRIDGE ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_BSC ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_CARP ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_CCTEMUL ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_CEPT ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_CES ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_CHANNEL ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_CNR ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_COFFEE ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_COMPOSITELINK ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_DCN ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_DIGITALPOWERLINE ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_DLSW ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_DOCSCABLEDOWNSTREAM ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_DOCSCABLEMACLAYER ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_DOCSCABLEUPSTREAM ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_DOCSCABLEUPSTREAMCHANNEL ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_DS0 ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_DS0BUNDLE ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_DS1FDL ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_DS3 ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_DTM ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_DUMMY ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_DVBASILN ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_DVBASIOUT ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_DVBRCCDOWNSTREAM ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_DVBRCCMACLAYER ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_DVBRCCUPSTREAM ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_ECONET ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_ENC ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_EON ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_EPLRS ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_ESCON ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_ETHER ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_FAITH ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_FAST ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_FASTETHER ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_FASTETHERFX ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_FDDI ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_FIBRECHANNEL ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_FRAMERELAYINTERCONNECT ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_FRAMERELAYMPI ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_FRDLCIENDPT ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_FRELAY ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_FRELAYDCE ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_FRF16MFRBUNDLE ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_FRFORWARD ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_G703AT2MB ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_G703AT64K ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_GIF ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_GIGABITETHERNET ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_GR303IDT ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_GR303RDT ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_H323GATEKEEPER ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_H323PROXY ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_HDH1822 ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_HDLC ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_HDSL2 ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_HIPERLAN2 ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_HIPPI ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_HIPPIINTERFACE ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_HOSTPAD ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_HSSI ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_HY ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_IBM370PARCHAN ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_IDSL ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_IEEE1394 ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_IEEE80211 ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_IEEE80212 ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_IEEE8023ADLAG ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_IFGSN ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_IMT ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_INFINIBAND ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_INTERLEAVE ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_IP ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_IPFORWARD ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_IPOVERATM ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_IPOVERCDLC ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_IPOVERCLAW ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_IPSWITCH ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_ISDN ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_ISDNBASIC ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_ISDNPRIMARY ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_ISDNS ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_ISDNU ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_ISO88022LLC ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_ISO88023 ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_ISO88024 ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_ISO88025 ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_ISO88025CRFPINT ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_ISO88025DTR ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_ISO88025FIBER ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_ISO88026 ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_ISUP ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_L2VLAN ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_L3IPVLAN ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_L3IPXVLAN ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_LAPB ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_LAPD ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_LAPF ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_LINEGROUP ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_LOCALTALK ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_LOOP ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_MEDIAMAILOVERIP ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_MFSIGLINK ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_MIOX25 ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_MODEM ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_MPC ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_MPLS ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_MPLSTUNNEL ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_MSDSL ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_MVL ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_MYRINET ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_NFAS ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_NSIP ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_OPTICALCHANNEL ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_OPTICALTRANSPORT ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_OTHER ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_P10 ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_P80 ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_PARA ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_PFLOG ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_PFLOW ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_PFSYNC ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_PLC ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_PON155 ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_PON622 ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_POS ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_PPP ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_PPPMULTILINKBUNDLE ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_PROPATM ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_PROPBWAP2MP ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_PROPCNLS ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_PROPMUX ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_PROPVIRTUAL ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_PROPWIRELESSP2P ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_PTPSERIAL ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_PVC ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_Q2931 ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_QLLC ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_RADIOMAC ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_RADSL ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_REACHDSL ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_RFC1483 ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_RS232 ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_RSRB ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_SDLC ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_SDSL ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_SHDSL ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_SIP ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_SIPSIG ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_SIPTG ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_SLIP ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_SMDSDXI ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_SMDSICIP ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_SONET ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_SONETOVERHEADCHANNEL ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_SONETPATH ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_SONETVT ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_SRP ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_SS7SIGLINK ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_STACKTOSTACK ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_STARLAN ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_T1 ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_TDLC ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_TELINK ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_TERMPAD ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_TR008 ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_TRANSPHDLC ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_TUNNEL ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_ULTRA ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_USB ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_V11 ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_V35 ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_V36 ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_V37 ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_VDSL ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_VIRTUALIPADDRESS ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_VIRTUALTG ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_VOICEDID ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_VOICEEM ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_VOICEEMFGD ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_VOICEENCAP ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_VOICEFGDEANA ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_VOICEFXO ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_VOICEFXS ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_VOICEOVERATM ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_VOICEOVERCABLE ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_VOICEOVERFRAMERELAY ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_VOICEOVERIP ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_X213 ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_X25 ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_X25DDN ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_X25HUNTGROUP ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_X25MLP ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_X25PLE ideal-int
-pkg syscall (openbsd-amd64-cgo), const IFT_XETHER ideal-int
-pkg syscall (openbsd-amd64-cgo), const IGNBRK ideal-int
-pkg syscall (openbsd-amd64-cgo), const IGNCR ideal-int
-pkg syscall (openbsd-amd64-cgo), const IGNPAR ideal-int
-pkg syscall (openbsd-amd64-cgo), const IMAXBEL ideal-int
-pkg syscall (openbsd-amd64-cgo), const INLCR ideal-int
-pkg syscall (openbsd-amd64-cgo), const INPCK ideal-int
-pkg syscall (openbsd-amd64-cgo), const IN_CLASSA_HOST ideal-int
-pkg syscall (openbsd-amd64-cgo), const IN_CLASSA_MAX ideal-int
-pkg syscall (openbsd-amd64-cgo), const IN_CLASSA_NET ideal-int
-pkg syscall (openbsd-amd64-cgo), const IN_CLASSA_NSHIFT ideal-int
-pkg syscall (openbsd-amd64-cgo), const IN_CLASSB_HOST ideal-int
-pkg syscall (openbsd-amd64-cgo), const IN_CLASSB_MAX ideal-int
-pkg syscall (openbsd-amd64-cgo), const IN_CLASSB_NET ideal-int
-pkg syscall (openbsd-amd64-cgo), const IN_CLASSB_NSHIFT ideal-int
-pkg syscall (openbsd-amd64-cgo), const IN_CLASSC_HOST ideal-int
-pkg syscall (openbsd-amd64-cgo), const IN_CLASSC_NET ideal-int
-pkg syscall (openbsd-amd64-cgo), const IN_CLASSC_NSHIFT ideal-int
-pkg syscall (openbsd-amd64-cgo), const IN_CLASSD_HOST ideal-int
-pkg syscall (openbsd-amd64-cgo), const IN_CLASSD_NET ideal-int
-pkg syscall (openbsd-amd64-cgo), const IN_CLASSD_NSHIFT ideal-int
-pkg syscall (openbsd-amd64-cgo), const IN_LOOPBACKNET ideal-int
-pkg syscall (openbsd-amd64-cgo), const IN_RFC3021_HOST ideal-int
-pkg syscall (openbsd-amd64-cgo), const IN_RFC3021_NET ideal-int
-pkg syscall (openbsd-amd64-cgo), const IN_RFC3021_NSHIFT ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPPROTO_AH ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPPROTO_CARP ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPPROTO_DIVERT ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPPROTO_DONE ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPPROTO_DSTOPTS ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPPROTO_EGP ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPPROTO_ENCAP ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPPROTO_EON ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPPROTO_ESP ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPPROTO_ETHERIP ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPPROTO_FRAGMENT ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPPROTO_GGP ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPPROTO_GRE ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPPROTO_HOPOPTS ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPPROTO_ICMP ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPPROTO_ICMPV6 ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPPROTO_IDP ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPPROTO_IGMP ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPPROTO_IPCOMP ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPPROTO_IPIP ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPPROTO_IPV4 ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPPROTO_MAX ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPPROTO_MAXID ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPPROTO_MOBILE ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPPROTO_MPLS ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPPROTO_NONE ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPPROTO_PFSYNC ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPPROTO_PIM ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPPROTO_PUP ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPPROTO_RAW ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPPROTO_ROUTING ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPPROTO_RSVP ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPPROTO_TP ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPV6_AUTH_LEVEL ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPV6_AUTOFLOWLABEL ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPV6_CHECKSUM ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPV6_DEFHLIM ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPV6_DONTFRAG ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPV6_DSTOPTS ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPV6_ESP_NETWORK_LEVEL ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPV6_ESP_TRANS_LEVEL ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPV6_FAITH ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPV6_FLOWINFO_MASK ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPV6_FLOWLABEL_MASK ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPV6_FRAGTTL ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPV6_HLIMDEC ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPV6_HOPLIMIT ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPV6_HOPOPTS ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPV6_IPCOMP_LEVEL ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPV6_MAXHLIM ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPV6_MAXPACKET ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPV6_MMTU ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPV6_NEXTHOP ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPV6_OPTIONS ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPV6_PATHMTU ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPV6_PIPEX ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPV6_PKTINFO ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPV6_PORTRANGE ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPV6_PORTRANGE_DEFAULT ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPV6_PORTRANGE_HIGH ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPV6_PORTRANGE_LOW ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPV6_RECVDSTOPTS ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPV6_RECVHOPLIMIT ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPV6_RECVHOPOPTS ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPV6_RECVPATHMTU ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPV6_RECVPKTINFO ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPV6_RECVRTHDR ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPV6_RECVTCLASS ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPV6_RTABLE ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPV6_RTHDR ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPV6_RTHDRDSTOPTS ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPV6_RTHDR_LOOSE ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPV6_RTHDR_STRICT ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPV6_RTHDR_TYPE_0 ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPV6_SOCKOPT_RESERVED1 ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPV6_TCLASS ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPV6_USE_MIN_MTU ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPV6_VERSION ideal-int
-pkg syscall (openbsd-amd64-cgo), const IPV6_VERSION_MASK ideal-int
-pkg syscall (openbsd-amd64-cgo), const IP_AUTH_LEVEL ideal-int
-pkg syscall (openbsd-amd64-cgo), const IP_DEFAULT_MULTICAST_LOOP ideal-int
-pkg syscall (openbsd-amd64-cgo), const IP_DEFAULT_MULTICAST_TTL ideal-int
-pkg syscall (openbsd-amd64-cgo), const IP_DF ideal-int
-pkg syscall (openbsd-amd64-cgo), const IP_ESP_NETWORK_LEVEL ideal-int
-pkg syscall (openbsd-amd64-cgo), const IP_ESP_TRANS_LEVEL ideal-int
-pkg syscall (openbsd-amd64-cgo), const IP_HDRINCL ideal-int
-pkg syscall (openbsd-amd64-cgo), const IP_IPCOMP_LEVEL ideal-int
-pkg syscall (openbsd-amd64-cgo), const IP_IPSECFLOWINFO ideal-int
-pkg syscall (openbsd-amd64-cgo), const IP_IPSEC_LOCAL_AUTH ideal-int
-pkg syscall (openbsd-amd64-cgo), const IP_IPSEC_LOCAL_CRED ideal-int
-pkg syscall (openbsd-amd64-cgo), const IP_IPSEC_LOCAL_ID ideal-int
-pkg syscall (openbsd-amd64-cgo), const IP_IPSEC_REMOTE_AUTH ideal-int
-pkg syscall (openbsd-amd64-cgo), const IP_IPSEC_REMOTE_CRED ideal-int
-pkg syscall (openbsd-amd64-cgo), const IP_IPSEC_REMOTE_ID ideal-int
-pkg syscall (openbsd-amd64-cgo), const IP_MAXPACKET ideal-int
-pkg syscall (openbsd-amd64-cgo), const IP_MAX_MEMBERSHIPS ideal-int
-pkg syscall (openbsd-amd64-cgo), const IP_MF ideal-int
-pkg syscall (openbsd-amd64-cgo), const IP_MINTTL ideal-int
-pkg syscall (openbsd-amd64-cgo), const IP_MIN_MEMBERSHIPS ideal-int
-pkg syscall (openbsd-amd64-cgo), const IP_MSS ideal-int
-pkg syscall (openbsd-amd64-cgo), const IP_OFFMASK ideal-int
-pkg syscall (openbsd-amd64-cgo), const IP_OPTIONS ideal-int
-pkg syscall (openbsd-amd64-cgo), const IP_PIPEX ideal-int
-pkg syscall (openbsd-amd64-cgo), const IP_PORTRANGE ideal-int
-pkg syscall (openbsd-amd64-cgo), const IP_PORTRANGE_DEFAULT ideal-int
-pkg syscall (openbsd-amd64-cgo), const IP_PORTRANGE_HIGH ideal-int
-pkg syscall (openbsd-amd64-cgo), const IP_PORTRANGE_LOW ideal-int
-pkg syscall (openbsd-amd64-cgo), const IP_RECVDSTADDR ideal-int
-pkg syscall (openbsd-amd64-cgo), const IP_RECVDSTPORT ideal-int
-pkg syscall (openbsd-amd64-cgo), const IP_RECVIF ideal-int
-pkg syscall (openbsd-amd64-cgo), const IP_RECVOPTS ideal-int
-pkg syscall (openbsd-amd64-cgo), const IP_RECVRETOPTS ideal-int
-pkg syscall (openbsd-amd64-cgo), const IP_RECVRTABLE ideal-int
-pkg syscall (openbsd-amd64-cgo), const IP_RECVTTL ideal-int
-pkg syscall (openbsd-amd64-cgo), const IP_RETOPTS ideal-int
-pkg syscall (openbsd-amd64-cgo), const IP_RF ideal-int
-pkg syscall (openbsd-amd64-cgo), const IP_RTABLE ideal-int
-pkg syscall (openbsd-amd64-cgo), const ISIG ideal-int
-pkg syscall (openbsd-amd64-cgo), const ISTRIP ideal-int
-pkg syscall (openbsd-amd64-cgo), const IXANY ideal-int
-pkg syscall (openbsd-amd64-cgo), const IXOFF ideal-int
-pkg syscall (openbsd-amd64-cgo), const IXON ideal-int
-pkg syscall (openbsd-amd64-cgo), const LCNT_OVERLOAD_FLUSH ideal-int
-pkg syscall (openbsd-amd64-cgo), const LOCK_EX ideal-int
-pkg syscall (openbsd-amd64-cgo), const LOCK_NB ideal-int
-pkg syscall (openbsd-amd64-cgo), const LOCK_SH ideal-int
-pkg syscall (openbsd-amd64-cgo), const LOCK_UN ideal-int
-pkg syscall (openbsd-amd64-cgo), const MSG_BCAST ideal-int
-pkg syscall (openbsd-amd64-cgo), const MSG_CTRUNC ideal-int
-pkg syscall (openbsd-amd64-cgo), const MSG_DONTROUTE ideal-int
-pkg syscall (openbsd-amd64-cgo), const MSG_DONTWAIT ideal-int
-pkg syscall (openbsd-amd64-cgo), const MSG_EOR ideal-int
-pkg syscall (openbsd-amd64-cgo), const MSG_MCAST ideal-int
-pkg syscall (openbsd-amd64-cgo), const MSG_NOSIGNAL ideal-int
-pkg syscall (openbsd-amd64-cgo), const MSG_OOB ideal-int
-pkg syscall (openbsd-amd64-cgo), const MSG_PEEK ideal-int
-pkg syscall (openbsd-amd64-cgo), const MSG_TRUNC ideal-int
-pkg syscall (openbsd-amd64-cgo), const MSG_WAITALL ideal-int
-pkg syscall (openbsd-amd64-cgo), const NAME_MAX ideal-int
-pkg syscall (openbsd-amd64-cgo), const NET_RT_DUMP ideal-int
-pkg syscall (openbsd-amd64-cgo), const NET_RT_FLAGS ideal-int
-pkg syscall (openbsd-amd64-cgo), const NET_RT_IFLIST ideal-int
-pkg syscall (openbsd-amd64-cgo), const NET_RT_MAXID ideal-int
-pkg syscall (openbsd-amd64-cgo), const NET_RT_STATS ideal-int
-pkg syscall (openbsd-amd64-cgo), const NET_RT_TABLE ideal-int
-pkg syscall (openbsd-amd64-cgo), const NOFLSH ideal-int
-pkg syscall (openbsd-amd64-cgo), const NOTE_ATTRIB ideal-int
-pkg syscall (openbsd-amd64-cgo), const NOTE_CHILD ideal-int
-pkg syscall (openbsd-amd64-cgo), const NOTE_DELETE ideal-int
-pkg syscall (openbsd-amd64-cgo), const NOTE_EOF ideal-int
-pkg syscall (openbsd-amd64-cgo), const NOTE_EXEC ideal-int
-pkg syscall (openbsd-amd64-cgo), const NOTE_EXIT ideal-int
-pkg syscall (openbsd-amd64-cgo), const NOTE_EXTEND ideal-int
-pkg syscall (openbsd-amd64-cgo), const NOTE_FORK ideal-int
-pkg syscall (openbsd-amd64-cgo), const NOTE_LINK ideal-int
-pkg syscall (openbsd-amd64-cgo), const NOTE_LOWAT ideal-int
-pkg syscall (openbsd-amd64-cgo), const NOTE_PCTRLMASK ideal-int
-pkg syscall (openbsd-amd64-cgo), const NOTE_PDATAMASK ideal-int
-pkg syscall (openbsd-amd64-cgo), const NOTE_RENAME ideal-int
-pkg syscall (openbsd-amd64-cgo), const NOTE_REVOKE ideal-int
-pkg syscall (openbsd-amd64-cgo), const NOTE_TRACK ideal-int
-pkg syscall (openbsd-amd64-cgo), const NOTE_TRACKERR ideal-int
-pkg syscall (openbsd-amd64-cgo), const NOTE_TRUNCATE ideal-int
-pkg syscall (openbsd-amd64-cgo), const NOTE_WRITE ideal-int
-pkg syscall (openbsd-amd64-cgo), const OCRNL ideal-int
-pkg syscall (openbsd-amd64-cgo), const ONLCR ideal-int
-pkg syscall (openbsd-amd64-cgo), const ONLRET ideal-int
-pkg syscall (openbsd-amd64-cgo), const ONOCR ideal-int
-pkg syscall (openbsd-amd64-cgo), const ONOEOT ideal-int
-pkg syscall (openbsd-amd64-cgo), const OPOST ideal-int
-pkg syscall (openbsd-amd64-cgo), const O_ACCMODE ideal-int
-pkg syscall (openbsd-amd64-cgo), const O_DIRECTORY ideal-int
-pkg syscall (openbsd-amd64-cgo), const O_DSYNC ideal-int
-pkg syscall (openbsd-amd64-cgo), const O_EXLOCK ideal-int
-pkg syscall (openbsd-amd64-cgo), const O_FSYNC ideal-int
-pkg syscall (openbsd-amd64-cgo), const O_NDELAY ideal-int
-pkg syscall (openbsd-amd64-cgo), const O_NOFOLLOW ideal-int
-pkg syscall (openbsd-amd64-cgo), const O_RSYNC ideal-int
-pkg syscall (openbsd-amd64-cgo), const O_SHLOCK ideal-int
-pkg syscall (openbsd-amd64-cgo), const PARENB ideal-int
-pkg syscall (openbsd-amd64-cgo), const PARMRK ideal-int
-pkg syscall (openbsd-amd64-cgo), const PARODD ideal-int
-pkg syscall (openbsd-amd64-cgo), const PENDIN ideal-int
-pkg syscall (openbsd-amd64-cgo), const PF_FLUSH ideal-int
-pkg syscall (openbsd-amd64-cgo), const PMC5_PIPELINE_FLUSH ideal-int
-pkg syscall (openbsd-amd64-cgo), const PRIO_PGRP = 1
-pkg syscall (openbsd-amd64-cgo), const PRIO_PGRP ideal-int
-pkg syscall (openbsd-amd64-cgo), const PRIO_PROCESS = 0
-pkg syscall (openbsd-amd64-cgo), const PRIO_PROCESS ideal-int
-pkg syscall (openbsd-amd64-cgo), const PRIO_USER = 2
-pkg syscall (openbsd-amd64-cgo), const PRIO_USER ideal-int
-pkg syscall (openbsd-amd64-cgo), const PTRACE_CONT ideal-int
-pkg syscall (openbsd-amd64-cgo), const PTRACE_KILL ideal-int
-pkg syscall (openbsd-amd64-cgo), const PTRACE_TRACEME ideal-int
-pkg syscall (openbsd-amd64-cgo), const RLIMIT_CORE ideal-int
-pkg syscall (openbsd-amd64-cgo), const RLIMIT_CPU ideal-int
-pkg syscall (openbsd-amd64-cgo), const RLIMIT_DATA ideal-int
-pkg syscall (openbsd-amd64-cgo), const RLIMIT_FSIZE ideal-int
-pkg syscall (openbsd-amd64-cgo), const RLIMIT_NOFILE ideal-int
-pkg syscall (openbsd-amd64-cgo), const RLIMIT_STACK ideal-int
-pkg syscall (openbsd-amd64-cgo), const RLIM_INFINITY ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTAX_AUTHOR ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTAX_BRD ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTAX_DST ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTAX_GATEWAY ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTAX_GENMASK ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTAX_IFA ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTAX_IFP ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTAX_LABEL ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTAX_MAX ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTAX_NETMASK ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTAX_SRC ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTAX_SRCMASK ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTA_AUTHOR ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTA_BRD ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTA_DST ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTA_GATEWAY ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTA_GENMASK ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTA_IFA ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTA_IFP ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTA_LABEL ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTA_NETMASK ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTA_SRC ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTA_SRCMASK ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTF_ANNOUNCE ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTF_BLACKHOLE ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTF_CLONED ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTF_CLONING ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTF_DONE ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTF_DYNAMIC ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTF_FMASK ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTF_GATEWAY ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTF_HOST ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTF_LLINFO ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTF_MASK ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTF_MODIFIED ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTF_MPATH ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTF_MPLS ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTF_PERMANENT_ARP ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTF_PROTO1 ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTF_PROTO2 ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTF_PROTO3 ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTF_REJECT ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTF_SOURCE ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTF_STATIC ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTF_TUNNEL ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTF_UP ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTF_USETRAILERS ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTF_XRESOLVE ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTM_ADD ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTM_CHANGE ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTM_DELADDR ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTM_DELETE ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTM_DESYNC ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTM_GET ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTM_IFANNOUNCE ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTM_IFINFO ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTM_LOCK ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTM_LOSING ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTM_MAXSIZE ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTM_MISS ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTM_NEWADDR ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTM_REDIRECT ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTM_RESOLVE ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTM_RTTUNIT ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTM_VERSION ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTV_EXPIRE ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTV_HOPCOUNT ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTV_MTU ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTV_RPIPE ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTV_RTT ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTV_RTTVAR ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTV_SPIPE ideal-int
-pkg syscall (openbsd-amd64-cgo), const RTV_SSTHRESH ideal-int
-pkg syscall (openbsd-amd64-cgo), const RT_TABLEID_MAX ideal-int
-pkg syscall (openbsd-amd64-cgo), const RUSAGE_CHILDREN ideal-int
-pkg syscall (openbsd-amd64-cgo), const RUSAGE_SELF ideal-int
-pkg syscall (openbsd-amd64-cgo), const RUSAGE_THREAD ideal-int
-pkg syscall (openbsd-amd64-cgo), const SCM_RIGHTS ideal-int
-pkg syscall (openbsd-amd64-cgo), const SCM_TIMESTAMP ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIGCHLD Signal
-pkg syscall (openbsd-amd64-cgo), const SIGCONT Signal
-pkg syscall (openbsd-amd64-cgo), const SIGEMT Signal
-pkg syscall (openbsd-amd64-cgo), const SIGINFO Signal
-pkg syscall (openbsd-amd64-cgo), const SIGIO Signal
-pkg syscall (openbsd-amd64-cgo), const SIGIOT Signal
-pkg syscall (openbsd-amd64-cgo), const SIGPROF Signal
-pkg syscall (openbsd-amd64-cgo), const SIGSTOP Signal
-pkg syscall (openbsd-amd64-cgo), const SIGSYS Signal
-pkg syscall (openbsd-amd64-cgo), const SIGTHR Signal
-pkg syscall (openbsd-amd64-cgo), const SIGTSTP Signal
-pkg syscall (openbsd-amd64-cgo), const SIGTTIN Signal
-pkg syscall (openbsd-amd64-cgo), const SIGTTOU Signal
-pkg syscall (openbsd-amd64-cgo), const SIGURG Signal
-pkg syscall (openbsd-amd64-cgo), const SIGUSR1 Signal
-pkg syscall (openbsd-amd64-cgo), const SIGUSR2 Signal
-pkg syscall (openbsd-amd64-cgo), const SIGVTALRM Signal
-pkg syscall (openbsd-amd64-cgo), const SIGWINCH Signal
-pkg syscall (openbsd-amd64-cgo), const SIGXCPU Signal
-pkg syscall (openbsd-amd64-cgo), const SIGXFSZ Signal
-pkg syscall (openbsd-amd64-cgo), const SIOCADDMULTI ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCAIFADDR ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCAIFGROUP ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCALIFADDR ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCATMARK ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCBRDGADD ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCBRDGADDS ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCBRDGARL ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCBRDGDADDR ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCBRDGDEL ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCBRDGDELS ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCBRDGFLUSH ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCBRDGFRL ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCBRDGGCACHE ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCBRDGGFD ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCBRDGGHT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCBRDGGIFFLGS ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCBRDGGMA ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCBRDGGPARAM ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCBRDGGPRI ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCBRDGGRL ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCBRDGGSIFS ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCBRDGGTO ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCBRDGIFS ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCBRDGRTS ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSADDR ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSCACHE ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSFD ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSHT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSIFCOST ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSIFFLGS ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSIFPRIO ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSMA ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSPRI ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSPROTO ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSTO ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSTXHC ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCDELMULTI ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCDIFADDR ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCDIFGROUP ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCDIFPHYADDR ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCDLIFADDR ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCGETKALIVE ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCGETLABEL ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCGETPFLOW ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCGETPFSYNC ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCGETSGCNT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCGETVIFCNT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCGHIWAT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCGIFADDR ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCGIFASYNCMAP ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCGIFBRDADDR ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCGIFCONF ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCGIFDATA ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCGIFDESCR ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCGIFDSTADDR ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCGIFFLAGS ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCGIFGATTR ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCGIFGENERIC ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCGIFGMEMB ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCGIFGROUP ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCGIFMEDIA ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCGIFMETRIC ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCGIFMTU ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCGIFNETMASK ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCGIFPDSTADDR ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCGIFPRIORITY ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCGIFPSRCADDR ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCGIFRDOMAIN ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCGIFRTLABEL ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCGIFTIMESLOT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCGIFXFLAGS ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCGLIFADDR ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCGLIFPHYADDR ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCGLIFPHYRTABLE ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCGLOWAT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCGPGRP ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCGVH ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCIFCREATE ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCIFDESTROY ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCIFGCLONERS ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCSETKALIVE ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCSETLABEL ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCSETPFLOW ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCSETPFSYNC ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCSHIWAT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCSIFADDR ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCSIFASYNCMAP ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCSIFBRDADDR ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCSIFDESCR ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCSIFDSTADDR ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCSIFFLAGS ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCSIFGATTR ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCSIFGENERIC ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCSIFLLADDR ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCSIFMEDIA ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCSIFMETRIC ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCSIFMTU ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCSIFNETMASK ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCSIFPHYADDR ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCSIFPRIORITY ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCSIFRDOMAIN ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCSIFRTLABEL ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCSIFTIMESLOT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCSIFXFLAGS ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCSLIFPHYADDR ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCSLIFPHYRTABLE ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCSLOWAT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCSPGRP ideal-int
-pkg syscall (openbsd-amd64-cgo), const SIOCSVH ideal-int
-pkg syscall (openbsd-amd64-cgo), const SOCK_RDM ideal-int
-pkg syscall (openbsd-amd64-cgo), const SO_ACCEPTCONN ideal-int
-pkg syscall (openbsd-amd64-cgo), const SO_BINDANY ideal-int
-pkg syscall (openbsd-amd64-cgo), const SO_DEBUG ideal-int
-pkg syscall (openbsd-amd64-cgo), const SO_ERROR ideal-int
-pkg syscall (openbsd-amd64-cgo), const SO_NETPROC ideal-int
-pkg syscall (openbsd-amd64-cgo), const SO_OOBINLINE ideal-int
-pkg syscall (openbsd-amd64-cgo), const SO_PEERCRED ideal-int
-pkg syscall (openbsd-amd64-cgo), const SO_RCVLOWAT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SO_RCVTIMEO ideal-int
-pkg syscall (openbsd-amd64-cgo), const SO_REUSEPORT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SO_RTABLE ideal-int
-pkg syscall (openbsd-amd64-cgo), const SO_SNDLOWAT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SO_SNDTIMEO ideal-int
-pkg syscall (openbsd-amd64-cgo), const SO_SPLICE ideal-int
-pkg syscall (openbsd-amd64-cgo), const SO_TIMESTAMP ideal-int
-pkg syscall (openbsd-amd64-cgo), const SO_TYPE ideal-int
-pkg syscall (openbsd-amd64-cgo), const SO_USELOOPBACK ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_ACCEPT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_ACCESS ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_ACCT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_ADJFREQ ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_ADJTIME ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_BIND ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_CHDIR ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_CHFLAGS ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_CHMOD ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_CHOWN ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_CHROOT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_CLOCK_GETRES ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_CLOCK_GETTIME ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_CLOCK_SETTIME ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_CLOSE ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_CLOSEFROM ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_CONNECT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_DUP ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_DUP2 ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_EXECVE ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_EXIT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_FACCESSAT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_FCHDIR ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_FCHFLAGS ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_FCHMOD ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_FCHMODAT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_FCHOWN ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_FCHOWNAT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_FCNTL ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_FHOPEN ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_FHSTAT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_FHSTATFS ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_FLOCK ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_FORK ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_FPATHCONF ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_FSTAT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_FSTATAT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_FSTATFS ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_FSYNC ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_FTRUNCATE ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_FUTIMENS ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_FUTIMES ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_GETDIRENTRIES ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_GETDTABLECOUNT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_GETEGID ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_GETEUID ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_GETFH ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_GETFSSTAT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_GETGID ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_GETGROUPS ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_GETITIMER ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_GETLOGIN ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_GETPEERNAME ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_GETPGID ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_GETPGRP ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_GETPID ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_GETPPID ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_GETPRIORITY ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_GETRESGID ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_GETRESUID ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_GETRLIMIT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_GETRTABLE ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_GETRUSAGE ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_GETSID ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_GETSOCKNAME ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_GETSOCKOPT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_GETTHRID ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_GETTIMEOFDAY ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_GETUID ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_IOCTL ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_ISSETUGID ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_KEVENT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_KILL ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_KQUEUE ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_KTRACE ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_LCHOWN ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_LINK ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_LINKAT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_LISTEN ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_LSEEK ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_LSTAT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_MADVISE ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_MINCORE ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_MINHERIT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_MKDIR ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_MKDIRAT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_MKFIFO ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_MKFIFOAT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_MKNOD ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_MKNODAT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_MLOCK ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_MLOCKALL ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_MMAP ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_MOUNT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_MPROTECT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_MQUERY ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_MSGCTL ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_MSGGET ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_MSGRCV ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_MSGSND ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_MSYNC ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_MUNLOCK ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_MUNLOCKALL ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_MUNMAP ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_NANOSLEEP ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_NFSSVC ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_OBREAK ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_OPEN ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_OPENAT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_PATHCONF ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_PIPE ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_POLL ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_PREAD ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_PREADV ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_PROFIL ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_PTRACE ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_PWRITE ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_PWRITEV ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_QUOTACTL ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_READ ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_READLINK ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_READLINKAT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_READV ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_REBOOT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_RECVFROM ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_RECVMSG ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_RENAME ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_RENAMEAT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_REVOKE ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_RMDIR ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_SCHED_YIELD ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_SELECT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_SEMGET ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_SEMOP ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_SENDMSG ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_SENDTO ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_SETEGID ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_SETEUID ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_SETGID ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_SETGROUPS ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_SETITIMER ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_SETLOGIN ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_SETPGID ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_SETPRIORITY ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_SETREGID ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_SETRESGID ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_SETRESUID ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_SETREUID ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_SETRLIMIT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_SETRTABLE ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_SETSID ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_SETSOCKOPT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_SETTIMEOFDAY ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_SETUID ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_SHMAT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_SHMCTL ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_SHMDT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_SHMGET ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_SHUTDOWN ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_SIGACTION ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_SIGALTSTACK ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_SIGPENDING ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_SIGPROCMASK ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_SIGRETURN ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_SIGSUSPEND ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_SOCKET ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_SOCKETPAIR ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_STAT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_STATFS ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_SWAPCTL ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_SYMLINK ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_SYMLINKAT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_SYNC ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_SYSARCH ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_TRUNCATE ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_UMASK ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_UNLINK ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_UNLINKAT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_UNMOUNT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_UTIMENSAT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_UTIMES ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_VFORK ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_WAIT4 ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_WRITE ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS_WRITEV ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS___GETCWD ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS___GET_TCB ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS___SEMCTL ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS___SET_TCB ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS___SYSCTL ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS___TFORK ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS___THREXIT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS___THRSIGDIVERT ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS___THRSLEEP ideal-int
-pkg syscall (openbsd-amd64-cgo), const SYS___THRWAKEUP ideal-int
-pkg syscall (openbsd-amd64-cgo), const SizeofBpfHdr ideal-int
-pkg syscall (openbsd-amd64-cgo), const SizeofBpfInsn ideal-int
-pkg syscall (openbsd-amd64-cgo), const SizeofBpfProgram ideal-int
-pkg syscall (openbsd-amd64-cgo), const SizeofBpfStat ideal-int
-pkg syscall (openbsd-amd64-cgo), const SizeofBpfVersion ideal-int
-pkg syscall (openbsd-amd64-cgo), const SizeofCmsghdr ideal-int
-pkg syscall (openbsd-amd64-cgo), const SizeofICMPv6Filter = 32
-pkg syscall (openbsd-amd64-cgo), const SizeofICMPv6Filter ideal-int
-pkg syscall (openbsd-amd64-cgo), const SizeofIPMreq ideal-int
-pkg syscall (openbsd-amd64-cgo), const SizeofIPv6MTUInfo = 32
-pkg syscall (openbsd-amd64-cgo), const SizeofIPv6MTUInfo ideal-int
-pkg syscall (openbsd-amd64-cgo), const SizeofIPv6Mreq ideal-int
-pkg syscall (openbsd-amd64-cgo), const SizeofIfAnnounceMsghdr ideal-int
-pkg syscall (openbsd-amd64-cgo), const SizeofIfData ideal-int
-pkg syscall (openbsd-amd64-cgo), const SizeofIfMsghdr ideal-int
-pkg syscall (openbsd-amd64-cgo), const SizeofIfaMsghdr ideal-int
-pkg syscall (openbsd-amd64-cgo), const SizeofInet6Pktinfo ideal-int
-pkg syscall (openbsd-amd64-cgo), const SizeofLinger ideal-int
-pkg syscall (openbsd-amd64-cgo), const SizeofMsghdr ideal-int
-pkg syscall (openbsd-amd64-cgo), const SizeofRtMetrics ideal-int
-pkg syscall (openbsd-amd64-cgo), const SizeofRtMsghdr ideal-int
-pkg syscall (openbsd-amd64-cgo), const SizeofSockaddrAny ideal-int
-pkg syscall (openbsd-amd64-cgo), const SizeofSockaddrDatalink ideal-int
-pkg syscall (openbsd-amd64-cgo), const SizeofSockaddrInet4 ideal-int
-pkg syscall (openbsd-amd64-cgo), const SizeofSockaddrInet6 ideal-int
-pkg syscall (openbsd-amd64-cgo), const SizeofSockaddrUnix ideal-int
-pkg syscall (openbsd-amd64-cgo), const TCIFLUSH ideal-int
-pkg syscall (openbsd-amd64-cgo), const TCIOFLUSH ideal-int
-pkg syscall (openbsd-amd64-cgo), const TCOFLUSH ideal-int
-pkg syscall (openbsd-amd64-cgo), const TCP_MAXBURST ideal-int
-pkg syscall (openbsd-amd64-cgo), const TCP_MAXSEG ideal-int
-pkg syscall (openbsd-amd64-cgo), const TCP_MAXWIN ideal-int
-pkg syscall (openbsd-amd64-cgo), const TCP_MAX_SACK ideal-int
-pkg syscall (openbsd-amd64-cgo), const TCP_MAX_WINSHIFT ideal-int
-pkg syscall (openbsd-amd64-cgo), const TCP_MD5SIG ideal-int
-pkg syscall (openbsd-amd64-cgo), const TCP_MSS ideal-int
-pkg syscall (openbsd-amd64-cgo), const TCP_NSTATES ideal-int
-pkg syscall (openbsd-amd64-cgo), const TCP_SACK_ENABLE ideal-int
-pkg syscall (openbsd-amd64-cgo), const TCSAFLUSH ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCCBRK ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCCDTR ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCCONS ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCDRAIN ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCEXCL ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCEXT ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCFLAG_CLOCAL ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCFLAG_CRTSCTS ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCFLAG_MDMBUF ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCFLAG_PPS ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCFLAG_SOFTCAR ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCFLUSH ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCGETA ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCGETD ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCGFLAGS ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCGPGRP ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCGTSTAMP ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCGWINSZ ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCMBIC ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCMBIS ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCMGET ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCMODG ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCMODS ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCMSET ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCM_CAR ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCM_CD ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCM_CTS ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCM_DSR ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCM_DTR ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCM_LE ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCM_RI ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCM_RNG ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCM_RTS ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCM_SR ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCM_ST ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCNOTTY ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCNXCL ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCOUTQ ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCPKT ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCPKT_DATA ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCPKT_DOSTOP ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCPKT_FLUSHREAD ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCPKT_FLUSHWRITE ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCPKT_IOCTL ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCPKT_NOSTOP ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCPKT_START ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCPKT_STOP ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCREMOTE ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCSBRK ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCSCTTY ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCSDTR ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCSETA ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCSETAF ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCSETAW ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCSETD ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCSFLAGS ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCSIG ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCSPGRP ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCSTART ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCSTAT ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCSTI ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCSTOP ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCSTSTAMP ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCSWINSZ ideal-int
-pkg syscall (openbsd-amd64-cgo), const TIOCUCNTL ideal-int
-pkg syscall (openbsd-amd64-cgo), const TOSTOP ideal-int
-pkg syscall (openbsd-amd64-cgo), const VDISCARD ideal-int
-pkg syscall (openbsd-amd64-cgo), const VDSUSP ideal-int
-pkg syscall (openbsd-amd64-cgo), const VEOF ideal-int
-pkg syscall (openbsd-amd64-cgo), const VEOL ideal-int
-pkg syscall (openbsd-amd64-cgo), const VEOL2 ideal-int
-pkg syscall (openbsd-amd64-cgo), const VERASE ideal-int
-pkg syscall (openbsd-amd64-cgo), const VINTR ideal-int
-pkg syscall (openbsd-amd64-cgo), const VKILL ideal-int
-pkg syscall (openbsd-amd64-cgo), const VLNEXT ideal-int
-pkg syscall (openbsd-amd64-cgo), const VMIN ideal-int
-pkg syscall (openbsd-amd64-cgo), const VQUIT ideal-int
-pkg syscall (openbsd-amd64-cgo), const VREPRINT ideal-int
-pkg syscall (openbsd-amd64-cgo), const VSTART ideal-int
-pkg syscall (openbsd-amd64-cgo), const VSTATUS ideal-int
-pkg syscall (openbsd-amd64-cgo), const VSTOP ideal-int
-pkg syscall (openbsd-amd64-cgo), const VSUSP ideal-int
-pkg syscall (openbsd-amd64-cgo), const VTIME ideal-int
-pkg syscall (openbsd-amd64-cgo), const VWERASE ideal-int
-pkg syscall (openbsd-amd64-cgo), const WALTSIG ideal-int
-pkg syscall (openbsd-amd64-cgo), const WCONTINUED ideal-int
-pkg syscall (openbsd-amd64-cgo), const WCOREFLAG ideal-int
-pkg syscall (openbsd-amd64-cgo), const WNOHANG ideal-int
-pkg syscall (openbsd-amd64-cgo), const WSTOPPED ideal-int
-pkg syscall (openbsd-amd64-cgo), const WUNTRACED ideal-int
-pkg syscall (openbsd-amd64-cgo), func Accept(int) (int, Sockaddr, error)
-pkg syscall (openbsd-amd64-cgo), func Access(string, uint32) error
-pkg syscall (openbsd-amd64-cgo), func Adjtime(*Timeval, *Timeval) error
-pkg syscall (openbsd-amd64-cgo), func Bind(int, Sockaddr) error
-pkg syscall (openbsd-amd64-cgo), func BpfBuflen(int) (int, error)
-pkg syscall (openbsd-amd64-cgo), func BpfDatalink(int) (int, error)
-pkg syscall (openbsd-amd64-cgo), func BpfHeadercmpl(int) (int, error)
-pkg syscall (openbsd-amd64-cgo), func BpfInterface(int, string) (string, error)
-pkg syscall (openbsd-amd64-cgo), func BpfJump(int, int, int, int) *BpfInsn
-pkg syscall (openbsd-amd64-cgo), func BpfStats(int) (*BpfStat, error)
-pkg syscall (openbsd-amd64-cgo), func BpfStmt(int, int) *BpfInsn
-pkg syscall (openbsd-amd64-cgo), func BpfTimeout(int) (*Timeval, error)
-pkg syscall (openbsd-amd64-cgo), func CheckBpfVersion(int) error
-pkg syscall (openbsd-amd64-cgo), func Chflags(string, int) error
-pkg syscall (openbsd-amd64-cgo), func Chroot(string) error
-pkg syscall (openbsd-amd64-cgo), func Close(int) error
-pkg syscall (openbsd-amd64-cgo), func CloseOnExec(int)
-pkg syscall (openbsd-amd64-cgo), func CmsgLen(int) int
-pkg syscall (openbsd-amd64-cgo), func CmsgSpace(int) int
-pkg syscall (openbsd-amd64-cgo), func Connect(int, Sockaddr) error
-pkg syscall (openbsd-amd64-cgo), func Dup(int) (int, error)
-pkg syscall (openbsd-amd64-cgo), func Dup2(int, int) error
-pkg syscall (openbsd-amd64-cgo), func Fchdir(int) error
-pkg syscall (openbsd-amd64-cgo), func Fchflags(int, int) error
-pkg syscall (openbsd-amd64-cgo), func Fchmod(int, uint32) error
-pkg syscall (openbsd-amd64-cgo), func Fchown(int, int, int) error
-pkg syscall (openbsd-amd64-cgo), func Flock(int, int) error
-pkg syscall (openbsd-amd64-cgo), func FlushBpf(int) error
-pkg syscall (openbsd-amd64-cgo), func ForkExec(string, []string, *ProcAttr) (int, error)
-pkg syscall (openbsd-amd64-cgo), func Fpathconf(int, int) (int, error)
-pkg syscall (openbsd-amd64-cgo), func Fstat(int, *Stat_t) error
-pkg syscall (openbsd-amd64-cgo), func Fstatfs(int, *Statfs_t) error
-pkg syscall (openbsd-amd64-cgo), func Fsync(int) error
-pkg syscall (openbsd-amd64-cgo), func Ftruncate(int, int64) error
-pkg syscall (openbsd-amd64-cgo), func Futimes(int, []Timeval) error
-pkg syscall (openbsd-amd64-cgo), func Getdirentries(int, []uint8, *uintptr) (int, error)
-pkg syscall (openbsd-amd64-cgo), func Getfsstat([]Statfs_t, int) (int, error)
-pkg syscall (openbsd-amd64-cgo), func Getpeername(int) (Sockaddr, error)
-pkg syscall (openbsd-amd64-cgo), func Getpgid(int) (int, error)
-pkg syscall (openbsd-amd64-cgo), func Getpgrp() int
-pkg syscall (openbsd-amd64-cgo), func Getpriority(int, int) (int, error)
-pkg syscall (openbsd-amd64-cgo), func Getrlimit(int, *Rlimit) error
-pkg syscall (openbsd-amd64-cgo), func Getrusage(int, *Rusage) error
-pkg syscall (openbsd-amd64-cgo), func Getsid(int) (int, error)
-pkg syscall (openbsd-amd64-cgo), func Getsockname(int) (Sockaddr, error)
-pkg syscall (openbsd-amd64-cgo), func GetsockoptByte(int, int, int) (uint8, error)
-pkg syscall (openbsd-amd64-cgo), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
-pkg syscall (openbsd-amd64-cgo), func GetsockoptIPMreq(int, int, int) (*IPMreq, error)
-pkg syscall (openbsd-amd64-cgo), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
-pkg syscall (openbsd-amd64-cgo), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error)
-pkg syscall (openbsd-amd64-cgo), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error)
-pkg syscall (openbsd-amd64-cgo), func GetsockoptInt(int, int, int) (int, error)
-pkg syscall (openbsd-amd64-cgo), func Issetugid() bool
-pkg syscall (openbsd-amd64-cgo), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error)
-pkg syscall (openbsd-amd64-cgo), func Kill(int, Signal) error
-pkg syscall (openbsd-amd64-cgo), func Kqueue() (int, error)
-pkg syscall (openbsd-amd64-cgo), func Listen(int, int) error
-pkg syscall (openbsd-amd64-cgo), func Lstat(string, *Stat_t) error
-pkg syscall (openbsd-amd64-cgo), func Mkfifo(string, uint32) error
-pkg syscall (openbsd-amd64-cgo), func Mknod(string, uint32, int) error
-pkg syscall (openbsd-amd64-cgo), func Mmap(int, int64, int, int, int) ([]uint8, error)
-pkg syscall (openbsd-amd64-cgo), func Munmap([]uint8) error
-pkg syscall (openbsd-amd64-cgo), func Nanosleep(*Timespec, *Timespec) error
-pkg syscall (openbsd-amd64-cgo), func Open(string, int, uint32) (int, error)
-pkg syscall (openbsd-amd64-cgo), func ParseDirent([]uint8, int, []string) (int, int, []string)
-pkg syscall (openbsd-amd64-cgo), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error)
-pkg syscall (openbsd-amd64-cgo), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error)
-pkg syscall (openbsd-amd64-cgo), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error)
-pkg syscall (openbsd-amd64-cgo), func ParseUnixRights(*SocketControlMessage) ([]int, error)
-pkg syscall (openbsd-amd64-cgo), func Pathconf(string, int) (int, error)
-pkg syscall (openbsd-amd64-cgo), func Pipe([]int) error
-pkg syscall (openbsd-amd64-cgo), func Pread(int, []uint8, int64) (int, error)
-pkg syscall (openbsd-amd64-cgo), func Pwrite(int, []uint8, int64) (int, error)
-pkg syscall (openbsd-amd64-cgo), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (openbsd-amd64-cgo), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (openbsd-amd64-cgo), func Read(int, []uint8) (int, error)
-pkg syscall (openbsd-amd64-cgo), func ReadDirent(int, []uint8) (int, error)
-pkg syscall (openbsd-amd64-cgo), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
-pkg syscall (openbsd-amd64-cgo), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
-pkg syscall (openbsd-amd64-cgo), func Revoke(string) error
-pkg syscall (openbsd-amd64-cgo), func RouteRIB(int, int) ([]uint8, error)
-pkg syscall (openbsd-amd64-cgo), func Seek(int, int64, int) (int64, error)
-pkg syscall (openbsd-amd64-cgo), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error
-pkg syscall (openbsd-amd64-cgo), func Sendfile(int, int, *int64, int) (int, error)
-pkg syscall (openbsd-amd64-cgo), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
-pkg syscall (openbsd-amd64-cgo), func Sendto(int, []uint8, int, Sockaddr) error
-pkg syscall (openbsd-amd64-cgo), func SetBpf(int, []BpfInsn) error
-pkg syscall (openbsd-amd64-cgo), func SetBpfBuflen(int, int) (int, error)
-pkg syscall (openbsd-amd64-cgo), func SetBpfDatalink(int, int) (int, error)
-pkg syscall (openbsd-amd64-cgo), func SetBpfHeadercmpl(int, int) error
-pkg syscall (openbsd-amd64-cgo), func SetBpfImmediate(int, int) error
-pkg syscall (openbsd-amd64-cgo), func SetBpfInterface(int, string) error
-pkg syscall (openbsd-amd64-cgo), func SetBpfPromisc(int, int) error
-pkg syscall (openbsd-amd64-cgo), func SetBpfTimeout(int, *Timeval) error
-pkg syscall (openbsd-amd64-cgo), func SetKevent(*Kevent_t, int, int, int)
-pkg syscall (openbsd-amd64-cgo), func SetNonblock(int, bool) error
-pkg syscall (openbsd-amd64-cgo), func Setegid(int) error
-pkg syscall (openbsd-amd64-cgo), func Seteuid(int) error
-pkg syscall (openbsd-amd64-cgo), func Setgid(int) error
-pkg syscall (openbsd-amd64-cgo), func Setgroups([]int) error
-pkg syscall (openbsd-amd64-cgo), func Setlogin(string) error
-pkg syscall (openbsd-amd64-cgo), func Setpgid(int, int) error
-pkg syscall (openbsd-amd64-cgo), func Setpriority(int, int, int) error
-pkg syscall (openbsd-amd64-cgo), func Setregid(int, int) error
-pkg syscall (openbsd-amd64-cgo), func Setreuid(int, int) error
-pkg syscall (openbsd-amd64-cgo), func Setrlimit(int, *Rlimit) error
-pkg syscall (openbsd-amd64-cgo), func Setsid() (int, error)
-pkg syscall (openbsd-amd64-cgo), func SetsockoptByte(int, int, int, uint8) error
-pkg syscall (openbsd-amd64-cgo), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
-pkg syscall (openbsd-amd64-cgo), func SetsockoptIPMreq(int, int, int, *IPMreq) error
-pkg syscall (openbsd-amd64-cgo), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error
-pkg syscall (openbsd-amd64-cgo), func SetsockoptInet4Addr(int, int, int, [4]uint8) error
-pkg syscall (openbsd-amd64-cgo), func SetsockoptInt(int, int, int, int) error
-pkg syscall (openbsd-amd64-cgo), func SetsockoptLinger(int, int, int, *Linger) error
-pkg syscall (openbsd-amd64-cgo), func SetsockoptString(int, int, int, string) error
-pkg syscall (openbsd-amd64-cgo), func SetsockoptTimeval(int, int, int, *Timeval) error
-pkg syscall (openbsd-amd64-cgo), func Settimeofday(*Timeval) error
-pkg syscall (openbsd-amd64-cgo), func Setuid(int) error
-pkg syscall (openbsd-amd64-cgo), func Shutdown(int, int) error
-pkg syscall (openbsd-amd64-cgo), func SlicePtrFromStrings([]string) ([]*uint8, error)
-pkg syscall (openbsd-amd64-cgo), func Socket(int, int, int) (int, error)
-pkg syscall (openbsd-amd64-cgo), func Socketpair(int, int, int) ([2]int, error)
-pkg syscall (openbsd-amd64-cgo), func Stat(string, *Stat_t) error
-pkg syscall (openbsd-amd64-cgo), func Statfs(string, *Statfs_t) error
-pkg syscall (openbsd-amd64-cgo), func StringSlicePtr([]string) []*uint8
-pkg syscall (openbsd-amd64-cgo), func Sync() error
-pkg syscall (openbsd-amd64-cgo), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (openbsd-amd64-cgo), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (openbsd-amd64-cgo), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
-pkg syscall (openbsd-amd64-cgo), func Sysctl(string) (string, error)
-pkg syscall (openbsd-amd64-cgo), func SysctlUint32(string) (uint32, error)
-pkg syscall (openbsd-amd64-cgo), func TimevalToNsec(Timeval) int64
-pkg syscall (openbsd-amd64-cgo), func Truncate(string, int64) error
-pkg syscall (openbsd-amd64-cgo), func Umask(int) int
-pkg syscall (openbsd-amd64-cgo), func UnixRights(...int) []uint8
-pkg syscall (openbsd-amd64-cgo), func Unmount(string, int) error
-pkg syscall (openbsd-amd64-cgo), func Wait4(int, *WaitStatus, int, *Rusage) (int, error)
-pkg syscall (openbsd-amd64-cgo), func Write(int, []uint8) (int, error)
-pkg syscall (openbsd-amd64-cgo), method (*Cmsghdr) SetLen(int)
-pkg syscall (openbsd-amd64-cgo), method (*Iovec) SetLen(int)
-pkg syscall (openbsd-amd64-cgo), method (*Msghdr) SetControllen(int)
-pkg syscall (openbsd-amd64-cgo), type BpfHdr struct
-pkg syscall (openbsd-amd64-cgo), type BpfHdr struct, Caplen uint32
-pkg syscall (openbsd-amd64-cgo), type BpfHdr struct, Datalen uint32
-pkg syscall (openbsd-amd64-cgo), type BpfHdr struct, Hdrlen uint16
-pkg syscall (openbsd-amd64-cgo), type BpfHdr struct, Pad_cgo_0 [2]uint8
-pkg syscall (openbsd-amd64-cgo), type BpfHdr struct, Tstamp BpfTimeval
-pkg syscall (openbsd-amd64-cgo), type BpfInsn struct
-pkg syscall (openbsd-amd64-cgo), type BpfInsn struct, Code uint16
-pkg syscall (openbsd-amd64-cgo), type BpfInsn struct, Jf uint8
-pkg syscall (openbsd-amd64-cgo), type BpfInsn struct, Jt uint8
-pkg syscall (openbsd-amd64-cgo), type BpfInsn struct, K uint32
-pkg syscall (openbsd-amd64-cgo), type BpfProgram struct
-pkg syscall (openbsd-amd64-cgo), type BpfProgram struct, Insns *BpfInsn
-pkg syscall (openbsd-amd64-cgo), type BpfProgram struct, Len uint32
-pkg syscall (openbsd-amd64-cgo), type BpfProgram struct, Pad_cgo_0 [4]uint8
-pkg syscall (openbsd-amd64-cgo), type BpfStat struct
-pkg syscall (openbsd-amd64-cgo), type BpfStat struct, Drop uint32
-pkg syscall (openbsd-amd64-cgo), type BpfStat struct, Recv uint32
-pkg syscall (openbsd-amd64-cgo), type BpfTimeval struct
-pkg syscall (openbsd-amd64-cgo), type BpfTimeval struct, Sec uint32
-pkg syscall (openbsd-amd64-cgo), type BpfTimeval struct, Usec uint32
-pkg syscall (openbsd-amd64-cgo), type BpfVersion struct
-pkg syscall (openbsd-amd64-cgo), type BpfVersion struct, Major uint16
-pkg syscall (openbsd-amd64-cgo), type BpfVersion struct, Minor uint16
-pkg syscall (openbsd-amd64-cgo), type Cmsghdr struct
-pkg syscall (openbsd-amd64-cgo), type Cmsghdr struct, Len uint32
-pkg syscall (openbsd-amd64-cgo), type Cmsghdr struct, Level int32
-pkg syscall (openbsd-amd64-cgo), type Cmsghdr struct, Type int32
-pkg syscall (openbsd-amd64-cgo), type Credential struct
-pkg syscall (openbsd-amd64-cgo), type Credential struct, Gid uint32
-pkg syscall (openbsd-amd64-cgo), type Credential struct, Groups []uint32
-pkg syscall (openbsd-amd64-cgo), type Credential struct, Uid uint32
-pkg syscall (openbsd-amd64-cgo), type Dirent struct
-pkg syscall (openbsd-amd64-cgo), type Dirent struct, Fileno uint32
-pkg syscall (openbsd-amd64-cgo), type Dirent struct, Name [256]int8
-pkg syscall (openbsd-amd64-cgo), type Dirent struct, Namlen uint8
-pkg syscall (openbsd-amd64-cgo), type Dirent struct, Reclen uint16
-pkg syscall (openbsd-amd64-cgo), type Dirent struct, Type uint8
-pkg syscall (openbsd-amd64-cgo), type FdSet struct
-pkg syscall (openbsd-amd64-cgo), type FdSet struct, Bits [32]int32
-pkg syscall (openbsd-amd64-cgo), type Flock_t struct
-pkg syscall (openbsd-amd64-cgo), type Flock_t struct, Len int64
-pkg syscall (openbsd-amd64-cgo), type Flock_t struct, Pid int32
-pkg syscall (openbsd-amd64-cgo), type Flock_t struct, Start int64
-pkg syscall (openbsd-amd64-cgo), type Flock_t struct, Type int16
-pkg syscall (openbsd-amd64-cgo), type Flock_t struct, Whence int16
-pkg syscall (openbsd-amd64-cgo), type Fsid struct
-pkg syscall (openbsd-amd64-cgo), type Fsid struct, Val [2]int32
-pkg syscall (openbsd-amd64-cgo), type ICMPv6Filter struct
-pkg syscall (openbsd-amd64-cgo), type ICMPv6Filter struct, Filt [8]uint32
-pkg syscall (openbsd-amd64-cgo), type IPv6MTUInfo struct
-pkg syscall (openbsd-amd64-cgo), type IPv6MTUInfo struct, Addr RawSockaddrInet6
-pkg syscall (openbsd-amd64-cgo), type IPv6MTUInfo struct, Mtu uint32
-pkg syscall (openbsd-amd64-cgo), type IfAnnounceMsghdr struct
-pkg syscall (openbsd-amd64-cgo), type IfAnnounceMsghdr struct, Hdrlen uint16
-pkg syscall (openbsd-amd64-cgo), type IfAnnounceMsghdr struct, Index uint16
-pkg syscall (openbsd-amd64-cgo), type IfAnnounceMsghdr struct, Msglen uint16
-pkg syscall (openbsd-amd64-cgo), type IfAnnounceMsghdr struct, Name [16]int8
-pkg syscall (openbsd-amd64-cgo), type IfAnnounceMsghdr struct, Type uint8
-pkg syscall (openbsd-amd64-cgo), type IfAnnounceMsghdr struct, Version uint8
-pkg syscall (openbsd-amd64-cgo), type IfAnnounceMsghdr struct, What uint16
-pkg syscall (openbsd-amd64-cgo), type IfData struct
-pkg syscall (openbsd-amd64-cgo), type IfData struct, Addrlen uint8
-pkg syscall (openbsd-amd64-cgo), type IfData struct, Baudrate uint64
-pkg syscall (openbsd-amd64-cgo), type IfData struct, Capabilities uint32
-pkg syscall (openbsd-amd64-cgo), type IfData struct, Collisions uint64
-pkg syscall (openbsd-amd64-cgo), type IfData struct, Hdrlen uint8
-pkg syscall (openbsd-amd64-cgo), type IfData struct, Ibytes uint64
-pkg syscall (openbsd-amd64-cgo), type IfData struct, Ierrors uint64
-pkg syscall (openbsd-amd64-cgo), type IfData struct, Imcasts uint64
-pkg syscall (openbsd-amd64-cgo), type IfData struct, Ipackets uint64
-pkg syscall (openbsd-amd64-cgo), type IfData struct, Iqdrops uint64
-pkg syscall (openbsd-amd64-cgo), type IfData struct, Lastchange Timeval
-pkg syscall (openbsd-amd64-cgo), type IfData struct, Link_state uint8
-pkg syscall (openbsd-amd64-cgo), type IfData struct, Mclpool [7]Mclpool
-pkg syscall (openbsd-amd64-cgo), type IfData struct, Metric uint32
-pkg syscall (openbsd-amd64-cgo), type IfData struct, Mtu uint32
-pkg syscall (openbsd-amd64-cgo), type IfData struct, Noproto uint64
-pkg syscall (openbsd-amd64-cgo), type IfData struct, Obytes uint64
-pkg syscall (openbsd-amd64-cgo), type IfData struct, Oerrors uint64
-pkg syscall (openbsd-amd64-cgo), type IfData struct, Omcasts uint64
-pkg syscall (openbsd-amd64-cgo), type IfData struct, Opackets uint64
-pkg syscall (openbsd-amd64-cgo), type IfData struct, Pad uint32
-pkg syscall (openbsd-amd64-cgo), type IfData struct, Pad_cgo_0 [4]uint8
-pkg syscall (openbsd-amd64-cgo), type IfData struct, Pad_cgo_1 [4]uint8
-pkg syscall (openbsd-amd64-cgo), type IfData struct, Type uint8
-pkg syscall (openbsd-amd64-cgo), type IfMsghdr struct
-pkg syscall (openbsd-amd64-cgo), type IfMsghdr struct, Addrs int32
-pkg syscall (openbsd-amd64-cgo), type IfMsghdr struct, Data IfData
-pkg syscall (openbsd-amd64-cgo), type IfMsghdr struct, Flags int32
-pkg syscall (openbsd-amd64-cgo), type IfMsghdr struct, Hdrlen uint16
-pkg syscall (openbsd-amd64-cgo), type IfMsghdr struct, Index uint16
-pkg syscall (openbsd-amd64-cgo), type IfMsghdr struct, Msglen uint16
-pkg syscall (openbsd-amd64-cgo), type IfMsghdr struct, Pad1 uint8
-pkg syscall (openbsd-amd64-cgo), type IfMsghdr struct, Pad2 uint8
-pkg syscall (openbsd-amd64-cgo), type IfMsghdr struct, Tableid uint16
-pkg syscall (openbsd-amd64-cgo), type IfMsghdr struct, Type uint8
-pkg syscall (openbsd-amd64-cgo), type IfMsghdr struct, Version uint8
-pkg syscall (openbsd-amd64-cgo), type IfMsghdr struct, Xflags int32
-pkg syscall (openbsd-amd64-cgo), type IfaMsghdr struct
-pkg syscall (openbsd-amd64-cgo), type IfaMsghdr struct, Addrs int32
-pkg syscall (openbsd-amd64-cgo), type IfaMsghdr struct, Flags int32
-pkg syscall (openbsd-amd64-cgo), type IfaMsghdr struct, Hdrlen uint16
-pkg syscall (openbsd-amd64-cgo), type IfaMsghdr struct, Index uint16
-pkg syscall (openbsd-amd64-cgo), type IfaMsghdr struct, Metric int32
-pkg syscall (openbsd-amd64-cgo), type IfaMsghdr struct, Msglen uint16
-pkg syscall (openbsd-amd64-cgo), type IfaMsghdr struct, Pad1 uint8
-pkg syscall (openbsd-amd64-cgo), type IfaMsghdr struct, Pad2 uint8
-pkg syscall (openbsd-amd64-cgo), type IfaMsghdr struct, Tableid uint16
-pkg syscall (openbsd-amd64-cgo), type IfaMsghdr struct, Type uint8
-pkg syscall (openbsd-amd64-cgo), type IfaMsghdr struct, Version uint8
-pkg syscall (openbsd-amd64-cgo), type Inet6Pktinfo struct
-pkg syscall (openbsd-amd64-cgo), type Inet6Pktinfo struct, Addr [16]uint8
-pkg syscall (openbsd-amd64-cgo), type Inet6Pktinfo struct, Ifindex uint32
-pkg syscall (openbsd-amd64-cgo), type InterfaceAddrMessage struct
-pkg syscall (openbsd-amd64-cgo), type InterfaceAddrMessage struct, Data []uint8
-pkg syscall (openbsd-amd64-cgo), type InterfaceAddrMessage struct, Header IfaMsghdr
-pkg syscall (openbsd-amd64-cgo), type InterfaceAnnounceMessage struct
-pkg syscall (openbsd-amd64-cgo), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr
-pkg syscall (openbsd-amd64-cgo), type InterfaceMessage struct
-pkg syscall (openbsd-amd64-cgo), type InterfaceMessage struct, Data []uint8
-pkg syscall (openbsd-amd64-cgo), type InterfaceMessage struct, Header IfMsghdr
-pkg syscall (openbsd-amd64-cgo), type Iovec struct
-pkg syscall (openbsd-amd64-cgo), type Iovec struct, Base *uint8
-pkg syscall (openbsd-amd64-cgo), type Iovec struct, Len uint64
-pkg syscall (openbsd-amd64-cgo), type Kevent_t struct
-pkg syscall (openbsd-amd64-cgo), type Kevent_t struct, Data int32
-pkg syscall (openbsd-amd64-cgo), type Kevent_t struct, Fflags uint32
-pkg syscall (openbsd-amd64-cgo), type Kevent_t struct, Filter int16
-pkg syscall (openbsd-amd64-cgo), type Kevent_t struct, Flags uint16
-pkg syscall (openbsd-amd64-cgo), type Kevent_t struct, Ident uint32
-pkg syscall (openbsd-amd64-cgo), type Kevent_t struct, Udata *uint8
-pkg syscall (openbsd-amd64-cgo), type Mclpool struct
-pkg syscall (openbsd-amd64-cgo), type Mclpool struct, Alive uint16
-pkg syscall (openbsd-amd64-cgo), type Mclpool struct, Cwm uint16
-pkg syscall (openbsd-amd64-cgo), type Mclpool struct, Grown uint32
-pkg syscall (openbsd-amd64-cgo), type Mclpool struct, Hwm uint16
-pkg syscall (openbsd-amd64-cgo), type Mclpool struct, Lwm uint16
-pkg syscall (openbsd-amd64-cgo), type Msghdr struct
-pkg syscall (openbsd-amd64-cgo), type Msghdr struct, Control *uint8
-pkg syscall (openbsd-amd64-cgo), type Msghdr struct, Controllen uint32
-pkg syscall (openbsd-amd64-cgo), type Msghdr struct, Flags int32
-pkg syscall (openbsd-amd64-cgo), type Msghdr struct, Iov *Iovec
-pkg syscall (openbsd-amd64-cgo), type Msghdr struct, Iovlen uint32
-pkg syscall (openbsd-amd64-cgo), type Msghdr struct, Name *uint8
-pkg syscall (openbsd-amd64-cgo), type Msghdr struct, Namelen uint32
-pkg syscall (openbsd-amd64-cgo), type Msghdr struct, Pad_cgo_0 [4]uint8
-pkg syscall (openbsd-amd64-cgo), type Msghdr struct, Pad_cgo_1 [4]uint8
-pkg syscall (openbsd-amd64-cgo), type RawSockaddr struct, Data [14]int8
-pkg syscall (openbsd-amd64-cgo), type RawSockaddr struct, Family uint8
-pkg syscall (openbsd-amd64-cgo), type RawSockaddr struct, Len uint8
-pkg syscall (openbsd-amd64-cgo), type RawSockaddrAny struct, Pad [92]int8
-pkg syscall (openbsd-amd64-cgo), type RawSockaddrDatalink struct
-pkg syscall (openbsd-amd64-cgo), type RawSockaddrDatalink struct, Alen uint8
-pkg syscall (openbsd-amd64-cgo), type RawSockaddrDatalink struct, Data [24]int8
-pkg syscall (openbsd-amd64-cgo), type RawSockaddrDatalink struct, Family uint8
-pkg syscall (openbsd-amd64-cgo), type RawSockaddrDatalink struct, Index uint16
-pkg syscall (openbsd-amd64-cgo), type RawSockaddrDatalink struct, Len uint8
-pkg syscall (openbsd-amd64-cgo), type RawSockaddrDatalink struct, Nlen uint8
-pkg syscall (openbsd-amd64-cgo), type RawSockaddrDatalink struct, Slen uint8
-pkg syscall (openbsd-amd64-cgo), type RawSockaddrDatalink struct, Type uint8
-pkg syscall (openbsd-amd64-cgo), type RawSockaddrInet4 struct, Family uint8
-pkg syscall (openbsd-amd64-cgo), type RawSockaddrInet4 struct, Len uint8
-pkg syscall (openbsd-amd64-cgo), type RawSockaddrInet4 struct, Zero [8]int8
-pkg syscall (openbsd-amd64-cgo), type RawSockaddrInet6 struct, Family uint8
-pkg syscall (openbsd-amd64-cgo), type RawSockaddrInet6 struct, Len uint8
-pkg syscall (openbsd-amd64-cgo), type RawSockaddrUnix struct
-pkg syscall (openbsd-amd64-cgo), type RawSockaddrUnix struct, Family uint8
-pkg syscall (openbsd-amd64-cgo), type RawSockaddrUnix struct, Len uint8
-pkg syscall (openbsd-amd64-cgo), type RawSockaddrUnix struct, Path [104]int8
-pkg syscall (openbsd-amd64-cgo), type Rlimit struct
-pkg syscall (openbsd-amd64-cgo), type Rlimit struct, Cur uint64
-pkg syscall (openbsd-amd64-cgo), type Rlimit struct, Max uint64
-pkg syscall (openbsd-amd64-cgo), type RouteMessage struct
-pkg syscall (openbsd-amd64-cgo), type RouteMessage struct, Data []uint8
-pkg syscall (openbsd-amd64-cgo), type RouteMessage struct, Header RtMsghdr
-pkg syscall (openbsd-amd64-cgo), type RoutingMessage interface, unexported methods
-pkg syscall (openbsd-amd64-cgo), type RtMetrics struct
-pkg syscall (openbsd-amd64-cgo), type RtMetrics struct, Expire uint32
-pkg syscall (openbsd-amd64-cgo), type RtMetrics struct, Hopcount uint32
-pkg syscall (openbsd-amd64-cgo), type RtMetrics struct, Locks uint32
-pkg syscall (openbsd-amd64-cgo), type RtMetrics struct, Mtu uint32
-pkg syscall (openbsd-amd64-cgo), type RtMetrics struct, Pksent uint64
-pkg syscall (openbsd-amd64-cgo), type RtMetrics struct, Recvpipe uint32
-pkg syscall (openbsd-amd64-cgo), type RtMetrics struct, Refcnt uint32
-pkg syscall (openbsd-amd64-cgo), type RtMetrics struct, Rtt uint32
-pkg syscall (openbsd-amd64-cgo), type RtMetrics struct, Rttvar uint32
-pkg syscall (openbsd-amd64-cgo), type RtMetrics struct, Sendpipe uint32
-pkg syscall (openbsd-amd64-cgo), type RtMetrics struct, Ssthresh uint32
-pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct
-pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct, Addrs int32
-pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct, Errno int32
-pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct, Flags int32
-pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct, Fmask int32
-pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct, Hdrlen uint16
-pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct, Index uint16
-pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct, Inits uint32
-pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct, Mpls uint8
-pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct, Msglen uint16
-pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct, Pid int32
-pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct, Priority uint8
-pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct, Rmx RtMetrics
-pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct, Seq int32
-pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct, Tableid uint16
-pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct, Type uint8
-pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct, Version uint8
-pkg syscall (openbsd-amd64-cgo), type Rusage struct, Idrss int64
-pkg syscall (openbsd-amd64-cgo), type Rusage struct, Inblock int64
-pkg syscall (openbsd-amd64-cgo), type Rusage struct, Isrss int64
-pkg syscall (openbsd-amd64-cgo), type Rusage struct, Ixrss int64
-pkg syscall (openbsd-amd64-cgo), type Rusage struct, Majflt int64
-pkg syscall (openbsd-amd64-cgo), type Rusage struct, Maxrss int64
-pkg syscall (openbsd-amd64-cgo), type Rusage struct, Minflt int64
-pkg syscall (openbsd-amd64-cgo), type Rusage struct, Msgrcv int64
-pkg syscall (openbsd-amd64-cgo), type Rusage struct, Msgsnd int64
-pkg syscall (openbsd-amd64-cgo), type Rusage struct, Nivcsw int64
-pkg syscall (openbsd-amd64-cgo), type Rusage struct, Nsignals int64
-pkg syscall (openbsd-amd64-cgo), type Rusage struct, Nswap int64
-pkg syscall (openbsd-amd64-cgo), type Rusage struct, Nvcsw int64
-pkg syscall (openbsd-amd64-cgo), type Rusage struct, Oublock int64
-pkg syscall (openbsd-amd64-cgo), type Rusage struct, Stime Timeval
-pkg syscall (openbsd-amd64-cgo), type Rusage struct, Utime Timeval
-pkg syscall (openbsd-amd64-cgo), type SockaddrDatalink struct
-pkg syscall (openbsd-amd64-cgo), type SockaddrDatalink struct, Alen uint8
-pkg syscall (openbsd-amd64-cgo), type SockaddrDatalink struct, Data [24]int8
-pkg syscall (openbsd-amd64-cgo), type SockaddrDatalink struct, Family uint8
-pkg syscall (openbsd-amd64-cgo), type SockaddrDatalink struct, Index uint16
-pkg syscall (openbsd-amd64-cgo), type SockaddrDatalink struct, Len uint8
-pkg syscall (openbsd-amd64-cgo), type SockaddrDatalink struct, Nlen uint8
-pkg syscall (openbsd-amd64-cgo), type SockaddrDatalink struct, Slen uint8
-pkg syscall (openbsd-amd64-cgo), type SockaddrDatalink struct, Type uint8
-pkg syscall (openbsd-amd64-cgo), type SocketControlMessage struct
-pkg syscall (openbsd-amd64-cgo), type SocketControlMessage struct, Data []uint8
-pkg syscall (openbsd-amd64-cgo), type SocketControlMessage struct, Header Cmsghdr
-pkg syscall (openbsd-amd64-cgo), type Stat_t struct
-pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Atim Timespec
-pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Blksize uint32
-pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Blocks int64
-pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Ctim Timespec
-pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Dev int32
-pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Flags uint32
-pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Gen uint32
-pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Gid uint32
-pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Ino uint32
-pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Lspare0 int32
-pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Lspare1 int32
-pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Mode uint32
-pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Mtim Timespec
-pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Nlink uint32
-pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Qspare [2]int64
-pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Rdev int32
-pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Size int64
-pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Uid uint32
-pkg syscall (openbsd-amd64-cgo), type Stat_t struct, X__st_birthtim Timespec
-pkg syscall (openbsd-amd64-cgo), type Statfs_t struct
-pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_asyncreads uint64
-pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_asyncwrites uint64
-pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_bavail int64
-pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_bfree uint64
-pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_blocks uint64
-pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_bsize uint32
-pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_ctime uint32
-pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_favail int64
-pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_ffree uint64
-pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_files uint64
-pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_flags uint32
-pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_fsid Fsid
-pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_fstypename [16]int8
-pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_iosize uint32
-pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_mntfromname [90]int8
-pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_mntonname [90]int8
-pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_namemax uint32
-pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_owner uint32
-pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_spare [3]uint32
-pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_syncreads uint64
-pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_syncwrites uint64
-pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, Mount_info [160]uint8
-pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, Pad_cgo_0 [4]uint8
-pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, Pad_cgo_1 [4]uint8
-pkg syscall (openbsd-amd64-cgo), type SysProcAttr struct, Chroot string
-pkg syscall (openbsd-amd64-cgo), type SysProcAttr struct, Credential *Credential
-pkg syscall (openbsd-amd64-cgo), type SysProcAttr struct, Noctty bool
-pkg syscall (openbsd-amd64-cgo), type SysProcAttr struct, Ptrace bool
-pkg syscall (openbsd-amd64-cgo), type SysProcAttr struct, Setctty bool
-pkg syscall (openbsd-amd64-cgo), type SysProcAttr struct, Setpgid bool
-pkg syscall (openbsd-amd64-cgo), type SysProcAttr struct, Setsid bool
-pkg syscall (openbsd-amd64-cgo), type Timespec struct, Nsec int64
-pkg syscall (openbsd-amd64-cgo), type Timespec struct, Pad_cgo_0 [4]uint8
-pkg syscall (openbsd-amd64-cgo), type Timespec struct, Sec int32
-pkg syscall (openbsd-amd64-cgo), type Timeval struct, Sec int64
-pkg syscall (openbsd-amd64-cgo), type Timeval struct, Usec int64
-pkg syscall (openbsd-amd64-cgo), type WaitStatus uint32
-pkg syscall (openbsd-amd64-cgo), var Stderr int
-pkg syscall (openbsd-amd64-cgo), var Stdin int
-pkg syscall (openbsd-amd64-cgo), var Stdout int
-pkg syscall (windows-386), const BASE_PROTOCOL = 1
-pkg syscall (windows-386), const BASE_PROTOCOL ideal-int
-pkg syscall (windows-386), const ERROR_HANDLE_EOF = 38
-pkg syscall (windows-386), const ERROR_HANDLE_EOF Errno
-pkg syscall (windows-386), const FILE_SKIP_COMPLETION_PORT_ON_SUCCESS = 1
-pkg syscall (windows-386), const FILE_SKIP_COMPLETION_PORT_ON_SUCCESS ideal-int
-pkg syscall (windows-386), const FILE_SKIP_SET_EVENT_ON_HANDLE = 2
-pkg syscall (windows-386), const FILE_SKIP_SET_EVENT_ON_HANDLE ideal-int
-pkg syscall (windows-386), const LAYERED_PROTOCOL = 0
-pkg syscall (windows-386), const LAYERED_PROTOCOL ideal-int
-pkg syscall (windows-386), const MAX_PROTOCOL_CHAIN = 7
-pkg syscall (windows-386), const MAX_PROTOCOL_CHAIN ideal-int
-pkg syscall (windows-386), const NetSetupDomainName = 3
-pkg syscall (windows-386), const NetSetupDomainName ideal-int
-pkg syscall (windows-386), const NetSetupUnjoined = 1
-pkg syscall (windows-386), const NetSetupUnjoined ideal-int
-pkg syscall (windows-386), const NetSetupUnknownStatus = 0
-pkg syscall (windows-386), const NetSetupUnknownStatus ideal-int
-pkg syscall (windows-386), const NetSetupWorkgroupName = 2
-pkg syscall (windows-386), const NetSetupWorkgroupName ideal-int
-pkg syscall (windows-386), const PFL_HIDDEN = 4
-pkg syscall (windows-386), const PFL_HIDDEN ideal-int
-pkg syscall (windows-386), const PFL_MATCHES_PROTOCOL_ZERO = 8
-pkg syscall (windows-386), const PFL_MATCHES_PROTOCOL_ZERO ideal-int
-pkg syscall (windows-386), const PFL_MULTIPLE_PROTO_ENTRIES = 1
-pkg syscall (windows-386), const PFL_MULTIPLE_PROTO_ENTRIES ideal-int
-pkg syscall (windows-386), const PFL_NETWORKDIRECT_PROVIDER = 16
-pkg syscall (windows-386), const PFL_NETWORKDIRECT_PROVIDER ideal-int
-pkg syscall (windows-386), const PFL_RECOMMENDED_PROTO_ENTRY = 2
-pkg syscall (windows-386), const PFL_RECOMMENDED_PROTO_ENTRY ideal-int
-pkg syscall (windows-386), const PROCESS_TERMINATE = 1
-pkg syscall (windows-386), const PROCESS_TERMINATE ideal-int
-pkg syscall (windows-386), const WSAPROTOCOL_LEN = 255
-pkg syscall (windows-386), const WSAPROTOCOL_LEN ideal-int
-pkg syscall (windows-386), const XP1_CONNECTIONLESS = 1
-pkg syscall (windows-386), const XP1_CONNECTIONLESS ideal-int
-pkg syscall (windows-386), const XP1_CONNECT_DATA = 128
-pkg syscall (windows-386), const XP1_CONNECT_DATA ideal-int
-pkg syscall (windows-386), const XP1_DISCONNECT_DATA = 256
-pkg syscall (windows-386), const XP1_DISCONNECT_DATA ideal-int
-pkg syscall (windows-386), const XP1_EXPEDITED_DATA = 64
-pkg syscall (windows-386), const XP1_EXPEDITED_DATA ideal-int
-pkg syscall (windows-386), const XP1_GRACEFUL_CLOSE = 32
-pkg syscall (windows-386), const XP1_GRACEFUL_CLOSE ideal-int
-pkg syscall (windows-386), const XP1_GUARANTEED_DELIVERY = 2
-pkg syscall (windows-386), const XP1_GUARANTEED_DELIVERY ideal-int
-pkg syscall (windows-386), const XP1_GUARANTEED_ORDER = 4
-pkg syscall (windows-386), const XP1_GUARANTEED_ORDER ideal-int
-pkg syscall (windows-386), const XP1_IFS_HANDLES = 131072
-pkg syscall (windows-386), const XP1_IFS_HANDLES ideal-int
-pkg syscall (windows-386), const XP1_MESSAGE_ORIENTED = 8
-pkg syscall (windows-386), const XP1_MESSAGE_ORIENTED ideal-int
-pkg syscall (windows-386), const XP1_MULTIPOINT_CONTROL_PLANE = 2048
-pkg syscall (windows-386), const XP1_MULTIPOINT_CONTROL_PLANE ideal-int
-pkg syscall (windows-386), const XP1_MULTIPOINT_DATA_PLANE = 4096
-pkg syscall (windows-386), const XP1_MULTIPOINT_DATA_PLANE ideal-int
-pkg syscall (windows-386), const XP1_PARTIAL_MESSAGE = 262144
-pkg syscall (windows-386), const XP1_PARTIAL_MESSAGE ideal-int
-pkg syscall (windows-386), const XP1_PSEUDO_STREAM = 16
-pkg syscall (windows-386), const XP1_PSEUDO_STREAM ideal-int
-pkg syscall (windows-386), const XP1_QOS_SUPPORTED = 8192
-pkg syscall (windows-386), const XP1_QOS_SUPPORTED ideal-int
-pkg syscall (windows-386), const XP1_SAN_SUPPORT_SDP = 524288
-pkg syscall (windows-386), const XP1_SAN_SUPPORT_SDP ideal-int
-pkg syscall (windows-386), const XP1_SUPPORT_BROADCAST = 512
-pkg syscall (windows-386), const XP1_SUPPORT_BROADCAST ideal-int
-pkg syscall (windows-386), const XP1_SUPPORT_MULTIPOINT = 1024
-pkg syscall (windows-386), const XP1_SUPPORT_MULTIPOINT ideal-int
-pkg syscall (windows-386), const XP1_UNI_RECV = 65536
-pkg syscall (windows-386), const XP1_UNI_RECV ideal-int
-pkg syscall (windows-386), const XP1_UNI_SEND = 32768
-pkg syscall (windows-386), const XP1_UNI_SEND ideal-int
-pkg syscall (windows-386), func LoadSetFileCompletionNotificationModes() error
-pkg syscall (windows-386), func NetGetJoinInformation(*uint16, **uint16, *uint32) error
-pkg syscall (windows-386), func SetFileCompletionNotificationModes(Handle, uint8) error
-pkg syscall (windows-386), func WSAEnumProtocols(*int32, *WSAProtocolInfo, *uint32) (int32, error)
-pkg syscall (windows-386), type IpMaskString struct, String [16]uint8
-pkg syscall (windows-386), type WSAProtocolChain struct
-pkg syscall (windows-386), type WSAProtocolChain struct, ChainEntries [7]uint32
-pkg syscall (windows-386), type WSAProtocolChain struct, ChainLen int32
-pkg syscall (windows-386), type WSAProtocolInfo struct
-pkg syscall (windows-386), type WSAProtocolInfo struct, AddressFamily int32
-pkg syscall (windows-386), type WSAProtocolInfo struct, CatalogEntryId uint32
-pkg syscall (windows-386), type WSAProtocolInfo struct, MaxSockAddr int32
-pkg syscall (windows-386), type WSAProtocolInfo struct, MessageSize uint32
-pkg syscall (windows-386), type WSAProtocolInfo struct, MinSockAddr int32
-pkg syscall (windows-386), type WSAProtocolInfo struct, NetworkByteOrder int32
-pkg syscall (windows-386), type WSAProtocolInfo struct, Protocol int32
-pkg syscall (windows-386), type WSAProtocolInfo struct, ProtocolChain WSAProtocolChain
-pkg syscall (windows-386), type WSAProtocolInfo struct, ProtocolMaxOffset int32
-pkg syscall (windows-386), type WSAProtocolInfo struct, ProtocolName [256]uint16
-pkg syscall (windows-386), type WSAProtocolInfo struct, ProviderFlags uint32
-pkg syscall (windows-386), type WSAProtocolInfo struct, ProviderId GUID
-pkg syscall (windows-386), type WSAProtocolInfo struct, ProviderReserved uint32
-pkg syscall (windows-386), type WSAProtocolInfo struct, SecurityScheme int32
-pkg syscall (windows-386), type WSAProtocolInfo struct, ServiceFlags1 uint32
-pkg syscall (windows-386), type WSAProtocolInfo struct, ServiceFlags2 uint32
-pkg syscall (windows-386), type WSAProtocolInfo struct, ServiceFlags3 uint32
-pkg syscall (windows-386), type WSAProtocolInfo struct, ServiceFlags4 uint32
-pkg syscall (windows-386), type WSAProtocolInfo struct, SocketType int32
-pkg syscall (windows-386), type WSAProtocolInfo struct, Version int32
-pkg syscall (windows-amd64), const BASE_PROTOCOL = 1
-pkg syscall (windows-amd64), const BASE_PROTOCOL ideal-int
-pkg syscall (windows-amd64), const ERROR_HANDLE_EOF = 38
-pkg syscall (windows-amd64), const ERROR_HANDLE_EOF Errno
-pkg syscall (windows-amd64), const FILE_SKIP_COMPLETION_PORT_ON_SUCCESS = 1
-pkg syscall (windows-amd64), const FILE_SKIP_COMPLETION_PORT_ON_SUCCESS ideal-int
-pkg syscall (windows-amd64), const FILE_SKIP_SET_EVENT_ON_HANDLE = 2
-pkg syscall (windows-amd64), const FILE_SKIP_SET_EVENT_ON_HANDLE ideal-int
-pkg syscall (windows-amd64), const LAYERED_PROTOCOL = 0
-pkg syscall (windows-amd64), const LAYERED_PROTOCOL ideal-int
-pkg syscall (windows-amd64), const MAX_PROTOCOL_CHAIN = 7
-pkg syscall (windows-amd64), const MAX_PROTOCOL_CHAIN ideal-int
-pkg syscall (windows-amd64), const NetSetupDomainName = 3
-pkg syscall (windows-amd64), const NetSetupDomainName ideal-int
-pkg syscall (windows-amd64), const NetSetupUnjoined = 1
-pkg syscall (windows-amd64), const NetSetupUnjoined ideal-int
-pkg syscall (windows-amd64), const NetSetupUnknownStatus = 0
-pkg syscall (windows-amd64), const NetSetupUnknownStatus ideal-int
-pkg syscall (windows-amd64), const NetSetupWorkgroupName = 2
-pkg syscall (windows-amd64), const NetSetupWorkgroupName ideal-int
-pkg syscall (windows-amd64), const PFL_HIDDEN = 4
-pkg syscall (windows-amd64), const PFL_HIDDEN ideal-int
-pkg syscall (windows-amd64), const PFL_MATCHES_PROTOCOL_ZERO = 8
-pkg syscall (windows-amd64), const PFL_MATCHES_PROTOCOL_ZERO ideal-int
-pkg syscall (windows-amd64), const PFL_MULTIPLE_PROTO_ENTRIES = 1
-pkg syscall (windows-amd64), const PFL_MULTIPLE_PROTO_ENTRIES ideal-int
-pkg syscall (windows-amd64), const PFL_NETWORKDIRECT_PROVIDER = 16
-pkg syscall (windows-amd64), const PFL_NETWORKDIRECT_PROVIDER ideal-int
-pkg syscall (windows-amd64), const PFL_RECOMMENDED_PROTO_ENTRY = 2
-pkg syscall (windows-amd64), const PFL_RECOMMENDED_PROTO_ENTRY ideal-int
-pkg syscall (windows-amd64), const PROCESS_TERMINATE = 1
-pkg syscall (windows-amd64), const PROCESS_TERMINATE ideal-int
-pkg syscall (windows-amd64), const WSAPROTOCOL_LEN = 255
-pkg syscall (windows-amd64), const WSAPROTOCOL_LEN ideal-int
-pkg syscall (windows-amd64), const XP1_CONNECTIONLESS = 1
-pkg syscall (windows-amd64), const XP1_CONNECTIONLESS ideal-int
-pkg syscall (windows-amd64), const XP1_CONNECT_DATA = 128
-pkg syscall (windows-amd64), const XP1_CONNECT_DATA ideal-int
-pkg syscall (windows-amd64), const XP1_DISCONNECT_DATA = 256
-pkg syscall (windows-amd64), const XP1_DISCONNECT_DATA ideal-int
-pkg syscall (windows-amd64), const XP1_EXPEDITED_DATA = 64
-pkg syscall (windows-amd64), const XP1_EXPEDITED_DATA ideal-int
-pkg syscall (windows-amd64), const XP1_GRACEFUL_CLOSE = 32
-pkg syscall (windows-amd64), const XP1_GRACEFUL_CLOSE ideal-int
-pkg syscall (windows-amd64), const XP1_GUARANTEED_DELIVERY = 2
-pkg syscall (windows-amd64), const XP1_GUARANTEED_DELIVERY ideal-int
-pkg syscall (windows-amd64), const XP1_GUARANTEED_ORDER = 4
-pkg syscall (windows-amd64), const XP1_GUARANTEED_ORDER ideal-int
-pkg syscall (windows-amd64), const XP1_IFS_HANDLES = 131072
-pkg syscall (windows-amd64), const XP1_IFS_HANDLES ideal-int
-pkg syscall (windows-amd64), const XP1_MESSAGE_ORIENTED = 8
-pkg syscall (windows-amd64), const XP1_MESSAGE_ORIENTED ideal-int
-pkg syscall (windows-amd64), const XP1_MULTIPOINT_CONTROL_PLANE = 2048
-pkg syscall (windows-amd64), const XP1_MULTIPOINT_CONTROL_PLANE ideal-int
-pkg syscall (windows-amd64), const XP1_MULTIPOINT_DATA_PLANE = 4096
-pkg syscall (windows-amd64), const XP1_MULTIPOINT_DATA_PLANE ideal-int
-pkg syscall (windows-amd64), const XP1_PARTIAL_MESSAGE = 262144
-pkg syscall (windows-amd64), const XP1_PARTIAL_MESSAGE ideal-int
-pkg syscall (windows-amd64), const XP1_PSEUDO_STREAM = 16
-pkg syscall (windows-amd64), const XP1_PSEUDO_STREAM ideal-int
-pkg syscall (windows-amd64), const XP1_QOS_SUPPORTED = 8192
-pkg syscall (windows-amd64), const XP1_QOS_SUPPORTED ideal-int
-pkg syscall (windows-amd64), const XP1_SAN_SUPPORT_SDP = 524288
-pkg syscall (windows-amd64), const XP1_SAN_SUPPORT_SDP ideal-int
-pkg syscall (windows-amd64), const XP1_SUPPORT_BROADCAST = 512
-pkg syscall (windows-amd64), const XP1_SUPPORT_BROADCAST ideal-int
-pkg syscall (windows-amd64), const XP1_SUPPORT_MULTIPOINT = 1024
-pkg syscall (windows-amd64), const XP1_SUPPORT_MULTIPOINT ideal-int
-pkg syscall (windows-amd64), const XP1_UNI_RECV = 65536
-pkg syscall (windows-amd64), const XP1_UNI_RECV ideal-int
-pkg syscall (windows-amd64), const XP1_UNI_SEND = 32768
-pkg syscall (windows-amd64), const XP1_UNI_SEND ideal-int
-pkg syscall (windows-amd64), func LoadSetFileCompletionNotificationModes() error
-pkg syscall (windows-amd64), func NetGetJoinInformation(*uint16, **uint16, *uint32) error
-pkg syscall (windows-amd64), func SetFileCompletionNotificationModes(Handle, uint8) error
-pkg syscall (windows-amd64), func WSAEnumProtocols(*int32, *WSAProtocolInfo, *uint32) (int32, error)
-pkg syscall (windows-amd64), type IpMaskString struct, String [16]uint8
-pkg syscall (windows-amd64), type WSAProtocolChain struct
-pkg syscall (windows-amd64), type WSAProtocolChain struct, ChainEntries [7]uint32
-pkg syscall (windows-amd64), type WSAProtocolChain struct, ChainLen int32
-pkg syscall (windows-amd64), type WSAProtocolInfo struct
-pkg syscall (windows-amd64), type WSAProtocolInfo struct, AddressFamily int32
-pkg syscall (windows-amd64), type WSAProtocolInfo struct, CatalogEntryId uint32
-pkg syscall (windows-amd64), type WSAProtocolInfo struct, MaxSockAddr int32
-pkg syscall (windows-amd64), type WSAProtocolInfo struct, MessageSize uint32
-pkg syscall (windows-amd64), type WSAProtocolInfo struct, MinSockAddr int32
-pkg syscall (windows-amd64), type WSAProtocolInfo struct, NetworkByteOrder int32
-pkg syscall (windows-amd64), type WSAProtocolInfo struct, Protocol int32
-pkg syscall (windows-amd64), type WSAProtocolInfo struct, ProtocolChain WSAProtocolChain
-pkg syscall (windows-amd64), type WSAProtocolInfo struct, ProtocolMaxOffset int32
-pkg syscall (windows-amd64), type WSAProtocolInfo struct, ProtocolName [256]uint16
-pkg syscall (windows-amd64), type WSAProtocolInfo struct, ProviderFlags uint32
-pkg syscall (windows-amd64), type WSAProtocolInfo struct, ProviderId GUID
-pkg syscall (windows-amd64), type WSAProtocolInfo struct, ProviderReserved uint32
-pkg syscall (windows-amd64), type WSAProtocolInfo struct, SecurityScheme int32
-pkg syscall (windows-amd64), type WSAProtocolInfo struct, ServiceFlags1 uint32
-pkg syscall (windows-amd64), type WSAProtocolInfo struct, ServiceFlags2 uint32
-pkg syscall (windows-amd64), type WSAProtocolInfo struct, ServiceFlags3 uint32
-pkg syscall (windows-amd64), type WSAProtocolInfo struct, ServiceFlags4 uint32
-pkg syscall (windows-amd64), type WSAProtocolInfo struct, SocketType int32
-pkg syscall (windows-amd64), type WSAProtocolInfo struct, Version int32
-pkg testing, func RegisterCover(Cover)
-pkg testing, type Cover struct
-pkg testing, type Cover struct, Blocks map[string][]CoverBlock
-pkg testing, type Cover struct, Counters map[string][]uint32
-pkg testing, type Cover struct, CoveredPackages string
-pkg testing, type Cover struct, Mode string
-pkg testing, type CoverBlock struct
-pkg testing, type CoverBlock struct, Col0 uint16
-pkg testing, type CoverBlock struct, Col1 uint16
-pkg testing, type CoverBlock struct, Line0 uint32
-pkg testing, type CoverBlock struct, Line1 uint32
-pkg testing, type CoverBlock struct, Stmts uint16
-pkg testing, type TB interface, Error(...interface{})
-pkg testing, type TB interface, Errorf(string, ...interface{})
-pkg testing, type TB interface, Fail()
-pkg testing, type TB interface, FailNow()
-pkg testing, type TB interface, Failed() bool
-pkg testing, type TB interface, Fatal(...interface{})
-pkg testing, type TB interface, Fatalf(string, ...interface{})
-pkg testing, type TB interface, Log(...interface{})
-pkg testing, type TB interface, Logf(string, ...interface{})
-pkg testing, type TB interface, Skip(...interface{})
-pkg testing, type TB interface, SkipNow()
-pkg testing, type TB interface, Skipf(string, ...interface{})
-pkg testing, type TB interface, Skipped() bool
-pkg testing, type TB interface, unexported methods
-pkg text/template, method (Template) Copy() *parse.Tree
-pkg text/template/parse, method (*Tree) Copy() *Tree
-pkg time, method (*Time) UnmarshalBinary([]uint8) error
-pkg time, method (*Time) UnmarshalText([]uint8) error
-pkg time, method (Time) MarshalBinary() ([]uint8, error)
-pkg time, method (Time) MarshalText() ([]uint8, error)
-pkg unicode, func In(int32, ...*RangeTable) bool
diff --git a/src/cmd/api/run.go b/src/cmd/api/run.go
index ffa2d61..1e10dc6 100644
--- a/src/cmd/api/run.go
+++ b/src/cmd/api/run.go
@@ -53,7 +53,7 @@
 	}
 
 	out, err = exec.Command("go", "tool", "api",
-		"-c", file("go1", "go1.1"),
+		"-c", file("go1", "go1.1", "go1.2"),
 		"-next", file("next"),
 		"-except", file("except")).CombinedOutput()
 	if err != nil {