// Copyright 2021 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

//go:build unix

package unix

import (
	
	_ 
)

//go:linkname RecvfromInet4 syscall.recvfromInet4
//go:noescape
func ( int,  []byte,  int,  *syscall.SockaddrInet4) (int, error)

//go:linkname RecvfromInet6 syscall.recvfromInet6
//go:noescape
func ( int,  []byte,  int,  *syscall.SockaddrInet6) ( int,  error)

//go:linkname SendtoInet4 syscall.sendtoInet4
//go:noescape
func ( int,  []byte,  int,  *syscall.SockaddrInet4) ( error)

//go:linkname SendtoInet6 syscall.sendtoInet6
//go:noescape
func ( int,  []byte,  int,  *syscall.SockaddrInet6) ( error)

//go:linkname SendmsgNInet4 syscall.sendmsgNInet4
//go:noescape
func ( int, ,  []byte,  *syscall.SockaddrInet4,  int) ( int,  error)

//go:linkname SendmsgNInet6 syscall.sendmsgNInet6
//go:noescape
func ( int, ,  []byte,  *syscall.SockaddrInet6,  int) ( int,  error)

//go:linkname RecvmsgInet4 syscall.recvmsgInet4
//go:noescape
func ( int, ,  []byte,  int,  *syscall.SockaddrInet4) (,  int,  int,  error)

//go:linkname RecvmsgInet6 syscall.recvmsgInet6
//go:noescape
func ( int, ,  []byte,  int,  *syscall.SockaddrInet6) (,  int,  int,  error)