blob: 1b2cfdf169d45c383a35470a4f055915f47f90c2 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include "asm/unistd_64.h" // for __NR_recvmsg
#include <sys/socket.h> // for recvmsg
#include <sys/types.h> // for ssize_t
#include <syscall.h> // for __syscall_3, syscall
ssize_t recvmsg(int socket, struct msghdr *message, int flags)
{
return syscall(recvmsg, socket, message, flags);
}
|