blob: a4b2cc1352dd6e6a4fe8533320e8ae56e678bd7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#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);
}
|