blob: 0baa00a029dd9a58b96c87c2d2938ae84bca14f9 [file] [log] [blame]
/*
* recv.c
*/
#include <stddef.h>
#include <sys/socket.h>
int recv(int s, void *buf, size_t len, unsigned int flags)
{
return recvfrom(s, buf, len, flags, NULL, 0);
}