minix/lib/libc/ip/recv.c

8 lines
175 B
C
Raw Normal View History

2005-07-27 13:57:59 +02:00
#include <stdlib.h>
#include <sys/socket.h>
ssize_t recv(int socket, void *buffer, size_t length, int flags)
{
return recvfrom(socket, buffer, length, flags, NULL, NULL);
}