sys_bsdvar.go 306 B

1234567891011121314
  1. // Copyright 2017 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. // +build freebsd netbsd openbsd
  5. package socket
  6. import "unsafe"
  7. func probeProtocolStack() int {
  8. var p uintptr
  9. return int(unsafe.Sizeof(p))
  10. }