syscall_nosplit4_linux_386.go 353 B

123456789101112131415
  1. // Copyright 2013 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 go1.2 go1.3
  5. package ipv6
  6. import "syscall"
  7. func socketcallnosplit4(call int, a0, a1, a2, a3, a4, a5 uintptr) (int, syscall.Errno)
  8. func init() {
  9. socketcall = socketcallnosplit4
  10. }