// Copyright 2017 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 linux && !s390x && !386

package socket

import (
	
	
)

func recvmmsg( uintptr,  []mmsghdr,  int) (int, error) {
	, ,  := syscall.Syscall6(sysRECVMMSG, , uintptr(unsafe.Pointer(&[0])), uintptr(len()), uintptr(), 0, 0)
	return int(), errnoErr()
}

func sendmmsg( uintptr,  []mmsghdr,  int) (int, error) {
	, ,  := syscall.Syscall6(sysSENDMMSG, , uintptr(unsafe.Pointer(&[0])), uintptr(len()), uintptr(), 0, 0)
	return int(), errnoErr()
}