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 (l